CombinedText
stringlengths
4
3.42M
----------------------------------------------------------------------- -- druss-commands -- Commands available for Druss -- Copyright (C) 2017, 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Commands.Drivers; with Util.Commands.Parsers; with Util.Commands.Consoles; with Util.Commands.Consoles.Text; with Druss.Gateways; package Druss.Commands is -- Exception raised to stop the interactive loop. Stop_Interactive : exception; -- Device selector to select all, active or inactive devices. type Device_Selector_Type is (DEVICE_ALL, DEVICE_ACTIVE, DEVICE_INACTIVE); -- The list of fields that are printed on the console. type Field_Type is (F_IP_ADDR, F_BBOX_IP_ADDR, F_WAN_IP, F_ETHERNET, F_INTERNET, F_VOIP, F_HOSTNAME, F_CONNECTION, F_DEVTYPE, F_ACTIVE, F_LINK, F_WIFI, F_WIFI5, F_ACCESS_CONTROL, F_DYNDNS, F_DEVICES, F_UPTIME, F_COUNT, F_BOOL, F_CHANNEL, F_PROTOCOL, F_ENCRYPTION, F_SSID); -- The type of notice that are reported. type Notice_Type is (N_HELP, N_USAGE, N_INFO); -- Make the generic abstract console interface. package Consoles is new Util.Commands.Consoles (Field_Type => Field_Type, Notice_Type => Notice_Type); -- And the text console to write on stdout (a Gtk console could be done someday). package Text_Consoles is new Consoles.Text; type Context_Type is limited record Gateways : Druss.Gateways.Gateway_Vector; Console : Consoles.Console_Access; end record; package Drivers is new Util.Commands.Drivers (Context_Type => Context_Type, Config_Parser => Util.Commands.Parsers.No_Parser, Driver_Name => "druss-drivers"); subtype Argument_List is Util.Commands.Argument_List; Driver : Drivers.Driver_Type; procedure Gateway_Command (Command : in Drivers.Command_Type'Class; Args : in Util.Commands.Argument_List'Class; Arg_Pos : in Positive; Process : access procedure (Gateway : in out Gateways.Gateway_Type; Param : in String); Context : in out Context_Type); procedure Initialize; -- Enter in the interactive main loop waiting for user commands and executing them. procedure Interactive (Context : in out Context_Type); -- Print the bbox API status. procedure Print_Status (Console : in Consoles.Console_Access; Field : in Field_Type; Value : in String); -- Print a ON/OFF status. procedure Print_On_Off (Console : in Consoles.Console_Access; Field : in Field_Type; Value : in String); -- Print a uptime. procedure Print_Uptime (Console : in Consoles.Console_Access; Field : in Field_Type; Value : in String); -- Print a performance measure in us or ms. procedure Print_Perf (Console : in Consoles.Console_Access; Field : in Field_Type; Value : in String); end Druss.Commands;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014-2018, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Ada.Exceptions; with Ada.Tags.Generic_Dispatching_Constructor; with Ada.Text_IO; with Servlet.Container_Initializers; with Servlet.Generic_Servlets; with XML.SAX.File_Input_Sources; with XML.SAX.Simple_Readers; with Matreshka.Servlet_Defaults; with Matreshka.Spikedog_Deployment_Descriptors.Parsers; package body Matreshka.Servlet_Containers is use type League.Strings.Universal_String; function Instantiate_Servlet is new Ada.Tags.Generic_Dispatching_Constructor (Servlet.Generic_Servlets.Generic_Servlet, Servlet.Generic_Servlets.Instantiation_Parameters'Class, Servlet.Generic_Servlets.Instantiate); package Loader is procedure Load (Container : in out Servlet_Container'Class; Initializer : out Servlet.Container_Initializers.Servlet_Container_Initializer_Access); end Loader; package body Loader is separate; ------------------ -- Add_Listener -- ------------------ overriding procedure Add_Listener (Self : not null access Servlet_Container; Listener : not null Servlet.Event_Listeners.Event_Listener_Access) is Success : Boolean := False; begin if Self.State = Initialized then raise Servlet.Illegal_State_Exception with "servlet context has already been initialized"; end if; -- Check for support of Servlet_Context_Listener interface and register -- listener in appropriate state of servlet context. if Listener.all in Servlet.Context_Listeners.Servlet_Context_Listener'Class then if Self.State = Uninitialized then Self.Context_Listeners.Append (Servlet.Context_Listeners.Servlet_Context_Listener_Access (Listener)); Success := True; else raise Servlet.Illegal_State_Exception with "Servlet_Container_Listener can't be added"; end if; end if; if not Success then raise Servlet.Illegal_Argument_Exception with "listener doesn't supports any of expected interfaces"; end if; end Add_Listener; ----------------- -- Add_Servlet -- ----------------- overriding function Add_Servlet (Self : not null access Servlet_Container; Name : League.Strings.Universal_String; Instance : not null access Servlet.Servlets.Servlet'Class) return access Servlet.Servlet_Registrations.Servlet_Registration'Class is use type Matreshka.Servlet_Registrations.Servlet_Access; Object : constant Matreshka.Servlet_Registrations.Servlet_Access := Matreshka.Servlet_Registrations.Servlet_Access (Instance); Registration : Matreshka.Servlet_Registrations.Servlet_Registration_Access; begin if Self.State = Initialized then raise Servlet.Illegal_State_Exception with "servlet context has already been initialized"; end if; if Name.Is_Empty then raise Servlet.Illegal_Argument_Exception with "servlet name is empty"; end if; if Instance.all not in Servlet.Generic_Servlets.Generic_Servlet'Class then raise Servlet.Illegal_Argument_Exception with "not descedant of base servlet type"; end if; -- Check whether servlet instance or servlet name was registered. for Registration of Self.Servlets loop if Registration.Servlet = Object or Registration.Name = Name then return null; end if; end loop; Registration := new Matreshka.Servlet_Registrations.Servlet_Registration' (Context => Self, Name => Name, Servlet => Object); Self.Servlets.Insert (Name, Registration); -- Initialize servlet. begin Registration.Servlet.Initialize (Registration); exception when X : others => Ada.Text_IO.Put_Line (Ada.Text_IO.Standard_Error, "Exception during servlet '" & Name.To_UTF_8_String & "' initialization:"); Ada.Text_IO.Put_Line (Ada.Text_IO.Standard_Error, Ada.Exceptions.Exception_Information (X)); raise; end; return Registration; end Add_Servlet; -------------- -- Dispatch -- -------------- procedure Dispatch (Self : not null access Servlet_Container'Class; Request : not null Matreshka.Servlet_HTTP_Requests.HTTP_Servlet_Request_Access; Response : not null Matreshka.Servlet_HTTP_Responses.HTTP_Servlet_Response_Access) is Servlet : Matreshka.Servlet_Registrations.Servlet_Registration_Access; begin Self.Dispatch (Request.all, Request.Get_Path, 1, Servlet); Request.Set_Session_Manager (Self.Session_Manager); Request.Set_Servlet_Context (Self); Servlet.Servlet.Service (Request.all, Response.all); end Dispatch; -------------- -- Finalize -- -------------- procedure Finalize (Self : not null access Servlet_Container'Class) is begin for Listener of reverse Self.Context_Listeners loop Listener.Context_Destroyed (Self); end loop; Self.State := Uninitialized; end Finalize; ------------------- -- Get_MIME_Type -- ------------------- overriding function Get_MIME_Type (Self : Servlet_Container; Path : League.Strings.Universal_String) return League.Strings.Universal_String is pragma Unreferenced (Self); begin if Path.Ends_With (".atom") then return League.Strings.To_Universal_String ("application/atom+xml"); elsif Path.Ends_With (".css") then return League.Strings.To_Universal_String ("text/css"); elsif Path.Ends_With (".frag") then return League.Strings.To_Universal_String ("x-shader/x-fragment"); elsif Path.Ends_With (".gif") then return League.Strings.To_Universal_String ("image/gif"); elsif Path.Ends_With (".html") then return League.Strings.To_Universal_String ("text/html"); elsif Path.Ends_With (".jpeg") then return League.Strings.To_Universal_String ("image/jpeg"); elsif Path.Ends_With (".js") then return League.Strings.To_Universal_String ("text/javascript"); elsif Path.Ends_With (".pdf") then return League.Strings.To_Universal_String ("application/pdf"); elsif Path.Ends_With (".png") then return League.Strings.To_Universal_String ("image/png"); elsif Path.Ends_With (".svg") then return League.Strings.To_Universal_String ("image/svg+xml"); elsif Path.Ends_With (".tiff") then return League.Strings.To_Universal_String ("image/tiff"); elsif Path.Ends_With (".txt") then return League.Strings.To_Universal_String ("text/plain"); elsif Path.Ends_With (".vert") then return League.Strings.To_Universal_String ("x-shader/x-vertex"); elsif Path.Ends_With (".xml") then -- "text/xml" requires to specify character encoding in Content-Type -- header, otherwise US-ASCII is used. "application/xml" doesn't -- require to provide character encoding in Content-Type header, in -- this case XML processor uses encoding from document. return League.Strings.To_Universal_String ("application/xml"); else return League.Strings.Empty_Universal_String; end if; end Get_MIME_Type; ------------------- -- Get_Real_Path -- ------------------- overriding function Get_Real_Path (Self : Servlet_Container; Path : League.Strings.Universal_String) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return "install" & Path; end Get_Real_Path; ------------------------------ -- Get_Servlet_Registration -- ------------------------------ overriding function Get_Servlet_Registration (Self : not null access Servlet_Container; Servlet_Name : League.Strings.Universal_String) return access Servlet.Servlet_Registrations.Servlet_Registration'Class is begin for Registration of Self.Servlets loop if Registration.Name = Servlet_Name then return Registration; end if; end loop; return null; end Get_Servlet_Registration; ---------------- -- Initialize -- ---------------- procedure Initialize (Self : not null access Servlet_Container'Class; Server : not null Matreshka.Servlet_Servers.Server_Access; Success : out Boolean) is Source : aliased XML.SAX.File_Input_Sources.File_Input_Source; Reader : XML.SAX.Simple_Readers.Simple_Reader; Parser : aliased Matreshka.Spikedog_Deployment_Descriptors.Parsers .Deployment_Descriptor_Parser; Descriptor : Matreshka.Spikedog_Deployment_Descriptors.Deployment_Descriptor_Access; Initializer : Servlet.Container_Initializers.Servlet_Container_Initializer_Access; Aux : Boolean; begin Success := False; -- Load deployment descriptor. Descriptor := new Matreshka.Spikedog_Deployment_Descriptors.Deployment_Descriptor; Reader.Set_Input_Source (Source'Unchecked_Access); Reader.Set_Content_Handler (Parser'Unchecked_Access); Parser.Set_Deployment_Descriptor (Descriptor); Source.Open_By_File_Name (League.Strings.To_Universal_String ("install/WEB-INF/web.xml")); Reader.Parse; Source.Close; -- Start initialization of container. Self.State := Initialization; Self.Descriptor := Descriptor; Server.Set_Container (Self); -- XXX Can container be connected to server later, after successful -- initialization? -- Load and startup application. begin Loader.Load (Self.all, Initializer); Initializer.On_Startup (Self.all); exception when X : others => Ada.Text_IO.Put_Line (Ada.Text_IO.Standard_Error, "Exception during application load/startup:"); Ada.Text_IO.Put_Line (Ada.Text_IO.Standard_Error, Ada.Exceptions.Exception_Information (X)); return; end; -- Notify ServletContextListeners about initialization of context for Listener of Self.Context_Listeners loop Listener.Context_Initialized (Self); end loop; -- Instantiate servlets defined by deployment descriptor for Descriptor of Self.Descriptor.Servlets loop declare P : aliased Servlet.Generic_Servlets.Instantiation_Parameters; S : constant Matreshka.Servlet_Registrations.Servlet_Access := new Servlet.Generic_Servlets.Generic_Servlet'Class' (Instantiate_Servlet (Ada.Tags.Internal_Tag (Descriptor.Tag.To_UTF_8_String), P'Access)); begin Self.Add_Servlet (Descriptor.Name, S); end; end loop; -- Add URL mappings for Descriptor of Self.Descriptor.Servlet_Mappings loop Self.Get_Servlet_Registration (Descriptor.Name).Add_Mapping (Descriptor.URL_Patterns); end loop; Self.State := Initialized; -- Setup default servlet for context. Self.Add_Mapping (new Matreshka.Servlet_Registrations.Servlet_Registration' (Context => Self, Name => League.Strings.Empty_Universal_String, Servlet => new Matreshka.Servlet_Defaults.Default_Servlet), League.Strings.To_Universal_String ("/"), Aux); Success := True; end Initialize; ------------------------- -- Set_Session_Manager -- ------------------------- overriding procedure Set_Session_Manager (Self : in out Servlet_Container; Manager : not null Spikedog.HTTP_Session_Managers.HTTP_Session_Manager_Access) is begin Self.Session_Manager := Manager; end Set_Session_Manager; end Matreshka.Servlet_Containers;
<?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_write_data</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>buf_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>buf</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>28</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>3</id> <name></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 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>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>41</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>5</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>43</item> <item>44</item> <item>45</item> <item>46</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>6</id> <name>r</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>1</count> <item_version>0</item_version> <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>48</item> <item>49</item> <item>50</item> <item>51</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>7</id> <name>c</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>52</item> <item>53</item> <item>54</item> <item>55</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>8</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>56</item> <item>58</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>9</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>59</item> <item>61</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</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> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>62</item> <item>63</item> <item>64</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>14</id> <name>exitcond4</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>1</count> <item_version>0</item_version> <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>65</item> <item>67</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>15</id> <name>c_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>1</count> <item_version>0</item_version> <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>68</item> <item>69</item> <item>70</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>16</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>1</count> <item_version>0</item_version> <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>72</item> <item>73</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>17</id> <name>r_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>1</count> <item_version>0</item_version> <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>74</item> <item>75</item> <item>76</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp</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>1</count> <item_version>0</item_version> <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>77</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>19</id> <name>tmp_s</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>1</count> <item_version>0</item_version> <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>79</item> <item>80</item> <item>82</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>20</id> <name>c_cast6</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>1</count> <item_version>0</item_version> <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>83</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp_4_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>1</count> <item_version>0</item_version> <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>84</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_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>1</count> <item_version>0</item_version> <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>86</item> <item>87</item> <item>88</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>26</id> <name>p_addr_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>1</count> <item_version>0</item_version> <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>89</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>27</id> <name>p_addr1</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>1</count> <item_version>0</item_version> <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>90</item> <item>91</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>28</id> <name>tmp_2</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>1</count> <item_version>0</item_version> <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>92</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>29</id> <name>buf_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>1</count> <item_version>0</item_version> <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>93</item> <item>95</item> <item>96</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>30</id> <name>buf_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>1</count> <item_version>0</item_version> <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>97</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>31</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>1</count> <item_version>0</item_version> <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>98</item> <item>99</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_6</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>1</count> <item_version>0</item_version> <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>100</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>33</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>1</count> <item_version>0</item_version> <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>101</item> <item>102</item> <item>103</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>34</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>1</count> <item_version>0</item_version> <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>104</item> <item>105</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>36</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>1</count> <item_version>0</item_version> <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>106</item> <item>107</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>37</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>108</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>39</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>120</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>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>120</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>8</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_31"> <Value> <Obj> <type>2</type> <id>42</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_32"> <Value> <Obj> <type>2</type> <id>47</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_33"> <Value> <Obj> <type>2</type> <id>57</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_34"> <Value> <Obj> <type>2</type> <id>60</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_35"> <Value> <Obj> <type>2</type> <id>66</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_36"> <Value> <Obj> <type>2</type> <id>71</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_37"> <Value> <Obj> <type>2</type> <id>81</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_38"> <Value> <Obj> <type>2</type> <id>94</id> <name>empty</name> <fileName></fileName> <fileDirectory></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> </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="_39"> <Obj> <type>3</type> <id>4</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>3</item> </node_objs> </item> <item class_id_reference="18" object_id="_40"> <Obj> <type>3</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> <node_objs> <count>6</count> <item_version>0</item_version> <item>5</item> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> </node_objs> </item> <item class_id_reference="18" object_id="_41"> <Obj> <type>3</type> <id>38</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>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>36</item> <item>37</item> </node_objs> </item> <item class_id_reference="18" object_id="_42"> <Obj> <type>3</type> <id>40</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>39</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>60</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_43"> <id>41</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>3</sink_obj> </item> <item class_id_reference="20" object_id="_44"> <id>43</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_45"> <id>44</id> <edge_type>2</edge_type> <source_obj>4</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_46"> <id>45</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_47"> <id>46</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_48"> <id>48</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_49"> <id>49</id> <edge_type>2</edge_type> <source_obj>4</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_50"> <id>50</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_51"> <id>51</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_52"> <id>52</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_53"> <id>53</id> <edge_type>2</edge_type> <source_obj>4</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_54"> <id>54</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_55"> <id>55</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_56"> <id>56</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_57"> <id>58</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_58"> <id>59</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_59"> <id>61</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_60"> <id>62</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_61"> <id>63</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_62"> <id>64</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_63"> <id>65</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_64"> <id>67</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_65"> <id>68</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_66"> <id>69</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_67"> <id>70</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_68"> <id>72</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_69"> <id>73</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_70"> <id>74</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>75</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>76</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>77</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>80</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>82</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>83</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>84</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>87</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>88</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>89</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>90</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>91</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>92</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>93</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>95</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>96</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>97</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>98</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>99</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>100</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>101</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>102</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>103</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>104</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>105</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>106</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>107</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>108</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>139</id> <edge_type>2</edge_type> <source_obj>4</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>140</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>141</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>142</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>11</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_103"> <mId>1</mId> <mTag>dct_write_data</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>66</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_104"> <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>4</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="_105"> <mId>3</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>11</item> <item>38</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="_106"> <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>40</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="_107"> <states class_id="25" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_108"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_109"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_110"> <id>2</id> <operations> <count>22</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_111"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_112"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_113"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_114"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_115"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_116"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_117"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_118"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_119"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_120"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_121"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_122"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_123"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_124"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_125"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_126"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_127"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_128"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_129"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_130"> <id>30</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_131"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_132"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_133"> <id>3</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_134"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_135"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_136"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_137"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_138"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_139"> <id>30</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_140"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_141"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_142"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_143"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_144"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_145"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_146"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_147"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>23</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="_148"> <inState>3</inState> <outState>2</outState> <condition> <id>31</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_149"> <inState>2</inState> <outState>4</outState> <condition> <id>30</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>8</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_150"> <inState>2</inState> <outState>3</outState> <condition> <id>32</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>8</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="_151"> <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>28</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>3</first> <second class_id="41" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>5</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>6</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>31</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="42" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="43" tracking_level="0" version="0"> <first>4</first> <second class_id="44" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="45" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="46" tracking_level="1" version="0" object_id="_152"> <region_name>WR_Loop_Row_WR_Loop_Col</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>11</item> <item>38</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>24</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>46</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>53</first> <second> <count>2</count> <item_version>0</item_version> <item>30</item> <item>30</item> </second> </item> <item> <first>58</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>65</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>75</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>86</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>97</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>104</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>110</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>116</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>122</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>130</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>136</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>144</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>156</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>160</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>164</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> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>182</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>187</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>193</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>199</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="50" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>buf_addr_gep_fu_46</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>c_1_fu_193</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>c_cast6_fu_156</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>c_mid2_fu_122</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>c_phi_fu_97</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>exitcond4_fu_116</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>exitcond_flatten_fu_104</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>indvar_flatten_next_fu_110</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_phi_fu_75</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>output_addr_gep_fu_58</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>p_addr1_fu_176</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>p_addr_cast_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>r_mid2_fu_136</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>r_phi_fu_86</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>r_s_fu_130</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>tmp_1_fu_164</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>tmp_2_fu_182</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_4_trn_cast_fu_160</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>tmp_5_fu_187</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp_6_fu_199</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp_fu_144</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_s_fu_148</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="52" tracking_level="0" version="0"> <count>2</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_r</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>30</item> <item>30</item> </second> </item> <item> <first> <first>output_r</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>9</count> <item_version>0</item_version> <item> <first>71</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>82</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>93</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>203</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>207</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>212</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>217</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>222</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>227</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>9</count> <item_version>0</item_version> <item> <first>buf_addr_reg_217</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>c_1_reg_227</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>c_reg_93</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>exitcond_flatten_reg_203</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>indvar_flatten_next_reg_207</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_reg_71</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>r_mid2_reg_212</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>r_reg_82</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>tmp_5_reg_222</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>3</count> <item_version>0</item_version> <item> <first>71</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>82</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>93</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>3</count> <item_version>0</item_version> <item> <first>c_reg_93</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>indvar_flatten_reg_71</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>r_reg_82</first> <second> <count>1</count> <item_version>0</item_version> <item>6</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>buf_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>30</item> <item>30</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>34</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>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2020, Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- package body SDL is use type C.int; function Initialise (Flags : in Init_Flags := Enable_Everything) return Boolean is function SDL_Init (Flags : in Init_Flags := Enable_Everything) return C.int with Import => True, Convention => C, External_Name => "SDL_Init"; Result : C.int := SDL_Init (Flags); begin return (Result = Success); end Initialise; function Initialise_Sub_System (Flags : in Init_Flags) return Boolean is function SDL_Init_Sub_System (Flags : in Init_Flags) return C.int with Import => True, Convention => C, External_Name => "SDL_InitSubSystem"; Result : C.int := SDL_Init_Sub_System (Flags); begin return (Result = Success); end Initialise_Sub_System; function SDL_Was_Initialised (Flags : in Init_Flags := Null_Init_Flags) return Init_Flags with Import => True, Convention => C, External_Name => "SDL_WasInit"; function Was_Initialised return Init_Flags is begin return SDL_Was_Initialised; end Was_Initialised; function Was_Initialised (Flags : in Init_Flags) return Boolean is begin return (SDL_Was_Initialised (Flags) = Flags); end Was_Initialised; end SDL;
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2020, Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- with Interfaces.C.Strings; with SDL.Error; with SDL.RWops; package body SDL.Inputs.Joysticks.Game_Controllers is package C renames Interfaces.C; use type C.int; use type C.Strings.chars_ptr; procedure Add_Mapping (Data : in String; Updated_Existing : out Boolean) is function SDL_Game_Controller_Add_Mapping (Buffer : in C.char_array) return C.int with Convention => C, Import => True, External_Name => "SDL_GameControllerAddMapping"; Result : C.int := SDL_Game_Controller_Add_Mapping (C.To_C (Data)); begin if Result = -1 then raise Mapping_Error with SDL.Error.Get; end if; Updated_Existing := (Result = 0); end Add_Mapping; procedure Add_Mappings_From_File (Database_Filename : in String; Number_Added : out Natural) is function SDL_Game_Controller_Add_Mappings_From_RW (RW : SDL.RWops.RWops; FreeRW : C.int) return C.int with Convention => C, Import => True, External_Name => "SDL_GameControllerAddMappingsFromRW"; RW : SDL.RWops.RWops := SDL.RWops.From_File (Database_Filename, Mode => SDL.RWops.Read); Result : constant Integer := Integer (SDL_Game_Controller_Add_Mappings_From_RW (RW, FreeRW => 1)); begin if Result < 0 then raise Mapping_Error with SDL.Error.Get; end if; Number_Added := Result; end Add_Mappings_From_File; function Axis_Value (Self : in Game_Controller; Axis : in SDL.Events.Joysticks.Game_Controllers.LR_Axes) return SDL.Events.Joysticks.Game_Controllers.LR_Axes_Values is function SDL_Game_Controller_Get_Axis (Controller : in SDL.C_Pointers.Game_Controller_Pointer; Axis : in SDL.Events.Joysticks.Game_Controllers.LR_Axes) return SDL.Events.Joysticks.Game_Controllers.LR_Axes_Values with Import => True, Convention => C, External_Name => "SDL_GameControllerGetAxis"; begin return SDL_Game_Controller_Get_Axis (Self.Internal, Axis); end Axis_Value; function Axis_Value (Self : in Game_Controller; Axis : in SDL.Events.Joysticks.Game_Controllers.Trigger_Axes) return SDL.Events.Joysticks.Game_Controllers.Trigger_Axes_Values is function SDL_Game_Controller_Get_Axis (Controller : in SDL.C_Pointers.Game_Controller_Pointer; Axis : in SDL.Events.Joysticks.Game_Controllers.Trigger_Axes) return SDL.Events.Joysticks.Game_Controllers.Trigger_Axes_Values with Import => True, Convention => C, External_Name => "SDL_GameControllerGetAxis"; begin return SDL_Game_Controller_Get_Axis (Self.Internal, Axis); end Axis_Value; procedure Close (Self : in out Game_Controller) is procedure SDL_Game_Controller_Close (Controller : in SDL.C_Pointers.Game_Controller_Pointer) with Import => True, Convention => C, External_Name => "SDL_GameControllerClose"; begin SDL_Game_Controller_Close (Self.Internal); -- Reinitialise the object so it's actually a Null_Game_Controller. Self.Internal := null; Self.Owns := True; end Close; function Get_Axis (Axis : in String) return SDL.Events.Joysticks.Game_Controllers.Axes is function SDL_Game_Controller_Get_Axis_From_String (Axis : in C.char_array) return SDL.Events.Joysticks.Game_Controllers.Axes with Import => True, Convention => C, External_Name => "SDL_GameControllerGetAxisFromString"; begin return SDL_Game_Controller_Get_Axis_From_String (C.To_C (Axis)); end Get_Axis; function Get_Binding (Self : in Game_Controller; Axis : in SDL.Events.Joysticks.Game_Controllers.Axes) return Bindings is function SDL_Game_Controller_Get_Bind_For_Axis (Controller : in SDL.C_Pointers.Game_Controller_Pointer; Axis : in SDL.Events.Joysticks.Game_Controllers.Axes) return Bindings with Import => True, Convention => C, External_Name => "SDL_GameControllerGetBindForAxis"; begin return SDL_Game_Controller_Get_Bind_For_Axis (Self.Internal, Axis); end Get_Binding; function Get_Binding (Self : in Game_Controller; Button : in SDL.Events.Joysticks.Game_Controllers.Buttons) return Bindings is function SDL_Game_Controller_Get_Bind_For_Button (Controller : in SDL.C_Pointers.Game_Controller_Pointer; Button : in SDL.Events.Joysticks.Game_Controllers.Buttons) return Bindings with Import => True, Convention => C, External_Name => "SDL_GameControllerGetBindForButton"; begin return SDL_Game_Controller_Get_Bind_For_Button (Self.Internal, Button); end Get_Binding; function Get_Button (Button_Name : in String) return SDL.Events.Joysticks.Game_Controllers.Buttons is function SDL_Game_Controller_Get_Button_From_String (Buffer : in C.char_array) return SDL.Events.Joysticks.Game_Controllers.Buttons with Convention => C, Import => True, External_Name => "SDL_GameControllerGetButtonFromString"; begin return SDL.Events.Joysticks.Game_Controllers.Buttons (SDL_Game_Controller_Get_Button_From_String (C.To_C (Button_Name))); end Get_Button; function Get_Joystick (Self : in Game_Controller) return Joystick is function SDL_Game_Controller_Get_Joystick (Controller : in SDL.C_Pointers.Game_Controller_Pointer) return SDL.C_Pointers.Joystick_Pointer with Convention => C, Import => True, External_Name => "SDL_GameControllerGetJoystick"; begin return J : Joystick := (Ada.Finalization.Limited_Controlled with Internal => SDL_Game_Controller_Get_Joystick (Self.Internal), Owns => False) do null; end return; end Get_Joystick; function Get_Mapping (Self : in Game_Controller) return String is function SDL_Game_Controller_Mapping (Controller : in SDL.C_Pointers.Game_Controller_Pointer) return C.Strings.chars_ptr with Convention => C, Import => True, External_Name => "SDL_GameControllerMapping"; Result : C.Strings.chars_ptr := SDL_Game_Controller_Mapping (Self.Internal); begin if Result = C.Strings.Null_Ptr then return ""; end if; return C.Strings.Value (Result); end Get_Mapping; function Get_Mapping (Controller : in GUIDs) return String is function SDL_Game_Controller_Mapping_For_GUID (Controller : in GUIDs) return C.Strings.chars_ptr with Convention => C, Import => True, External_Name => "SDL_GameControllerMappingForGUID"; Result : C.Strings.chars_ptr := SDL_Game_Controller_Mapping_For_GUID (Controller); begin if Result = C.Strings.Null_Ptr then return ""; end if; return C.Strings.Value (Result); end Get_Mapping; function Get_Name (Self : in Game_Controller) return String is function SDL_Game_Controller_Name (Controller : in SDL.C_Pointers.Game_Controller_Pointer) return C.Strings.chars_ptr with Convention => C, Import => True, External_Name => "SDL_GameControllerName"; Result : C.Strings.chars_ptr := SDL_Game_Controller_Name (Self.Internal); begin if Result = C.Strings.Null_Ptr then return ""; end if; return C.Strings.Value (Result); end Get_Name; function Get_Name (Device : in Devices) return String is function SDL_Game_Controller_Name_For_Index (Index : in C.int) return C.Strings.chars_ptr with Convention => C, Import => True, External_Name => "SDL_GameControllerNameForIndex"; Result : C.Strings.chars_ptr := SDL_Game_Controller_Name_For_Index (C.int (Device) - 1); begin if Result = C.Strings.Null_Ptr then return ""; end if; return C.Strings.Value (Result); end Get_Name; function Image (Axis : in SDL.Events.Joysticks.Game_Controllers.Axes) return String is function SDL_Game_Controller_Get_String_For_Axis (Axis : in SDL.Events.Joysticks.Game_Controllers.Axes) return C.Strings.chars_ptr with Convention => C, Import => True, External_Name => "SDL_GameControllerGetStringForAxis"; Result : C.Strings.chars_ptr := SDL_Game_Controller_Get_String_For_Axis (Axis); begin if Result = C.Strings.Null_Ptr then return ""; end if; return C.Strings.Value (Result); end Image; function Image (Button : in SDL.Events.Joysticks.Game_Controllers.Buttons) return String is function SDL_Game_Controller_Get_String_For_Button (Button : in SDL.Events.Joysticks.Game_Controllers.Buttons) return C.Strings.chars_ptr with Convention => C, Import => True, External_Name => "SDL_GameControllerGetStringForButton"; Result : C.Strings.chars_ptr := SDL_Game_Controller_Get_String_For_Button (Button); begin if Result = C.Strings.Null_Ptr then return ""; end if; return C.Strings.Value (Result); end Image; function Is_Attached (Self : in Game_Controller) return Boolean is function SDL_Game_Controller_Is_Attached (Controller : in SDL.C_Pointers.Game_Controller_Pointer) return SDL_Bool with Import => True, Convention => C, External_Name => "SDL_GameControllerGetAttached"; begin return SDL_Game_Controller_Is_Attached (Self.Internal) = SDL_True; end Is_Attached; function Is_Button_Pressed (Self : in Game_Controller; Button : in SDL.Events.Joysticks.Buttons) return SDL.Events.Button_State is function SDL_Game_Controller_Get_Button (Controller : in SDL.C_Pointers.Game_Controller_Pointer; Button : in SDL.Events.Joysticks.Buttons) return SDL.Events.Button_State with Import => True, Convention => C, External_Name => "SDL_GameControllerGetButton"; begin return SDL_Game_Controller_Get_Button (Self.Internal, Button); end Is_Button_Pressed; function Is_Game_Controller (Device : in Devices) return Boolean is function SDL_Is_Game_Controller (Device : in C.int) return SDL_Bool with Import => True, Convention => C, External_Name => "SDL_IsGameController"; begin return SDL_Is_Game_Controller (C.int (Device) - 1) = SDL_True; end Is_Game_Controller; end SDL.Inputs.Joysticks.Game_Controllers;
with STM32_SVD.GPIO; with STM32_SVD; use STM32_SVD; package STM32GD.GPIO is pragma Preelaborate; type GPIO_Port is (Port_A, Port_B, Port_C, Port_D, Port_F); for GPIO_Port use (Port_A => 0, Port_B => 1, Port_C => 2, Port_D => 3, Port_F => 5); type GPIO_Pin is (Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7, Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15); for GPIO_Pin use (Pin_0 => 16#0001#, Pin_1 => 16#0002#, Pin_2 => 16#0004#, Pin_3 => 16#0008#, Pin_4 => 16#0010#, Pin_5 => 16#0020#, Pin_6 => 16#0040#, Pin_7 => 16#0080#, Pin_8 => 16#0100#, Pin_9 => 16#0200#, Pin_10 => 16#0400#, Pin_11 => 16#0800#, Pin_12 => 16#1000#, Pin_13 => 16#2000#, Pin_14 => 16#4000#, Pin_15 => 16#8000#); for GPIO_Pin'Size use 16; -- for compatibility with hardware registers type GPIO_Pins is array (Positive range <>) of GPIO_Pin; -- Note that, in addition to aggregates, the language-defined catenation -- operator "&" is available for types GPIO_Pin and GPIO_Pins, allowing one -- to construct GPIO_Pins values conveniently All_Pins : constant GPIO_Pins := (Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7, Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15); type Pin_IO_Modes is (Mode_In, Mode_Out, Mode_AF, Mode_Analog) with Size => 2; for Pin_IO_Modes use (Mode_In => 0, Mode_Out => 1, Mode_AF => 2, Mode_Analog => 3); type Pin_Output_Types is (Push_Pull, Open_Drain) with Size => 1; for Pin_Output_Types use (Push_Pull => 0, Open_Drain => 1); type Pin_Output_Speeds is (Speed_2MHz, Speed_25MHz, Speed_50MHz, Speed_100MHz) with Size => 2; for Pin_Output_Speeds use (Speed_2MHz => 0, -- low Speed_25MHz => 1, -- medium Speed_50MHz => 2, -- high Speed_100MHz => 3); -- very high Speed_Low : Pin_Output_Speeds renames Speed_2MHz; Speed_Medium : Pin_Output_Speeds renames Speed_25MHz; Speed_High : Pin_Output_Speeds renames Speed_50MHz; Speed_Very_High : Pin_Output_Speeds renames Speed_100MHz; type Internal_Pin_Resistors is (Floating, Pull_Up, Pull_Down) with Size => 2; for Internal_Pin_Resistors use (Floating => 0, Pull_Up => 1, Pull_Down => 2); type GPIO_Alternate_Function is new UInt4; end STM32GD.GPIO;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- Copyright (C) 2012-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This file provides register definitions for the STM32Fx (ARM Cortex M4/7) -- microcontrollers from ST Microelectronics. with Interfaces.STM32; package System.STM32 is pragma No_Elaboration_Code_All; pragma Preelaborate (System.STM32); subtype Frequency is Interfaces.STM32.UInt32; type RCC_System_Clocks is record SYSCLK : Frequency; HCLK : Frequency; PCLK1 : Frequency; PCLK2 : Frequency; TIMCLK1 : Frequency; TIMCLK2 : Frequency; end record; function System_Clocks return RCC_System_Clocks; -- MODER constants subtype GPIO_MODER_Values is Interfaces.STM32.UInt2; Mode_IN : constant GPIO_MODER_Values := 0; Mode_OUT : constant GPIO_MODER_Values := 1; Mode_AF : constant GPIO_MODER_Values := 2; Mode_AN : constant GPIO_MODER_Values := 3; -- OTYPER constants subtype GPIO_OTYPER_Values is Interfaces.STM32.Bit; Push_Pull : constant GPIO_OTYPER_Values := 0; Open_Drain : constant GPIO_OTYPER_Values := 1; -- OSPEEDR constants subtype GPIO_OSPEEDR_Values is Interfaces.STM32.UInt2; Speed_2MHz : constant GPIO_OSPEEDR_Values := 0; -- Low speed Speed_25MHz : constant GPIO_OSPEEDR_Values := 1; -- Medium speed Speed_50MHz : constant GPIO_OSPEEDR_Values := 2; -- Fast speed Speed_100MHz : constant GPIO_OSPEEDR_Values := 3; -- High speed -- PUPDR constants subtype GPIO_PUPDR_Values is Interfaces.STM32.UInt2; No_Pull : constant GPIO_PUPDR_Values := 0; Pull_Up : constant GPIO_PUPDR_Values := 1; Pull_Down : constant GPIO_PUPDR_Values := 2; -- AFL constants AF_USART1 : constant Interfaces.STM32.UInt4 := 7; AF_USART6 : constant Interfaces.STM32.UInt4 := 8; type MCU_ID_Register is record DEV_ID : Interfaces.STM32.UInt12; Reserved : Interfaces.STM32.UInt4; REV_ID : Interfaces.STM32.UInt16; end record with Pack, Size => 32; -- RCC constants type PLL_Source is (PLL_SRC_HSI, PLL_SRC_HSE) with Size => 1; type SYSCLK_Source is (SYSCLK_SRC_HSI, SYSCLK_SRC_HSE, SYSCLK_SRC_PLL) with Size => 2; type AHB_Prescaler_Enum is (DIV2, DIV4, DIV8, DIV16, DIV64, DIV128, DIV256, DIV512) with Size => 3; type AHB_Prescaler is record Enabled : Boolean := False; Value : AHB_Prescaler_Enum := AHB_Prescaler_Enum'First; end record with Size => 4; for AHB_Prescaler use record Enabled at 0 range 3 .. 3; Value at 0 range 0 .. 2; end record; AHBPRE_DIV1 : constant AHB_Prescaler := (Enabled => False, Value => DIV2); type APB_Prescaler_Enum is (DIV2, DIV4, DIV8, DIV16) with Size => 2; type APB_Prescaler is record Enabled : Boolean; Value : APB_Prescaler_Enum; end record with Size => 3; for APB_Prescaler use record Enabled at 0 range 2 .. 2; Value at 0 range 0 .. 1; end record; type I2S_Clock_Selection is (I2SSEL_PLL, I2SSEL_CKIN) with Size => 1; type MCO1_Clock_Selection is (MCO1SEL_HSI, MCO1SEL_LSE, MCO1SEL_HSE, MCO1SEL_PLL) with Size => 2; type MCO2_Clock_Selection is (MCO2SEL_SYSCLK, MCO2SEL_PLLI2S, MCO2SEL_HSE, MCO2SEL_PLL) with Size => 2; type MCOx_Prescaler is (MCOxPRE_DIV1, MCOxPRE_DIV2, MCOxPRE_DIV3, MCOxPRE_DIV4, MCOxPRE_DIV5) with Size => 3; for MCOx_Prescaler use (MCOxPRE_DIV1 => 0, MCOxPRE_DIV2 => 2#100#, MCOxPRE_DIV3 => 2#101#, MCOxPRE_DIV4 => 2#110#, MCOxPRE_DIV5 => 2#111#); -- Constants for RCC CR register subtype PLLM_Range is Integer range 2 .. 63; subtype PLLN_Range is Integer range 50 .. 432; subtype PLLP_Range is Integer range 2 .. 8 with Static_Predicate => (case PLLP_Range is when 2 | 4 | 6 | 8 => True, when others => False); subtype PLLQ_Range is Integer range 2 .. 15; subtype HSECLK_Range is Integer range 1_000_000 .. 26_000_000; subtype PLLIN_Range is Integer range 950_000 .. 2_000_000; subtype PLLVC0_Range is Integer range 192_000_000 .. 432_000_000; subtype PLLOUT_Range is Integer range 24_000_000 .. 216_000_000; subtype SYSCLK_Range is Integer range 1 .. 216_000_000; subtype HCLK_Range is Integer range 1 .. 216_000_000; subtype PCLK1_Range is Integer range 1 .. 54_000_000; subtype PCLK2_Range is Integer range 1 .. 108_000_000; subtype SPII2S_Range is Integer range 1 .. 37_500_000; pragma Unreferenced (SPII2S_Range); -- These internal low and high speed clocks are fixed (do not modify) HSICLK : constant := 16_000_000; LSICLK : constant := 32_000; MCU_ID : MCU_ID_Register with Volatile, Address => System'To_Address (16#E004_2000#); -- Only 32-bits access supported (read-only) DEV_ID_STM32F40xxx : constant := 16#413#; -- STM32F40xxx/41xxx DEV_ID_STM32F42xxx : constant := 16#419#; -- STM32F42xxx/43xxx DEV_ID_STM32F46xxx : constant := 16#434#; -- STM32F469xx/479xx DEV_ID_STM32F74xxx : constant := 16#449#; -- STM32F74xxx/75xxx end System.STM32;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ADA.STRINGS.WIDE_WIDE_UNBOUNDED.WIDE_WIDE_TEXT_IO -- -- -- -- B o d y -- -- -- -- Copyright (C) 1997-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.Wide_Wide_Text_IO; use Ada.Wide_Wide_Text_IO; package body Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Text_IO is -------------- -- Get_Line -- -------------- function Get_Line return Unbounded_Wide_Wide_String is Buffer : Wide_Wide_String (1 .. 1000); Last : Natural; Str1 : Wide_Wide_String_Access; Str2 : Wide_Wide_String_Access; Result : Unbounded_Wide_Wide_String; begin Get_Line (Buffer, Last); Str1 := new Wide_Wide_String'(Buffer (1 .. Last)); while Last = Buffer'Last loop Get_Line (Buffer, Last); Str2 := new Wide_Wide_String (1 .. Str1'Last + Last); Str2 (Str1'Range) := Str1.all; Str2 (Str1'Last + 1 .. Str2'Last) := Buffer (1 .. Last); Free (Str1); Str1 := Str2; end loop; Result.Reference := Str1; Result.Last := Str1'Length; return Result; end Get_Line; function Get_Line (File : Ada.Wide_Wide_Text_IO.File_Type) return Unbounded_Wide_Wide_String is Buffer : Wide_Wide_String (1 .. 1000); Last : Natural; Str1 : Wide_Wide_String_Access; Str2 : Wide_Wide_String_Access; Result : Unbounded_Wide_Wide_String; begin Get_Line (File, Buffer, Last); Str1 := new Wide_Wide_String'(Buffer (1 .. Last)); while Last = Buffer'Last loop Get_Line (File, Buffer, Last); Str2 := new Wide_Wide_String (1 .. Str1'Last + Last); Str2 (Str1'Range) := Str1.all; Str2 (Str1'Last + 1 .. Str2'Last) := Buffer (1 .. Last); Free (Str1); Str1 := Str2; end loop; Result.Reference := Str1; Result.Last := Str1'Length; return Result; end Get_Line; procedure Get_Line (Item : out Unbounded_Wide_Wide_String) is begin Get_Line (Current_Input, Item); end Get_Line; procedure Get_Line (File : Ada.Wide_Wide_Text_IO.File_Type; Item : out Unbounded_Wide_Wide_String) is begin -- We are going to read into the string that is already there and -- allocated. Hopefully it is big enough now, if not, we will extend -- it in the usual manner using Realloc_For_Chunk. -- Make sure we start with at least 80 characters if Item.Reference'Last < 80 then Realloc_For_Chunk (Item, 80); end if; -- Loop to read data, filling current string as far as possible. -- Item.Last holds the number of characters read so far. Item.Last := 0; loop Get_Line (File, Item.Reference (Item.Last + 1 .. Item.Reference'Last), Item.Last); -- If we hit the end of the line before the end of the buffer, then -- we are all done, and the result length is properly set. if Item.Last < Item.Reference'Last then return; end if; -- If not enough room, double it and keep reading Realloc_For_Chunk (Item, Item.Last); end loop; end Get_Line; --------- -- Put -- --------- procedure Put (U : Unbounded_Wide_Wide_String) is begin Put (U.Reference (1 .. U.Last)); end Put; procedure Put (File : File_Type; U : Unbounded_Wide_Wide_String) is begin Put (File, U.Reference (1 .. U.Last)); end Put; -------------- -- Put_Line -- -------------- procedure Put_Line (U : Unbounded_Wide_Wide_String) is begin Put_Line (U.Reference (1 .. U.Last)); end Put_Line; procedure Put_Line (File : File_Type; U : Unbounded_Wide_Wide_String) is begin Put_Line (File, U.Reference (1 .. U.Last)); end Put_Line; end Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Text_IO;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . M U L T I P R O C E S S O R S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2010-2015, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- ------------------------------------------------------------------------------ with Interfaces.C; use Interfaces.C; package body System.Multiprocessors is -------------------- -- Number_Of_CPUs -- -------------------- function Number_Of_CPUs return CPU is begin if CPU'Last = 1 then return 1; else declare function Gnat_Number_Of_CPUs return int; pragma Import (C, Gnat_Number_Of_CPUs, "__gnat_number_of_cpus"); begin return CPU (Gnat_Number_Of_CPUs); end; end if; end Number_Of_CPUs; end System.Multiprocessors;
With Ada.Text_IO; Use Ada.Text_IO; Procedure Determinante is type Real_Matrix is array (Integer range <>, Integer range <>) of Integer'Base; matriz: Real_Matrix(1..3, 1..3); diagonalPrincipal1: Integer; diagonalPrincipal2: Integer; diagonalPrincipal3: Integer; diagonalPrincipalSoma: Integer; diagonalSecundaria1: Integer; diagonalSecundaria2: Integer; diagonalSecundaria3: Integer; diagonalSecundariaSoma: Integer; det : Integer; -- Leitura String function Get_String return String is Line : String (1 .. 1_000); Last : Natural; begin Get_Line (Line, Last); return Line (1 .. Last); end Get_String; -- Leitura Integer function Get_Integer return Integer is S : constant String := Get_String; begin return Integer'Value (S); end Get_Integer; -- Lê 15 elementos do array procedure Faz_Leitura is begin for L in Integer range 1 .. 3 loop for C in Integer range 1 .. 3 loop matriz(L, C) := Get_Integer; end loop; end loop; end Faz_Leitura; begin Faz_Leitura; diagonalPrincipal1 := matriz(1, 1) * matriz(2, 2) * matriz(3, 3); diagonalPrincipal2 := matriz(1, 2) * matriz(2, 3) * matriz(3, 1); diagonalPrincipal3 := matriz(1, 3) * matriz(2, 1) * matriz(3, 2); diagonalSecundaria1 := matriz(1, 3) * matriz(2, 2) * matriz(3, 1); diagonalSecundaria2 := matriz(1, 1) * matriz(2, 3) * matriz(3, 2); diagonalSecundaria3 := matriz(1, 2) * matriz(2, 1) * matriz(3, 3); diagonalPrincipalSoma := diagonalPrincipal1 + diagonalPrincipal2 + diagonalPrincipal3; diagonalSecundariaSoma := diagonalSecundaria1 + diagonalSecundaria2 + diagonalSecundaria3; det := diagonalPrincipalSoma - diagonalSecundariaSoma; Put_Line(Integer'Image(det)); end Determinante;
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gststructure_h; with glib; with glib.Values; with System; with glib; with System; with GLIB; -- with GStreamer.GST_Low_Level.glibconfig_h; package GStreamer.GST_Low_Level.gstreamer_0_10_gst_gsttaglist_h is -- arg-macro: function GST_TAG_MODE_IS_VALID (mode) -- return ((mode) > GST_TAG_MERGE_UNDEFINED) and then ((mode) < GST_TAG_MERGE_COUNT); -- arg-macro: function GST_TAG_FLAG_IS_VALID (flag) -- return ((flag) > GST_TAG_FLAG_UNDEFINED) and then ((flag) < GST_TAG_FLAG_COUNT); -- arg-macro: function GST_TAG_LIST (x) -- return (GstTagList *) (x); -- arg-macro: function GST_IS_TAG_LIST (x) -- return (x) /= NULL and then gst_is_tag_list (GST_TAG_LIST (x)); -- unsupported macro: GST_TYPE_TAG_LIST (gst_tag_list_get_type ()) GST_TAG_TITLE : aliased constant String := "title" & ASCII.NUL; -- gst/gsttaglist.h:395 GST_TAG_TITLE_SORTNAME : aliased constant String := "title-sortname" & ASCII.NUL; -- gst/gsttaglist.h:405 GST_TAG_ARTIST : aliased constant String := "artist" & ASCII.NUL; -- gst/gsttaglist.h:414 GST_TAG_ARTIST_SORTNAME : aliased constant String := "musicbrainz-sortname" & ASCII.NUL; -- gst/gsttaglist.h:426 GST_TAG_ALBUM : aliased constant String := "album" & ASCII.NUL; -- gst/gsttaglist.h:434 GST_TAG_ALBUM_SORTNAME : aliased constant String := "album-sortname" & ASCII.NUL; -- gst/gsttaglist.h:444 GST_TAG_ALBUM_ARTIST : aliased constant String := "album-artist" & ASCII.NUL; -- gst/gsttaglist.h:452 GST_TAG_ALBUM_ARTIST_SORTNAME : aliased constant String := "album-artist-sortname" & ASCII.NUL; -- gst/gsttaglist.h:460 GST_TAG_COMPOSER : aliased constant String := "composer" & ASCII.NUL; -- gst/gsttaglist.h:468 GST_TAG_DATE : aliased constant String := "date" & ASCII.NUL; -- gst/gsttaglist.h:474 GST_TAG_DATE_TIME : aliased constant String := "datetime" & ASCII.NUL; -- gst/gsttaglist.h:482 GST_TAG_GENRE : aliased constant String := "genre" & ASCII.NUL; -- gst/gsttaglist.h:488 GST_TAG_COMMENT : aliased constant String := "comment" & ASCII.NUL; -- gst/gsttaglist.h:494 GST_TAG_EXTENDED_COMMENT : aliased constant String := "extended-comment" & ASCII.NUL; -- gst/gsttaglist.h:509 GST_TAG_TRACK_NUMBER : aliased constant String := "track-number" & ASCII.NUL; -- gst/gsttaglist.h:515 GST_TAG_TRACK_COUNT : aliased constant String := "track-count" & ASCII.NUL; -- gst/gsttaglist.h:521 GST_TAG_ALBUM_VOLUME_NUMBER : aliased constant String := "album-disc-number" & ASCII.NUL; -- gst/gsttaglist.h:527 GST_TAG_ALBUM_VOLUME_COUNT : aliased constant String := "album-disc-count" & ASCII.NUL; -- gst/gsttaglist.h:533 GST_TAG_LOCATION : aliased constant String := "location" & ASCII.NUL; -- gst/gsttaglist.h:540 GST_TAG_HOMEPAGE : aliased constant String := "homepage" & ASCII.NUL; -- gst/gsttaglist.h:548 GST_TAG_DESCRIPTION : aliased constant String := "description" & ASCII.NUL; -- gst/gsttaglist.h:554 GST_TAG_VERSION : aliased constant String := "version" & ASCII.NUL; -- gst/gsttaglist.h:560 GST_TAG_ISRC : aliased constant String := "isrc" & ASCII.NUL; -- gst/gsttaglist.h:566 GST_TAG_ORGANIZATION : aliased constant String := "organization" & ASCII.NUL; -- gst/gsttaglist.h:572 GST_TAG_COPYRIGHT : aliased constant String := "copyright" & ASCII.NUL; -- gst/gsttaglist.h:578 GST_TAG_COPYRIGHT_URI : aliased constant String := "copyright-uri" & ASCII.NUL; -- gst/gsttaglist.h:586 GST_TAG_ENCODED_BY : aliased constant String := "encoded-by" & ASCII.NUL; -- gst/gsttaglist.h:599 GST_TAG_CONTACT : aliased constant String := "contact" & ASCII.NUL; -- gst/gsttaglist.h:605 GST_TAG_LICENSE : aliased constant String := "license" & ASCII.NUL; -- gst/gsttaglist.h:611 GST_TAG_LICENSE_URI : aliased constant String := "license-uri" & ASCII.NUL; -- gst/gsttaglist.h:619 GST_TAG_PERFORMER : aliased constant String := "performer" & ASCII.NUL; -- gst/gsttaglist.h:625 GST_TAG_DURATION : aliased constant String := "duration" & ASCII.NUL; -- gst/gsttaglist.h:631 GST_TAG_CODEC : aliased constant String := "codec" & ASCII.NUL; -- gst/gsttaglist.h:637 GST_TAG_VIDEO_CODEC : aliased constant String := "video-codec" & ASCII.NUL; -- gst/gsttaglist.h:643 GST_TAG_AUDIO_CODEC : aliased constant String := "audio-codec" & ASCII.NUL; -- gst/gsttaglist.h:649 GST_TAG_SUBTITLE_CODEC : aliased constant String := "subtitle-codec" & ASCII.NUL; -- gst/gsttaglist.h:657 GST_TAG_CONTAINER_FORMAT : aliased constant String := "container-format" & ASCII.NUL; -- gst/gsttaglist.h:665 GST_TAG_BITRATE : aliased constant String := "bitrate" & ASCII.NUL; -- gst/gsttaglist.h:671 GST_TAG_NOMINAL_BITRATE : aliased constant String := "nominal-bitrate" & ASCII.NUL; -- gst/gsttaglist.h:678 GST_TAG_MINIMUM_BITRATE : aliased constant String := "minimum-bitrate" & ASCII.NUL; -- gst/gsttaglist.h:684 GST_TAG_MAXIMUM_BITRATE : aliased constant String := "maximum-bitrate" & ASCII.NUL; -- gst/gsttaglist.h:690 GST_TAG_SERIAL : aliased constant String := "serial" & ASCII.NUL; -- gst/gsttaglist.h:696 GST_TAG_ENCODER : aliased constant String := "encoder" & ASCII.NUL; -- gst/gsttaglist.h:702 GST_TAG_ENCODER_VERSION : aliased constant String := "encoder-version" & ASCII.NUL; -- gst/gsttaglist.h:708 GST_TAG_TRACK_GAIN : aliased constant String := "replaygain-track-gain" & ASCII.NUL; -- gst/gsttaglist.h:714 GST_TAG_TRACK_PEAK : aliased constant String := "replaygain-track-peak" & ASCII.NUL; -- gst/gsttaglist.h:720 GST_TAG_ALBUM_GAIN : aliased constant String := "replaygain-album-gain" & ASCII.NUL; -- gst/gsttaglist.h:726 GST_TAG_ALBUM_PEAK : aliased constant String := "replaygain-album-peak" & ASCII.NUL; -- gst/gsttaglist.h:732 GST_TAG_REFERENCE_LEVEL : aliased constant String := "replaygain-reference-level" & ASCII.NUL; -- gst/gsttaglist.h:740 GST_TAG_LANGUAGE_CODE : aliased constant String := "language-code" & ASCII.NUL; -- gst/gsttaglist.h:746 GST_TAG_IMAGE : aliased constant String := "image" & ASCII.NUL; -- gst/gsttaglist.h:755 GST_TAG_PREVIEW_IMAGE : aliased constant String := "preview-image" & ASCII.NUL; -- gst/gsttaglist.h:764 GST_TAG_ATTACHMENT : aliased constant String := "attachment" & ASCII.NUL; -- gst/gsttaglist.h:775 GST_TAG_BEATS_PER_MINUTE : aliased constant String := "beats-per-minute" & ASCII.NUL; -- gst/gsttaglist.h:784 GST_TAG_KEYWORDS : aliased constant String := "keywords" & ASCII.NUL; -- gst/gsttaglist.h:793 GST_TAG_GEO_LOCATION_NAME : aliased constant String := "geo-location-name" & ASCII.NUL; -- gst/gsttaglist.h:803 GST_TAG_GEO_LOCATION_LATITUDE : aliased constant String := "geo-location-latitude" & ASCII.NUL; -- gst/gsttaglist.h:814 GST_TAG_GEO_LOCATION_LONGITUDE : aliased constant String := "geo-location-longitude" & ASCII.NUL; -- gst/gsttaglist.h:825 GST_TAG_GEO_LOCATION_ELEVATION : aliased constant String := "geo-location-elevation" & ASCII.NUL; -- gst/gsttaglist.h:835 GST_TAG_GEO_LOCATION_COUNTRY : aliased constant String := "geo-location-country" & ASCII.NUL; -- gst/gsttaglist.h:843 GST_TAG_GEO_LOCATION_CITY : aliased constant String := "geo-location-city" & ASCII.NUL; -- gst/gsttaglist.h:851 GST_TAG_GEO_LOCATION_SUBLOCATION : aliased constant String := "geo-location-sublocation" & ASCII.NUL; -- gst/gsttaglist.h:863 GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR : aliased constant String := "geo-location-horizontal-error" & ASCII.NUL; -- gst/gsttaglist.h:872 GST_TAG_GEO_LOCATION_MOVEMENT_SPEED : aliased constant String := "geo-location-movement-speed" & ASCII.NUL; -- gst/gsttaglist.h:883 GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION : aliased constant String := "geo-location-movement-direction" & ASCII.NUL; -- gst/gsttaglist.h:895 GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION : aliased constant String := "geo-location-capture-direction" & ASCII.NUL; -- gst/gsttaglist.h:907 GST_TAG_SHOW_NAME : aliased constant String := "show-name" & ASCII.NUL; -- gst/gsttaglist.h:915 GST_TAG_SHOW_SORTNAME : aliased constant String := "show-sortname" & ASCII.NUL; -- gst/gsttaglist.h:923 GST_TAG_SHOW_EPISODE_NUMBER : aliased constant String := "show-episode-number" & ASCII.NUL; -- gst/gsttaglist.h:931 GST_TAG_SHOW_SEASON_NUMBER : aliased constant String := "show-season-number" & ASCII.NUL; -- gst/gsttaglist.h:939 GST_TAG_LYRICS : aliased constant String := "lyrics" & ASCII.NUL; -- gst/gsttaglist.h:947 GST_TAG_COMPOSER_SORTNAME : aliased constant String := "composer-sortname" & ASCII.NUL; -- gst/gsttaglist.h:955 GST_TAG_GROUPING : aliased constant String := "grouping" & ASCII.NUL; -- gst/gsttaglist.h:964 GST_TAG_USER_RATING : aliased constant String := "user-rating" & ASCII.NUL; -- gst/gsttaglist.h:974 GST_TAG_DEVICE_MANUFACTURER : aliased constant String := "device-manufacturer" & ASCII.NUL; -- gst/gsttaglist.h:982 GST_TAG_DEVICE_MODEL : aliased constant String := "device-model" & ASCII.NUL; -- gst/gsttaglist.h:990 GST_TAG_APPLICATION_NAME : aliased constant String := "application-name" & ASCII.NUL; -- gst/gsttaglist.h:998 GST_TAG_APPLICATION_DATA : aliased constant String := "application-data" & ASCII.NUL; -- gst/gsttaglist.h:1009 GST_TAG_IMAGE_ORIENTATION : aliased constant String := "image-orientation" & ASCII.NUL; -- gst/gsttaglist.h:1035 -- GStreamer -- * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de> -- * -- * gsttaglist.h: Header for tag support -- * -- * This library is free software; you can redistribute it and/or -- * modify it under the terms of the GNU Library General Public -- * License as published by the Free Software Foundation; either -- * version 2 of the License, or (at your option) any later version. -- * -- * This library is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Library General Public License for more details. -- * -- * You should have received a copy of the GNU Library General Public -- * License along with this library; if not, write to the -- * Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- * Boston, MA 02111-1307, USA. -- --* -- * GstTagMergeMode: -- * @GST_TAG_MERGE_UNDEFINED: undefined merge mode -- * @GST_TAG_MERGE_REPLACE_ALL: replace all tags (clear list and append) -- * @GST_TAG_MERGE_REPLACE: replace tags -- * @GST_TAG_MERGE_APPEND: append tags -- * @GST_TAG_MERGE_PREPEND: prepend tags -- * @GST_TAG_MERGE_KEEP: keep existing tags -- * @GST_TAG_MERGE_KEEP_ALL: keep all existing tags -- * @GST_TAG_MERGE_COUNT: the number of merge modes -- * -- * The different tag merging modes are basically replace, overwrite and append, -- * but they can be seen from two directions. Given two taglists: (A) the tags -- * already in the element and (B) the ones that are supplied to the element ( -- * e.g. via gst_tag_setter_merge_tags() / gst_tag_setter_add_tags() or a -- * %GST_EVENT_TAG), how are these tags merged? -- * In the table below this is shown for the cases that a tag exists in the list -- * (A) or does not exists (!A) and combinations thereof. -- * -- * <table frame="all" colsep="1" rowsep="1"> -- * <title>merge mode</title> -- * <tgroup cols='5' align='left'> -- * <thead> -- * <row> -- * <entry>merge mode</entry> -- * <entry>A + B</entry> -- * <entry>A + !B</entry> -- * <entry>!A + B</entry> -- * <entry>!A + !B</entry> -- * </row> -- * </thead> -- * <tbody> -- * <row> -- * <entry>REPLACE_ALL</entry> -- * <entry>B</entry> -- * <entry>-</entry> -- * <entry>B</entry> -- * <entry>-</entry> -- * </row> -- * <row> -- * <entry>REPLACE</entry> -- * <entry>B</entry> -- * <entry>A</entry> -- * <entry>B</entry> -- * <entry>-</entry> -- * </row> -- * <row> -- * <entry>APPEND</entry> -- * <entry>A, B</entry> -- * <entry>A</entry> -- * <entry>B</entry> -- * <entry>-</entry> -- * </row> -- * <row> -- * <entry>PREPEND</entry> -- * <entry>B, A</entry> -- * <entry>A</entry> -- * <entry>B</entry> -- * <entry>-</entry> -- * </row> -- * <row> -- * <entry>KEEP</entry> -- * <entry>A</entry> -- * <entry>A</entry> -- * <entry>B</entry> -- * <entry>-</entry> -- * </row> -- * <row> -- * <entry>KEEP_ALL</entry> -- * <entry>A</entry> -- * <entry>A</entry> -- * <entry>-</entry> -- * <entry>-</entry> -- * </row> -- * </tbody> -- * </tgroup> -- * </table> -- -- add more type GstTagMergeMode is (GST_TAG_MERGE_UNDEFINED, GST_TAG_MERGE_REPLACE_ALL, GST_TAG_MERGE_REPLACE, GST_TAG_MERGE_APPEND, GST_TAG_MERGE_PREPEND, GST_TAG_MERGE_KEEP, GST_TAG_MERGE_KEEP_ALL, GST_TAG_MERGE_COUNT); pragma Convention (C, GstTagMergeMode); -- gst/gsttaglist.h:121 --* -- * GstTagFlag: -- * @GST_TAG_FLAG_UNDEFINED: undefined flag -- * @GST_TAG_FLAG_META: tag is meta data -- * @GST_TAG_FLAG_ENCODED: tag is encoded -- * @GST_TAG_FLAG_DECODED: tag is decoded -- * @GST_TAG_FLAG_COUNT: number of tag flags -- * -- * Extra tag flags used when registering tags. -- type GstTagFlag is (GST_TAG_FLAG_UNDEFINED, GST_TAG_FLAG_META, GST_TAG_FLAG_ENCODED, GST_TAG_FLAG_DECODED, GST_TAG_FLAG_COUNT); pragma Convention (C, GstTagFlag); -- gst/gsttaglist.h:141 -- FIXME 0.11: Don't typedef GstTagList to be a GstStructure, they're -- * internally the same but not from an API point of view. -- * See bug #518934. -- --* -- * GstTagList: -- * -- * Opaque #GstTagList data structure. -- type GstTagList is new GStreamer.GST_Low_Level.gstreamer_0_10_gst_gststructure_h.GstStructure; -- gst/gsttaglist.h:160 --* -- * GstTagForeachFunc: -- * @list: the #GstTagList -- * @tag: a name of a tag in @list -- * @user_data: user data -- * -- * A function that will be called in gst_tag_list_foreach(). The function may -- * not modify the tag list. -- type GstTagForeachFunc is access procedure (arg1 : access constant GstTagList; arg2 : access GLIB.gchar; arg3 : System.Address); pragma Convention (C, GstTagForeachFunc); -- gst/gsttaglist.h:177 --* -- * GstTagMergeFunc: -- * @dest: the destination #GValue -- * @src: the source #GValue -- * -- * A function for merging multiple values of a tag used when registering -- * tags. -- type GstTagMergeFunc is access procedure (arg1 : access Glib.Values.GValue; arg2 : access constant Glib.Values.GValue); pragma Convention (C, GstTagMergeFunc); -- gst/gsttaglist.h:189 function gst_tag_list_get_type return GLIB.GType; -- gst/gsttaglist.h:191 pragma Import (C, gst_tag_list_get_type, "gst_tag_list_get_type"); -- tag registration procedure gst_tag_register (name : access GLIB.gchar; flag : GstTagFlag; c_type : GLIB.GType; nick : access GLIB.gchar; blurb : access GLIB.gchar; func : GstTagMergeFunc); -- gst/gsttaglist.h:194 pragma Import (C, gst_tag_register, "gst_tag_register"); -- some default merging functions procedure gst_tag_merge_use_first (dest : access Glib.Values.GValue; src : access constant Glib.Values.GValue); -- gst/gsttaglist.h:202 pragma Import (C, gst_tag_merge_use_first, "gst_tag_merge_use_first"); procedure gst_tag_merge_strings_with_comma (dest : access Glib.Values.GValue; src : access constant Glib.Values.GValue); -- gst/gsttaglist.h:203 pragma Import (C, gst_tag_merge_strings_with_comma, "gst_tag_merge_strings_with_comma"); -- basic tag support function gst_tag_exists (tag : access GLIB.gchar) return GLIB.gboolean; -- gst/gsttaglist.h:206 pragma Import (C, gst_tag_exists, "gst_tag_exists"); function gst_tag_get_type (tag : access GLIB.gchar) return GLIB.GType; -- gst/gsttaglist.h:207 pragma Import (C, gst_tag_get_type, "gst_tag_get_type"); function gst_tag_get_nick (tag : access GLIB.gchar) return access GLIB.gchar; -- gst/gsttaglist.h:208 pragma Import (C, gst_tag_get_nick, "gst_tag_get_nick"); function gst_tag_get_description (tag : access GLIB.gchar) return access GLIB.gchar; -- gst/gsttaglist.h:209 pragma Import (C, gst_tag_get_description, "gst_tag_get_description"); function gst_tag_get_flag (tag : access GLIB.gchar) return GstTagFlag; -- gst/gsttaglist.h:210 pragma Import (C, gst_tag_get_flag, "gst_tag_get_flag"); function gst_tag_is_fixed (tag : access GLIB.gchar) return GLIB.gboolean; -- gst/gsttaglist.h:211 pragma Import (C, gst_tag_is_fixed, "gst_tag_is_fixed"); -- tag lists function gst_tag_list_new return access GstTagList; -- gst/gsttaglist.h:214 pragma Import (C, gst_tag_list_new, "gst_tag_list_new"); function gst_tag_list_new_full (tag : access GLIB.gchar -- , ... ) return access GstTagList; -- gst/gsttaglist.h:215 pragma Import (C, gst_tag_list_new_full, "gst_tag_list_new_full"); function gst_tag_list_new_full_valist (var_args : access System.Address) return access GstTagList; -- gst/gsttaglist.h:216 pragma Import (C, gst_tag_list_new_full_valist, "gst_tag_list_new_full_valist"); function gst_tag_list_to_string (list : access constant GstTagList) return access GLIB.gchar; -- gst/gsttaglist.h:218 pragma Import (C, gst_tag_list_to_string, "gst_tag_list_to_string"); function gst_tag_list_new_from_string (str : access GLIB.gchar) return access GstTagList; -- gst/gsttaglist.h:219 pragma Import (C, gst_tag_list_new_from_string, "gst_tag_list_new_from_string"); function gst_is_tag_list (p : Interfaces.C.Extensions.void_ptr) return GLIB.gboolean; -- gst/gsttaglist.h:221 pragma Import (C, gst_is_tag_list, "gst_is_tag_list"); function gst_tag_list_copy (list : access constant GstTagList) return access GstTagList; -- gst/gsttaglist.h:222 pragma Import (C, gst_tag_list_copy, "gst_tag_list_copy"); function gst_tag_list_is_empty (list : access constant GstTagList) return GLIB.gboolean; -- gst/gsttaglist.h:223 pragma Import (C, gst_tag_list_is_empty, "gst_tag_list_is_empty"); function gst_tag_list_is_equal (list1 : access constant GstTagList; list2 : access constant GstTagList) return GLIB.gboolean; -- gst/gsttaglist.h:224 pragma Import (C, gst_tag_list_is_equal, "gst_tag_list_is_equal"); procedure gst_tag_list_insert (into : access GstTagList; from : access constant GstTagList; mode : GstTagMergeMode); -- gst/gsttaglist.h:226 pragma Import (C, gst_tag_list_insert, "gst_tag_list_insert"); function gst_tag_list_merge (list1 : access constant GstTagList; list2 : access constant GstTagList; mode : GstTagMergeMode) return access GstTagList; -- gst/gsttaglist.h:229 pragma Import (C, gst_tag_list_merge, "gst_tag_list_merge"); procedure gst_tag_list_free (list : access GstTagList); -- gst/gsttaglist.h:232 pragma Import (C, gst_tag_list_free, "gst_tag_list_free"); function gst_tag_list_get_tag_size (list : access constant GstTagList; tag : access GLIB.gchar) return GLIB.guint; -- gst/gsttaglist.h:233 pragma Import (C, gst_tag_list_get_tag_size, "gst_tag_list_get_tag_size"); procedure gst_tag_list_add (list : access GstTagList; mode : GstTagMergeMode; tag : access GLIB.gchar -- , ... ); -- gst/gsttaglist.h:235 pragma Import (C, gst_tag_list_add, "gst_tag_list_add"); procedure gst_tag_list_add_values (list : access GstTagList; mode : GstTagMergeMode; tag : access GLIB.gchar -- , ... ); -- gst/gsttaglist.h:239 pragma Import (C, gst_tag_list_add_values, "gst_tag_list_add_values"); procedure gst_tag_list_add_valist (list : access GstTagList; mode : GstTagMergeMode; tag : access GLIB.gchar; var_args : access System.Address); -- gst/gsttaglist.h:243 pragma Import (C, gst_tag_list_add_valist, "gst_tag_list_add_valist"); procedure gst_tag_list_add_valist_values (list : access GstTagList; mode : GstTagMergeMode; tag : access GLIB.gchar; var_args : access System.Address); -- gst/gsttaglist.h:247 pragma Import (C, gst_tag_list_add_valist_values, "gst_tag_list_add_valist_values"); procedure gst_tag_list_add_value (list : access GstTagList; mode : GstTagMergeMode; tag : access GLIB.gchar; value : access constant Glib.Values.GValue); -- gst/gsttaglist.h:251 pragma Import (C, gst_tag_list_add_value, "gst_tag_list_add_value"); procedure gst_tag_list_remove_tag (list : access GstTagList; tag : access GLIB.gchar); -- gst/gsttaglist.h:255 pragma Import (C, gst_tag_list_remove_tag, "gst_tag_list_remove_tag"); procedure gst_tag_list_foreach (list : access constant GstTagList; func : GstTagForeachFunc; user_data : System.Address); -- gst/gsttaglist.h:257 pragma Import (C, gst_tag_list_foreach, "gst_tag_list_foreach"); function gst_tag_list_get_value_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint) return access constant Glib.Values.GValue; -- gst/gsttaglist.h:262 pragma Import (C, gst_tag_list_get_value_index, "gst_tag_list_get_value_index"); function gst_tag_list_copy_value (dest : access Glib.Values.GValue; list : access constant GstTagList; tag : access GLIB.gchar) return GLIB.gboolean; -- gst/gsttaglist.h:265 pragma Import (C, gst_tag_list_copy_value, "gst_tag_list_copy_value"); -- simplifications (FIXME: do we want them?) function gst_tag_list_get_char (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.gchar) return GLIB.gboolean; -- gst/gsttaglist.h:270 pragma Import (C, gst_tag_list_get_char, "gst_tag_list_get_char"); function gst_tag_list_get_char_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.gchar) return GLIB.gboolean; -- gst/gsttaglist.h:273 pragma Import (C, gst_tag_list_get_char_index, "gst_tag_list_get_char_index"); function gst_tag_list_get_uchar (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.guchar) return GLIB.gboolean; -- gst/gsttaglist.h:277 pragma Import (C, gst_tag_list_get_uchar, "gst_tag_list_get_uchar"); function gst_tag_list_get_uchar_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.guchar) return GLIB.gboolean; -- gst/gsttaglist.h:280 pragma Import (C, gst_tag_list_get_uchar_index, "gst_tag_list_get_uchar_index"); function gst_tag_list_get_boolean (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.gboolean) return GLIB.gboolean; -- gst/gsttaglist.h:284 pragma Import (C, gst_tag_list_get_boolean, "gst_tag_list_get_boolean"); function gst_tag_list_get_boolean_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.gboolean) return GLIB.gboolean; -- gst/gsttaglist.h:287 pragma Import (C, gst_tag_list_get_boolean_index, "gst_tag_list_get_boolean_index"); function gst_tag_list_get_int (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.gint) return GLIB.gboolean; -- gst/gsttaglist.h:291 pragma Import (C, gst_tag_list_get_int, "gst_tag_list_get_int"); function gst_tag_list_get_int_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.gint) return GLIB.gboolean; -- gst/gsttaglist.h:294 pragma Import (C, gst_tag_list_get_int_index, "gst_tag_list_get_int_index"); function gst_tag_list_get_uint (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.guint) return GLIB.gboolean; -- gst/gsttaglist.h:298 pragma Import (C, gst_tag_list_get_uint, "gst_tag_list_get_uint"); function gst_tag_list_get_uint_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.guint) return GLIB.gboolean; -- gst/gsttaglist.h:301 pragma Import (C, gst_tag_list_get_uint_index, "gst_tag_list_get_uint_index"); function gst_tag_list_get_long (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.glong) return GLIB.gboolean; -- gst/gsttaglist.h:305 pragma Import (C, gst_tag_list_get_long, "gst_tag_list_get_long"); function gst_tag_list_get_long_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.glong) return GLIB.gboolean; -- gst/gsttaglist.h:308 pragma Import (C, gst_tag_list_get_long_index, "gst_tag_list_get_long_index"); function gst_tag_list_get_ulong (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.gulong) return GLIB.gboolean; -- gst/gsttaglist.h:312 pragma Import (C, gst_tag_list_get_ulong, "gst_tag_list_get_ulong"); function gst_tag_list_get_ulong_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.gulong) return GLIB.gboolean; -- gst/gsttaglist.h:315 pragma Import (C, gst_tag_list_get_ulong_index, "gst_tag_list_get_ulong_index"); function gst_tag_list_get_int64 (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.gint64) return GLIB.gboolean; -- gst/gsttaglist.h:319 pragma Import (C, gst_tag_list_get_int64, "gst_tag_list_get_int64"); function gst_tag_list_get_int64_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.gint64) return GLIB.gboolean; -- gst/gsttaglist.h:322 pragma Import (C, gst_tag_list_get_int64_index, "gst_tag_list_get_int64_index"); function gst_tag_list_get_uint64 (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.guint64) return GLIB.gboolean; -- gst/gsttaglist.h:326 pragma Import (C, gst_tag_list_get_uint64, "gst_tag_list_get_uint64"); function gst_tag_list_get_uint64_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.guint64) return GLIB.gboolean; -- gst/gsttaglist.h:329 pragma Import (C, gst_tag_list_get_uint64_index, "gst_tag_list_get_uint64_index"); function gst_tag_list_get_float (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.gfloat) return GLIB.gboolean; -- gst/gsttaglist.h:333 pragma Import (C, gst_tag_list_get_float, "gst_tag_list_get_float"); function gst_tag_list_get_float_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.gfloat) return GLIB.gboolean; -- gst/gsttaglist.h:336 pragma Import (C, gst_tag_list_get_float_index, "gst_tag_list_get_float_index"); function gst_tag_list_get_double (list : access constant GstTagList; tag : access GLIB.gchar; value : access GLIB.gdouble) return GLIB.gboolean; -- gst/gsttaglist.h:340 pragma Import (C, gst_tag_list_get_double, "gst_tag_list_get_double"); function gst_tag_list_get_double_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : access GLIB.gdouble) return GLIB.gboolean; -- gst/gsttaglist.h:343 pragma Import (C, gst_tag_list_get_double_index, "gst_tag_list_get_double_index"); function gst_tag_list_get_string (list : access constant GstTagList; tag : access GLIB.gchar; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:347 pragma Import (C, gst_tag_list_get_string, "gst_tag_list_get_string"); function gst_tag_list_get_string_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:350 pragma Import (C, gst_tag_list_get_string_index, "gst_tag_list_get_string_index"); function gst_tag_list_peek_string_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:354 pragma Import (C, gst_tag_list_peek_string_index, "gst_tag_list_peek_string_index"); function gst_tag_list_get_pointer (list : access constant GstTagList; tag : access GLIB.gchar; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:358 pragma Import (C, gst_tag_list_get_pointer, "gst_tag_list_get_pointer"); function gst_tag_list_get_pointer_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:361 pragma Import (C, gst_tag_list_get_pointer_index, "gst_tag_list_get_pointer_index"); function gst_tag_list_get_date (list : access constant GstTagList; tag : access GLIB.gchar; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:365 pragma Import (C, gst_tag_list_get_date, "gst_tag_list_get_date"); function gst_tag_list_get_date_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:368 pragma Import (C, gst_tag_list_get_date_index, "gst_tag_list_get_date_index"); function gst_tag_list_get_date_time (list : access constant GstTagList; tag : access GLIB.gchar; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:372 pragma Import (C, gst_tag_list_get_date_time, "gst_tag_list_get_date_time"); function gst_tag_list_get_date_time_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:375 pragma Import (C, gst_tag_list_get_date_time_index, "gst_tag_list_get_date_time_index"); function gst_tag_list_get_buffer (list : access constant GstTagList; tag : access GLIB.gchar; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:379 pragma Import (C, gst_tag_list_get_buffer, "gst_tag_list_get_buffer"); function gst_tag_list_get_buffer_index (list : access constant GstTagList; tag : access GLIB.gchar; index : GLIB.guint; value : System.Address) return GLIB.gboolean; -- gst/gsttaglist.h:382 pragma Import (C, gst_tag_list_get_buffer_index, "gst_tag_list_get_buffer_index"); -- GStreamer core tags --* -- * GST_TAG_TITLE: -- * -- * commonly used title (string) -- * -- * The title as it should be displayed, e.g. 'The Doll House' -- --* -- * GST_TAG_TITLE_SORTNAME: -- * -- * commonly used title, as used for sorting (string) -- * -- * The title as it should be sorted, e.g. 'Doll House, The' -- * -- * Since: 0.10.15 -- --* -- * GST_TAG_ARTIST: -- * -- * person(s) responsible for the recording (string) -- * -- * The artist name as it should be displayed, e.g. 'Jimi Hendrix' or -- * 'The Guitar Heroes' -- --* -- * GST_TAG_ARTIST_SORTNAME: -- * -- * person(s) responsible for the recording, as used for sorting (string) -- * -- * The artist name as it should be sorted, e.g. 'Hendrix, Jimi' or -- * 'Guitar Heroes, The' -- * -- * Since: 0.10.15 -- -- FIXME 0.11: change to "artist-sortname" --* -- * GST_TAG_ALBUM: -- * -- * album containing this data (string) -- * -- * The album name as it should be displayed, e.g. 'The Jazz Guitar' -- --* -- * GST_TAG_ALBUM_SORTNAME: -- * -- * album containing this data, as used for sorting (string) -- * -- * The album name as it should be sorted, e.g. 'Jazz Guitar, The' -- * -- * Since: 0.10.15 -- --* -- * GST_TAG_ALBUM_ARTIST: -- * -- * The artist of the entire album, as it should be displayed. -- * -- * Since: 0.10.25 -- --* -- * GST_TAG_ALBUM_ARTIST_SORTNAME: -- * -- * The artist of the entire album, as it should be sorted. -- * -- * Since: 0.10.25 -- --* -- * GST_TAG_COMPOSER: -- * -- * person(s) who composed the recording (string) -- * -- * Since: 0.10.15 -- --* -- * GST_TAG_DATE: -- * -- * date the data was created (#GDate structure) -- --* -- * GST_TAG_DATE_TIME: -- * -- * date and time the data was created (#GstDateTime structure) -- * -- * Since: 0.10.31 -- --* -- * GST_TAG_GENRE: -- * -- * genre this data belongs to (string) -- --* -- * GST_TAG_COMMENT: -- * -- * free text commenting the data (string) -- --* -- * GST_TAG_EXTENDED_COMMENT: -- * -- * key/value text commenting the data (string) -- * -- * Must be in the form of 'key=comment' or -- * 'key[lc]=comment' where 'lc' is an ISO-639 -- * language code. -- * -- * This tag is used for unknown Vorbis comment tags, -- * unknown APE tags and certain ID3v2 comment fields. -- * -- * Since: 0.10.10 -- --* -- * GST_TAG_TRACK_NUMBER: -- * -- * track number inside a collection (unsigned integer) -- --* -- * GST_TAG_TRACK_COUNT: -- * -- * count of tracks inside collection this track belongs to (unsigned integer) -- --* -- * GST_TAG_ALBUM_VOLUME_NUMBER: -- * -- * disc number inside a collection (unsigned integer) -- --* -- * GST_TAG_ALBUM_VOLUME_COUNT: -- * -- * count of discs inside collection this disc belongs to (unsigned integer) -- --* -- * GST_TAG_LOCATION: -- * -- * Origin of media as a URI (location, where the original of the file or stream -- * is hosted) (string) -- --* -- * GST_TAG_HOMEPAGE: -- * -- * Homepage for this media (i.e. artist or movie homepage) (string) -- * -- * Since: 0.10.23 -- --* -- * GST_TAG_DESCRIPTION: -- * -- * short text describing the content of the data (string) -- --* -- * GST_TAG_VERSION: -- * -- * version of this data (string) -- --* -- * GST_TAG_ISRC: -- * -- * International Standard Recording Code - see http://www.ifpi.org/isrc/ (string) -- --* -- * GST_TAG_ORGANIZATION: -- * -- * organization (string) -- --* -- * GST_TAG_COPYRIGHT: -- * -- * copyright notice of the data (string) -- --* -- * GST_TAG_COPYRIGHT_URI: -- * -- * URI to location where copyright details can be found (string) -- * -- * Since: 0.10.14 -- --* -- * GST_TAG_ENCODED_BY: -- * -- * name of the person or organisation that encoded the file. May contain a -- * copyright message if the person or organisation also holds the copyright -- * (string) -- * -- * Note: do not use this field to describe the encoding application. Use -- * #GST_TAG_APPLICATION_NAME or #GST_TAG_COMMENT for that. -- * -- * Since: 0.10.33 -- --* -- * GST_TAG_CONTACT: -- * -- * contact information (string) -- --* -- * GST_TAG_LICENSE: -- * -- * license of data (string) -- --* -- * GST_TAG_LICENSE_URI: -- * -- * URI to location where license details can be found (string) -- * -- * Since: 0.10.14 -- --* -- * GST_TAG_PERFORMER: -- * -- * person(s) performing (string) -- --* -- * GST_TAG_DURATION: -- * -- * length in GStreamer time units (nanoseconds) (unsigned 64-bit integer) -- --* -- * GST_TAG_CODEC: -- * -- * codec the data is stored in (string) -- --* -- * GST_TAG_VIDEO_CODEC: -- * -- * codec the video data is stored in (string) -- --* -- * GST_TAG_AUDIO_CODEC: -- * -- * codec the audio data is stored in (string) -- --* -- * GST_TAG_SUBTITLE_CODEC: -- * -- * codec/format the subtitle data is stored in (string) -- * -- * Since: 0.10.23 -- --* -- * GST_TAG_CONTAINER_FORMAT: -- * -- * container format the data is stored in (string) -- * -- * Since: 0.10.24 -- --* -- * GST_TAG_BITRATE: -- * -- * exact or average bitrate in bits/s (unsigned integer) -- --* -- * GST_TAG_NOMINAL_BITRATE: -- * -- * nominal bitrate in bits/s (unsigned integer). The actual bitrate might be -- * different from this target bitrate. -- --* -- * GST_TAG_MINIMUM_BITRATE: -- * -- * minimum bitrate in bits/s (unsigned integer) -- --* -- * GST_TAG_MAXIMUM_BITRATE: -- * -- * maximum bitrate in bits/s (unsigned integer) -- --* -- * GST_TAG_SERIAL: -- * -- * serial number of track (unsigned integer) -- --* -- * GST_TAG_ENCODER: -- * -- * encoder used to encode this stream (string) -- --* -- * GST_TAG_ENCODER_VERSION: -- * -- * version of the encoder used to encode this stream (unsigned integer) -- --* -- * GST_TAG_TRACK_GAIN: -- * -- * track gain in db (double) -- --* -- * GST_TAG_TRACK_PEAK: -- * -- * peak of the track (double) -- --* -- * GST_TAG_ALBUM_GAIN: -- * -- * album gain in db (double) -- --* -- * GST_TAG_ALBUM_PEAK: -- * -- * peak of the album (double) -- --* -- * GST_TAG_REFERENCE_LEVEL: -- * -- * reference level of track and album gain values (double) -- * -- * Since: 0.10.12 -- --* -- * GST_TAG_LANGUAGE_CODE: -- * -- * Language code (ISO-639-1) (string) of the content -- --* -- * GST_TAG_IMAGE: -- * -- * image (buffer) (buffer caps should specify the content type and preferably -- * also set "image-type" field as #GstTagImageType) -- * -- * Since: 0.10.6 -- --* -- * GST_TAG_PREVIEW_IMAGE: -- * -- * image that is meant for preview purposes, e.g. small icon-sized version -- * (buffer) (buffer caps should specify the content type) -- * -- * Since: 0.10.7 -- --* -- * GST_TAG_ATTACHMENT: -- * -- * generic file attachment (buffer) (buffer caps should specify the content -- * type and if possible set "filename" to the file name of the -- * attachment) -- * -- * Since: 0.10.21 -- --* -- * GST_TAG_BEATS_PER_MINUTE: -- * -- * number of beats per minute in audio (double) -- * -- * Since: 0.10.12 -- --* -- * GST_TAG_KEYWORDS: -- * -- * comma separated keywords describing the content (string). -- * -- * Since: 0.10.21 -- --* -- * GST_TAG_GEO_LOCATION_NAME: -- * -- * human readable descriptive location of where the media has been recorded or -- * produced. (string). -- * -- * Since: 0.10.21 -- --* -- * GST_TAG_GEO_LOCATION_LATITUDE: -- * -- * geo latitude location of where the media has been recorded or produced in -- * degrees according to WGS84 (zero at the equator, negative values for southern -- * latitudes) (double). -- * -- * Since: 0.10.21 -- --* -- * GST_TAG_GEO_LOCATION_LONGITUDE: -- * -- * geo longitude location of where the media has been recorded or produced in -- * degrees according to WGS84 (zero at the prime meridian in Greenwich/UK, -- * negative values for western longitudes). (double). -- * -- * Since: 0.10.21 -- --* -- * GST_TAG_GEO_LOCATION_ELEVATION: -- * -- * geo elevation of where the media has been recorded or produced in meters -- * according to WGS84 (zero is average sea level) (double). -- * -- * Since: 0.10.21 -- --* -- * GST_TAG_GEO_LOCATION_COUNTRY: -- * -- * The country (english name) where the media has been produced (string). -- * -- * Since: 0.10.29 -- --* -- * GST_TAG_GEO_LOCATION_CITY: -- * -- * The city (english name) where the media has been produced (string). -- * -- * Since: 0.10.29 -- --* -- * GST_TAG_GEO_LOCATION_SUBLOCATION: -- * -- * A location 'smaller' than GST_TAG_GEO_LOCATION_CITY that specifies better -- * where the media has been produced. (e.g. the neighborhood) (string). -- * -- * This tag has been added as this is how it is handled/named in XMP's -- * Iptc4xmpcore schema. -- * -- * Since: 0.10.29 -- --* -- * GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR: -- * -- * Represents the expected error on the horizontal positioning in -- * meters (double). -- * -- * Since: 0.10.31 -- --* -- * GST_TAG_GEO_LOCATION_MOVEMENT_SPEED: -- * -- * Speed of the capturing device when performing the capture. -- * Represented in m/s. (double) -- * -- * See also #GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION -- * -- * Since 0.10.30 -- --* -- * GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION: -- * -- * Indicates the movement direction of the device performing the capture -- * of a media. It is represented as degrees in floating point representation, -- * 0 means the geographic north, and increases clockwise (double from 0 to 360) -- * -- * See also #GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION -- * -- * Since: 0.10.30 -- --* -- * GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION: -- * -- * Indicates the direction the device is pointing to when capturing -- * a media. It is represented as degrees in floating point representation, -- * 0 means the geographic north, and increases clockwise (double from 0 to 360) -- * -- * See also #GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION -- * -- * Since: 0.10.30 -- --* -- * GST_TAG_SHOW_NAME: -- * -- * Name of the show, used for displaying (string) -- * -- * Since: 0.10.26 -- --* -- * GST_TAG_SHOW_SORTNAME: -- * -- * Name of the show, used for sorting (string) -- * -- * Since: 0.10.26 -- --* -- * GST_TAG_SHOW_EPISODE_NUMBER: -- * -- * Number of the episode within a season/show (unsigned integer) -- * -- * Since: 0.10.26 -- --* -- * GST_TAG_SHOW_SEASON_NUMBER: -- * -- * Number of the season of a show/series (unsigned integer) -- * -- * Since: 0.10.26 -- --* -- * GST_TAG_LYRICS: -- * -- * The lyrics of the media (string) -- * -- * Since: 0.10.26 -- --* -- * GST_TAG_COMPOSER_SORTNAME: -- * -- * The composer's name, used for sorting (string) -- * -- * Since: 0.10.26 -- --* -- * GST_TAG_GROUPING: -- * -- * Groups together media that are related and spans multiple tracks. An -- * example are multiple pieces of a concerto. (string) -- * -- * Since: 0.10.26 -- --* -- * GST_TAG_USER_RATING: -- * -- * Rating attributed by a person (likely the application user). -- * The higher the value, the more the user likes this media -- * (unsigned int from 0 to 100) -- * -- * Since: 0.10.29 -- --* -- * GST_TAG_DEVICE_MANUFACTURER: -- * -- * Manufacturer of the device used to create the media (string) -- * -- * Since: 0.10.30 -- --* -- * GST_TAG_DEVICE_MODEL: -- * -- * Model of the device used to create the media (string) -- * -- * Since: 0.10.30 -- --* -- * GST_TAG_APPLICATION_NAME: -- * -- * Name of the application used to create the media (string) -- * -- * Since: 0.10.31 -- --* -- * GST_TAG_APPLICATION_DATA: -- * -- * Arbitrary application data (buffer) -- * -- * Some formats allow application's to add their own arbitrary data -- * into files. This data is application's dependent. -- * -- * Since: 0.10.31 -- --* -- * GST_TAG_IMAGE_ORIENTATION: -- * -- * Represents the 'Orientation' tag from EXIF. Defines how the image -- * should be rotated and mirrored for display. (string) -- * -- * This tag has a predefined set of allowed values: -- * "rotate-0" -- * "rotate-90" -- * "rotate-180" -- * "rotate-270" -- * "flip-rotate-0" -- * "flip-rotate-90" -- * "flip-rotate-180" -- * "flip-rotate-270" -- * -- * The naming is adopted according to a possible transformation to perform -- * on the image to fix its orientation, obviously equivalent operations will -- * yield the same result. -- * -- * Rotations indicated by the values are in clockwise direction and -- * 'flip' means an horizontal mirroring. -- * -- * Since: 0.10.30 -- end GStreamer.GST_Low_Level.gstreamer_0_10_gst_gsttaglist_h;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Lexical_Elements; with Program.Elements.Formal_Ordinary_Fixed_Point_Definitions; with Program.Element_Visitors; package Program.Nodes.Formal_Ordinary_Fixed_Point_Definitions is pragma Preelaborate; type Formal_Ordinary_Fixed_Point_Definition is new Program.Nodes.Node and Program.Elements.Formal_Ordinary_Fixed_Point_Definitions .Formal_Ordinary_Fixed_Point_Definition and Program.Elements.Formal_Ordinary_Fixed_Point_Definitions .Formal_Ordinary_Fixed_Point_Definition_Text with private; function Create (Delta_Token : not null Program.Lexical_Elements.Lexical_Element_Access; Box_Token : not null Program.Lexical_Elements.Lexical_Element_Access) return Formal_Ordinary_Fixed_Point_Definition; type Implicit_Formal_Ordinary_Fixed_Point_Definition is new Program.Nodes.Node and Program.Elements.Formal_Ordinary_Fixed_Point_Definitions .Formal_Ordinary_Fixed_Point_Definition with private; function Create (Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Formal_Ordinary_Fixed_Point_Definition with Pre => Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance; private type Base_Formal_Ordinary_Fixed_Point_Definition is abstract new Program.Nodes.Node and Program.Elements.Formal_Ordinary_Fixed_Point_Definitions .Formal_Ordinary_Fixed_Point_Definition with null record; procedure Initialize (Self : aliased in out Base_Formal_Ordinary_Fixed_Point_Definition'Class); overriding procedure Visit (Self : not null access Base_Formal_Ordinary_Fixed_Point_Definition; Visitor : in out Program.Element_Visitors.Element_Visitor'Class); overriding function Is_Formal_Ordinary_Fixed_Point_Definition_Element (Self : Base_Formal_Ordinary_Fixed_Point_Definition) return Boolean; overriding function Is_Formal_Type_Definition_Element (Self : Base_Formal_Ordinary_Fixed_Point_Definition) return Boolean; overriding function Is_Definition_Element (Self : Base_Formal_Ordinary_Fixed_Point_Definition) return Boolean; type Formal_Ordinary_Fixed_Point_Definition is new Base_Formal_Ordinary_Fixed_Point_Definition and Program.Elements.Formal_Ordinary_Fixed_Point_Definitions .Formal_Ordinary_Fixed_Point_Definition_Text with record Delta_Token : not null Program.Lexical_Elements.Lexical_Element_Access; Box_Token : not null Program.Lexical_Elements.Lexical_Element_Access; end record; overriding function To_Formal_Ordinary_Fixed_Point_Definition_Text (Self : aliased in out Formal_Ordinary_Fixed_Point_Definition) return Program.Elements.Formal_Ordinary_Fixed_Point_Definitions .Formal_Ordinary_Fixed_Point_Definition_Text_Access; overriding function Delta_Token (Self : Formal_Ordinary_Fixed_Point_Definition) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Box_Token (Self : Formal_Ordinary_Fixed_Point_Definition) return not null Program.Lexical_Elements.Lexical_Element_Access; type Implicit_Formal_Ordinary_Fixed_Point_Definition is new Base_Formal_Ordinary_Fixed_Point_Definition with record Is_Part_Of_Implicit : Boolean; Is_Part_Of_Inherited : Boolean; Is_Part_Of_Instance : Boolean; end record; overriding function To_Formal_Ordinary_Fixed_Point_Definition_Text (Self : aliased in out Implicit_Formal_Ordinary_Fixed_Point_Definition) return Program.Elements.Formal_Ordinary_Fixed_Point_Definitions .Formal_Ordinary_Fixed_Point_Definition_Text_Access; overriding function Is_Part_Of_Implicit (Self : Implicit_Formal_Ordinary_Fixed_Point_Definition) return Boolean; overriding function Is_Part_Of_Inherited (Self : Implicit_Formal_Ordinary_Fixed_Point_Definition) return Boolean; overriding function Is_Part_Of_Instance (Self : Implicit_Formal_Ordinary_Fixed_Point_Definition) return Boolean; end Program.Nodes.Formal_Ordinary_Fixed_Point_Definitions;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with Ada.Interrupts.Names; use Ada.Interrupts.Names; with STM32.DMA; use STM32.DMA; with STM32.GPIO; use STM32.GPIO; with STM32.USARTs; use STM32.USARTs; with STM32.Device; use STM32.Device; package Peripherals is Transceiver : USART renames USART_2; Transceiver_AF : constant STM32.GPIO_Alternate_Function := GPIO_AF_USART2_7; TX_Pin : constant GPIO_Point := PA2; RX_Pin : constant GPIO_Point := PA3; Controller : DMA_Controller renames DMA_1; Tx_Channel : constant DMA_Channel_Selector := Channel_4; Tx_Stream : constant DMA_Stream_Selector := Stream_6; -- See RM0090, section 10.3.3, for the DMA channel request mapping tables -- that say which controllers, and which channels and streams on those -- controllers, can connect to which devices. For example, it is channel -- four and stream six that connect DMA1 to the transmitter of USART2, so -- we specify those values above. DMA_Tx_IRQ : constant Ada.Interrupts.Interrupt_ID := DMA1_Stream6_Interrupt; -- must match that of the selected controller and stream number!!!! end Peripherals;
-- Copyright 2010-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Foo is Q: Rec; begin Q := Bar; -- STOP HERE Do_Nothing (Q'Address); end Foo;
<?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>fir</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>y</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>y</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>c</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>32</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>11</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>x</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>30</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>9</id> <name>x_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>52</item> <item>53</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>13</id> <name></name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</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>fir.c</first> <second>fir</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>54</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>15</id> <name>acc</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>acc</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>56</item> <item>57</item> <item>58</item> <item>59</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>16</id> <name>i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>61</item> <item>62</item> <item>63</item> <item>64</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>17</id> <name>i_cast</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>66</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>65</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>66</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>67</item> <item>68</item> <item>70</item> </oprand_edges> <opcode>bitselect</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>20</id> <name></name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>66</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>71</item> <item>72</item> <item>73</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp_1</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>67</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>74</item> <item>76</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>24</id> <name></name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>67</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>77</item> <item>78</item> <item>79</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_7</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>66</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>85</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>27</id> <name>tmp_2</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>71</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>87</item> <item>88</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>28</id> <name>tmp_3</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>71</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>89</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>29</id> <name>shift_reg_addr</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>71</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>90</item> <item>92</item> <item>93</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>30</id> <name>data</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>71</second> </item> </second> </item> </inlineStackInfo> <originalName>data</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>94</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_4</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>71</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>95</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>32</id> <name>shift_reg_addr_1</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>71</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>96</item> <item>97</item> <item>98</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>33</id> <name></name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>71</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>99</item> <item>100</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>34</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>101</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>36</id> <name></name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>68</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>80</item> <item>83</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>37</id> <name></name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>70</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>84</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>39</id> <name>data1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>data</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>102</item> <item>103</item> <item>104</item> <item>105</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_5</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>74</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>106</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>41</id> <name>c_addr</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>107</item> <item>108</item> <item>109</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>42</id> <name>c_load</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>74</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>110</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_6</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>111</item> <item>112</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>44</id> <name>acc_1</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName>acc</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>113</item> <item>114</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>45</id> <name>i_1</name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>115</item> <item>117</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>46</id> <name></name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>66</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>118</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>48</id> <name></name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>76</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>120</item> <item>121</item> <item>122</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>49</id> <name></name> <fileName>fir.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>fir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Introduction/lab3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>fir.c</first> <second>fir</second> </first> <second>77</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>8</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_34"> <Value> <Obj> <type>2</type> <id>55</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_35"> <Value> <Obj> <type>2</type> <id>60</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_36"> <Value> <Obj> <type>2</type> <id>69</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_37"> <Value> <Obj> <type>2</type> <id>75</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_38"> <Value> <Obj> <type>2</type> <id>81</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>3</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_39"> <Value> <Obj> <type>2</type> <id>86</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>15</content> </item> <item class_id_reference="16" object_id="_40"> <Value> <Obj> <type>2</type> <id>91</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_41"> <Value> <Obj> <type>2</type> <id>116</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>31</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="_42"> <Obj> <type>3</type> <id>14</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>9</item> <item>13</item> </node_objs> </item> <item class_id_reference="18" object_id="_43"> <Obj> <type>3</type> <id>21</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>20</item> </node_objs> </item> <item class_id_reference="18" object_id="_44"> <Obj> <type>3</type> <id>25</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>23</item> <item>24</item> </node_objs> </item> <item class_id_reference="18" object_id="_45"> <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>9</count> <item_version>0</item_version> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> </node_objs> </item> <item class_id_reference="18" object_id="_46"> <Obj> <type>3</type> <id>38</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>36</item> <item>37</item> </node_objs> </item> <item class_id_reference="18" object_id="_47"> <Obj> <type>3</type> <id>47</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</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> </node_objs> </item> <item class_id_reference="18" object_id="_48"> <Obj> <type>3</type> <id>50</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>48</item> <item>49</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>66</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_49"> <id>53</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_50"> <id>54</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_51"> <id>56</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_52"> <id>57</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_53"> <id>58</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_54"> <id>59</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_55"> <id>61</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_56"> <id>62</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_57"> <id>63</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_58"> <id>64</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_59"> <id>65</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_60"> <id>68</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_61"> <id>70</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_62"> <id>71</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_63"> <id>72</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_64"> <id>73</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_65"> <id>74</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_66"> <id>76</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_67"> <id>77</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_68"> <id>78</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_69"> <id>79</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_70"> <id>80</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>82</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>83</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>84</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>85</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>87</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>88</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>89</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>90</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>92</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>93</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>94</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>95</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>96</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>97</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>98</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>99</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>100</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>101</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>102</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>103</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>104</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>105</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>106</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>107</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>108</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>109</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>110</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>111</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>112</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>113</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>114</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>115</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>117</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>118</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>121</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>122</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>179</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>180</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>181</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>182</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>183</id> <edge_type>2</edge_type> <source_obj>25</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>184</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>185</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>186</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>21</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_115"> <mId>1</mId> <mTag>fir</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>78</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_116"> <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>14</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="_117"> <mId>3</mId> <mTag>Shift_Accum_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>5</count> <item_version>0</item_version> <item>21</item> <item>25</item> <item>35</item> <item>38</item> <item>47</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>11</mMinTripCount> <mMaxTripCount>11</mMaxTripCount> <mMinLatency>77</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_118"> <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>50</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="25" tracking_level="1" version="0" object_id="_119"> <dp_component_resource class_id="26" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>0</count> <item_version>0</item_version> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>0</count> <item_version>0</item_version> </dp_multiplexer_resource> <dp_register_resource> <count>0</count> <item_version>0</item_version> </dp_register_resource> <dp_component_map class_id="27" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>0</count> <item_version>0</item_version> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="28" tracking_level="0" version="0"> <count>30</count> <item_version>0</item_version> <item class_id="29" tracking_level="0" version="0"> <first>9</first> <second class_id="30" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>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>1</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>43</first> <second> <first>4</first> <second>2</second> </second> </item> <item> <first>44</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>7</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> </node_label_latency> <bblk_ent_exit class_id="31" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="32" tracking_level="0" version="0"> <first>14</first> <second class_id="33" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>35</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>7</second> </second> </item> <item> <first>50</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="39" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-- Ada_GUI implementation based on Gnoga. Adapted 2021 -- -- -- GNOGA - The GNU Omnificent GUI for Ada -- -- -- -- G N O G A . S E R V E R . D A T A B A S E -- -- -- -- S p e c -- -- -- -- -- -- Copyright (C) 2014 David Botton -- -- -- -- 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 -- -- 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/>. -- -- -- -- 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. -- -- -- -- For more information please go to http://www.gnoga.com -- ------------------------------------------------------------------------------ -- Abstract class for database access. Use one of the specific implementations -- for MySQL, SQLLite, etc. with Ada.Strings.Unbounded; with Ada.Containers.Indefinite_Vectors; package Ada_GUI.Gnoga.Server.Database is type Connection is limited interface; type Connection_Access is access all Connection'Class; procedure Disconnect (C : in out Connection) is abstract; -- Disconnect from server procedure Execute_Query (C : in out Connection; SQL : String) is abstract; -- Execute an SQL Query with no result set function Execute_Update (C : in out Connection; SQL : String) return Natural is abstract; -- Executes and SQL Query and returns the number of affected rows function Affected_Rows (C : Connection) return Natural is abstract; -- Returns the number of rows affected by an Execute_Query function Insert_ID (C : Connection) return Natural is abstract; -- Returns the last value assigned to an auto increment field upon insert function Error_Message (C : Connection) return String is abstract; -- Returns the last error message that has occurred on this connection function List_Of_Tables (C : Connection) return Gnoga.Data_Array_Type is abstract; -- Return an array of table names function List_Fields_Of_Table (C : Connection; Table_Name : String) return Gnoga.Data_Array_Type is abstract; -- Return an array of field names for table type Field_Description is record Column_Name : Ada.Strings.Unbounded.Unbounded_String; Data_Type : Ada.Strings.Unbounded.Unbounded_String; Can_Be_Null : Boolean; Default_Value : Ada.Strings.Unbounded.Unbounded_String; end record; package Field_Description_Arrays is new Ada.Containers.Indefinite_Vectors (Natural, Field_Description); subtype Field_Description_Array_Type is Field_Description_Arrays.Vector; function Field_Descriptions (C : Connection; Table_Name : String) return Field_Description_Array_Type is abstract; -- Return an array of Field_Description records describe the fields of -- a table function Field_Type (Field : Field_Description) return String; -- Returns the field type portion of a data type, for example: -- If the Field.Data_Type = Varchar(80) then will return Varchar function Field_Size (Field : Field_Description) return Natural; -- Returns the field size portion of a data type, for example: -- If the Field.Data_Type = varchar(80) then will return 80 -- If the Data_Type does not have a size portion will return 0 -- If the Data_Type is a numeric with decimals, e.g. decimal(10,2) -- then it will return the non-decimal portion. function Field_Decimals (Field : Field_Description) return Natural; -- Returns the decimal portion of a field size if it exists or 0 -- for example: if the Data_Type = float(10,2) it will return 2 function Field_Options (Field : Field_Description) return String; -- Returns the field options portion of a data type, for example: -- If the Field.Data_Type = enum('N','Y') then will return 'N','Y' -- as this is described in the database in the same way as field -- size, this may be used for a string representation of the size -- as well. For example varchar(80) will return the string 80 -- This is also used for descriptions like decimal(10,2), etc. function ID_Field_String (C : Connection) return String is abstract; -- Returns the propper type format for the ID field that should be part -- of every table used by GRAW. -- e.g. for SQLlite = "id INTEGER PRIMARY KEY AUTOINCREMENT" -- for MySQL = "id INTEGER PRIMARY KEY AUTO_INCREMENT" type Recordset is interface; type Recordset_Access is access all Recordset'Class; function Query (C : Connection; SQL : String) return Recordset'Class is abstract; -- Execute query that returns Recordset procedure Close (RS : in out Recordset) is abstract; -- Close current recordset and free resources procedure Next (RS : in out Recordset) is abstract; -- Go to next row function Next (RS : in out Recordset) return Boolean is abstract; -- Go to next row and return true if not End of Recordset procedure Iterate (C : in out Connection; SQL : in String; Process : not null access procedure (RS : Recordset'Class)) is abstract; -- Iterate through all rows in the result set of the query procedure Iterate (RS : in out Recordset; Process : not null access procedure (RS : Recordset'Class)) is abstract; -- Iterate through all rows in the recordset procedure Iterate (C : in out Connection; SQL : String; Process : not null access procedure (Row : Gnoga.Data_Map_Type)) is abstract; -- Iterate through all rows in the result set of the query procedure Iterate (RS : in out Recordset; Process : not null access procedure (Row : Gnoga.Data_Map_Type)) is abstract; -- Iterate through all rows in the recordset function Number_Of_Rows (RS : Recordset) return Natural is abstract; -- Return number of rows in recordset -- This function is not available in many implementations, check the -- database specific package before considering use. function Number_Of_Fields (RS : Recordset) return Natural is abstract; -- Return number of fields in recordset function Field_Name (RS : Recordset; Field_Number : Natural) return String is abstract; -- Return name of field function Is_Null (RS : Recordset; Field_Number : Natural) return Boolean is abstract; function Is_Null (RS : Recordset; Field_Name : String) return Boolean is abstract; -- return True if value of field is null function Field_Value (RS : Recordset; Field_Number : Natural; Handle_Nulls : Boolean := True) return String is abstract; function Field_Value (RS : Recordset; Field_Name : String; Handle_Nulls : Boolean := True) return String is abstract; -- return value of field, if Handle_Nulls is true, Null values will -- return as empty Strings function Field_Values (RS : Recordset) return Gnoga.Data_Map_Type is abstract; -- return map of all values for current row, NULL values are set to -- an empty String function Escape_String (C : Connection; S : String) return String is abstract; -- prepares a string for safe storage in a query Connection_Error : exception; -- Unable to connect to MYSQL Server or Not connected to Server Database_Error : exception; -- Unable to switch to specified Database Table_Error : exception; -- Unable to locate table or table has no fields Query_Error : exception; -- Unable to execute query Empty_Recordset_Error : exception; -- The recordset is currently empty Empty_Row_Error : exception; -- Attempt to read value from Row before calling Next End_Of_Recordset : exception; -- Attempt to go pass the last row in recordset No_Such_Field : exception; -- The value for a field name was requested that does not exits Null_Field : exception; -- The value for a Null field was requested Not_Implemented : exception; -- If a database method is called that is not implemented by the specific -- database engined used this exception will be raised. end Ada_GUI.Gnoga.Server.Database;
with Ada.Text_IO; procedure Hello_World is use Ada.Text_IO; begin Put_Line("Hello, World."); end;
with openGL.Geometry.colored_textured, openGL.Texture, openGL.Font, openGL.Palette; package openGL.Model.billboard.colored_textured -- -- Models a colored, textured billboard. -- is type Item is new Model.billboard.item with private; type View is access all Item'Class; --------- --- Forge -- function new_Billboard (Size : in Size_t := default_Size; Plane : in billboard.Plane; Color : in lucid_Color; Texture : in asset_Name) return View; -------------- --- Attributes -- overriding function to_GL_Geometries (Self : access Item; Textures : access Texture.name_Map_of_texture'Class; Fonts : in Font.font_id_Map_of_font) return Geometry.views; procedure Color_is (Self : in out Item; Now : in lucid_Color); procedure Texture_Coords_are (Self : in out Item; Now : in Coordinates); overriding procedure modify (Self : in out Item); overriding function is_Modified (Self : in Item) return Boolean; private type Item is new Model.billboard.item with record Color : lucid_Color := (Palette.White, Opaque); texture_Name : asset_Name := null_Asset; Texture : openGL.Texture.Object := openGL.Texture.null_Object; -- The texture to be applied to the billboard face. texture_Coords : Coordinates := ((0.0, 0.0), (1.0, 0.0), (1.0, 1.0), (0.0, 1.0)); is_Modified : Boolean := False; Vertices : access Geometry.colored_textured.Vertex_array := new geometry.colored_textured.Vertex_array (1 .. 4); Geometry : access Geometry.colored_textured.item'Class; end record; end openGL.Model.billboard.colored_textured;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . E X C E P T I O N _ T A B L E -- -- -- -- B o d y -- -- -- -- Copyright (C) 1996-2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ pragma Compiler_Unit_Warning; with System.Soft_Links; use System.Soft_Links; package body System.Exception_Table is use System.Standard_Library; type Hash_Val is mod 2 ** 8; subtype Hash_Idx is Hash_Val range 1 .. 37; HTable : array (Hash_Idx) of aliased Exception_Data_Ptr; -- Actual hash table containing all registered exceptions -- -- The table is very small and the hash function weak, as looking up -- registered exceptions is rare and minimizing space and time overhead -- of registration is more important. In addition, it is expected that the -- exceptions that need to be looked up are registered dynamically, and -- therefore will be at the begin of the hash chains. -- -- The table differs from System.HTable.Static_HTable in that the final -- element of each chain is not marked by null, but by a pointer to self. -- This way it is possible to defend against the same entry being inserted -- twice, without having to do a lookup which is relatively expensive for -- programs with large number -- -- All non-local subprograms use the global Task_Lock to protect against -- concurrent use of the exception table. This is needed as local -- exceptions may be declared concurrently with those declared at the -- library level. -- Local Subprograms generic with procedure Process (T : Exception_Data_Ptr; More : out Boolean); procedure Iterate; -- Iterate over all function Lookup (Name : String) return Exception_Data_Ptr; -- Find and return the Exception_Data of the exception with the given Name -- (which must be in all uppercase), or null if none was registered. procedure Register (Item : Exception_Data_Ptr); -- Register an exception with the given Exception_Data in the table. function Has_Name (Item : Exception_Data_Ptr; Name : String) return Boolean; -- Return True iff Item.Full_Name and Name are equal. Both names are -- assumed to be in all uppercase and end with ASCII.NUL. function Hash (S : String) return Hash_Idx; -- Return the index in the hash table for S, which is assumed to be all -- uppercase and end with ASCII.NUL. -------------- -- Has_Name -- -------------- function Has_Name (Item : Exception_Data_Ptr; Name : String) return Boolean is S : constant Big_String_Ptr := To_Ptr (Item.Full_Name); J : Integer := S'First; begin for K in Name'Range loop -- Note that as both items are terminated with ASCII.NUL, the -- comparison below must fail for strings of different lengths. if S (J) /= Name (K) then return False; end if; J := J + 1; end loop; return True; end Has_Name; ------------ -- Lookup -- ------------ function Lookup (Name : String) return Exception_Data_Ptr is Prev : Exception_Data_Ptr; Curr : Exception_Data_Ptr; begin Curr := HTable (Hash (Name)); Prev := null; while Curr /= Prev loop if Has_Name (Curr, Name) then return Curr; end if; Prev := Curr; Curr := Curr.HTable_Ptr; end loop; return null; end Lookup; ---------- -- Hash -- ---------- function Hash (S : String) return Hash_Idx is Hash : Hash_Val := 0; begin for J in S'Range loop exit when S (J) = ASCII.NUL; Hash := Hash xor Character'Pos (S (J)); end loop; return Hash_Idx'First + Hash mod (Hash_Idx'Last - Hash_Idx'First + 1); end Hash; ------------- -- Iterate -- ------------- procedure Iterate is More : Boolean; Prev, Curr : Exception_Data_Ptr; begin Outer : for Idx in HTable'Range loop Prev := null; Curr := HTable (Idx); while Curr /= Prev loop Process (Curr, More); exit Outer when not More; Prev := Curr; Curr := Curr.HTable_Ptr; end loop; end loop Outer; end Iterate; -------------- -- Register -- -------------- procedure Register (Item : Exception_Data_Ptr) is begin if Item.HTable_Ptr = null then Prepend_To_Chain : declare Chain : Exception_Data_Ptr renames HTable (Hash (To_Ptr (Item.Full_Name).all)); begin if Chain = null then Item.HTable_Ptr := Item; else Item.HTable_Ptr := Chain; end if; Chain := Item; end Prepend_To_Chain; end if; end Register; ------------------------------- -- Get_Registered_Exceptions -- ------------------------------- procedure Get_Registered_Exceptions (List : out Exception_Data_Array; Last : out Integer) is procedure Get_One (Item : Exception_Data_Ptr; More : out Boolean); -- Add Item to List (List'First .. Last) by first incrementing Last -- and storing Item in List (Last). Last should be in List'First - 1 -- and List'Last. procedure Get_All is new Iterate (Get_One); -- Store all registered exceptions in List, updating Last ------------- -- Get_One -- ------------- procedure Get_One (Item : Exception_Data_Ptr; More : out Boolean) is begin if Last < List'Last then Last := Last + 1; List (Last) := Item; More := True; else More := False; end if; end Get_One; begin -- In this routine the invariant is that List (List'First .. Last) -- contains the registered exceptions retrieved so far. Last := List'First - 1; Lock_Task.all; Get_All; Unlock_Task.all; end Get_Registered_Exceptions; ------------------------ -- Internal_Exception -- ------------------------ function Internal_Exception (X : String; Create_If_Not_Exist : Boolean := True) return Exception_Data_Ptr is -- If X was not yet registered and Create_if_Not_Exist is True, -- dynamically allocate and register a new exception. type String_Ptr is access all String; Dyn_Copy : String_Ptr; Copy : aliased String (X'First .. X'Last + 1); Result : Exception_Data_Ptr; begin Lock_Task.all; Copy (X'Range) := X; Copy (Copy'Last) := ASCII.NUL; Result := Lookup (Copy); -- If unknown exception, create it on the heap. This is a legitimate -- situation in the distributed case when an exception is defined -- only in a partition if Result = null and then Create_If_Not_Exist then Dyn_Copy := new String'(Copy); Result := new Exception_Data' (Not_Handled_By_Others => False, Lang => 'A', Name_Length => Copy'Length, Full_Name => Dyn_Copy.all'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null); Register (Result); end if; Unlock_Task.all; return Result; end Internal_Exception; ------------------------ -- Register_Exception -- ------------------------ procedure Register_Exception (X : Exception_Data_Ptr) is begin Lock_Task.all; Register (X); Unlock_Task.all; end Register_Exception; --------------------------------- -- Registered_Exceptions_Count -- --------------------------------- function Registered_Exceptions_Count return Natural is Count : Natural := 0; procedure Count_Item (Item : Exception_Data_Ptr; More : out Boolean); -- Update Count for given Item procedure Count_Item (Item : Exception_Data_Ptr; More : out Boolean) is pragma Unreferenced (Item); begin Count := Count + 1; More := Count < Natural'Last; end Count_Item; procedure Count_All is new Iterate (Count_Item); begin Lock_Task.all; Count_All; Unlock_Task.all; return Count; end Registered_Exceptions_Count; begin -- Register the standard exceptions at elaboration time -- We don't need to use the locking version here as the elaboration -- will not be concurrent and no tasks can call any subprograms of this -- unit before it has been elaborated. Register (Abort_Signal_Def'Access); Register (Tasking_Error_Def'Access); Register (Storage_Error_Def'Access); Register (Program_Error_Def'Access); Register (Numeric_Error_Def'Access); Register (Constraint_Error_Def'Access); end System.Exception_Table;
with AUnit; with AUnit.Simple_Test_Cases; package Generic_Table_Test is type Test is new AUnit.Simple_Test_Cases.Test_Case with null record; function Name (T : Test) return AUnit.Message_String; procedure Run_Test (T : in out Test); end Generic_Table_Test;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ -- A time event can be defined relative to entering the current state of the -- executing state machine. -- -- A time event specifies a point in time. At the specified time, the event -- occurs. ------------------------------------------------------------------------------ with AMF.UML.Events; limited with AMF.UML.Time_Expressions; package AMF.UML.Time_Events is pragma Preelaborate; type UML_Time_Event is limited interface and AMF.UML.Events.UML_Event; type UML_Time_Event_Access is access all UML_Time_Event'Class; for UML_Time_Event_Access'Storage_Size use 0; not overriding function Get_Is_Relative (Self : not null access constant UML_Time_Event) return Boolean is abstract; -- Getter of TimeEvent::isRelative. -- -- Specifies whether it is relative or absolute time. not overriding procedure Set_Is_Relative (Self : not null access UML_Time_Event; To : Boolean) is abstract; -- Setter of TimeEvent::isRelative. -- -- Specifies whether it is relative or absolute time. not overriding function Get_When (Self : not null access constant UML_Time_Event) return AMF.UML.Time_Expressions.UML_Time_Expression_Access is abstract; -- Getter of TimeEvent::when. -- -- Specifies the corresponding time deadline. not overriding procedure Set_When (Self : not null access UML_Time_Event; To : AMF.UML.Time_Expressions.UML_Time_Expression_Access) is abstract; -- Setter of TimeEvent::when. -- -- Specifies the corresponding time deadline. end AMF.UML.Time_Events;
----------------------------------------------------------------------- -- Ada Labs -- -- -- -- Copyright (C) 2008-2009, AdaCore -- -- -- -- Labs is free software; you can redistribute it and/or modify it -- -- under the terms of the GNU General Public License as published by -- -- the Free Software Foundation; either version 2 of the License, or -- -- (at your option) any later version. -- -- -- -- This program is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- General Public License for more details. You should have received -- -- a copy of the GNU General Public License along with this program; -- -- if not, write to the Free Software Foundation, Inc., 59 Temple -- -- Place - Suite 330, Boston, MA 02111-1307, USA. -- ----------------------------------------------------------------------- with Display; use Display; with Display.Basic; use Display.Basic; package Solar_System is -- define type Bodies_Enum as an enumeration of Sun, Earth, Moon, Satellite type Bodies_Enum_T is (Sun, Earth, Moon, Satellite, Comet, Black_Hole, Asteroid_1, Asteroid_2); type Body_T is private; type Body_Access_T is access all Body_T; type Bodies_Array_T is private; function Get_Body (B : Bodies_Enum_T; Bodies : access Bodies_Array_T) return Body_Access_T; procedure Init_Body (B : Body_Access_T; Radius : Float; Color : RGBA_T; Distance : Float; Angle : Float; Speed : Float; Turns_Around : Body_Access_T; Visible : Boolean := True); procedure Move_All (Bodies : access Bodies_Array_T); private -- define a type Body_Type to store every information about a body -- X, Y, Distance, Speed, Angle, Radius, Color type Body_T is record X : Float := 0.0; Y : Float := 0.0; Distance : Float; Speed : Float; Angle : Float; Radius : Float; Color : RGBA_T; Visible : Boolean := True; Turns_Around : Body_Access_T; end record; -- define type Bodies_Array as an array of Body_Type indexed by bodies enumeration type Bodies_Array_T is array (Bodies_Enum_T) of aliased Body_T; procedure Move (Body_To_Move : Body_Access_T); end Solar_System;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Slim.Message_Visiters; package body Slim.Messages.grfs is List : constant Field_Description_Array := ((Uint_8_Field, 1), -- Screen (Uint_8_Field, 1), -- Direction (Uint_32_Field, 1), -- Pause (Uint_32_Field, 1), -- Refresh (Uint_16_Field, 1), -- Pixels (Uint_16_Field, 1), -- Repeat (Uint_16_Field, 1), -- Width (Uint_16_Field, 1), -- Offset (Custom_Field, 1)); -- Data ---------- -- Data -- ---------- not overriding function Data (Self : Grfs_Message) return Ada.Streams.Stream_Element_Array is begin return Self.Data.To_Stream_Element_Array; end Data; ---------- -- Read -- ---------- overriding function Read (Data : not null access League.Stream_Element_Vectors.Stream_Element_Vector) return Grfs_Message is begin return Result : Grfs_Message do Read_Fields (Result, List, Data.all); end return; end Read; ----------------------- -- Read_Custom_Field -- ----------------------- overriding procedure Read_Custom_Field (Self : in out Grfs_Message; Index : Positive; Input : in out Ada.Streams.Stream_Element_Offset; Data : League.Stream_Element_Vectors.Stream_Element_Vector) is use type Ada.Streams.Stream_Element_Offset; Content : constant Ada.Streams.Stream_Element_Array (1 .. Data.Length) := Data.To_Stream_Element_Array; begin pragma Assert (Index = 1); Self.Data.Clear; Self.Data.Append (Content (Input .. Content'Last)); Input := Content'Last + 1; end Read_Custom_Field; ----------- -- Visit -- ----------- overriding procedure Visit (Self : not null access Grfs_Message; Visiter : in out Slim.Message_Visiters.Visiter'Class) is begin Visiter.grfs (Self); end Visit; ----------- -- Write -- ----------- overriding procedure Write (Self : Grfs_Message; Tag : out Message_Tag; Data : out League.Stream_Element_Vectors.Stream_Element_Vector) is begin Tag := "grfs"; Write_Fields (Self, List, Data); end Write; ------------------------ -- Write_Custom_Field -- ------------------------ overriding procedure Write_Custom_Field (Self : Grfs_Message; Index : Positive; Data : in out League.Stream_Element_Vectors.Stream_Element_Vector) is begin pragma Assert (Index = 1); Data.Append (Self.Data); end Write_Custom_Field; end Slim.Messages.grfs;
-- Copyright (c) 2020-2021 Bartek thindil Jasicki <thindil@laeran.pl> -- -- 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 Interfaces.C; use Interfaces.C; with CArgv; with Tcl; use Tcl; -- ****h* Knowledge/Knowledge -- FUNCTION -- Provide code to show the knowledge (bases, events, missions, stories) to -- the player -- SOURCE package Knowledge is -- **** -- ****o* Knowledge/Knowledge.Show_Knowledge_Command -- FUNCTION -- Show information about known by player things -- PARAMETERS -- ClientData - Custom data send to the command. Unused -- Interp - Tcl interpreter in which command was executed. -- Argc - Number of arguments passed to the command. -- Argv - Values of arguments passed to the command. Unused -- RESULT -- This function always return TCL_OK -- COMMANDS -- ShowKnowledge -- SOURCE function Show_Knowledge_Command (ClientData: Integer; Interp: Tcl.Tcl_Interp; Argc: Interfaces.C.int; Argv: CArgv.Chars_Ptr_Ptr) return Interfaces.C.int with Convention => C; -- **** -- ****f* Knowledge/Knowledge.AddCommands -- FUNCTION -- Add Tcl commands related to the player's knowledge -- SOURCE procedure AddCommands; -- **** end Knowledge;
-- Copyright 2007-2021 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with System; package Pck is type Struct is record A : Integer; B : Integer; end record; type Arr is array (1 .. 3) of Integer; procedure Call_Me (Int : Integer; Flt : Float; Bln : Boolean; Ary : Arr; -- Non scalar Chr : Character; Sad : System.Address; Rec : Struct); -- Non scalar end Pck;
-- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- The primary authors of ayacc were David Taback and Deepak Tolani. -- Enhancements were made by Ronald J. Schmalz. -- -- Send requests for ayacc information to ayacc-info@ics.uci.edu -- Send bug reports for ayacc to ayacc-bugs@ics.uci.edu -- -- Redistribution and use in source and binary forms are permitted -- provided that the above copyright notice and this paragraph are -- duplicated in all such forms and that any documentation, -- advertising materials, and other materials related to such -- distribution and use acknowledge that the software was developed -- by the University of California, Irvine. The name of the -- University may not be used to endorse or promote products derived -- from this software without specific prior written permission. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. -- Module : lexical_analyzer.ada -- Component of : ayacc -- Version : 1.2 -- Date : 11/21/86 12:30:26 -- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxlexical_analyzer.ada -- $Header: lexical_analyzer.a,v 0.1 86/04/01 15:05:14 ada Exp $ -- $Log: lexical_analyzer.a,v $ -- Revision 0.1 86/04/01 15:05:14 ada -- This version fixes some minor bugs with empty grammars -- and $$ expansion. It also uses vads5.1b enhancements -- such as pragma inline. -- -- -- Revision 0.0 86/02/19 18:36:57 ada -- -- These files comprise the initial version of Ayacc -- designed and implemented by David Taback and Deepak Tolani. -- Ayacc has been compiled and tested under the Verdix Ada compiler -- version 4.06 on a vax 11/750 running Unix 4.2BSD. -- with Source_File; package Lexical_Analyzer is function Get_Lexeme_Text return String; -- Scanned text. type Ayacc_Token is (Token, Start, Left, Right, Nonassoc, Prec, With_Clause, Use_Clause, Identifier, Character_Literal, Comma, Colon, Semicolon, Vertical_Bar, Left_Brace, Mark, Eof_Token); function Get_Token return Ayacc_Token; function Line_Number return Natural; -- Current line of source file procedure Handle_Action(Rule, Rule_Length : Integer); procedure Print_Context_Lines renames Source_File.Print_Context_Lines; procedure Dump_Declarations; Illegal_Token : exception; end Lexical_Analyzer;
-- C45411D.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 UNARY "+" AND "-" YIELD CORRECT RESULTS FOR -- OPERANDS OF DERIVED INTEGER TYPES. -- HISTORY: -- JET 07/11/88 CREATED ORIGINAL TEST. -- PWN 10/27/95 REMOVED OUT OF RANGE STATIC VALUE CHECKS. WITH REPORT; USE REPORT; PROCEDURE C45411D IS TYPE INT IS RANGE -100..100; TYPE DT1 IS NEW INTEGER; TYPE DT2 IS NEW INT; D1 : DT1 := 1; D2 : DT2 := 1; FUNCTION IDENT (A : DT1) RETURN DT1 IS BEGIN RETURN A * DT1(IDENT_INT(1)); END IDENT; FUNCTION IDENT (A : DT2) RETURN DT2 IS BEGIN RETURN A * DT2(IDENT_INT(1)); END IDENT; BEGIN TEST ("C45411D", "CHECK THAT UNARY ""+"" AND ""-"" YIELD " & "CORRECT RESULTS FOR OPERANDS OF DERIVED " & "INTEGER TYPES"); FOR I IN DT1'(1-2)..DT1'(1) LOOP IF "-"(RIGHT => D1) /= IDENT(I) THEN FAILED ("INCORRECT RESULT FOR ""-"" DT1 -" & DT1'IMAGE(I+2)); END IF; IF +D1 /= IDENT(D1) THEN FAILED ("INCORRECT RESULT FOR ""+"" DT1 -" & DT1'IMAGE(I+2)); END IF; D1 := D1 - 1; END LOOP; IF DT1'LAST + DT1'FIRST = 0 THEN IF IDENT(-DT1'LAST) /= DT1'FIRST THEN FAILED ("-DT1'LAST IS NOT EQUAL TO DT1'FIRST"); END IF; ELSE IF IDENT(-DT1'LAST) /= DT1'FIRST+1 THEN FAILED ("-DT1'LAST IS NOT EQUAL TO DT1'FIRST+1"); END IF; END IF; FOR I IN DT2'(1-2)..DT2'(1) LOOP IF -D2 /= IDENT(I) THEN FAILED ("INCORRECT RESULT FOR ""-"" DT2 -" & DT2'IMAGE(I+2)); END IF; IF "+"(RIGHT => D2) /= IDENT(D2) THEN FAILED ("INCORRECT RESULT FOR ""+"" DT2 -" & DT2'IMAGE(I+2)); END IF; D2 := D2 - 1; END LOOP; RESULT; END C45411D;
-- Copyright 2011-2016 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is procedure Do_Nothing (A : System.Address) is begin null; end Do_Nothing; function Foos return String is begin return "string"; end Foos; end Pck;
<?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_dct_1d</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>11</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>src</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>src1</name> <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> <direction>0</direction> <if_type>1</if_type> <array_size>8</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>src2</name> <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> <direction>0</direction> <if_type>1</if_type> <array_size>8</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>src3</name> <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> <direction>0</direction> <if_type>1</if_type> <array_size>8</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>src4</name> <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> <direction>0</direction> <if_type>1</if_type> <array_size>8</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>src5</name> <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> <direction>0</direction> <if_type>1</if_type> <array_size>8</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>src6</name> <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> <direction>0</direction> <if_type>1</if_type> <array_size>8</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>src7</name> <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> <direction>0</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>tmp_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</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>dst</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>dst</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>64</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>tmp_11</name> <fileName></fileName> <fileDirectory></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> <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>83</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_12"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp_11_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>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>113</item> <item>114</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>21</id> <name>tmp_1_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>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>115</item> <item>116</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>22</id> <name>tmp_1_cast</name> <fileName></fileName> <fileDirectory></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> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>117</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>23</id> <name>src_addr</name> <fileName></fileName> <fileDirectory></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> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>118</item> <item>120</item> <item>121</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>24</id> <name>src1_addr</name> <fileName></fileName> <fileDirectory></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> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>122</item> <item>123</item> <item>124</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>25</id> <name>src2_addr</name> <fileName></fileName> <fileDirectory></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> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>125</item> <item>126</item> <item>127</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>26</id> <name>src3_addr</name> <fileName></fileName> <fileDirectory></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> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>128</item> <item>129</item> <item>130</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>27</id> <name>src4_addr</name> <fileName></fileName> <fileDirectory></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> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>131</item> <item>132</item> <item>133</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>28</id> <name>src5_addr</name> <fileName></fileName> <fileDirectory></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> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>134</item> <item>135</item> <item>136</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>29</id> <name>src6_addr</name> <fileName></fileName> <fileDirectory></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> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>137</item> <item>138</item> <item>139</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>30</id> <name>src7_addr</name> <fileName></fileName> <fileDirectory></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> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>140</item> <item>141</item> <item>142</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>144</item> <item>145</item> <item>147</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>32</id> <name>p_addr_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>dct_1d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</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>dct.cpp</first> <second>dct_1d</second> </first> <second>57</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>148</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>33</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>57</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>149</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>35</id> <name>k</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>k</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>151</item> <item>152</item> <item>153</item> <item>154</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>36</id> <name>exitcond1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>155</item> <item>157</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>37</id> <name>k_1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName>k</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>158</item> <item>160</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>38</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>57</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>161</item> <item>162</item> <item>163</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>44</id> <name>tmp</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>164</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>45</id> <name>dct_coeff_table_0_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>165</item> <item>166</item> <item>167</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>46</id> <name>dct_coeff_table_0_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>47</id> <name>coeff_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>169</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>48</id> <name>src_load</name> <fileName></fileName> <fileDirectory></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>1</count> <item_version>0</item_version> <item>170</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_7_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>171</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_8</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>172</item> <item>173</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>51</id> <name>dct_coeff_table_1_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>174</item> <item>175</item> <item>176</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>52</id> <name>dct_coeff_table_1_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>177</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>53</id> <name>coeff_1_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>178</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>54</id> <name>src1_load</name> <fileName></fileName> <fileDirectory></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>1</count> <item_version>0</item_version> <item>179</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>55</id> <name>tmp_7_1_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>180</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_8_1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>181</item> <item>182</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>57</id> <name>dct_coeff_table_2_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>183</item> <item>184</item> <item>185</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>58</id> <name>dct_coeff_table_2_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>186</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>59</id> <name>coeff_2_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>187</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>60</id> <name>src2_load</name> <fileName></fileName> <fileDirectory></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>1</count> <item_version>0</item_version> <item>188</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_7_2_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>189</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_8_2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>190</item> <item>191</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>63</id> <name>dct_coeff_table_3_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>192</item> <item>193</item> <item>194</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>64</id> <name>dct_coeff_table_3_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>195</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>65</id> <name>coeff_3_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>196</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>66</id> <name>src3_load</name> <fileName></fileName> <fileDirectory></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>1</count> <item_version>0</item_version> <item>197</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_7_3_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>198</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_8_3</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>199</item> <item>200</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>69</id> <name>dct_coeff_table_4_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>201</item> <item>202</item> <item>203</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>70</id> <name>dct_coeff_table_4_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>204</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>71</id> <name>coeff_4_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>205</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>72</id> <name>src4_load</name> <fileName></fileName> <fileDirectory></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>1</count> <item_version>0</item_version> <item>206</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>73</id> <name>tmp_7_4_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>207</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_8_4</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>208</item> <item>209</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>75</id> <name>dct_coeff_table_5_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>210</item> <item>211</item> <item>212</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>76</id> <name>dct_coeff_table_5_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>213</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>77</id> <name>coeff_5_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>214</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>78</id> <name>src5_load</name> <fileName></fileName> <fileDirectory></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>1</count> <item_version>0</item_version> <item>215</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>79</id> <name>tmp_7_5_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>216</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>80</id> <name>tmp_8_5</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>217</item> <item>218</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>81</id> <name>dct_coeff_table_6_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>219</item> <item>220</item> <item>221</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>82</id> <name>dct_coeff_table_6_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>222</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>83</id> <name>coeff_6_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>223</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>84</id> <name>src6_load</name> <fileName></fileName> <fileDirectory></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>1</count> <item_version>0</item_version> <item>224</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>85</id> <name>tmp_7_6_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>225</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>86</id> <name>tmp_8_6</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>226</item> <item>227</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>87</id> <name>dct_coeff_table_7_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>228</item> <item>229</item> <item>230</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>88</id> <name>dct_coeff_table_7_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>231</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>89</id> <name>coeff_7_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>232</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>90</id> <name>src7_load</name> <fileName></fileName> <fileDirectory></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>1</count> <item_version>0</item_version> <item>233</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>91</id> <name>tmp_7_7_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>234</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>92</id> <name>tmp_8_7</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>235</item> <item>236</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>93</id> <name>tmp2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>237</item> <item>238</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp3</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>239</item> <item>240</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>95</id> <name>tmp1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>241</item> <item>242</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>96</id> <name>tmp5</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>243</item> <item>244</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>97</id> <name>tmp7</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>245</item> <item>247</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>98</id> <name>tmp6</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>248</item> <item>249</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>99</id> <name>tmp4</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>250</item> <item>251</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>100</id> <name>tmp_2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>252</item> <item>253</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>101</id> <name>tmp_4</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</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>255</item> <item>256</item> <item>258</item> <item>260</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>102</id> <name>tmp_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</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>261</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>103</id> <name>p_addr1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</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>262</item> <item>263</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>104</id> <name>tmp_6</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</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>264</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>105</id> <name>dst_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</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>265</item> <item>266</item> <item>267</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>106</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>63</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>268</item> <item>269</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>108</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>57</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>270</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>110</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>dct_1d</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_1d</second> </first> <second>65</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_95"> <Value> <Obj> <type>2</type> <id>119</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_96"> <Value> <Obj> <type>2</type> <id>146</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_97"> <Value> <Obj> <type>2</type> <id>150</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_98"> <Value> <Obj> <type>2</type> <id>156</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_99"> <Value> <Obj> <type>2</type> <id>159</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_100"> <Value> <Obj> <type>2</type> <id>246</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <const_type>0</const_type> <content>4096</content> </item> <item class_id_reference="16" object_id="_101"> <Value> <Obj> <type>2</type> <id>257</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_102"> <Value> <Obj> <type>2</type> <id>259</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>28</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="_103"> <Obj> <type>3</type> <id>34</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>14</count> <item_version>0</item_version> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> </node_objs> </item> <item class_id_reference="18" object_id="_104"> <Obj> <type>3</type> <id>39</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>35</item> <item>36</item> <item>37</item> <item>38</item> </node_objs> </item> <item class_id_reference="18" object_id="_105"> <Obj> <type>3</type> <id>109</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>64</count> <item_version>0</item_version> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>108</item> </node_objs> </item> <item class_id_reference="18" object_id="_106"> <Obj> <type>3</type> <id>111</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>110</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>148</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_107"> <id>114</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>116</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>117</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>118</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>120</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <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="_113"> <id>122</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>123</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>124</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>125</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>126</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>127</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>128</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>129</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>130</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>131</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>132</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>133</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>134</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>135</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>136</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>137</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>138</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>139</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>140</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>141</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>142</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>145</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>147</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>148</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>149</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>151</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>152</id> <edge_type>2</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>153</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>154</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>155</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>157</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>158</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>160</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>161</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>162</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>163</id> <edge_type>2</edge_type> <source_obj>111</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>164</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>165</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>166</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>167</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>168</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>169</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>170</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>171</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>172</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>173</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>174</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>175</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>176</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>177</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>178</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>179</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>180</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>181</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>182</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>183</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>184</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>185</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>186</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>187</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>188</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <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="_175"> <id>190</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <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="_177"> <id>192</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>193</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>194</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>195</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>196</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>197</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>198</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>199</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>200</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>201</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>202</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>203</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>204</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>205</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>206</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>207</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>208</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>209</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>210</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>211</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>212</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>213</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>214</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>215</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>216</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>217</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>218</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>219</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>220</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>221</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>222</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>223</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>224</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>225</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>226</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>227</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>228</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>229</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>230</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>231</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>232</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>233</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>234</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>235</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>236</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>237</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>238</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>239</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>240</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>241</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>242</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>243</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>244</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>245</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>247</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>248</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>249</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>250</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>251</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>252</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>253</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>256</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>258</id> <edge_type>1</edge_type> <source_obj>257</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>260</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>261</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>262</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>263</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>264</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_245"> <id>265</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>266</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>267</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>268</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>269</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>270</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>298</id> <edge_type>2</edge_type> <source_obj>34</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>299</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>300</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>109</sink_obj> </item> <item class_id_reference="20" object_id="_254"> <id>301</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>39</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_255"> <mId>1</mId> <mTag>dct_dct_1d</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>13</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_256"> <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>34</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="_257"> <mId>3</mId> <mTag>DCT_Outer_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>39</item> <item>109</item> </basic_blocks> <mII>1</mII> <mDepth>5</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>11</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_258"> <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>111</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="_259"> <states class_id="25" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_260"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_261"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_262"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_263"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_264"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_265"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_266"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_267"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_268"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_269"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_270"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_271"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_275"> <id>2</id> <operations> <count>28</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_276"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_277"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_278"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_279"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_280"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_281"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_282"> <id>46</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_283"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_284"> <id>52</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_285"> <id>54</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_286"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_287"> <id>58</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_288"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_289"> <id>64</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_290"> <id>66</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_291"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_292"> <id>70</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_293"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_294"> <id>76</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_295"> <id>78</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_296"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_297"> <id>82</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_298"> <id>84</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_299"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_300"> <id>88</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_301"> <id>90</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_302"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_303"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_304"> <id>3</id> <operations> <count>16</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_305"> <id>46</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_306"> <id>48</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_307"> <id>52</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_308"> <id>54</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_309"> <id>58</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_310"> <id>60</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_311"> <id>64</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_312"> <id>66</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_313"> <id>70</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_314"> <id>72</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_315"> <id>76</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_316"> <id>78</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_317"> <id>82</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_318"> <id>84</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_319"> <id>88</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_320"> <id>90</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_321"> <id>4</id> <operations> <count>20</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_322"> <id>48</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_323"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_324"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>60</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_327"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_328"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_329"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_330"> <id>72</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_331"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_333"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_334"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_335"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_336"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_337"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_338"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_339"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_340"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_341"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_342"> <id>5</id> <operations> <count>16</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_343"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_344"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_345"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_346"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_347"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_348"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_349"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_350"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_351"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_352"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_353"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_354"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_355"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_356"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_357"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_358"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_359"> <id>6</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_360"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_361"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_362"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_363"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_364"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_365"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_366"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_367"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_368"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_369"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_370"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_371"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>12</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="_372"> <inState>3</inState> <outState>4</outState> <condition> <id>23</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>4</inState> <outState>5</outState> <condition> <id>24</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>5</inState> <outState>6</outState> <condition> <id>25</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>6</inState> <outState>2</outState> <condition> <id>26</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>2</inState> <outState>7</outState> <condition> <id>22</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>36</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_377"> <inState>2</inState> <outState>3</outState> <condition> <id>27</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>36</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="_378"> <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>83</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>20</first> <second class_id="41" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>47</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>49</first> <second> <first>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>1</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>61</first> <second> <first>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>1</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>65</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>67</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>71</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>2</first> <second>1</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>1</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>77</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>79</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>83</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>85</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>89</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>91</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>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>108</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="42" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="43" tracking_level="0" version="0"> <first>34</first> <second class_id="44" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>109</first> <second> <first>1</first> <second>5</second> </second> </item> <item> <first>111</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="45" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="46" tracking_level="1" version="0" object_id="_379"> <region_name>DCT_Outer_Loop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>39</item> <item>109</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>5</pipe_depth> </item> </regions> <dp_fu_nodes class_id="47" tracking_level="0" version="0"> <count>74</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>80</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>86</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>92</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>99</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>106</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>113</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>127</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>134</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>141</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>155</first> <second> <count>2</count> <item_version>0</item_version> <item>46</item> <item>46</item> </second> </item> <item> <first>160</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>167</first> <second> <count>2</count> <item_version>0</item_version> <item>52</item> <item>52</item> </second> </item> <item> <first>172</first> <second> <count>2</count> <item_version>0</item_version> <item>54</item> <item>54</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>183</first> <second> <count>2</count> <item_version>0</item_version> <item>58</item> <item>58</item> </second> </item> <item> <first>188</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>195</first> <second> <count>2</count> <item_version>0</item_version> <item>64</item> <item>64</item> </second> </item> <item> <first>200</first> <second> <count>2</count> <item_version>0</item_version> <item>66</item> <item>66</item> </second> </item> <item> <first>204</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>211</first> <second> <count>2</count> <item_version>0</item_version> <item>70</item> <item>70</item> </second> </item> <item> <first>216</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>223</first> <second> <count>2</count> <item_version>0</item_version> <item>76</item> <item>76</item> </second> </item> <item> <first>228</first> <second> <count>2</count> <item_version>0</item_version> <item>78</item> <item>78</item> </second> </item> <item> <first>232</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>239</first> <second> <count>2</count> <item_version>0</item_version> <item>82</item> <item>82</item> </second> </item> <item> <first>244</first> <second> <count>2</count> <item_version>0</item_version> <item>84</item> <item>84</item> </second> </item> <item> <first>248</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>255</first> <second> <count>2</count> <item_version>0</item_version> <item>88</item> <item>88</item> </second> </item> <item> <first>260</first> <second> <count>2</count> <item_version>0</item_version> <item>90</item> <item>90</item> </second> </item> <item> <first>264</first> <second> <count>2</count> <item_version>0</item_version> <item>48</item> <item>48</item> </second> </item> <item> <first>268</first> <second> <count>2</count> <item_version>0</item_version> <item>60</item> <item>60</item> </second> </item> <item> <first>272</first> <second> <count>2</count> <item_version>0</item_version> <item>72</item> <item>72</item> </second> </item> <item> <first>276</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>283</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>292</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>299</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>311</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>319</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>323</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>335</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>347</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>351</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>356</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>359</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>362</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>368</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>371</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>374</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>380</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>383</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>386</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>392</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>395</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>398</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>401</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>404</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>407</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>410</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>413</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>416</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>419</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>422</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>426</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>430</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>436</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>446</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>450</first> <second> <count>2</count> <item_version>0</item_version> <item>86</item> <item>98</item> </second> </item> <item> <first>457</first> <second> <count>2</count> <item_version>0</item_version> <item>92</item> <item>97</item> </second> </item> <item> <first>466</first> <second> <count>2</count> <item_version>0</item_version> <item>74</item> <item>96</item> </second> </item> <item> <first>474</first> <second> <count>2</count> <item_version>0</item_version> <item>62</item> <item>94</item> </second> </item> <item> <first>482</first> <second> <count>2</count> <item_version>0</item_version> <item>50</item> <item>93</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="50" tracking_level="0" version="0"> <count>55</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>coeff_1_cast_fu_356</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>coeff_2_cast_fu_410</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>coeff_3_cast_fu_368</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>coeff_4_cast_fu_416</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>coeff_5_cast_fu_380</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>coeff_6_cast_fu_392</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>coeff_7_cast_fu_398</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>coeff_cast_fu_404</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>dct_coeff_table_0_addr_gep_fu_148</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>dct_coeff_table_1_addr_gep_fu_160</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>dct_coeff_table_2_addr_gep_fu_176</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>dct_coeff_table_3_addr_gep_fu_188</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>dct_coeff_table_4_addr_gep_fu_204</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>dct_coeff_table_5_addr_gep_fu_216</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>dct_coeff_table_6_addr_gep_fu_232</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>dct_coeff_table_7_addr_gep_fu_248</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>dst_addr_gep_fu_276</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>exitcond1_fu_323</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>grp_fu_450</first> <second> <count>2</count> <item_version>0</item_version> <item>86</item> <item>98</item> </second> </item> <item> <first>grp_fu_457</first> <second> <count>2</count> <item_version>0</item_version> <item>92</item> <item>97</item> </second> </item> <item> <first>grp_fu_466</first> <second> <count>2</count> <item_version>0</item_version> <item>74</item> <item>96</item> </second> </item> <item> <first>grp_fu_474</first> <second> <count>2</count> <item_version>0</item_version> <item>62</item> <item>94</item> </second> </item> <item> <first>grp_fu_482</first> <second> <count>2</count> <item_version>0</item_version> <item>50</item> <item>93</item> </second> </item> <item> <first>k_1_fu_329</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>k_phi_fu_292</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>p_addr1_fu_351</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>p_addr_cast_fu_319</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>src1_addr_gep_fu_99</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>src2_addr_gep_fu_106</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>src3_addr_gep_fu_113</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>src4_addr_gep_fu_120</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>src5_addr_gep_fu_127</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>src6_addr_gep_fu_134</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>src7_addr_gep_fu_141</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>src_addr_gep_fu_92</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>tmp1_fu_422</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>tmp4_fu_426</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>tmp_1_cast_fu_299</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_2_fu_430</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>tmp_4_fu_436</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>tmp_5_fu_311</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp_6_fu_446</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>tmp_7_1_cast_fu_359</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>tmp_7_2_cast_fu_413</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_7_3_cast_fu_371</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_7_4_cast_fu_419</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>tmp_7_5_cast_fu_383</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>tmp_7_6_cast_fu_395</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>tmp_7_7_cast_fu_401</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>tmp_7_cast_fu_407</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_8_1_fu_362</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_8_3_fu_374</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_8_5_fu_386</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>tmp_fu_335</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>tmp_trn_cast_fu_347</first> <second> <count>1</count> <item_version>0</item_version> <item>102</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>2</count> <item_version>0</item_version> <item> <first>tmp_11_read_read_fu_80</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_1_read_read_fu_86</first> <second> <count>1</count> <item_version>0</item_version> <item>21</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="52" tracking_level="0" version="0"> <count>17</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>dct_coeff_table_0</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>46</item> <item>46</item> </second> </item> <item> <first> <first>dct_coeff_table_1</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>52</item> <item>52</item> </second> </item> <item> <first> <first>dct_coeff_table_2</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>58</item> <item>58</item> </second> </item> <item> <first> <first>dct_coeff_table_3</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>64</item> <item>64</item> </second> </item> <item> <first> <first>dct_coeff_table_4</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>70</item> <item>70</item> </second> </item> <item> <first> <first>dct_coeff_table_5</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>76</item> <item>76</item> </second> </item> <item> <first> <first>dct_coeff_table_6</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>82</item> <item>82</item> </second> </item> <item> <first> <first>dct_coeff_table_7</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>88</item> <item>88</item> </second> </item> <item> <first> <first>dst</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first> <first>src</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>48</item> <item>48</item> </second> </item> <item> <first> <first>src1</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>54</item> <item>54</item> </second> </item> <item> <first> <first>src2</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>60</item> <item>60</item> </second> </item> <item> <first> <first>src3</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>66</item> <item>66</item> </second> </item> <item> <first> <first>src4</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>72</item> <item>72</item> </second> </item> <item> <first> <first>src5</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>78</item> <item>78</item> </second> </item> <item> <first> <first>src6</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>84</item> <item>84</item> </second> </item> <item> <first> <first>src7</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>90</item> <item>90</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>42</count> <item_version>0</item_version> <item> <first>288</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>490</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>495</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>500</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>505</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>510</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>515</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>520</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>525</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>530</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>535</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>539</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>544</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>549</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>554</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>559</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>564</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>569</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>574</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>579</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>584</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>589</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>594</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>599</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>604</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>609</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>614</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>619</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>624</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>629</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>634</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>639</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>644</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>649</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>654</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>659</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>664</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>669</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>674</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>679</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>684</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>689</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>42</count> <item_version>0</item_version> <item> <first>dct_coeff_table_0_addr_reg_544</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>dct_coeff_table_0_load_reg_589</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>dct_coeff_table_1_addr_reg_549</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>dct_coeff_table_1_load_reg_594</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>dct_coeff_table_2_addr_reg_554</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>dct_coeff_table_2_load_reg_604</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>dct_coeff_table_3_addr_reg_559</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>dct_coeff_table_3_load_reg_609</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>dct_coeff_table_4_addr_reg_564</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>dct_coeff_table_4_load_reg_619</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>dct_coeff_table_5_addr_reg_569</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>dct_coeff_table_5_load_reg_624</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>dct_coeff_table_6_addr_reg_574</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>dct_coeff_table_6_load_reg_634</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>dct_coeff_table_7_addr_reg_579</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>dct_coeff_table_7_load_reg_644</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>exitcond1_reg_535</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>k_1_reg_539</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>k_reg_288</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>p_addr1_reg_584</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>p_addr_cast_reg_530</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>src1_addr_reg_495</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>src1_load_reg_599</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>src2_addr_reg_500</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>src2_load_reg_664</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>src3_addr_reg_505</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>src3_load_reg_614</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>src4_addr_reg_510</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>src4_load_reg_674</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>src5_addr_reg_515</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>src5_load_reg_629</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>src6_addr_reg_520</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>src6_load_reg_639</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>src7_addr_reg_525</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>src7_load_reg_649</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>src_addr_reg_490</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>src_load_reg_654</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp6_reg_684</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>tmp_4_reg_689</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>tmp_8_1_reg_659</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_8_3_reg_669</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_8_5_reg_679</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>1</count> <item_version>0</item_version> <item> <first>288</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>1</count> <item_version>0</item_version> <item> <first>k_reg_288</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="55" tracking_level="0" version="0"> <count>11</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>dst(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>106</item> </second> </item> </second> </item> <item> <first>src(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>48</item> <item>48</item> </second> </item> </second> </item> <item> <first>src1(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>54</item> <item>54</item> </second> </item> </second> </item> <item> <first>src2(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>60</item> <item>60</item> </second> </item> </second> </item> <item> <first>src3(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>66</item> <item>66</item> </second> </item> </second> </item> <item> <first>src4(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>72</item> <item>72</item> </second> </item> </second> </item> <item> <first>src5(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>78</item> <item>78</item> </second> </item> </second> </item> <item> <first>src6(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>84</item> <item>84</item> </second> </item> </second> </item> <item> <first>src7(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>90</item> <item>90</item> </second> </item> </second> </item> <item> <first>tmp_1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> </second> </item> <item> <first>tmp_11</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="57" tracking_level="0" version="0"> <count>9</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> <item> <first>3</first> <second>RAM</second> </item> <item> <first>4</first> <second>RAM</second> </item> <item> <first>5</first> <second>RAM</second> </item> <item> <first>6</first> <second>RAM</second> </item> <item> <first>7</first> <second>RAM</second> </item> <item> <first>8</first> <second>RAM</second> </item> <item> <first>10</first> <second>RAM</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2020, Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- with Ada.Finalization; use Ada.Finalization; package body SDL.Video.Palettes is -- function Element_Value (Container : in Palette_array; Pos : in Palette_Cursor) return Colour is -- begin -- return Pos.Current.all; -- end Element_Value; -- function Has_Element (Pos : in Palette_Cursor) return Boolean is -- begin -- -- if Pos.Index < Positive (Pos.Container.Internal.Total) then -- if Pos.Index < Pos.Total then -- return True; -- end if; -- return False; -- end Has_Element; -- function Iterate (Container : not null access Palette_Array) return Palette_Iterators'Class is -- begin -- return It : constant Palette_Iterators := Palette_Iterators'(Container => Palette_Access (Container)) do -- null; -- end return; -- end Iterate; -- function First (Object : in Palette_Iterators) return Palette_Cursor is -- begin -- return Palette_Cursor' -- (-- Container => Object.Internal, -- Index => Positive'First, -- Total => Positive (Object.Container.Internal.Total), -- Current => Object.Container.Internal.Colours); -- end First; -- function Next (Object : in Palette_Iterators; Position : in Palette_Cursor) return Palette_Cursor is -- Curr : Colour_Array_Pointer.Pointer := Position.Current; -- begin -- Colour_Array_Pointer.Increment (Curr); -- return Palette_Cursor' -- (-- Container => Object.Internal, -- Index => Position.Index + 1, -- Total => Position.Total, -- Current => Curr); -- end Next; type Iterator (Container : access constant Palette'Class) is new Limited_Controlled and Palette_Iterator_Interfaces.Forward_Iterator with record Index : Natural; end record; overriding function First (Object : Iterator) return Cursor; overriding function Next (Object : Iterator; Position : Cursor) return Cursor; function Element (Position : in Cursor) return Colour is begin -- return Position.Container.Data.Colours (Position.Index); return Colour_Array_Pointer.Value (Position.Current) (0); end Element; function Has_Element (Position : in Cursor) return Boolean is begin return Position.Index <= Natural (Position.Container.Data.Total); end Has_Element; function Constant_Reference (Container : aliased Palette; Position : Cursor) return Colour is begin -- Put_Line ("Constant_Reference" & Natural'Image (Position.Index)); -- return Position.Container.Data.Colours (Position.Index); return Colour_Array_Pointer.Value (Position.Current) (0); end Constant_Reference; function Iterate (Container : Palette) return Palette_Iterator_Interfaces.Forward_Iterator'Class is begin -- Put_Line ("Iterate"); return It : constant Iterator := (Limited_Controlled with Container => Container'Access, Index => Natural'First + 1) do -- Put_Line (" index = " & Natural'Image(It.Index)); null; end return; end Iterate; function Create (Total_Colours : in Positive) return Palette is function SDL_Alloc_Palette (Ncolors : in C.int) return Internal_Palette_Access with Import => True, Convention => C, External_Name => "SDL_AllocPalette"; begin return P : constant Palette := (Data => SDL_Alloc_Palette (C.int (Total_Colours))) do null; end return; end Create; procedure Free (Container : in out Palette) is procedure SDL_Free_Palette (Self : in Internal_Palette_Access) with Import => True, Convention => C, External_Name => "SDL_FreePalette"; begin SDL_Free_Palette (Container.Data); Container.Data := null; end Free; overriding function First (Object : Iterator) return Cursor is begin -- Put_Line ("First -> Index = " & Natural'Image (Object.Index)); return Cursor'(Container => Object.Container, Index => Object.Index, Current => Object.Container.Data.Colours); end First; overriding function Next (Object : Iterator; Position : Cursor) return Cursor is Next_Ptr : Colour_Array_Pointer.Pointer := Position.Current; begin Colour_Array_Pointer.Increment (Next_Ptr); -- Put_Line ("Next"); -- if Object.Container /= Position.Container then -- raise Program_Error with "Wrong containers"; -- end if; return Cursor'(Container => Object.Container, Index => Position.Index + 1, Current => Next_Ptr); end Next; end SDL.Video.Palettes;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . D I R E C T _ I O -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.IO_Exceptions; use Ada.IO_Exceptions; with Ada.Unchecked_Deallocation; with Interfaces.C_Streams; use Interfaces.C_Streams; with System; use System; with System.CRTL; with System.File_IO; with System.Soft_Links; package body System.Direct_IO is package FIO renames System.File_IO; package SSL renames System.Soft_Links; subtype AP is FCB.AFCB_Ptr; use type FCB.Shared_Status_Type; use type System.CRTL.int64; use type System.CRTL.size_t; ----------------------- -- Local Subprograms -- ----------------------- procedure Set_Position (File : File_Type); -- Sets file position pointer according to value of current index ------------------- -- AFCB_Allocate -- ------------------- function AFCB_Allocate (Control_Block : Direct_AFCB) return FCB.AFCB_Ptr is pragma Unreferenced (Control_Block); begin return new Direct_AFCB; end AFCB_Allocate; ---------------- -- AFCB_Close -- ---------------- -- No special processing required for Direct_IO close procedure AFCB_Close (File : not null access Direct_AFCB) is pragma Unreferenced (File); begin null; end AFCB_Close; --------------- -- AFCB_Free -- --------------- procedure AFCB_Free (File : not null access Direct_AFCB) is type FCB_Ptr is access all Direct_AFCB; FT : FCB_Ptr := FCB_Ptr (File); procedure Free is new Ada.Unchecked_Deallocation (Direct_AFCB, FCB_Ptr); begin Free (FT); end AFCB_Free; ------------ -- Create -- ------------ procedure Create (File : in out File_Type; Mode : FCB.File_Mode := FCB.Inout_File; Name : String := ""; Form : String := "") is Dummy_File_Control_Block : Direct_AFCB; pragma Warnings (Off, Dummy_File_Control_Block); -- Yes, we know this is never assigned a value, only the tag is used for -- dispatching purposes, so that's expected. begin FIO.Open (File_Ptr => AP (File), Dummy_FCB => Dummy_File_Control_Block, Mode => Mode, Name => Name, Form => Form, Amethod => 'D', Creat => True, Text => False); end Create; ----------------- -- End_Of_File -- ----------------- function End_Of_File (File : File_Type) return Boolean is begin FIO.Check_Read_Status (AP (File)); return File.Index > Size (File); end End_Of_File; ----------- -- Index -- ----------- function Index (File : File_Type) return Positive_Count is begin FIO.Check_File_Open (AP (File)); return File.Index; end Index; ---------- -- Open -- ---------- procedure Open (File : in out File_Type; Mode : FCB.File_Mode; Name : String; Form : String := "") is Dummy_File_Control_Block : Direct_AFCB; pragma Warnings (Off, Dummy_File_Control_Block); -- Yes, we know this is never assigned a value, only the tag is used for -- dispatching purposes, so that's expected. begin FIO.Open (File_Ptr => AP (File), Dummy_FCB => Dummy_File_Control_Block, Mode => Mode, Name => Name, Form => Form, Amethod => 'D', Creat => False, Text => False); end Open; ---------- -- Read -- ---------- procedure Read (File : File_Type; Item : Address; Size : Interfaces.C_Streams.size_t; From : Positive_Count) is begin Set_Index (File, From); Read (File, Item, Size); end Read; procedure Read (File : File_Type; Item : Address; Size : Interfaces.C_Streams.size_t) is begin FIO.Check_Read_Status (AP (File)); -- If last operation was not a read, or if in file sharing mode, -- then reset the physical pointer of the file to match the index -- We lock out task access over the two operations in this case. if File.Last_Op /= Op_Read or else File.Shared_Status = FCB.Yes then if End_Of_File (File) then raise End_Error; end if; Locked_Processing : begin SSL.Lock_Task.all; Set_Position (File); FIO.Read_Buf (AP (File), Item, Size); SSL.Unlock_Task.all; exception when others => SSL.Unlock_Task.all; raise; end Locked_Processing; else FIO.Read_Buf (AP (File), Item, Size); end if; File.Index := File.Index + 1; -- Set last operation to read, unless we did not read a full record -- (happens with the variant record case) in which case we set the -- last operation as other, to force the file position to be reset -- on the next read. File.Last_Op := (if File.Bytes = Size then Op_Read else Op_Other); end Read; -- The following is the required overriding for Stream.Read, which is -- not used, since we do not do Stream operations on Direct_IO files. procedure Read (File : in out Direct_AFCB; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset) is begin raise Program_Error; end Read; ----------- -- Reset -- ----------- procedure Reset (File : in out File_Type; Mode : FCB.File_Mode) is pragma Warnings (Off, File); -- File is actually modified via Unrestricted_Access below, but -- GNAT will generate a warning anyway. -- -- Note that we do not use pragma Unmodified here, since in -gnatc mode, -- GNAT will complain that File is modified for "File.Index := 1;" begin FIO.Reset (AP (File)'Unrestricted_Access, Mode); File.Index := 1; File.Last_Op := Op_Read; end Reset; procedure Reset (File : in out File_Type) is pragma Warnings (Off, File); -- See above (other Reset procedure) for explanations on this pragma begin FIO.Reset (AP (File)'Unrestricted_Access); File.Index := 1; File.Last_Op := Op_Read; end Reset; --------------- -- Set_Index -- --------------- procedure Set_Index (File : File_Type; To : Positive_Count) is begin FIO.Check_File_Open (AP (File)); File.Index := Count (To); File.Last_Op := Op_Other; end Set_Index; ------------------ -- Set_Position -- ------------------ procedure Set_Position (File : File_Type) is R : int; begin R := fseek64 (File.Stream, int64 (File.Bytes) * int64 (File.Index - 1), SEEK_SET); if R /= 0 then raise Use_Error; end if; end Set_Position; ---------- -- Size -- ---------- function Size (File : File_Type) return Count is Pos : int64; begin FIO.Check_File_Open (AP (File)); File.Last_Op := Op_Other; if fseek64 (File.Stream, 0, SEEK_END) /= 0 then raise Device_Error; end if; Pos := ftell64 (File.Stream); if Pos = -1 then raise Use_Error; end if; return Count (Pos / int64 (File.Bytes)); end Size; ----------- -- Write -- ----------- procedure Write (File : File_Type; Item : Address; Size : Interfaces.C_Streams.size_t; Zeroes : System.Storage_Elements.Storage_Array) is procedure Do_Write; -- Do the actual write -------------- -- Do_Write -- -------------- procedure Do_Write is begin FIO.Write_Buf (AP (File), Item, Size); -- If we did not write the whole record (happens with the variant -- record case), then fill out the rest of the record with zeroes. -- This is cleaner in any case, and is required for the last -- record, since otherwise the length of the file is wrong. if File.Bytes > Size then FIO.Write_Buf (AP (File), Zeroes'Address, File.Bytes - Size); end if; end Do_Write; -- Start of processing for Write begin FIO.Check_Write_Status (AP (File)); -- If last operation was not a write, or if in file sharing mode, -- then reset the physical pointer of the file to match the index -- We lock out task access over the two operations in this case. if File.Last_Op /= Op_Write or else File.Shared_Status = FCB.Yes then Locked_Processing : begin SSL.Lock_Task.all; Set_Position (File); Do_Write; SSL.Unlock_Task.all; exception when others => SSL.Unlock_Task.all; raise; end Locked_Processing; else Do_Write; end if; File.Index := File.Index + 1; -- Set last operation to write, unless we did not read a full record -- (happens with the variant record case) in which case we set the -- last operation as other, to force the file position to be reset -- on the next write. File.Last_Op := (if File.Bytes = Size then Op_Write else Op_Other); end Write; -- The following is the required overriding for Stream.Write, which is -- not used, since we do not do Stream operations on Direct_IO files. procedure Write (File : in out Direct_AFCB; Item : Ada.Streams.Stream_Element_Array) is begin raise Program_Error; end Write; end System.Direct_IO;
package Loop_Optimization14_Pkg is procedure Proc (B : in out Boolean); end Loop_Optimization14_Pkg;
------------------------------------------------------------------------------ -- -- -- Modular Hash Infrastructure -- -- -- -- xxHash64 -- -- -- -- Pedantic Implementation -- -- -- -- ------------------------------------------------------------------------ -- -- -- -- Copyright (C) 2021, ANNEXI-STRAYLINE Trans-Human Ltd. -- -- All rights reserved. -- -- -- -- Original Contributors: -- -- * Richard Wai (ANNEXI-STRAYLINE) -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- -- -- * Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -- -- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- This implementation follows the official xxHash algorithm specification as -- described at https://github.com/Cyan4973/xxHash (v 0.8.0). -- -- The specification contains the following copyright notice: -- -- Copyright (c) Yann Collet -- -- Permission is granted to copy and distribute this document for any purpose -- and without charge, including translations into other languages and -- incorporation into compilations, provided that the copyright notice and this -- notice are preserved, and that any substantive changes or deletions from the -- original are clearly marked. Distribution of this document is unlimited. package body Modular_Hashing.xxHash64 is -- -- XXH64_Hash -- function "<" (Left, Right : XXH64_Hash) return Boolean is (Left.Digest < Right.Digest); function ">" (Left, Right : XXH64_Hash) return Boolean is (Left.Digest > Right.Digest); function "=" (Left, Right : XXH64_Hash) return Boolean is (Left.Digest = Right.Digest); ------------ -- Binary -- ------------ function Binary (Value: XXH64_Hash) return Hash_Binary_Value is V: Accumulator_Type := Value.Digest; begin return Bin: Hash_Binary_Value (1 .. XXH64_Hash_Bytes) do for Byte of Bin loop Byte := Unsigned_8 (V and 16#FF#); V := Shift_Right (V, 8); end loop; end return; end Binary; -- -- XXH64_Engine -- ---------------- -- Lane_Round -- ---------------- -- This is used during both Stripe_Round and Digest procedure Lane_Round (Accumulator: in out Accumulator_Type; Lane : in Accumulator_Type) with Inline is begin Accumulator := Accumulator + (Lane * PRIME64_2); Accumulator := Rotate_Left (Accumulator, 31); Accumulator := Accumulator * PRIME64_1; end; ------------------ -- Stripe_Round -- "Step 2" ------------------ -- Stripe_Round executes one full strip round (32-bytes) on the engine. -- This consumes the entire 32-byte Buffer (which must be full) procedure Stripe_Round (Engine: in out XXH64_Engine) with Inline, Pre => Engine.Last_Element = Engine.Buffer'Last is Lanes : Accumulator_Array; Accumulators: Accumulator_Array renames Engine.Accumulators; begin -- For each lane, load the value and then run the round on the -- accumulator. This is designed for simd, and we'll try to structure -- this to give the compiler as much of a chance as possible to see the -- obvious simd conditions -- Load lanes declare I: Stream_Element_Offset := Engine.Buffer'First; begin for Lane of Lanes loop for Byte of reverse Engine.Buffer(I .. I + 7) loop Lane := Shift_Left (Lane, 8); Lane := Lane + Accumulator_Type (Byte); end loop; I := I + 8; end loop; end; for I in Lanes'Range loop -- The actual rounds Lane_Round (Accumulators(I), Lanes(I)); end loop; Engine.Last_Element := Engine.Buffer'First - 1; end Stripe_Round; ----------- -- Write -- ----------- procedure Write (Engine : in out XXH64_Engine; Item : in Stream_Element_Array) is Last_Load: Stream_Element_Offset := Item'First - 1; procedure Load_Round with Inline, Pre => Last_Load < Item'Last is Buffer_Space: Stream_Element_Offset := Engine.Buffer'Last - Engine.Last_Element; Load_First: constant Stream_Element_Offset := Last_Load + 1; Load_Last : Stream_Element_Offset; Load_Size : Stream_Element_Offset := Buffer_Space; New_Last_Element: Stream_Element_Offset; begin pragma Assert (Buffer_Space > 0); -- Load in as many bytes as we can into the buffer. If we hit 16 -- bytes, we call a Stripe_Round. Load_Last := Load_First + Buffer_Space - 1; if Load_Last > Item'Last then Load_Last := Item'Last; Load_Size := Load_Last - Load_First + 1; end if; New_Last_Element := Engine.Last_Element + Load_Size; Engine.Buffer (Engine.Last_Element + 1 .. New_Last_Element) := Item (Load_First .. Load_Last); Last_Load := Load_Last; Engine.Last_Element := New_Last_Element; if New_Last_Element = Engine.Buffer'Last then Stripe_Round (Engine); end if; end; begin if Item'Length = 0 then return; end if; while Last_Load < Item'Last loop Load_Round; end loop; Engine.Input_Total := Engine.Input_Total + Item'Length; end Write; ----------- -- Reset -- ----------- procedure Reset (Engine : in out XXH64_Engine) is begin Engine.Last_Element := Engine.Buffer'First - 1; Engine.Input_Total := 0; Engine.Accumulators := Accumulators_Initial; end Reset; ------------ -- Digest -- ------------ function Digest (Engine : in out XXH64_Engine) return Hash'Class is Lane_Accumulators: Accumulator_Array renames Engine.Accumulators; Hash_Accumulator : Accumulator_Type; -- Steps as per the xxHash spec procedure Step_1_Short with Inline; -- Step 1 with < 16 byte total input -- Step 2. Process Stripes is done in Write procedure Step_3 with Inline; -- Accumulator Convergence procedure Step_4 with Inline; -- Add input length procedure Step_5 with Inline; -- Consume remaining input procedure Step_6 with Inline; -- Final mix (avalanche) -- Step 1 Short procedure Step_1_Short is -- This is invoked when Digest is called before 16 or more bytes have -- been written to the engine begin Hash_Accumulator := PRIME64_5; end; -- Step 3: Accumulator Convergence procedure Step_3 is procedure Merge_Accumulator (Source: in Accumulator_Type) with Inline is Dope: Accumulator_Type := 0; begin Lane_Round (Accumulator => Dope, Lane => Source); Hash_Accumulator := Hash_Accumulator xor Dope; Hash_Accumulator := Hash_Accumulator * PRIME64_1; Hash_Accumulator := Hash_Accumulator + PRIME64_4; end; begin Hash_Accumulator := Rotate_Left (Lane_Accumulators(1), 1) + Rotate_Left (Lane_Accumulators(2), 7) + Rotate_Left (Lane_Accumulators(3), 12) + Rotate_Left (Lane_Accumulators(4), 18); for Source of Lane_Accumulators loop Merge_Accumulator (Source); end loop; end; -- Step 4: Add input length procedure Step_4 is begin Hash_Accumulator := Hash_Accumulator + Engine.Input_Total; end; -- Step 5: Consume remaining input procedure Step_5 is Lane: Accumulator_Type := 0; Dope: Accumulator_Type; Mark: Stream_Element_Offset := Engine.Buffer'First; begin pragma Assert (Engine.Last_Element < Engine.Buffer'Last); while (Engine.Last_Element - Mark) >= 7 loop -- Note that since we are shifting the lane 8 x 8bits, -- the initial value of Lane does not matter at all, -- so we don't need to clear it every time for Byte of reverse Engine.Buffer (Mark .. Mark + 7) loop Lane := Shift_Left (Lane, 8); Lane := Lane + Accumulator_Type (Byte); end loop; Dope := 0; Lane_Round (Accumulator => Dope, Lane => Lane); Hash_Accumulator := Hash_Accumulator xor Dope; Hash_Accumulator := Rotate_Left (Hash_Accumulator, 27); Hash_Accumulator := Hash_Accumulator * PRIME64_1; Hash_Accumulator := Hash_Accumulator + PRIME64_4; Mark := Mark + 8; end loop; while (Engine.Last_Element - Mark) >= 3 loop Lane := 0; -- Lane does need to be cleared here because we're only -- loading a 32-bit number! for Byte of reverse Engine.Buffer (Mark .. Mark + 3) loop Lane := Shift_Left (Lane, 8); Lane := Lane + Accumulator_Type (Byte); end loop; Hash_Accumulator := Hash_Accumulator xor (Lane * PRIME64_1); Hash_Accumulator := Rotate_Left (Hash_Accumulator, 23); Hash_Accumulator := Hash_Accumulator * PRIME64_2; Hash_Accumulator := Hash_Accumulator + PRIME64_3; Mark := Mark + 4; end loop; while Mark <= Engine.Last_Element loop Lane := Accumulator_Type (Engine.Buffer(Mark)); Hash_Accumulator := Hash_Accumulator xor (Lane * PRIME64_5); Hash_Accumulator := Rotate_Left (Hash_Accumulator, 11); Hash_Accumulator := Hash_Accumulator * PRIME64_1; Mark := Mark + 1; end loop; end; -- Step 6: Final mix (avalanche) procedure Step_6 is Acc: Accumulator_Type renames Hash_Accumulator; begin Acc := Acc xor Shift_Right (Acc, 33); Acc := Acc * PRIME64_2; Acc := Acc xor Shift_Right (Acc, 29); Acc := Acc * PRIME64_3; Acc := Acc xor Shift_Right (Acc, 32); end Step_6; begin if Engine.Input_Total < 32 then -- If the total input is less than 32, we need to "manually" -- initialize the accumulator. If we have done any rounds ("Step 2") -- to process 32-byte "stripes", then we would use "Step 3" to -- initialize Hash_Accumulator from the Engine's accumulators. Hash_Accumulator := PRIME64_5; else -- Normal completion (Converge the engine accumulators into the hash -- accumulator) Step_3; end if; Step_4; Step_5; Step_6; return XXH64_Hash'(Digest => Hash_Accumulator); end Digest; end Modular_Hashing.xxHash64;
package body Ant_Handler with SPARK_Mode => On is function Do_Something (Text : String) return String is begin return Text; end Do_Something; end Ant_Handler;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2018, Fabien Chouteau -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with HAL; with System; use System; with System.Storage_Elements; use System.Storage_Elements; package AGATE_Arch_Parameters is subtype Word is HAL.UInt32; type Context_Index is range 0 .. 31; type Task_Context is array (Context_Index) of Word with Pack, Size => 32 * 32; Ctx_PC_Index : constant Context_Index := 0; Ctx_SP_Index : constant Context_Index := 2; Ctx_TP_Index : constant Context_Index := 4; Ctx_A0_Index : constant Context_Index := 10; Ctx_A1_Index : constant Context_Index := 11; Ctx_A2_Index : constant Context_Index := 12; Ctx_A3_Index : constant Context_Index := 13; type Trap_ID is range -24 .. -1; type Trap_Priority is range 0 .. 0; CLINT_Addr : constant := 16#02000000#; CLINT_Mtime_Offset : constant := 16#BFF8#; CLINT_Mtimecmp_Offset : constant := 16#4000#; Mtime_Lo_Addr : Address := To_Address (CLINT_Addr + CLINT_Mtime_Offset); Mtime_Hi_Addr : Address := To_Address (CLINT_Addr + CLINT_Mtime_Offset + 4); Mtimecmp_Lo_Addr : Address := To_Address (CLINT_Addr + CLINT_Mtimecmp_Offset); Mtimecmp_Hi_Addr : Address := To_Address (CLINT_Addr + CLINT_Mtimecmp_Offset + 4); Timer_Frequency : constant := 32768; end AGATE_Arch_Parameters;
----------------------------------------------------------------------- -- secret_harness -- Unit tests -- Copyright (C) 2017 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Secret.Testsuite; with Util.Tests; procedure Secret_Harness is procedure Harness is new Util.Tests.Harness (Secret.Testsuite.Suite); begin Harness ("secret-tests.xml"); end Secret_Harness;
-- This spec has been automatically generated from STM32F411xx.svd -- Definition of the device's interrupts package STM32_SVD.Interrupts is ---------------- -- Interrupts -- ---------------- -- PVD through EXTI line detection interrupt PVD : constant := 1; -- Tamper and TimeStamp interrupts through the EXTI line TAMP_STAMP : constant := 2; -- RTC Wakeup interrupt through the EXTI line RTC_WKUP : constant := 3; -- FLASH global interrupt FLASH : constant := 4; -- RCC global interrupt RCC : constant := 5; -- EXTI Line0 interrupt EXTI0 : constant := 6; -- EXTI Line1 interrupt EXTI1 : constant := 7; -- EXTI Line2 interrupt EXTI2 : constant := 8; -- EXTI Line3 interrupt EXTI3 : constant := 9; -- EXTI Line4 interrupt EXTI4 : constant := 10; -- ADC1 global interrupt ADC : constant := 18; -- EXTI Line[9:5] interrupts EXTI9_5 : constant := 23; -- TIM1 Break interrupt and TIM9 global interrupt TIM1_BRK_TIM9 : constant := 24; -- TIM1 Update interrupt and TIM10 global interrupt TIM1_UP_TIM10 : constant := 25; -- TIM1 Trigger and Commutation interrupts and TIM11 global interrupt TIM1_TRG_COM_TIM11 : constant := 26; -- TIM1 Capture Compare interrupt TIM1_CC : constant := 27; -- TIM2 global interrupt TIM2 : constant := 28; -- TIM3 global interrupt TIM3 : constant := 29; -- I2C1 event interrupt I2C1_EV : constant := 31; -- I2C1 error interrupt I2C1_ER : constant := 32; -- I2C2 event interrupt I2C2_EV : constant := 33; -- I2C2 error interrupt I2C2_ER : constant := 34; -- SPI1 global interrupt SPI1 : constant := 35; -- SPI2 global interrupt SPI2 : constant := 36; -- EXTI Line[15:10] interrupts EXTI15_10 : constant := 40; -- RTC Alarms (A and B) through EXTI line interrupt RTC_Alarm : constant := 41; -- USB On-The-Go FS Wakeup through EXTI line interrupt OTG_FS_WKUP : constant := 42; -- SDIO global interrupt SDIO : constant := 49; -- SPI3 global interrupt SPI3 : constant := 51; -- USB On The Go FS global interrupt OTG_FS : constant := 67; -- I2C3 event interrupt I2C3_EV : constant := 72; -- I2C3 error interrupt I2C3_ER : constant := 73; -- SPI4 global interrupt SPI4 : constant := 84; end STM32_SVD.Interrupts;
-- Copyright 2008-2014 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package Pck is String_Var : String := "Hello from package Pck"; end Pck;
-- -- PLAYWAVE: Port to the Ada programming language of a test application for the -- the SDL mixer library. -- -- The original code was written in C by Sam Lantinga http://www.libsdl.org. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- -- Ada code written by: -- Antonio M. F. Vargas -- -- Ponta Delgada - Azores - Portugal -- -- E-mail: avargas@adapower.net -- -- http://www.adapower.net/~avargas -- with GNAT.OS_Lib; with Ada.Text_IO; use Ada.Text_IO; with SDL.Timer; package body PlayWave_Sprogs is package T renames SDL.Timer; -- ====================================== procedure CleanUp is begin if wave /= Mix.null_Chunk_ptr then Mix.FreeChunk (wave); wave := Mix.null_Chunk_ptr; end if; if audio_open then Mix.CloseAudio; audio_open := False; end if; SDL.SDL_Quit; end CleanUp; -- ====================================== procedure Usage (argv0 : US.Unbounded_String) is begin Put_Line ("Usage: " & US.To_String (argv0) & " [-8] [-r rate] [-l] [-m] <wavefile>"); end Usage; -- ====================================== procedure the_exit (number : C.int) is begin GNAT.OS_Lib.OS_Exit (Integer (number)); end the_exit; -- ====================================== end PlayWave_Sprogs;
package openGL.Model.line -- -- Provides an abstract class for line models. -- is type Item is abstract new Model.item with private; private type Item is abstract new Model.item with null record; end openGL.Model.line;
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. with Ada.Environment_Variables; use Ada.Environment_Variables; package body Tk.TopLevel.TopLevel_Options_Test_Data is Local_TopLevel_Options: aliased GNATtest_Generated.GNATtest_Standard.Tk .TopLevel .TopLevel_Options; procedure Set_Up(Gnattest_T: in out Test_TopLevel_Options) is begin GNATtest_Generated.GNATtest_Standard.Tk.Widget.Widget_Options_Test_Data .Widget_Options_Tests .Set_Up (GNATtest_Generated.GNATtest_Standard.Tk.Widget .Widget_Options_Test_Data .Widget_Options_Tests .Test_Widget_Options (Gnattest_T)); Gnattest_T.Fixture := Local_TopLevel_Options'Access; end Set_Up; procedure Tear_Down(Gnattest_T: in out Test_TopLevel_Options) is TopLevel: Tk_Toplevel; begin GNATtest_Generated.GNATtest_Standard.Tk.Widget.Widget_Options_Test_Data .Widget_Options_Tests .Tear_Down (GNATtest_Generated.GNATtest_Standard.Tk.Widget .Widget_Options_Test_Data .Widget_Options_Tests .Test_Widget_Options (Gnattest_T)); if Value("DISPLAY", "")'Length = 0 then return; end if; TopLevel := Get_Widget(".mydialog"); if TopLevel /= Null_Widget then Destroy(TopLevel); end if; end Tear_Down; end Tk.TopLevel.TopLevel_Options_Test_Data;
-- CD5014I.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 AN ADDRESS CLAUSE CAN BE GIVEN IN THE VISIBLE PART -- OF A GENERIC PACKAGE SPECIFICATION FOR A VARIABLE OF AN ARRAY -- TYPE, WHERE THE VARIABLE IS DECLARED IN THE VISIBLE PART OF THE -- SPECIFICATION. -- HISTORY: -- CDJ 07/24/87 CREATED ORIGINAL TEST. -- BCB 10/01/87 CHANGED TEST TO STANDARD FORMAT. -- PWB 05/11/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA'. -- MCH 04/03/90 ADDED INSTANTIATION. WITH SYSTEM; USE SYSTEM; WITH SPPRT13; USE SPPRT13; WITH REPORT; USE REPORT; PROCEDURE CD5014I IS BEGIN TEST ("CD5014I", " AN ADDRESS CLAUSE CAN BE GIVEN " & "IN THE VISIBLE PART OF A GENERIC PACKAGE " & "SPECIFICATION FOR A VARIABLE OF AN ARRAY " & "TYPE, WHERE THE VARIABLE IS DECLARED IN THE " & "VISIBLE PART OF THE SPECIFICATION"); DECLARE GENERIC PACKAGE PKG IS TYPE ARR_TYPE IS ARRAY (1..2) OF INTEGER; ARR_OBJ1 : ARR_TYPE := (5,10); FOR ARR_OBJ1 USE AT VARIABLE_ADDRESS; END PKG; PACKAGE BODY PKG IS BEGIN IF EQUAL(3,3) THEN ARR_OBJ1 := (13,21); END IF; IF ARR_OBJ1 /= (13,21) THEN FAILED ("INCORRECT VALUE FOR ARRAY VARIABLE"); END IF; IF ARR_OBJ1'ADDRESS /= VARIABLE_ADDRESS THEN FAILED ("INCORRECT ADDRESS FOR ARRAY VARIABLE"); END IF; END PKG; PACKAGE INSTANTIATE IS NEW PKG; BEGIN NULL; END; RESULT; END CD5014I;
with Ada.Unchecked_Conversion; package Tkmrpc.Response.Ike.Ae_Reset.Convert is function To_Response is new Ada.Unchecked_Conversion ( Source => Ae_Reset.Response_Type, Target => Response.Data_Type); function From_Response is new Ada.Unchecked_Conversion ( Source => Response.Data_Type, Target => Ae_Reset.Response_Type); end Tkmrpc.Response.Ike.Ae_Reset.Convert;
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. with AUnit.Test_Fixtures; package HallOfFame.Test_Data is -- begin read only type Test is new AUnit.Test_Fixtures.Test_Fixture -- end read only with null record; procedure Set_Up(Gnattest_T: in out Test); procedure Tear_Down(Gnattest_T: in out Test); end HallOfFame.Test_Data;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . N U M E R I C S . D I S C R E T E _ R A N D O M -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body Ada.Numerics.Discrete_Random with SPARK_Mode => Off is package SRN renames System.Random_Numbers; use SRN; ----------- -- Image -- ----------- function Image (Of_State : State) return String is begin return Image (SRN.State (Of_State)); end Image; ------------ -- Random -- ------------ function Random (Gen : Generator) return Result_Subtype is function Random is new SRN.Random_Discrete (Result_Subtype, Result_Subtype'First); begin return Random (SRN.Generator (Gen)); end Random; ----------- -- Reset -- ----------- procedure Reset (Gen : Generator) is begin Reset (SRN.Generator (Gen)); end Reset; procedure Reset (Gen : Generator; Initiator : Integer) is begin Reset (SRN.Generator (Gen), Initiator); end Reset; procedure Reset (Gen : Generator; From_State : State) is begin Reset (SRN.Generator (Gen), SRN.State (From_State)); end Reset; ---------- -- Save -- ---------- procedure Save (Gen : Generator; To_State : out State) is begin Save (SRN.Generator (Gen), SRN.State (To_State)); end Save; ----------- -- Value -- ----------- function Value (Coded_State : String) return State is begin return State (SRN.State'(Value (Coded_State))); end Value; end Ada.Numerics.Discrete_Random;
-- Auto generated file. Don't edit -- Read copyright and license at the end of this file package body Encodings.Maps.KOI8_R is Forward : Forward_Map (Character'Val(16#80#) .. Character'Last) := (Wide_Character'Val(16#2500#), Wide_Character'Val(16#2502#), Wide_Character'Val(16#250C#), Wide_Character'Val(16#2510#), Wide_Character'Val(16#2514#), Wide_Character'Val(16#2518#), Wide_Character'Val(16#251C#), Wide_Character'Val(16#2524#), Wide_Character'Val(16#252C#), Wide_Character'Val(16#2534#), Wide_Character'Val(16#253C#), Wide_Character'Val(16#2580#), Wide_Character'Val(16#2584#), Wide_Character'Val(16#2588#), Wide_Character'Val(16#258C#), Wide_Character'Val(16#2590#), Wide_Character'Val(16#2591#), Wide_Character'Val(16#2592#), Wide_Character'Val(16#2593#), Wide_Character'Val(16#2320#), Wide_Character'Val(16#25A0#), Wide_Character'Val(16#2219#), Wide_Character'Val(16#221A#), Wide_Character'Val(16#2248#), Wide_Character'Val(16#2264#), Wide_Character'Val(16#2265#), Wide_Character'Val( 16#A0#), Wide_Character'Val(16#2321#), Wide_Character'Val( 16#B0#), Wide_Character'Val( 16#B2#), Wide_Character'Val( 16#B7#), Wide_Character'Val( 16#F7#), Wide_Character'Val(16#2550#), Wide_Character'Val(16#2551#), Wide_Character'Val(16#2552#), Wide_Character'Val( 16#451#), Wide_Character'Val(16#2553#), Wide_Character'Val(16#2554#), Wide_Character'Val(16#2555#), Wide_Character'Val(16#2556#), Wide_Character'Val(16#2557#), Wide_Character'Val(16#2558#), Wide_Character'Val(16#2559#), Wide_Character'Val(16#255A#), Wide_Character'Val(16#255B#), Wide_Character'Val(16#255C#), Wide_Character'Val(16#255D#), Wide_Character'Val(16#255E#), Wide_Character'Val(16#255F#), Wide_Character'Val(16#2560#), Wide_Character'Val(16#2561#), Wide_Character'Val( 16#401#), Wide_Character'Val(16#2562#), Wide_Character'Val(16#2563#), Wide_Character'Val(16#2564#), Wide_Character'Val(16#2565#), Wide_Character'Val(16#2566#), Wide_Character'Val(16#2567#), Wide_Character'Val(16#2568#), Wide_Character'Val(16#2569#), Wide_Character'Val(16#256A#), Wide_Character'Val(16#256B#), Wide_Character'Val(16#256C#), Wide_Character'Val( 16#A9#), Wide_Character'Val( 16#44E#), Wide_Character'Val( 16#430#), Wide_Character'Val( 16#431#), Wide_Character'Val( 16#446#), Wide_Character'Val( 16#434#), Wide_Character'Val( 16#435#), Wide_Character'Val( 16#444#), Wide_Character'Val( 16#433#), Wide_Character'Val( 16#445#), Wide_Character'Val( 16#438#), Wide_Character'Val( 16#439#), Wide_Character'Val( 16#43A#), Wide_Character'Val( 16#43B#), Wide_Character'Val( 16#43C#), Wide_Character'Val( 16#43D#), Wide_Character'Val( 16#43E#), Wide_Character'Val( 16#43F#), Wide_Character'Val( 16#44F#), Wide_Character'Val( 16#440#), Wide_Character'Val( 16#441#), Wide_Character'Val( 16#442#), Wide_Character'Val( 16#443#), Wide_Character'Val( 16#436#), Wide_Character'Val( 16#432#), Wide_Character'Val( 16#44C#), Wide_Character'Val( 16#44B#), Wide_Character'Val( 16#437#), Wide_Character'Val( 16#448#), Wide_Character'Val( 16#44D#), Wide_Character'Val( 16#449#), Wide_Character'Val( 16#447#), Wide_Character'Val( 16#44A#), Wide_Character'Val( 16#42E#), Wide_Character'Val( 16#410#), Wide_Character'Val( 16#411#), Wide_Character'Val( 16#426#), Wide_Character'Val( 16#414#), Wide_Character'Val( 16#415#), Wide_Character'Val( 16#424#), Wide_Character'Val( 16#413#), Wide_Character'Val( 16#425#), Wide_Character'Val( 16#418#), Wide_Character'Val( 16#419#), Wide_Character'Val( 16#41A#), Wide_Character'Val( 16#41B#), Wide_Character'Val( 16#41C#), Wide_Character'Val( 16#41D#), Wide_Character'Val( 16#41E#), Wide_Character'Val( 16#41F#), Wide_Character'Val( 16#42F#), Wide_Character'Val( 16#420#), Wide_Character'Val( 16#421#), Wide_Character'Val( 16#422#), Wide_Character'Val( 16#423#), Wide_Character'Val( 16#416#), Wide_Character'Val( 16#412#), Wide_Character'Val( 16#42C#), Wide_Character'Val( 16#42B#), Wide_Character'Val( 16#417#), Wide_Character'Val( 16#428#), Wide_Character'Val( 16#42D#), Wide_Character'Val( 16#429#), Wide_Character'Val( 16#427#), Wide_Character'Val( 16#42A#)); Ranges : Maps.Wide_Ranges (1 .. 32) := ((Wide_Character'Val( 16#0#),Wide_Character'Val( 16#7F#), 1), (Wide_Character'Val( 16#A0#),Wide_Character'Val( 16#A0#), 129), (Wide_Character'Val( 16#A9#),Wide_Character'Val( 16#A9#), 130), (Wide_Character'Val( 16#B0#),Wide_Character'Val( 16#B0#), 131), (Wide_Character'Val( 16#B2#),Wide_Character'Val( 16#B2#), 132), (Wide_Character'Val( 16#B7#),Wide_Character'Val( 16#B7#), 133), (Wide_Character'Val( 16#F7#),Wide_Character'Val( 16#F7#), 134), (Wide_Character'Val( 16#401#),Wide_Character'Val( 16#401#), 135), (Wide_Character'Val( 16#410#),Wide_Character'Val( 16#44F#), 136), (Wide_Character'Val( 16#451#),Wide_Character'Val( 16#451#), 200), (Wide_Character'Val(16#2219#),Wide_Character'Val(16#221A#), 201), (Wide_Character'Val(16#2248#),Wide_Character'Val(16#2248#), 203), (Wide_Character'Val(16#2264#),Wide_Character'Val(16#2265#), 204), (Wide_Character'Val(16#2320#),Wide_Character'Val(16#2321#), 206), (Wide_Character'Val(16#2500#),Wide_Character'Val(16#2500#), 208), (Wide_Character'Val(16#2502#),Wide_Character'Val(16#2502#), 209), (Wide_Character'Val(16#250C#),Wide_Character'Val(16#250C#), 210), (Wide_Character'Val(16#2510#),Wide_Character'Val(16#2510#), 211), (Wide_Character'Val(16#2514#),Wide_Character'Val(16#2514#), 212), (Wide_Character'Val(16#2518#),Wide_Character'Val(16#2518#), 213), (Wide_Character'Val(16#251C#),Wide_Character'Val(16#251C#), 214), (Wide_Character'Val(16#2524#),Wide_Character'Val(16#2524#), 215), (Wide_Character'Val(16#252C#),Wide_Character'Val(16#252C#), 216), (Wide_Character'Val(16#2534#),Wide_Character'Val(16#2534#), 217), (Wide_Character'Val(16#253C#),Wide_Character'Val(16#253C#), 218), (Wide_Character'Val(16#2550#),Wide_Character'Val(16#256C#), 219), (Wide_Character'Val(16#2580#),Wide_Character'Val(16#2580#), 248), (Wide_Character'Val(16#2584#),Wide_Character'Val(16#2584#), 249), (Wide_Character'Val(16#2588#),Wide_Character'Val(16#2588#), 250), (Wide_Character'Val(16#258C#),Wide_Character'Val(16#258C#), 251), (Wide_Character'Val(16#2590#),Wide_Character'Val(16#2593#), 252), (Wide_Character'Val(16#25A0#),Wide_Character'Val(16#25A0#), 256)); Backward : Maps.Backward_Map (1 .. 256) := (Character'Val( 16#0#), Character'Val( 16#1#), Character'Val( 16#2#), Character'Val( 16#3#), Character'Val( 16#4#), Character'Val( 16#5#), Character'Val( 16#6#), Character'Val( 16#7#), Character'Val( 16#8#), Character'Val( 16#9#), Character'Val( 16#A#), Character'Val( 16#B#), Character'Val( 16#C#), Character'Val( 16#D#), Character'Val( 16#E#), Character'Val( 16#F#), Character'Val(16#10#), Character'Val(16#11#), Character'Val(16#12#), Character'Val(16#13#), Character'Val(16#14#), Character'Val(16#15#), Character'Val(16#16#), Character'Val(16#17#), Character'Val(16#18#), Character'Val(16#19#), Character'Val(16#1A#), Character'Val(16#1B#), Character'Val(16#1C#), Character'Val(16#1D#), Character'Val(16#1E#), Character'Val(16#1F#), Character'Val(16#20#), Character'Val(16#21#), Character'Val(16#22#), Character'Val(16#23#), Character'Val(16#24#), Character'Val(16#25#), Character'Val(16#26#), Character'Val(16#27#), Character'Val(16#28#), Character'Val(16#29#), Character'Val(16#2A#), Character'Val(16#2B#), Character'Val(16#2C#), Character'Val(16#2D#), Character'Val(16#2E#), Character'Val(16#2F#), Character'Val(16#30#), Character'Val(16#31#), Character'Val(16#32#), Character'Val(16#33#), Character'Val(16#34#), Character'Val(16#35#), Character'Val(16#36#), Character'Val(16#37#), Character'Val(16#38#), Character'Val(16#39#), Character'Val(16#3A#), Character'Val(16#3B#), Character'Val(16#3C#), Character'Val(16#3D#), Character'Val(16#3E#), Character'Val(16#3F#), Character'Val(16#40#), Character'Val(16#41#), Character'Val(16#42#), Character'Val(16#43#), Character'Val(16#44#), Character'Val(16#45#), Character'Val(16#46#), Character'Val(16#47#), Character'Val(16#48#), Character'Val(16#49#), Character'Val(16#4A#), Character'Val(16#4B#), Character'Val(16#4C#), Character'Val(16#4D#), Character'Val(16#4E#), Character'Val(16#4F#), Character'Val(16#50#), Character'Val(16#51#), Character'Val(16#52#), Character'Val(16#53#), Character'Val(16#54#), Character'Val(16#55#), Character'Val(16#56#), Character'Val(16#57#), Character'Val(16#58#), Character'Val(16#59#), Character'Val(16#5A#), Character'Val(16#5B#), Character'Val(16#5C#), Character'Val(16#5D#), Character'Val(16#5E#), Character'Val(16#5F#), Character'Val(16#60#), Character'Val(16#61#), Character'Val(16#62#), Character'Val(16#63#), Character'Val(16#64#), Character'Val(16#65#), Character'Val(16#66#), Character'Val(16#67#), Character'Val(16#68#), Character'Val(16#69#), Character'Val(16#6A#), Character'Val(16#6B#), Character'Val(16#6C#), Character'Val(16#6D#), Character'Val(16#6E#), Character'Val(16#6F#), Character'Val(16#70#), Character'Val(16#71#), Character'Val(16#72#), Character'Val(16#73#), Character'Val(16#74#), Character'Val(16#75#), Character'Val(16#76#), Character'Val(16#77#), Character'Val(16#78#), Character'Val(16#79#), Character'Val(16#7A#), Character'Val(16#7B#), Character'Val(16#7C#), Character'Val(16#7D#), Character'Val(16#7E#), Character'Val(16#7F#), Character'Val(16#9A#), Character'Val(16#BF#), Character'Val(16#9C#), Character'Val(16#9D#), Character'Val(16#9E#), Character'Val(16#9F#), Character'Val(16#B3#), Character'Val(16#E1#), Character'Val(16#E2#), Character'Val(16#F7#), Character'Val(16#E7#), Character'Val(16#E4#), Character'Val(16#E5#), Character'Val(16#F6#), Character'Val(16#FA#), Character'Val(16#E9#), Character'Val(16#EA#), Character'Val(16#EB#), Character'Val(16#EC#), Character'Val(16#ED#), Character'Val(16#EE#), Character'Val(16#EF#), Character'Val(16#F0#), Character'Val(16#F2#), Character'Val(16#F3#), Character'Val(16#F4#), Character'Val(16#F5#), Character'Val(16#E6#), Character'Val(16#E8#), Character'Val(16#E3#), Character'Val(16#FE#), Character'Val(16#FB#), Character'Val(16#FD#), Character'Val(16#FF#), Character'Val(16#F9#), Character'Val(16#F8#), Character'Val(16#FC#), Character'Val(16#E0#), Character'Val(16#F1#), Character'Val(16#C1#), Character'Val(16#C2#), Character'Val(16#D7#), Character'Val(16#C7#), Character'Val(16#C4#), Character'Val(16#C5#), Character'Val(16#D6#), Character'Val(16#DA#), Character'Val(16#C9#), Character'Val(16#CA#), Character'Val(16#CB#), Character'Val(16#CC#), Character'Val(16#CD#), Character'Val(16#CE#), Character'Val(16#CF#), Character'Val(16#D0#), Character'Val(16#D2#), Character'Val(16#D3#), Character'Val(16#D4#), Character'Val(16#D5#), Character'Val(16#C6#), Character'Val(16#C8#), Character'Val(16#C3#), Character'Val(16#DE#), Character'Val(16#DB#), Character'Val(16#DD#), Character'Val(16#DF#), Character'Val(16#D9#), Character'Val(16#D8#), Character'Val(16#DC#), Character'Val(16#C0#), Character'Val(16#D1#), Character'Val(16#A3#), Character'Val(16#95#), Character'Val(16#96#), Character'Val(16#97#), Character'Val(16#98#), Character'Val(16#99#), Character'Val(16#93#), Character'Val(16#9B#), Character'Val(16#80#), Character'Val(16#81#), Character'Val(16#82#), Character'Val(16#83#), Character'Val(16#84#), Character'Val(16#85#), Character'Val(16#86#), Character'Val(16#87#), Character'Val(16#88#), Character'Val(16#89#), Character'Val(16#8A#), Character'Val(16#A0#), Character'Val(16#A1#), Character'Val(16#A2#), Character'Val(16#A4#), Character'Val(16#A5#), Character'Val(16#A6#), Character'Val(16#A7#), Character'Val(16#A8#), Character'Val(16#A9#), Character'Val(16#AA#), Character'Val(16#AB#), Character'Val(16#AC#), Character'Val(16#AD#), Character'Val(16#AE#), Character'Val(16#AF#), Character'Val(16#B0#), Character'Val(16#B1#), Character'Val(16#B2#), Character'Val(16#B4#), Character'Val(16#B5#), Character'Val(16#B6#), Character'Val(16#B7#), Character'Val(16#B8#), Character'Val(16#B9#), Character'Val(16#BA#), Character'Val(16#BB#), Character'Val(16#BC#), Character'Val(16#BD#), Character'Val(16#BE#), Character'Val(16#8B#), Character'Val(16#8C#), Character'Val(16#8D#), Character'Val(16#8E#), Character'Val(16#8F#), Character'Val(16#90#), Character'Val(16#91#), Character'Val(16#92#), Character'Val(16#94#)); function Decode (Char : Character) return Wide_Character is begin return Decode (Char, Forward); end Decode; procedure Decode (Text : in Raw_String; Text_Last : out Natural; Result : out Wide_String; Result_Last : out Natural; Map : in Encoding := Encodings.KOI8_R) is begin Decode (Text, Text_Last, Result, Result_Last, Forward); end Decode; procedure Encode (Text : in Wide_String; Text_Last : out Natural; Result : out Raw_String; Result_Last : out Natural; Map : in Encoding := Encodings.KOI8_R) is begin Encode (Text, Text_Last, Result, Result_Last, Ranges, Backward); end Encode; begin Encoder_List (Encodings.KOI8_R) := Encode'Access; Decoder_List (Encodings.KOI8_R) := Decode'Access; end Encodings.Maps.KOI8_R; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * Neither the name of the Maxim Reznik, IE nor the names of its -- contributors may be used to endorse or promote products derived from -- this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . L I N U X -- -- -- -- S p e c -- -- -- -- Copyright (C) 2009-2014, 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/>. -- -- -- -- -- ------------------------------------------------------------------------------ -- This is the alpha version of this package -- This package encapsulates cpu specific differences between implementations -- of GNU/Linux, in order to share s-osinte-linux.ads. -- PLEASE DO NOT add any with-clauses to this package or remove the pragma -- Preelaborate. This package is designed to be a bottom-level (leaf) package. with Interfaces.C; package System.Linux is pragma Preelaborate; ---------- -- Time -- ---------- subtype long is Interfaces.C.long; subtype suseconds_t is Interfaces.C.long; subtype time_t is Interfaces.C.long; subtype clockid_t is Interfaces.C.int; type timespec is record tv_sec : time_t; tv_nsec : long; end record; pragma Convention (C, timespec); type timeval is record tv_sec : time_t; tv_usec : suseconds_t; end record; pragma Convention (C, timeval); ----------- -- Errno -- ----------- EAGAIN : constant := 35; EINTR : constant := 4; EINVAL : constant := 22; ENOMEM : constant := 12; EPERM : constant := 1; ETIMEDOUT : constant := 60; ------------- -- Signals -- ------------- 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 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 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 SIGURG : constant := 16; -- urgent condition on IO channel 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 SIGCLD : constant := 20; -- alias for SIGCHLD SIGCHLD : constant := 20; -- child status change SIGTTIN : constant := 21; -- background tty read attempted SIGTTOU : constant := 22; -- background tty write attempted SIGIO : constant := 23; -- I/O now possible (4.2 BSD) SIGPOLL : constant := 23; -- pollable event occurred SIGXCPU : constant := 24; -- CPU time limit exceeded SIGXFSZ : constant := 25; -- filesize limit exceeded SIGVTALRM : constant := 26; -- virtual timer expired SIGPROF : constant := 27; -- profiling timer expired SIGWINCH : constant := 28; -- window size change SIGPWR : constant := 29; -- power-fail restart SIGUSR1 : constant := 30; -- user defined signal 1 SIGUSR2 : constant := 31; -- user defined signal 2 SIGLTHRRES : constant := 32; -- GNU/LinuxThreads restart signal SIGLTHRCAN : constant := 33; -- GNU/LinuxThreads cancel signal SIGLTHRDBG : constant := 34; -- GNU/LinuxThreads debugger signal SIGADAABORT : constant := SIGABRT; -- Change this if you want to use another signal for task abort. -- SIGTERM might be a good one. SIGUNUSED : constant := 0; SIGSTKFLT : constant := 0; SIGLOST : constant := 0; -- These don't exist for Linux/Alpha. The constants are present -- so that we can continue to use a-intnam-linux.ads. -- struct_sigaction offsets sa_handler_pos : constant := 0; sa_mask_pos : constant := Standard'Address_Size / 8; sa_flags_pos : constant := 128 + sa_mask_pos; SA_SIGINFO : constant := 16#40#; SA_ONSTACK : constant := 16#01#; end System.Linux;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Ada.Strings.Hash; with Ada.Tags; with Ada.Unchecked_Deallocation; package body Web_Services.SOAP.Messages is -------------- -- Finalize -- -------------- procedure Finalize (Self : in out SOAP_Message) is procedure Free is new Ada.Unchecked_Deallocation (Web_Services.SOAP.Headers.Abstract_SOAP_Header'Class, Web_Services.SOAP.Headers.SOAP_Header_Access); procedure Free is new Ada.Unchecked_Deallocation (Web_Services.SOAP.Payloads.Abstract_SOAP_Payload'Class, Web_Services.SOAP.Payloads.SOAP_Payload_Access); Position : Header_Sets.Cursor; Header : Web_Services.SOAP.Headers.SOAP_Header_Access; begin while not Self.Headers.Is_Empty loop Position := Self.Headers.First; Header := Header_Sets.Element (Position); Self.Headers.Delete (Position); Free (Header); end loop; Free (Self.Payload); end Finalize; ---------- -- Free -- ---------- procedure Free (Message : in out SOAP_Message_Access) is procedure Free is new Ada.Unchecked_Deallocation (Web_Services.SOAP.Messages.SOAP_Message, Web_Services.SOAP.Messages.SOAP_Message_Access); begin if Message /= null then Finalize (Message.all); Free (Message); end if; end Free; ---------- -- Hash -- ---------- function Hash (Item : Web_Services.SOAP.Headers.SOAP_Header_Access) return Ada.Containers.Hash_Type is begin return Ada.Strings.Hash (Ada.Tags.External_Tag (Item'Tag)); end Hash; end Web_Services.SOAP.Messages;
package body opengl.Surface.privvy is function to_eGL (Self : in Surface.item'Class) return egl.EGLSurface is begin return Self.egl_Surface; end to_eGL; end opengl.Surface.privvy;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Internals.UML_Packageable_Elements; with AMF.String_Collections; with AMF.UML.Behaviors; with AMF.UML.Dependencies.Collections; with AMF.UML.Named_Elements; with AMF.UML.Namespaces; with AMF.UML.Opaque_Expressions; with AMF.UML.Packages.Collections; with AMF.UML.Parameterable_Elements; with AMF.UML.Parameters; with AMF.UML.String_Expressions; with AMF.UML.Template_Parameters; with AMF.UML.Types; with AMF.Visitors; package AMF.Internals.UML_Opaque_Expressions is type UML_Opaque_Expression_Proxy is limited new AMF.Internals.UML_Packageable_Elements.UML_Packageable_Element_Proxy and AMF.UML.Opaque_Expressions.UML_Opaque_Expression with null record; overriding function Get_Behavior (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Behaviors.UML_Behavior_Access; -- Getter of OpaqueExpression::behavior. -- -- Specifies the behavior of the opaque expression. overriding procedure Set_Behavior (Self : not null access UML_Opaque_Expression_Proxy; To : AMF.UML.Behaviors.UML_Behavior_Access); -- Setter of OpaqueExpression::behavior. -- -- Specifies the behavior of the opaque expression. overriding function Get_Body (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.String_Collections.Sequence_Of_String; -- Getter of OpaqueExpression::body. -- -- The text of the expression, possibly in multiple languages. overriding function Get_Language (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.String_Collections.Ordered_Set_Of_String; -- Getter of OpaqueExpression::language. -- -- Specifies the languages in which the expression is stated. The -- interpretation of the expression body depends on the languages. If the -- languages are unspecified, they might be implicit from the expression -- body or the context. Languages are matched to body strings by order. overriding function Get_Result (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Parameters.UML_Parameter_Access; -- Getter of OpaqueExpression::result. -- -- Restricts an opaque expression to return exactly one return result. -- When the invocation of the opaque expression completes, a single set of -- values is returned to its owner. This association is derived from the -- single return result parameter of the associated behavior. overriding function Get_Type (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Types.UML_Type_Access; -- Getter of TypedElement::type. -- -- The type of the TypedElement. -- This information is derived from the return result for this Operation. overriding procedure Set_Type (Self : not null access UML_Opaque_Expression_Proxy; To : AMF.UML.Types.UML_Type_Access); -- Setter of TypedElement::type. -- -- The type of the TypedElement. -- This information is derived from the return result for this Operation. overriding function Get_Client_Dependency (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency; -- Getter of NamedElement::clientDependency. -- -- Indicates the dependencies that reference the client. overriding function Get_Name_Expression (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.String_Expressions.UML_String_Expression_Access; -- Getter of NamedElement::nameExpression. -- -- The string expression used to define the name of this named element. overriding procedure Set_Name_Expression (Self : not null access UML_Opaque_Expression_Proxy; To : AMF.UML.String_Expressions.UML_String_Expression_Access); -- Setter of NamedElement::nameExpression. -- -- The string expression used to define the name of this named element. overriding function Get_Namespace (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access; -- Getter of NamedElement::namespace. -- -- Specifies the namespace that owns the NamedElement. overriding function Get_Qualified_Name (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.Optional_String; -- Getter of NamedElement::qualifiedName. -- -- A name which allows the NamedElement to be identified within a -- hierarchy of nested Namespaces. It is constructed from the names of the -- containing namespaces starting at the root of the hierarchy and ending -- with the name of the NamedElement itself. overriding function Get_Owning_Template_Parameter (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Template_Parameters.UML_Template_Parameter_Access; -- Getter of ParameterableElement::owningTemplateParameter. -- -- The formal template parameter that owns this element. overriding procedure Set_Owning_Template_Parameter (Self : not null access UML_Opaque_Expression_Proxy; To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access); -- Setter of ParameterableElement::owningTemplateParameter. -- -- The formal template parameter that owns this element. overriding function Get_Template_Parameter (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Template_Parameters.UML_Template_Parameter_Access; -- Getter of ParameterableElement::templateParameter. -- -- The template parameter that exposes this element as a formal parameter. overriding procedure Set_Template_Parameter (Self : not null access UML_Opaque_Expression_Proxy; To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access); -- Setter of ParameterableElement::templateParameter. -- -- The template parameter that exposes this element as a formal parameter. overriding function Is_Integral (Self : not null access constant UML_Opaque_Expression_Proxy) return Boolean; -- Operation OpaqueExpression::isIntegral. -- -- The query isIntegral() tells whether an expression is intended to -- produce an integer. overriding function Is_Non_Negative (Self : not null access constant UML_Opaque_Expression_Proxy) return Boolean; -- Operation OpaqueExpression::isNonNegative. -- -- The query isNonNegative() tells whether an integer expression has a -- non-negative value. overriding function Is_Positive (Self : not null access constant UML_Opaque_Expression_Proxy) return Boolean; -- Operation OpaqueExpression::isPositive. -- -- The query isPositive() tells whether an integer expression has a -- positive value. overriding function Result (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Parameters.UML_Parameter_Access; -- Operation OpaqueExpression::result. -- -- Missing derivation for OpaqueExpression::/result : Parameter overriding function Value (Self : not null access constant UML_Opaque_Expression_Proxy) return Integer; -- Operation OpaqueExpression::value. -- -- The query value() gives an integer value for an expression intended to -- produce one. overriding function Boolean_Value (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.Optional_Boolean; -- Operation ValueSpecification::booleanValue. -- -- The query booleanValue() gives a single Boolean value when one can be -- computed. overriding function Integer_Value (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.Optional_Integer; -- Operation ValueSpecification::integerValue. -- -- The query integerValue() gives a single Integer value when one can be -- computed. overriding function Is_Compatible_With (Self : not null access constant UML_Opaque_Expression_Proxy; P : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access) return Boolean; -- Operation ValueSpecification::isCompatibleWith. -- -- The query isCompatibleWith() determines if this parameterable element -- is compatible with the specified parameterable element. By default -- parameterable element P is compatible with parameterable element Q if -- the kind of P is the same or a subtype as the kind of Q. In addition, -- for ValueSpecification, the type must be conformant with the type of -- the specified parameterable element. overriding function Is_Computable (Self : not null access constant UML_Opaque_Expression_Proxy) return Boolean; -- Operation ValueSpecification::isComputable. -- -- The query isComputable() determines whether a value specification can -- be computed in a model. This operation cannot be fully defined in OCL. -- A conforming implementation is expected to deliver true for this -- operation for all value specifications that it can compute, and to -- compute all of those for which the operation is true. A conforming -- implementation is expected to be able to compute the value of all -- literals. overriding function Is_Null (Self : not null access constant UML_Opaque_Expression_Proxy) return Boolean; -- Operation ValueSpecification::isNull. -- -- The query isNull() returns true when it can be computed that the value -- is null. overriding function Real_Value (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.Optional_Real; -- Operation ValueSpecification::realValue. -- -- The query realValue() gives a single Real value when one can be -- computed. overriding function String_Value (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.Optional_String; -- Operation ValueSpecification::stringValue. -- -- The query stringValue() gives a single String value when one can be -- computed. overriding function Unlimited_Value (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.Optional_Unlimited_Natural; -- Operation ValueSpecification::unlimitedValue. -- -- The query unlimitedValue() gives a single UnlimitedNatural value when -- one can be computed. overriding function All_Owning_Packages (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Packages.Collections.Set_Of_UML_Package; -- Operation NamedElement::allOwningPackages. -- -- The query allOwningPackages() returns all the directly or indirectly -- owning packages. overriding function Is_Distinguishable_From (Self : not null access constant UML_Opaque_Expression_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access; Ns : AMF.UML.Namespaces.UML_Namespace_Access) return Boolean; -- Operation NamedElement::isDistinguishableFrom. -- -- The query isDistinguishableFrom() determines whether two NamedElements -- may logically co-exist within a Namespace. By default, two named -- elements are distinguishable if (a) they have unrelated types or (b) -- they have related types but different names. overriding function Namespace (Self : not null access constant UML_Opaque_Expression_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access; -- Operation NamedElement::namespace. -- -- Missing derivation for NamedElement::/namespace : Namespace overriding function Is_Template_Parameter (Self : not null access constant UML_Opaque_Expression_Proxy) return Boolean; -- Operation ParameterableElement::isTemplateParameter. -- -- The query isTemplateParameter() determines if this parameterable -- element is exposed as a formal template parameter. overriding procedure Enter_Element (Self : not null access constant UML_Opaque_Expression_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Leave_Element (Self : not null access constant UML_Opaque_Expression_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Visit_Element (Self : not null access constant UML_Opaque_Expression_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of iterator interface. end AMF.Internals.UML_Opaque_Expressions;
No-one has translated the mspoller example into Ada yet. Be the first to create mspoller in Ada and get one free Internet! If you're the author of the Ada binding, this is a great way to get people to use 0MQ in Ada. To submit a new translation email it to zeromq-dev@lists.zeromq.org. Please: * Stick to identical functionality and naming used in examples so that readers can easily compare languages. * You MUST place your name as author in the examples so readers can contact you. * You MUST state in the email that you license your code under the MIT/X11 license. Subscribe to this list at http://lists.zeromq.org/mailman/listinfo/zeromq-dev.
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Forms.Field_Types.Alpha -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright 2020 Thomas E. Dickey -- -- Copyright 1999-2011,2014 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: -- $Revision: 1.14 $ -- $Date: 2020/02/02 23:34:34 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux; package body Terminal_Interface.Curses.Forms.Field_Types.Alpha is procedure Set_Field_Type (Fld : Field; Typ : Alpha_Field) is function Set_Fld_Type (F : Field := Fld; Arg1 : C_Int) return Eti_Error; pragma Import (C, Set_Fld_Type, "set_field_type_alpha"); begin Eti_Exception (Set_Fld_Type (Arg1 => C_Int (Typ.Minimum_Field_Width))); Wrap_Builtin (Fld, Typ); end Set_Field_Type; end Terminal_Interface.Curses.Forms.Field_Types.Alpha;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- A D A . I N T E R R U P T S . N A M E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1991-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. -- -- -- ------------------------------------------------------------------------------ -- This is the Darwin version of this package -- The following signals are reserved by the run time: -- SIGSTOP, SIGKILL -- The pragma Unreserve_All_Interrupts affects the following signal(s): -- SIGINT: made available for Ada handler -- This target-dependent package spec contains names of interrupts -- supported by the local system. with System.OS_Interface; -- used for names of interrupts package Ada.Interrupts.Names is -- Beware that the mapping of names to signals may be many-to-one. There -- may be aliases. Also, for all signal names that are not supported on the -- current system the value of the corresponding constant will be zero. SIGHUP : constant Interrupt_ID := System.OS_Interface.SIGHUP; -- hangup SIGINT : constant Interrupt_ID := System.OS_Interface.SIGINT; -- interrupt (rubout) SIGQUIT : constant Interrupt_ID := System.OS_Interface.SIGQUIT; -- quit (ASCD FS) SIGILL : constant Interrupt_ID := System.OS_Interface.SIGILL; -- illegal instruction (not reset) SIGTRAP : constant Interrupt_ID := System.OS_Interface.SIGTRAP; -- trace trap (not reset) SIGIOT : constant Interrupt_ID := System.OS_Interface.SIGIOT; -- IOT instruction SIGABRT : constant Interrupt_ID := -- used by abort, System.OS_Interface.SIGABRT; -- replace SIGIOT in the future SIGEMT : constant Interrupt_ID := System.OS_Interface.SIGEMT; -- EMT instruction SIGFPE : constant Interrupt_ID := System.OS_Interface.SIGFPE; -- floating point exception SIGKILL : constant Interrupt_ID := System.OS_Interface.SIGKILL; -- kill (cannot be caught or ignored) SIGBUS : constant Interrupt_ID := System.OS_Interface.SIGBUS; -- bus error SIGSEGV : constant Interrupt_ID := System.OS_Interface.SIGSEGV; -- segmentation violation SIGSYS : constant Interrupt_ID := System.OS_Interface.SIGSYS; -- bad argument to system call SIGPIPE : constant Interrupt_ID := -- write on a pipe with System.OS_Interface.SIGPIPE; -- no one to read it SIGALRM : constant Interrupt_ID := System.OS_Interface.SIGALRM; -- alarm clock SIGTERM : constant Interrupt_ID := System.OS_Interface.SIGTERM; -- software termination signal from kill SIGURG : constant Interrupt_ID := System.OS_Interface.SIGURG; -- urgent condition on IO channel SIGSTOP : constant Interrupt_ID := System.OS_Interface.SIGSTOP; -- stop (cannot be caught or ignored) SIGTSTP : constant Interrupt_ID := System.OS_Interface.SIGTSTP; -- user stop requested from tty SIGCONT : constant Interrupt_ID := System.OS_Interface.SIGCONT; -- stopped process has been continued SIGCHLD : constant Interrupt_ID := System.OS_Interface.SIGCHLD; -- 4.3BSD's/POSIX name for SIGCLD SIGTTIN : constant Interrupt_ID := System.OS_Interface.SIGTTIN; -- background tty read attempted SIGTTOU : constant Interrupt_ID := System.OS_Interface.SIGTTOU; -- background tty write attempted SIGIO : constant Interrupt_ID := -- input/output possible, System.OS_Interface.SIGIO; -- SIGPOLL alias (Solaris) SIGXCPU : constant Interrupt_ID := System.OS_Interface.SIGXCPU; -- CPU time limit exceeded SIGXFSZ : constant Interrupt_ID := System.OS_Interface.SIGXFSZ; -- filesize limit exceeded SIGVTALRM : constant Interrupt_ID := System.OS_Interface.SIGVTALRM; -- virtual timer expired SIGPROF : constant Interrupt_ID := System.OS_Interface.SIGPROF; -- profiling timer expired SIGWINCH : constant Interrupt_ID := System.OS_Interface.SIGWINCH; -- window size change SIGINFO : constant Interrupt_ID := System.OS_Interface.SIGINFO; -- information request SIGUSR1 : constant Interrupt_ID := System.OS_Interface.SIGUSR1; -- user defined signal 1 SIGUSR2 : constant Interrupt_ID := System.OS_Interface.SIGUSR2; -- user defined signal 2 end Ada.Interrupts.Names;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . T R A C E B A C K _ E N T R I E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2003-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. -- -- -- ------------------------------------------------------------------------------ pragma Compiler_Unit_Warning; package body System.Traceback_Entries is ------------ -- PC_For -- ------------ function PC_For (TB_Entry : Traceback_Entry) return System.Address is begin return TB_Entry; end PC_For; ------------------ -- TB_Entry_For -- ------------------ function TB_Entry_For (PC : System.Address) return Traceback_Entry is begin return PC; end TB_Entry_For; end System.Traceback_Entries;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . F L O A T _ I O -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Text_IO.Float_Aux; package body Ada.Text_IO.Float_IO is package Aux renames Ada.Text_IO.Float_Aux; --------- -- Get -- --------- procedure Get (File : File_Type; Item : out Num; Width : Field := 0) is pragma Unsuppress (Range_Check); begin Aux.Get (File, Long_Long_Float (Item), Width); -- In the case where the type is unconstrained (e.g. Standard'Float), -- the above conversion may result in an infinite value, which is -- normally fine for a conversion, but in this case, we want to treat -- that as a data error. if not Item'Valid then raise Data_Error; end if; exception when Constraint_Error => raise Data_Error; end Get; procedure Get (Item : out Num; Width : Field := 0) is pragma Unsuppress (Range_Check); begin Aux.Get (Current_In, Long_Long_Float (Item), Width); -- In the case where the type is unconstrained (e.g. Standard'Float), -- the above conversion may result in an infinite value, which is -- normally fine for a conversion, but in this case, we want to treat -- that as a data error. if not Item'Valid then raise Data_Error; end if; exception when Constraint_Error => raise Data_Error; end Get; procedure Get (From : String; Item : out Num; Last : out Positive) is pragma Unsuppress (Range_Check); begin Aux.Gets (From, Long_Long_Float (Item), Last); -- In the case where the type is unconstrained (e.g. Standard'Float), -- the above conversion may result in an infinite value, which is -- normally fine for a conversion, but in this case, we want to treat -- that as a data error. if not Item'Valid then raise Data_Error; end if; exception when Constraint_Error => raise Data_Error; end Get; --------- -- Put -- --------- procedure Put (File : File_Type; Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Aux.Put (File, Long_Long_Float (Item), Fore, Aft, Exp); end Put; procedure Put (Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Aux.Put (Current_Out, Long_Long_Float (Item), Fore, Aft, Exp); end Put; procedure Put (To : out String; Item : Num; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Aux.Puts (To, Long_Long_Float (Item), Aft, Exp); end Put; end Ada.Text_IO.Float_IO;
with System.System_Allocators; with System.Unwind.Raising; with System.Unwind.Standard; package body System.Standard_Allocators is pragma Suppress (All_Checks); function Allocate ( Size : Storage_Elements.Storage_Count) return Address is Result : constant Address := System_Allocators.Allocate (Size); begin if Result = Null_Address then Raise_Heap_Exhausted; end if; return Result; end Allocate; procedure Free (Storage_Address : Address) is begin System_Allocators.Free (Storage_Address); end Free; function Reallocate ( Storage_Address : Address; Size : Storage_Elements.Storage_Count) return Address is Result : constant Address := System_Allocators.Reallocate (Storage_Address, Size); begin if Result = Null_Address then Raise_Heap_Exhausted; end if; return Result; end Reallocate; procedure Raise_Heap_Exhausted is Heap_Exhausted : constant String := "heap exhausted"; -- (s-memory.adb) begin Unwind.Raising.Raise_Exception_From_Here_With ( Unwind.Standard.Storage_Error'Access, Message => Heap_Exhausted); end Raise_Heap_Exhausted; end System.Standard_Allocators;
-- C85009A.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 PREDEFINED AND USER-DEFINED EXCEPTIONS CAN BE RENAMED -- AND THAT HANDLERS REFERRING TO EITHER NAME ARE INVOKED WHEN THE -- EXCEPTION IS RAISED, EVEN BY AN EXPLICIT 'RAISE' STATEMENT -- REFERRING TO THE OTHER NAME. -- HISTORY: -- JET 03/24/88 CREATED ORIGINAL TEST. WITH REPORT; USE REPORT; PROCEDURE C85009A IS MY_EXCEPTION : EXCEPTION; MY_EXCEPTION2 : EXCEPTION RENAMES MY_EXCEPTION; CONSTRAINT_ERROR2 : EXCEPTION RENAMES CONSTRAINT_ERROR; I : INTEGER := 1; BEGIN TEST ("C85009A", "CHECK THAT PREDEFINED AND USER-DEFINED " & "EXCEPTIONS CAN BE RENAMED AND THAT HANDLERS " & "REFERRING TO EITHER NAME ARE INVOKED WHEN " & "THE EXCEPTION IS RAISED, EVEN BY AN EXPLICIT " & "'RAISE' STATEMENT REFERRING TO THE OTHER NAME"); BEGIN RAISE MY_EXCEPTION; FAILED ("MY_EXCEPTION NOT RAISED"); EXCEPTION WHEN MY_EXCEPTION2 => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED BY MY_EXCEPTION"); END; BEGIN RAISE MY_EXCEPTION2; FAILED ("MY_EXCEPTION2 NOT RAISED"); EXCEPTION WHEN MY_EXCEPTION => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED BY MY_EXCEPTION2"); END; DECLARE TYPE COLORS IS (RED, BLUE, YELLOW); E : COLORS := RED; BEGIN E := COLORS'PRED(E); IF NOT EQUAL(COLORS'POS(E),COLORS'POS(E)) THEN COMMENT("DON'T OPTIMIZE E"); END IF; FAILED ("CONSTRAINT_ERROR NOT RAISED BY PRED(RED)"); EXCEPTION WHEN CONSTRAINT_ERROR2 => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED BY PRED(RED)"); END; BEGIN RAISE CONSTRAINT_ERROR; FAILED ("CONSTRAINT_ERROR NOT RAISED"); EXCEPTION WHEN CONSTRAINT_ERROR2 => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED BY CONSTRAINT_ERROR"); END; BEGIN RAISE CONSTRAINT_ERROR2; FAILED ("CONSTRAINT_ERROR2 NOT RAISED"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED BY CONSTRAINT_ERROR2"); END; RESULT; END C85009A;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.CMOF.Constraints.Collections is pragma Preelaborate; package CMOF_Constraint_Collections is new AMF.Generic_Collections (CMOF_Constraint, CMOF_Constraint_Access); type Set_Of_CMOF_Constraint is new CMOF_Constraint_Collections.Set with null record; Empty_Set_Of_CMOF_Constraint : constant Set_Of_CMOF_Constraint; type Ordered_Set_Of_CMOF_Constraint is new CMOF_Constraint_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_CMOF_Constraint : constant Ordered_Set_Of_CMOF_Constraint; type Bag_Of_CMOF_Constraint is new CMOF_Constraint_Collections.Bag with null record; Empty_Bag_Of_CMOF_Constraint : constant Bag_Of_CMOF_Constraint; type Sequence_Of_CMOF_Constraint is new CMOF_Constraint_Collections.Sequence with null record; Empty_Sequence_Of_CMOF_Constraint : constant Sequence_Of_CMOF_Constraint; private Empty_Set_Of_CMOF_Constraint : constant Set_Of_CMOF_Constraint := (CMOF_Constraint_Collections.Set with null record); Empty_Ordered_Set_Of_CMOF_Constraint : constant Ordered_Set_Of_CMOF_Constraint := (CMOF_Constraint_Collections.Ordered_Set with null record); Empty_Bag_Of_CMOF_Constraint : constant Bag_Of_CMOF_Constraint := (CMOF_Constraint_Collections.Bag with null record); Empty_Sequence_Of_CMOF_Constraint : constant Sequence_Of_CMOF_Constraint := (CMOF_Constraint_Collections.Sequence with null record); end AMF.CMOF.Constraints.Collections;
-- Copyright (c) 2017 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with League.Strings; with League.String_Vectors; package WebDriver.Elements is type Element is limited interface; type Element_Access is access all Element'Class with Storage_Size => 0; not overriding function Is_Selected (Self : access Element) return Boolean is abstract; -- Determines if the referenced element is selected or not. not overriding function Is_Enabled (Self : access Element) return Boolean is abstract; -- Determines if the referenced element is enabled or not. not overriding function Get_Attribute (Self : access Element; Name : League.Strings.Universal_String) return League.Strings.Universal_String is abstract; -- Returns the attribute of a web element. not overriding function Get_Property (Self : access Element; Name : League.Strings.Universal_String) return League.Strings.Universal_String is abstract; -- Returns the result of getting a property of an element. not overriding function Get_CSS_Value (Self : access Element; Name : League.Strings.Universal_String) return League.Strings.Universal_String is abstract; -- Retrieves the computed value of the given CSS property of the given -- web element. not overriding function Get_Text (Self : access Element) return League.Strings.Universal_String is abstract; -- Returns an element’s text "as rendered". not overriding function Get_Tag_Name (Self : access Element) return League.Strings.Universal_String is abstract; -- Returns the qualified element name of the given web element. not overriding procedure Click (Self : access Element) is abstract; -- Scrolls into view the element if it is not already pointer-interactable, -- and clicks its in-view center point. not overriding procedure Clear (Self : access Element) is abstract; -- Scrolls into view an editable or resettable element and then attempts -- to clear its selected files or text content. not overriding procedure Send_Keys (Self : access Element; Text : League.String_Vectors.Universal_String_Vector) is abstract; -- Scrolls into view the form control element and then sends the provided -- keys to the element. procedure Send_Keys (Self : access Element'Class; Text : League.Strings.Universal_String); end WebDriver.Elements;
------------------------------------------------------------------------------ -- -- -- GNAT EXAMPLE -- -- -- -- Copyright (C) 2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This file provides declarations for the user LEDs on the STM32F4 Discovery -- board from ST Microelectronics. with STM32F4; use STM32F4; package LEDs is pragma Elaborate_Body; type User_LED is (Green, Orange, Red, Blue); for User_LED use (Green => 16#1000#, Orange => 16#2000#, Red => 16#4000#, Blue => 16#8000#); -- As a result of the representation clause, avoid iterating directly over -- the type since that will require an implicit lookup in the generated -- code of the loop. Such usage seems unlikely so this direct -- representation is reasonable, and efficient. for User_LED'Size use Word'Size; -- we convert the LED values to Word values in order to write them to -- the register, so the size must be the same LED3 : User_LED renames Orange; LED4 : User_LED renames Green; LED5 : User_LED renames Red; LED6 : User_LED renames Blue; procedure On (This : User_LED) with Inline; procedure Off (This : User_LED) with Inline; procedure All_Off with Inline; procedure All_On with Inline; end LEDs;
package Hide.BMP is type Header is record Signature_1 : Integer_8; Signature_2 : Integer_8; Size : Integer_32; -- File size in bytes Reserved1 : Integer_16; Reserved2 : Integer_16; Offset : Integer_32; -- Start address in bytes where the image data can be found. end record with Pack => True; type Info is record Header : BMP.Header; Struct_Size : Integer_32; Width : Integer_32; -- Image width in pixels Height : Integer_32; -- Image hieght in pixels Planes : Integer_16; Pixel_Size : Integer_16; -- Bits per pixel Compression : Integer_32; -- Zero means no compression Image_Size : Integer_32; -- Size of the image data in bytes PPMX : Integer_32; -- Pixels per meter in x led PPMY : Integer_32; -- Pixels per meter in y led Palette_Size : Integer_32; -- Number of colors Important : Integer_32; end record with Pack => True; function Image ( Item : Info ) return String ; type Pixel_G8 is new Integer_8; -- 8 bit pixel grayscale type Image_G8 is array (Integer range <>) of Pixel_G8; type Byte_As_Bit_Array is array (1 .. 8) of Boolean with Pack => True; type Chanels is (Alpha, Red, Gren, Blue); type Pixel_ARGB32 is array (Chanels) of Byte_As_Bit_Array with Pack => True; type Image_ARGB32 is array (Integer range <>) of Pixel_ARGB32; procedure Encode (Image_Info : Info; Image : in out Image_ARGB32; Offset : Natural; Text : in String); function Decode (Image_Info : Info; Image : in Image_ARGB32) return String; end Hide.BMP;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Ada.Containers.Vectors; with Program.Compilation_Unit_Vectors; package Program.Units.Vectors is pragma Preelaborate; type Unit_Vector is limited new Program.Compilation_Unit_Vectors.Compilation_Unit_Vector with private; procedure Clear (Self : in out Unit_Vector); procedure Append (Self : in out Unit_Vector; Value : not null Program.Compilation_Units.Compilation_Unit_Access); private package Unit_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Program.Compilation_Units.Compilation_Unit_Access, "=" => Program.Compilation_Units."="); type Unit_Vector is limited new Program.Compilation_Unit_Vectors.Compilation_Unit_Vector with record Data : Unit_Vectors.Vector; end record; overriding function Get_Length (Self : Unit_Vector) return Positive; overriding function Element (Self : Unit_Vector; Index : Positive) return not null Program.Compilation_Units.Compilation_Unit_Access; overriding function Find_Unit (Self : Unit_Vector; Name : Text) return Program.Compilation_Units.Compilation_Unit_Access; end Program.Units.Vectors;
------------------------------------------------------------------------------ -- Copyright (c) 2013-2017, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ package body Natools.String_Slices is use type String_Refs.Immutable_Reference; ----------------------------- -- String_Range primitives -- ----------------------------- function Is_In (Point : Natural; Reference : String_Range) return Boolean is begin return Point >= Reference.First and Point < Reference.First + Reference.Length; end Is_In; function Is_Subrange (Sample, Reference : String_Range) return Boolean is begin return Sample.Length = 0 or else (Sample.First >= Reference.First and then Sample.First + Sample.Length <= Reference.First + Reference.Length); end Is_Subrange; function Last (Self : String_Range) return Natural is begin return Self.First + Self.Length - 1; end Last; function To_Range (First : Positive; Last : Natural) return String_Range is begin if Last >= First then return (First => First, Length => Last - First + 1); else return (First => First, Length => 0); end if; end To_Range; function Get_Range (S : String) return String_Range is begin return (S'First, S'Length); end Get_Range; procedure Set_First (Self : in out String_Range; New_First : in Positive) is begin if New_First >= Self.First + Self.Length then Self.Length := 0; else Self.Length := Self.Length - (New_First - Self.First); end if; Self.First := New_First; end Set_First; procedure Set_Last (Self : in out String_Range; New_Last : in Natural) is begin if New_Last < Self.First then Self.Length := 0; else Self.Length := New_Last - Self.First + 1; end if; end Set_Last; procedure Set_Length (Self : in out String_Range; New_Length : in Natural) is begin Self.Length := New_Length; end Set_Length; function Image (Interval : String_Range) return String is First_Img : String := Integer'Image (Interval.First); begin pragma Assert (First_Img (First_Img'First) = ' '); if Interval.Length = 0 then return "empty at" & First_Img; end if; First_Img (First_Img'First) := '['; if Interval.Length = 1 then return First_Img & ']'; else return First_Img & ',' & Integer'Image (Last (Interval)) & ']'; end if; end Image; -------------------------- -- Conversion functions -- -------------------------- function New_Slice (First : Positive; Last : Natural; Initialize : not null access procedure (S : out String)) return Slice is Data : constant String_Refs.Data_Access := new String (First .. Last); Ref : constant String_Refs.Immutable_Reference := String_Refs.Create (Data); begin Initialize (Data.all); return Slice'(Bounds => (First, Last + 1 - First), Ref => Ref); end New_Slice; function To_Slice (S : String) return Slice is function Create return String; function Create return String is begin return S; end Create; begin return Slice'(Bounds => (S'First, S'Length), Ref => String_Refs.Create (Create'Access)); end To_Slice; function To_String (S : Slice) return String is begin if S.Ref.Is_Empty then return ""; else return S.Ref.Query.Data.all (S.Bounds.First .. Last (S.Bounds)); end if; end To_String; --------------- -- Accessors -- --------------- procedure Export (S : in Slice; Output : out String) is begin if not S.Ref.Is_Empty then Output := S.Ref.Query.Data.all (S.Bounds.First .. Last (S.Bounds)); end if; end Export; procedure Query (S : in Slice; Process : not null access procedure (Text : in String)) is begin if S.Bounds.Length = 0 or else S.Ref.Is_Empty then Process.all (""); else Process.all (S.Ref.Query.Data.all (S.Bounds.First .. Last (S.Bounds))); end if; end Query; function Get_Range (S : Slice) return String_Range is begin return S.Bounds; end Get_Range; function First (S : Slice) return Positive is begin return S.Bounds.First; end First; function Last (S : Slice) return Natural is begin return Last (S.Bounds); end Last; function Length (S : Slice) return Natural is begin return S.Bounds.Length; end Length; --------------- -- Extenders -- --------------- function Parent (S : Slice) return Slice is begin if S.Ref.Is_Empty then return Slice'(others => <>); else return Slice'(Bounds => Get_Range (S.Ref.Query.Data.all), Ref => S.Ref); end if; end Parent; function Extend (S : Slice; New_Range : in String_Range) return Slice is begin if not Is_Subrange (New_Range, Get_Range (S.Ref.Query.Data.all)) then raise Constraint_Error with "Extend slice beyond complete range"; end if; return Slice'(Bounds => New_Range, Ref => S.Ref); end Extend; function Extend (S : Slice; First : Positive; Last : Natural) return Slice is begin return Extend (S, To_Range (First, Last)); end Extend; procedure Extend (S : in out Slice; New_Range : in String_Range) is begin if not Is_Subrange (New_Range, Get_Range (S.Ref.Query.Data.all)) then raise Constraint_Error with "Extend slice beyond complete range"; end if; S.Bounds := New_Range; end Extend; procedure Extend (S : in out Slice; First : in Positive; Last : in Natural) is begin Extend (S, To_Range (First, Last)); end Extend; ----------------- -- Restrictors -- ----------------- function Subslice (S : Slice; New_Range : String_Range) return Slice is begin if S.Ref.Is_Empty then if New_Range.Length = 0 then return Slice'(Bounds => New_Range, Ref => <>); else raise Constraint_Error with "Subslice of null slice"; end if; end if; if not Is_Subrange (New_Range, S.Bounds) then raise Constraint_Error with "Subslice out of parent range"; end if; return Slice'(Bounds => New_Range, Ref => S.Ref); end Subslice; function Subslice (S : Slice; First : Positive; Last : Natural) return Slice is begin return Subslice (S, To_Range (First, Last)); end Subslice; procedure Restrict (S : in out Slice; New_Range : in String_Range) is begin if S.Ref.Is_Empty and New_Range.Length /= 0 then raise Constraint_Error with "Restrict of null slice"; end if; if not Is_Subrange (New_Range, S.Bounds) then raise Constraint_Error with "Restriction with not a subrange"; end if; S.Bounds := New_Range; end Restrict; procedure Restrict (S : in out Slice; First : in Positive; Last : in Natural) is begin Restrict (S, To_Range (First, Last)); end Restrict; procedure Set_First (S : in out Slice; New_First : in Positive) is begin if New_First < S.Bounds.First then raise Constraint_Error with "New_First out of slice range"; end if; Set_First (S.Bounds, New_First); end Set_First; procedure Set_Last (S : in out Slice; New_Last : in Natural) is begin if New_Last > Last (S.Bounds) then raise Constraint_Error with "New_Last out of slice range"; end if; Set_Last (S.Bounds, New_Last); end Set_Last; procedure Set_Length (S : in out Slice; New_Length : in Natural) is begin if New_Length > S.Bounds.Length then raise Constraint_Error with "New_Length out of slice range"; end if; S.Bounds.Length := New_Length; end Set_Length; ---------------------- -- Slice comparison -- ---------------------- function Is_Empty (S : Slice) return Boolean is begin return S.Bounds.Length = 0 or else S.Ref.Is_Empty; end Is_Empty; function Is_Null (S : Slice) return Boolean is begin return S.Ref.Is_Empty; end Is_Null; function Is_Related (Left, Right : Slice) return Boolean is begin return Left.Ref = Right.Ref; end Is_Related; function Is_Subslice (S, Reference : Slice) return Boolean is begin return S.Ref = Reference.Ref and then Is_Subrange (S.Bounds, Reference.Bounds); end Is_Subslice; ------------------ -- Constructors -- ------------------ function Duplicate (S : Slice) return Slice is function Factory return String; function Factory return String is begin return S.Ref.Query.Data.all; end Factory; begin if S.Bounds.Length = 0 or else S.Ref.Is_Empty then return Null_Slice; else return Slice'(Bounds => S.Bounds, Ref => String_Refs.Create (Factory'Access)); end if; end Duplicate; end Natools.String_Slices;
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../License.txt package body Display.Console is -- These are dummy routines to match active ones in Display.Curses -- This module is only used to support building ravenadm without curses support function launch_monitor (num_builders : builders) return Boolean is begin pragma Unreferenced (num_builders); return False; end launch_monitor; procedure terminate_monitor is begin null; end terminate_monitor; procedure summarize (data : summary_rec) is begin pragma Unreferenced (data); null; end summarize; procedure update_builder (BR : builder_rec) is begin pragma Unreferenced (BR); null; end update_builder; procedure set_full_redraw_next_update is begin null; end set_full_redraw_next_update; procedure refresh_builder_window is begin null; end refresh_builder_window; procedure refresh_history_window is begin null; end refresh_history_window; end Display.Console;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P A N D E R -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2016, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Atree; use Atree; with Debug; use Debug; with Debug_A; use Debug_A; with Exp_Aggr; use Exp_Aggr; with Exp_SPARK; use Exp_SPARK; with Exp_Attr; use Exp_Attr; with Exp_Ch2; use Exp_Ch2; with Exp_Ch3; use Exp_Ch3; with Exp_Ch4; use Exp_Ch4; with Exp_Ch5; use Exp_Ch5; with Exp_Ch6; use Exp_Ch6; with Exp_Ch7; use Exp_Ch7; with Exp_Ch8; use Exp_Ch8; with Exp_Ch9; use Exp_Ch9; with Exp_Ch11; use Exp_Ch11; with Exp_Ch12; use Exp_Ch12; with Exp_Ch13; use Exp_Ch13; with Exp_Prag; use Exp_Prag; with Ghost; use Ghost; with Opt; use Opt; with Rtsfind; use Rtsfind; with Sem; use Sem; with Sem_Ch8; use Sem_Ch8; with Sem_Util; use Sem_Util; with Sinfo; use Sinfo; with Table; package body Expander is ---------------- -- Local Data -- ---------------- -- The following table is used to save values of the Expander_Active flag -- when they are saved by Expander_Mode_Save_And_Set. We use an extendible -- table (which is a bit of overkill) because it is easier than figuring -- out a maximum value or bothering with range checks. package Expander_Flags is new Table.Table ( Table_Component_Type => Boolean, Table_Index_Type => Int, Table_Low_Bound => 0, Table_Initial => 32, Table_Increment => 200, Table_Name => "Expander_Flags"); Abort_Bug_Box_Error : exception; -- Arbitrary exception to raise for implementation of -gnatd.B. See "when -- N_Abort_Statement" below. See also debug.adb. ------------ -- Expand -- ------------ -- WARNING: This routine manages Ghost regions. Return statements must be -- replaced by gotos which jump to the end of the routine and restore the -- Ghost mode. procedure Expand (N : Node_Id) is Mode : Ghost_Mode_Type; begin -- If we were analyzing a default expression (or other spec expression) -- the Full_Analysis flag must be off. If we are in expansion mode then -- we must be performing a full analysis. If we are analyzing a generic -- then Expansion must be off. pragma Assert (not (Full_Analysis and then In_Spec_Expression) and then (Full_Analysis or else not Expander_Active) and then not (Inside_A_Generic and then Expander_Active)); -- Establish the Ghost mode of the context to ensure that any generated -- nodes during expansion are marked as Ghost. Set_Ghost_Mode (N, Mode); -- The GNATprove_Mode flag indicates that a light expansion for formal -- verification should be used. This expansion is never done inside -- generics, because otherwise, this breaks the name resolution -- mechanism for generic instances. if GNATprove_Mode then if not Inside_A_Generic then Expand_SPARK (N); end if; Set_Analyzed (N, Full_Analysis); -- Regular expansion is normally followed by special handling for -- transient scopes for unconstrained results, etc. but this is not -- needed, and in general cannot be done correctly, in this mode, so -- we are all done. goto Leave; -- There are three reasons for the Expander_Active flag to be false -- The first is when are not generating code. In this mode the -- Full_Analysis flag indicates whether we are performing a complete -- analysis, in which case Full_Analysis = True or a pre-analysis in -- which case Full_Analysis = False. See the spec of Sem for more info -- on this. -- The second reason for the Expander_Active flag to be False is that -- we are performing a pre-analysis. During pre-analysis all expansion -- activity is turned off to make sure nodes are semantically decorated -- but no extra nodes are generated. This is for instance needed for -- the first pass of aggregate semantic processing. Note that in this -- case the Full_Analysis flag is set to False because the node will -- subsequently be re-analyzed with expansion on (see the spec of sem). -- Finally, expansion is turned off in a regular compilation if there -- are serious errors. In that case there will be no further expansion, -- but one cleanup action may be required: if a transient scope was -- created (e.g. for a function that returns an unconstrained type) the -- scope may still be on the stack, and must be removed explicitly, -- given that the expansion actions that would normally process it will -- not take place. This prevents cascaded errors due to stack mismatch. elsif not Expander_Active then Set_Analyzed (N, Full_Analysis); if Serious_Errors_Detected > 0 and then Scope_Is_Transient then Scope_Stack.Table (Scope_Stack.Last).Actions_To_Be_Wrapped := (others => No_List); Pop_Scope; end if; goto Leave; else begin Debug_A_Entry ("expanding ", N); -- Processing depends on node kind. For full details on the -- expansion activity required in each case, see bodies of -- corresponding expand routines. case Nkind (N) is when N_Abort_Statement => Expand_N_Abort_Statement (N); -- If -gnatd.B switch was given, crash the compiler. See -- debug.adb for explanation. if Debug_Flag_Dot_BB then raise Abort_Bug_Box_Error; end if; when N_Accept_Statement => Expand_N_Accept_Statement (N); when N_Aggregate => Expand_N_Aggregate (N); when N_Allocator => Expand_N_Allocator (N); when N_And_Then => Expand_N_And_Then (N); when N_Assignment_Statement => Expand_N_Assignment_Statement (N); when N_Asynchronous_Select => Expand_N_Asynchronous_Select (N); when N_Attribute_Definition_Clause => Expand_N_Attribute_Definition_Clause (N); when N_Attribute_Reference => Expand_N_Attribute_Reference (N); when N_Block_Statement => Expand_N_Block_Statement (N); when N_Case_Expression => Expand_N_Case_Expression (N); when N_Case_Statement => Expand_N_Case_Statement (N); when N_Conditional_Entry_Call => Expand_N_Conditional_Entry_Call (N); when N_Delay_Relative_Statement => Expand_N_Delay_Relative_Statement (N); when N_Delay_Until_Statement => Expand_N_Delay_Until_Statement (N); when N_Delta_Aggregate => Expand_N_Delta_Aggregate (N); when N_Entry_Body => Expand_N_Entry_Body (N); when N_Entry_Call_Statement => Expand_N_Entry_Call_Statement (N); when N_Entry_Declaration => Expand_N_Entry_Declaration (N); when N_Exception_Declaration => Expand_N_Exception_Declaration (N); when N_Exception_Renaming_Declaration => Expand_N_Exception_Renaming_Declaration (N); when N_Exit_Statement => Expand_N_Exit_Statement (N); when N_Expanded_Name => Expand_N_Expanded_Name (N); when N_Explicit_Dereference => Expand_N_Explicit_Dereference (N); when N_Expression_With_Actions => Expand_N_Expression_With_Actions (N); when N_Extended_Return_Statement => Expand_N_Extended_Return_Statement (N); when N_Extension_Aggregate => Expand_N_Extension_Aggregate (N); when N_Free_Statement => Expand_N_Free_Statement (N); when N_Freeze_Entity => Expand_N_Freeze_Entity (N); when N_Full_Type_Declaration => Expand_N_Full_Type_Declaration (N); when N_Function_Call => Expand_N_Function_Call (N); when N_Generic_Instantiation => Expand_N_Generic_Instantiation (N); when N_Goto_Statement => Expand_N_Goto_Statement (N); when N_Handled_Sequence_Of_Statements => Expand_N_Handled_Sequence_Of_Statements (N); when N_Identifier => Expand_N_Identifier (N); when N_If_Expression => Expand_N_If_Expression (N); when N_Indexed_Component => Expand_N_Indexed_Component (N); when N_If_Statement => Expand_N_If_Statement (N); when N_In => Expand_N_In (N); when N_Loop_Statement => Expand_N_Loop_Statement (N); when N_Not_In => Expand_N_Not_In (N); when N_Null => Expand_N_Null (N); when N_Object_Declaration => Expand_N_Object_Declaration (N); when N_Object_Renaming_Declaration => Expand_N_Object_Renaming_Declaration (N); when N_Op_Add => Expand_N_Op_Add (N); when N_Op_Abs => Expand_N_Op_Abs (N); when N_Op_And => Expand_N_Op_And (N); when N_Op_Concat => Expand_N_Op_Concat (N); when N_Op_Divide => Expand_N_Op_Divide (N); when N_Op_Eq => Expand_N_Op_Eq (N); when N_Op_Expon => Expand_N_Op_Expon (N); when N_Op_Ge => Expand_N_Op_Ge (N); when N_Op_Gt => Expand_N_Op_Gt (N); when N_Op_Le => Expand_N_Op_Le (N); when N_Op_Lt => Expand_N_Op_Lt (N); when N_Op_Minus => Expand_N_Op_Minus (N); when N_Op_Mod => Expand_N_Op_Mod (N); when N_Op_Multiply => Expand_N_Op_Multiply (N); when N_Op_Ne => Expand_N_Op_Ne (N); when N_Op_Not => Expand_N_Op_Not (N); when N_Op_Or => Expand_N_Op_Or (N); when N_Op_Plus => Expand_N_Op_Plus (N); when N_Op_Rem => Expand_N_Op_Rem (N); when N_Op_Rotate_Left => Expand_N_Op_Rotate_Left (N); when N_Op_Rotate_Right => Expand_N_Op_Rotate_Right (N); when N_Op_Shift_Left => Expand_N_Op_Shift_Left (N); when N_Op_Shift_Right => Expand_N_Op_Shift_Right (N); when N_Op_Shift_Right_Arithmetic => Expand_N_Op_Shift_Right_Arithmetic (N); when N_Op_Subtract => Expand_N_Op_Subtract (N); when N_Op_Xor => Expand_N_Op_Xor (N); when N_Or_Else => Expand_N_Or_Else (N); when N_Package_Body => Expand_N_Package_Body (N); when N_Package_Declaration => Expand_N_Package_Declaration (N); when N_Package_Renaming_Declaration => Expand_N_Package_Renaming_Declaration (N); when N_Subprogram_Renaming_Declaration => Expand_N_Subprogram_Renaming_Declaration (N); when N_Pragma => Expand_N_Pragma (N); when N_Procedure_Call_Statement => Expand_N_Procedure_Call_Statement (N); when N_Protected_Type_Declaration => Expand_N_Protected_Type_Declaration (N); when N_Protected_Body => Expand_N_Protected_Body (N); when N_Qualified_Expression => Expand_N_Qualified_Expression (N); when N_Quantified_Expression => Expand_N_Quantified_Expression (N); when N_Raise_Statement => Expand_N_Raise_Statement (N); when N_Raise_Constraint_Error => Expand_N_Raise_Constraint_Error (N); when N_Raise_Expression => Expand_N_Raise_Expression (N); when N_Raise_Program_Error => Expand_N_Raise_Program_Error (N); when N_Raise_Storage_Error => Expand_N_Raise_Storage_Error (N); when N_Real_Literal => Expand_N_Real_Literal (N); when N_Record_Representation_Clause => Expand_N_Record_Representation_Clause (N); when N_Requeue_Statement => Expand_N_Requeue_Statement (N); when N_Simple_Return_Statement => Expand_N_Simple_Return_Statement (N); when N_Selected_Component => Expand_N_Selected_Component (N); when N_Selective_Accept => Expand_N_Selective_Accept (N); when N_Single_Protected_Declaration => Expand_N_Single_Protected_Declaration (N); when N_Single_Task_Declaration => Expand_N_Single_Task_Declaration (N); when N_Slice => Expand_N_Slice (N); when N_Subtype_Indication => Expand_N_Subtype_Indication (N); when N_Subprogram_Body => Expand_N_Subprogram_Body (N); when N_Subprogram_Body_Stub => Expand_N_Subprogram_Body_Stub (N); when N_Subprogram_Declaration => Expand_N_Subprogram_Declaration (N); when N_Task_Body => Expand_N_Task_Body (N); when N_Task_Type_Declaration => Expand_N_Task_Type_Declaration (N); when N_Timed_Entry_Call => Expand_N_Timed_Entry_Call (N); when N_Type_Conversion => Expand_N_Type_Conversion (N); when N_Unchecked_Expression => Expand_N_Unchecked_Expression (N); when N_Unchecked_Type_Conversion => Expand_N_Unchecked_Type_Conversion (N); when N_Variant_Part => Expand_N_Variant_Part (N); -- For all other node kinds, no expansion activity required when others => null; end case; exception when RE_Not_Available => goto Leave; end; -- Set result as analyzed and then do a possible transient wrap. The -- transient wrap must be done after the Analyzed flag is set on, so -- that we do not get a recursive attempt to expand the node N. Set_Analyzed (N); -- Deal with transient scopes if Scope_Is_Transient and then N = Node_To_Be_Wrapped then case Nkind (N) is when N_Procedure_Call_Statement | N_Statement_Other_Than_Procedure_Call => Wrap_Transient_Statement (N); when N_Object_Declaration | N_Object_Renaming_Declaration | N_Subtype_Declaration => Wrap_Transient_Declaration (N); when others => Wrap_Transient_Expression (N); end case; end if; Debug_A_Exit ("expanding ", N, " (done)"); end if; <<Leave>> Restore_Ghost_Mode (Mode); end Expand; --------------------------- -- Expander_Mode_Restore -- --------------------------- procedure Expander_Mode_Restore is begin -- Not active (has no effect) in ASIS and GNATprove modes (see comments -- in spec of Expander_Mode_Save_And_Set). if ASIS_Mode or GNATprove_Mode then return; end if; -- Otherwise restore the flag Expander_Active := Expander_Flags.Table (Expander_Flags.Last); Expander_Flags.Decrement_Last; -- Keep expander off if serious errors detected. In this case we do not -- need expansion, and continued expansion may cause cascaded errors or -- compiler bombs. if Serious_Errors_Detected /= 0 then Expander_Active := False; end if; end Expander_Mode_Restore; -------------------------------- -- Expander_Mode_Save_And_Set -- -------------------------------- procedure Expander_Mode_Save_And_Set (Status : Boolean) is begin -- Not active (has no effect) in ASIS and GNATprove modes (see comments -- in spec of Expander_Mode_Save_And_Set). if ASIS_Mode or GNATprove_Mode then return; end if; -- Otherwise save and set the flag Expander_Flags.Increment_Last; Expander_Flags.Table (Expander_Flags.Last) := Expander_Active; Expander_Active := Status; end Expander_Mode_Save_And_Set; end Expander;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with GL.Objects.Programs; with GL.Types; with Multivectors; package Graphic_Data is Num_Names : Integer := 9; Model_Names : array (1 .. Num_Names) of Unbounded_String := (To_Unbounded_String ("teapot"), To_Unbounded_String ("cube"), To_Unbounded_String ("sphere"), To_Unbounded_String ("cone"), To_Unbounded_String ("torus"), To_Unbounded_String ("dodecahedron"), To_Unbounded_String ("octahedron"), To_Unbounded_String ("tetrahedron"), To_Unbounded_String ("icosahedron")); GLUT_Read_Exception : Exception; procedure Get_GLUT_Model_2D (Render_Program : GL.Objects.Programs.Program; Model_Name : Ada.Strings.Unbounded.Unbounded_String; Model_Rotor : Multivectors.Rotor); procedure Solid_Cube (Size : Float); procedure Solid_Cone (Base, Height : Float; Slices, Stacks : Integer); procedure Solid_Dodecahedron; procedure Solid_Icosahedron; procedure Solid_Octahedron; procedure Solid_Sphere (Radius : Float; Slices, Stacks : Integer); procedure Solid_Teapot (Size : Float); procedure Solid_Tetrahedron; procedure Solid_Torus (Inner_Radius, Outer_Radius : Float; Sides, Rings : Integer); end Graphic_Data;
-- Copyright 2012-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 type Base is tagged record X : Integer := 42; end record; type Extension is new Base with record Y : Float := 42.0; end record; function Ident (I : Integer) return Integer; procedure Do_Nothing (A : System.Address); end Pck;
with Actors, Engines, Components.Destructibles, Libtcod.Color; package body Components.Attackers is use Destructibles; ------------ -- attack -- ------------ procedure attack(self : in out Attacker; owner : in out Actors.Actor; target : in out Actors.Actor; engine : in out Engines.Engine) is use Actors, Libtcod; real_damage : Health; target_destructible : access Destructible := target.destructible; msg_header : constant String := owner.get_name & " attacks " & target.get_name & " "; msg_color : constant RGB_Color := (if owner = engine.player then Color.red else Color.light_grey); begin if target.is_destructible and then not target_destructible.is_dead then real_damage := target_destructible.take_damage(target, self.power, engine); if real_damage = 0 then engine.gui.log(msg_header & "for no damage", msg_color); else engine.gui.log(msg_header & "for" & real_damage'Image & " damage", msg_color); end if; else engine.gui.log(msg_header & "in vain", msg_color); end if; end attack; end Components.Attackers;
-- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- The primary authors of ayacc were David Taback and Deepak Tolani. -- Enhancements were made by Ronald J. Schmalz. -- -- Send requests for ayacc information to ayacc-info@ics.uci.edu -- Send bug reports for ayacc to ayacc-bugs@ics.uci.edu -- -- Redistribution and use in source and binary forms are permitted -- provided that the above copyright notice and this paragraph are -- duplicated in all such forms and that any documentation, -- advertising materials, and other materials related to such -- distribution and use acknowledge that the software was developed -- by the University of California, Irvine. The name of the -- University may not be used to endorse or promote products derived -- from this software without specific prior written permission. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. -- Module : parser_body.ada -- Component of : ayacc -- Version : 1.2 -- Date : 11/21/86 12:32:43 -- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxparser_body.ada -- $Header: parser_body.a,v 0.1 86/04/01 15:10:24 ada Exp $ -- $Log: parser_body.a,v $ -- Revision 0.1 86/04/01 15:10:24 ada -- This version fixes some minor bugs with empty grammars -- and $$ expansion. It also uses vads5.1b enhancements -- such as pragma inline. -- -- -- Revision 0.0 86/02/19 18:40:31 ada -- -- These files comprise the initial version of Ayacc -- designed and implemented by David Taback and Deepak Tolani. -- Ayacc has been compiled and tested under the Verdix Ada compiler -- version 4.06 on a vax 11/750 running Unix 4.2BSD. -- -- -- -- The body of the parser for the specification file -- -- -- with Text_IO; use Text_IO; with Lexical_Analyzer; use Lexical_Analyzer; with STR_Pack; use STR_Pack; with Symbol_Table; use Symbol_Table; with Rule_Table; use Rule_Table; with Actions_File; use Actions_File; with Tokens_File; use Tokens_File; with String_Pkg; package body Parser is SCCS_ID : constant String := "@(#) parser_body.ada, Version 1.2"; Found_Error : Boolean := False; Start_Defined : Boolean := False; procedure Nonfatal_Error(Message: in String) is begin Print_Context_Lines; --RJS Put_Line("--- " & Message); New_Line; Put_Line ("Ayacc: " & Message); Found_Error := True; end Nonfatal_Error; procedure Fatal_Error(Message: in String) is begin Print_Context_Lines; --RJS Put_Line("--- " & Message); New_Line; Put_Line ("Ayacc: " & Message); raise Syntax_Error; end Fatal_Error; procedure Augment_Grammar(Users_Start_Symbol : in Grammar_Symbol) is -- Inserts S' -> S $end as a rule in the rule table. Start_Sym : Grammar_Symbol; Augmented_Rule : Rule; begin Start_Defined := True; Augmented_Rule := Make_Rule(Start_Symbol); Append_RHS(Augmented_Rule, Users_Start_Symbol); Append_RHS(Augmented_Rule, End_Symbol); end Augment_Grammar; -- -- -- A recursive descent parser for the rules in the -- -- grammar. -- procedure Parse_Rules is T : Ayacc_Token; Current_Rule : Rule; LHS : Grammar_Symbol; -- -- -- Gets an action from the file and writes it to -- -- the actions file. -- -- -- -- -- -- Parses a sequence of Symbols -- -- -- procedure Symbols is ID : Grammar_Symbol; Got_Action : Boolean := False; Precedence_Level : Precedence; begin loop T := Get_Token; exit when T = Vertical_Bar or T = Semicolon or T = Prec; -- Do we have an action in the middle of a rule? if Got_Action then Got_Action := T = Left_Brace; Handle_Nested_Rule(Current_Rule); end if; case T is -- Update the current rule when Character_Literal => ID := Insert_Terminal(Get_Lexeme_Text); Append_RHS(Current_Rule, ID); -- Update the current rule and add to symbol table when Identifier => ID := Insert_Identifier(Get_Lexeme_Text); Append_RHS(Current_Rule, ID); -- Got an action when Left_Brace => Handle_Action(Integer(Current_Rule), Integer(Length_of(Current_Rule))); Got_Action := True; when others => Fatal_Error("Unexpected symbol"); end case; end loop; if T = Prec then if Got_Action then Fatal_Error("%prec cannot be preceded by an action"); raise Syntax_Error; end if; T := Get_Token; if T /= Identifier and T /= Character_Literal then Fatal_Error("Expecting a terminal after %prec"); end if; ID := Insert_Identifier(Get_Lexeme_Text); if Is_Nonterminal(ID) then Fatal_Error("Expecting a terminal after %prec"); end if; Precedence_Level := Get_Precedence(ID); if Precedence_Level = 0 then Fatal_Error("Terminal following %prec has no precedence"); else Set_Rule_Precedence(Current_Rule, Precedence_Level); end if; T := Get_Token; case T is when Left_Brace => Handle_Action(Integer(Current_Rule), Integer(Length_of(Current_Rule))); T := Get_Token; when Semicolon | Vertical_Bar => null; when others => Fatal_Error("Illegal token following %prec"); end case; end if; end Symbols; -- -- -- Parse an Ayacc grammar rule -- -- -- procedure Rule is begin T := Get_Token; if T /= Colon then Fatal_Error("Expecting a colon after the LHS of the rule"); else Current_Rule := Make_Rule(LHS); Symbols; end if; while (T = Vertical_Bar) loop -- Make a new rule with the current LHS grammar symbol Current_Rule := Make_Rule(LHS); Symbols; end loop; if T /= Semicolon then Fatal_Error("Expecting a semicolon"); end if; end Rule; -- -- -- Parse a sequence of grammar rules -- -- -- procedure Rules is begin T := Get_Token; if T = Identifier then -- Make the left hand side of the rule LHS := Insert_Identifier(Get_Lexeme_Text); if Is_Terminal(LHS) then Fatal_Error("Terminals cannot be on the LHS of a rule"); end if; if not Start_Defined then Augment_Grammar(LHS); end if; Rule; Rules; elsif T /= Mark then Fatal_Error("Expecting next section"); end if; end Rules; begin -- parse_rules Actions_File.Initialize; Rules; Actions_File.Finish; -- Check for empty grammars. If the grammar is empty then -- create a rule S -> $end. if not Start_Defined then Append_RHS(Make_Rule(Start_Symbol), End_Symbol); end if; exception when Illegal_Token => Fatal_Error("illegal token"); end Parse_Rules; -- -- -- Parse the declarations section of the source -- -- -- procedure Parse_Declarations is Precedence_Level : Precedence := 0; Next_Token : Ayacc_Token; ID : Grammar_Symbol; procedure Parse_Start_Symbol is Users_Start_Symbol : Grammar_Symbol; begin if Start_Defined then Fatal_Error("The start symbol has been defined already."); end if; if Next_Token /= Identifier then if Next_Token = Lexical_Analyzer.Eof_Token then Fatal_Error("Unexpected end of file before first '%%'"); else Fatal_Error("Expecting identifier"); end if; end if; Users_Start_Symbol := Insert_Identifier(Get_Lexeme_Text); if Is_Nonterminal(Users_Start_Symbol) then Augment_Grammar(Users_Start_Symbol); else Fatal_Error("Attempt to define terminal as start_symbol"); end if; Next_Token := Get_Token; end Parse_Start_Symbol; procedure Parse_Token_List(Precedence_Value : in Precedence; Associativity_Value : in Associativity) is Temp_Sym : Grammar_Symbol; begin loop if Next_Token /= Identifier and then Next_Token /= Character_Literal then if Next_Token = Lexical_Analyzer.Eof_Token then Fatal_Error("Unexpected end of file before first '%%'"); else Fatal_Error("Expecting token declaration"); end if; end if; Temp_Sym := Insert_Terminal(Get_Lexeme_Text, Precedence_Value, Associativity_Value); Next_Token := Get_Token; if Next_Token = Comma then Next_Token := Get_Token; elsif Next_Token = Semicolon then Next_Token := Get_Token; exit; elsif Next_Token /= Identifier and then Next_Token /= Character_Literal then exit; end if; end loop; exception when Illegal_Entry => -- I think only trying to insert the "start symbol" -- in a token list will cause this exception Fatal_Error("Illegal symbol as token"); end Parse_Token_List; procedure Parse_Package_Name_List(Context_Clause : in Ayacc_Token) is use String_Pkg; begin if Tokens_Package_Header_Has_Been_Generated then Fatal_Error ("Context Clause Specifications May Not " & "Appear After Ada Declarations."); else case Context_Clause is when With_Clause => Tokens_File.Write ("with "); when Use_Clause => Tokens_File.Write ("use "); when others => Fatal_Error ("Illegal Context Clause Specification"); end case; loop if Next_Token /= Identifier then if Next_Token = Lexical_Analyzer.Eof_Token then Fatal_Error("Unexpected end of file before first '%%'"); else Fatal_Error("Expecting Package Name"); end if; end if; Tokens_File.Write (' ' & Value (Mixed (Get_Lexeme_Text))); Next_Token := Get_Token; if Next_Token = Comma then Next_Token := Get_Token; Tokens_File.Write (","); elsif Next_Token = Semicolon then Next_Token := Get_Token; Tokens_File.Writeln (";"); exit; elsif Next_Token /= Identifier then Tokens_File.Writeln (";"); exit; else Tokens_File.Write (","); end if; end loop; end if; end Parse_Package_Name_List; begin Next_Token := Get_Token; loop case Next_Token is when Start => Next_Token := Get_Token; Parse_Start_Symbol; if Next_Token = Semicolon then Next_Token := Get_Token; end if; when Token => Next_Token := Get_Token; Parse_Token_List(0, Undefined); when Nonassoc => Next_Token := Get_Token; Precedence_Level := Precedence_Level + 1; Parse_Token_List(Precedence_Level, Nonassociative); when Right => Next_Token := Get_Token; Precedence_Level := Precedence_Level + 1; Parse_Token_List(Precedence_Level, Right_Associative); when Left => Next_Token := Get_Token; Precedence_Level := Precedence_Level + 1; Parse_Token_List(Precedence_Level, Left_Associative); when Mark => exit; when Lexical_Analyzer.Eof_Token => Fatal_Error("Unexpected end of file before first %%"); when Left_Brace => Start_Tokens_Package; Dump_Declarations; -- to the TOKENS file. Next_Token := Get_Token; when With_Clause => Next_Token := Get_Token; Parse_Package_Name_List (With_Clause); when Use_Clause => Next_Token := Get_Token; Parse_Package_Name_List (Use_Clause); when others => Fatal_Error("Unexpected symbol"); end case; end loop; exception when Illegal_Token => Fatal_Error("Bad symbol"); when Redefined_Precedence_Error => Fatal_Error("Attempt to redefine precedence"); end Parse_Declarations; end Parser;
package OCONST2 is type u8 is mod 2**8; type Base is record i1 : Integer; end Record; type R is record u : u8; b : Base; end record; for R use record u at 0 range 0 .. 7; b at 1 range 0 .. 31; -- aligned SImode bitfield end record; My_R : constant R := (u=>1, b=>(i1=>2)); procedure check (arg : R); end;
-- { dg-do run } with OCONST1, OCONST2, OCONST3, OCONST4, OCONST5; procedure Test_Oconst is begin OCONST1.check (OCONST1.My_R); OCONST2.check (OCONST2.My_R); OCONST3.check (OCONST3.My_R); OCONST4.check (OCONST4.My_R); OCONST5.check (OCONST5.My_R0, 0); OCONST5.check (OCONST5.My_R1, 1); end;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . T R A C E B A C K -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-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 provides a method for generating a traceback of the -- current execution location. The traceback shows the locations of -- calls in the call chain, up to either the top or a designated -- number of levels. pragma Polling (Off); -- We must turn polling off for this unit, because otherwise we get -- elaboration circularities with System.Exception_Tables. package System.Traceback is ---------------- -- Call_Chain -- ---------------- procedure Call_Chain (Traceback : System.Address; Max_Len : Natural; Len : out Natural; Exclude_Min : System.Address := System.Null_Address; Exclude_Max : System.Address := System.Null_Address; Skip_Frames : Natural := 1); -- Store up to Max_Len code locations in Traceback, corresponding to -- the current call chain. -- -- Traceback is the address of an array of addresses where the -- result will be stored. -- -- Max_Len is the length of the Traceback array. If the call chain -- is longer than this, then additional entries are discarded, and -- the traceback is missing some of the highest level entries. -- -- Len is the returned actual number of addresses stored -- in the Traceback array. -- -- Exclude_Min/Exclude_Max, if non null, provide a range of addresses -- to ignore from the computation of the traceback. -- -- Skip_Frames says how many of the most recent calls should at least -- be excluded from the result, regardless of the exclusion bounds and -- starting with this procedure itself: 1 means exclude the frame for -- this procedure, 2 means 1 + exclude the frame for this procedure's -- caller, ... -- -- On return, the Traceback array is filled in, and Len indicates -- the number of stored entries. The first entry is the most recent -- call, and the last entry is the highest level call. function C_Call_Chain (Traceback : System.Address; Max_Len : Natural) return Natural; pragma Export (C, C_Call_Chain, "system__traceback__c_call_chain"); -- Version that can be used directly from C end System.Traceback;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Elements; with AMF.Internals.Element_Collections; with AMF.Internals.Helpers; with AMF.Internals.Tables.UML_Attributes; with AMF.Visitors.UML_Iterators; with AMF.Visitors.UML_Visitors; with League.Strings.Internals; with Matreshka.Internals.Strings; package body AMF.Internals.UML_Fork_Nodes is ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant UML_Fork_Node_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then AMF.Visitors.UML_Visitors.UML_Visitor'Class (Visitor).Enter_Fork_Node (AMF.UML.Fork_Nodes.UML_Fork_Node_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant UML_Fork_Node_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then AMF.Visitors.UML_Visitors.UML_Visitor'Class (Visitor).Leave_Fork_Node (AMF.UML.Fork_Nodes.UML_Fork_Node_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant UML_Fork_Node_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Iterator in AMF.Visitors.UML_Iterators.UML_Iterator'Class then AMF.Visitors.UML_Iterators.UML_Iterator'Class (Iterator).Visit_Fork_Node (Visitor, AMF.UML.Fork_Nodes.UML_Fork_Node_Access (Self), Control); end if; end Visit_Element; ------------------ -- Get_Activity -- ------------------ overriding function Get_Activity (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Activities.UML_Activity_Access is begin return AMF.UML.Activities.UML_Activity_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Activity (Self.Element))); end Get_Activity; ------------------ -- Set_Activity -- ------------------ overriding procedure Set_Activity (Self : not null access UML_Fork_Node_Proxy; To : AMF.UML.Activities.UML_Activity_Access) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Activity (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Activity; ------------------ -- Get_In_Group -- ------------------ overriding function Get_In_Group (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Activity_Groups.Collections.Set_Of_UML_Activity_Group is begin return AMF.UML.Activity_Groups.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_In_Group (Self.Element))); end Get_In_Group; --------------------------------- -- Get_In_Interruptible_Region -- --------------------------------- overriding function Get_In_Interruptible_Region (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Interruptible_Activity_Regions.Collections.Set_Of_UML_Interruptible_Activity_Region is begin return AMF.UML.Interruptible_Activity_Regions.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_In_Interruptible_Region (Self.Element))); end Get_In_Interruptible_Region; ---------------------- -- Get_In_Partition -- ---------------------- overriding function Get_In_Partition (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Activity_Partitions.Collections.Set_Of_UML_Activity_Partition is begin return AMF.UML.Activity_Partitions.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_In_Partition (Self.Element))); end Get_In_Partition; ---------------------------- -- Get_In_Structured_Node -- ---------------------------- overriding function Get_In_Structured_Node (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access is begin return AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_In_Structured_Node (Self.Element))); end Get_In_Structured_Node; ---------------------------- -- Set_In_Structured_Node -- ---------------------------- overriding procedure Set_In_Structured_Node (Self : not null access UML_Fork_Node_Proxy; To : AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_In_Structured_Node (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_In_Structured_Node; ------------------ -- Get_Incoming -- ------------------ overriding function Get_Incoming (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge is begin return AMF.UML.Activity_Edges.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Incoming (Self.Element))); end Get_Incoming; ------------------ -- Get_Outgoing -- ------------------ overriding function Get_Outgoing (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge is begin return AMF.UML.Activity_Edges.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Outgoing (Self.Element))); end Get_Outgoing; ------------------------ -- Get_Redefined_Node -- ------------------------ overriding function Get_Redefined_Node (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Activity_Nodes.Collections.Set_Of_UML_Activity_Node is begin return AMF.UML.Activity_Nodes.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Redefined_Node (Self.Element))); end Get_Redefined_Node; ----------------- -- Get_Is_Leaf -- ----------------- overriding function Get_Is_Leaf (Self : not null access constant UML_Fork_Node_Proxy) return Boolean is begin return AMF.Internals.Tables.UML_Attributes.Internal_Get_Is_Leaf (Self.Element); end Get_Is_Leaf; ----------------- -- Set_Is_Leaf -- ----------------- overriding procedure Set_Is_Leaf (Self : not null access UML_Fork_Node_Proxy; To : Boolean) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Is_Leaf (Self.Element, To); end Set_Is_Leaf; --------------------------- -- Get_Redefined_Element -- --------------------------- overriding function Get_Redefined_Element (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element is begin return AMF.UML.Redefinable_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Redefined_Element (Self.Element))); end Get_Redefined_Element; ------------------------------ -- Get_Redefinition_Context -- ------------------------------ overriding function Get_Redefinition_Context (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is begin return AMF.UML.Classifiers.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Redefinition_Context (Self.Element))); end Get_Redefinition_Context; --------------------------- -- Get_Client_Dependency -- --------------------------- overriding function Get_Client_Dependency (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is begin return AMF.UML.Dependencies.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.UML_Attributes.Internal_Get_Client_Dependency (Self.Element))); end Get_Client_Dependency; ------------------------- -- Get_Name_Expression -- ------------------------- overriding function Get_Name_Expression (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.String_Expressions.UML_String_Expression_Access is begin return AMF.UML.String_Expressions.UML_String_Expression_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Name_Expression (Self.Element))); end Get_Name_Expression; ------------------------- -- Set_Name_Expression -- ------------------------- overriding procedure Set_Name_Expression (Self : not null access UML_Fork_Node_Proxy; To : AMF.UML.String_Expressions.UML_String_Expression_Access) is begin AMF.Internals.Tables.UML_Attributes.Internal_Set_Name_Expression (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Name_Expression; ------------------- -- Get_Namespace -- ------------------- overriding function Get_Namespace (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin return AMF.UML.Namespaces.UML_Namespace_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.UML_Attributes.Internal_Get_Namespace (Self.Element))); end Get_Namespace; ------------------------ -- Get_Qualified_Name -- ------------------------ overriding function Get_Qualified_Name (Self : not null access constant UML_Fork_Node_Proxy) return AMF.Optional_String is begin declare use type Matreshka.Internals.Strings.Shared_String_Access; Aux : constant Matreshka.Internals.Strings.Shared_String_Access := AMF.Internals.Tables.UML_Attributes.Internal_Get_Qualified_Name (Self.Element); begin if Aux = null then return (Is_Empty => True); else return (False, League.Strings.Internals.Create (Aux)); end if; end; end Get_Qualified_Name; ------------------------ -- Is_Consistent_With -- ------------------------ overriding function Is_Consistent_With (Self : not null access constant UML_Fork_Node_Proxy; Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Consistent_With unimplemented"); raise Program_Error with "Unimplemented procedure UML_Fork_Node_Proxy.Is_Consistent_With"; return Is_Consistent_With (Self, Redefinee); end Is_Consistent_With; ----------------------------------- -- Is_Redefinition_Context_Valid -- ----------------------------------- overriding function Is_Redefinition_Context_Valid (Self : not null access constant UML_Fork_Node_Proxy; Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Redefinition_Context_Valid unimplemented"); raise Program_Error with "Unimplemented procedure UML_Fork_Node_Proxy.Is_Redefinition_Context_Valid"; return Is_Redefinition_Context_Valid (Self, Redefined); end Is_Redefinition_Context_Valid; ------------------------- -- All_Owning_Packages -- ------------------------- overriding function All_Owning_Packages (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Packages.Collections.Set_Of_UML_Package is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented"); raise Program_Error with "Unimplemented procedure UML_Fork_Node_Proxy.All_Owning_Packages"; return All_Owning_Packages (Self); end All_Owning_Packages; ----------------------------- -- Is_Distinguishable_From -- ----------------------------- overriding function Is_Distinguishable_From (Self : not null access constant UML_Fork_Node_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access; Ns : AMF.UML.Namespaces.UML_Namespace_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented"); raise Program_Error with "Unimplemented procedure UML_Fork_Node_Proxy.Is_Distinguishable_From"; return Is_Distinguishable_From (Self, N, Ns); end Is_Distinguishable_From; --------------- -- Namespace -- --------------- overriding function Namespace (Self : not null access constant UML_Fork_Node_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented"); raise Program_Error with "Unimplemented procedure UML_Fork_Node_Proxy.Namespace"; return Namespace (Self); end Namespace; end AMF.Internals.UML_Fork_Nodes;
with ANSI; package CLIC.TTY with Preelaborate is -- Color/Formatting related subprograms. These won't have any -- effect if a redirection of output is detected, or if global -- flag Simple_Logging.Is_TTY is false. -- Re-expose for clients package ANSI renames Standard.ANSI; function Is_TTY return Boolean; procedure Force_Disable_TTY with Post => not Is_TTY; -- Disable TTY support even if availabe -------------------- -- Color enabling -- -------------------- function Color_Enabled return Boolean; procedure Disable_Color; -- Disables color/formatting output even when TTY is capable procedure Enable_Color (Force : Boolean := False); -- Prepares colors for the logging messages. Unless Force, will do nothing -- if a console redirection is detected. function Format (Text : String; Fore : ANSI.Colors := ANSI.Default; Back : ANSI.Colors := ANSI.Default; Style : ANSI.Styles := ANSI.Default) return String; -- Wrap text with the appropriate ANSI sequences. Following text will be -- unaffected. Default colors are interpreted as no change of color (will -- result in no color sequences), not as setting the default color (which -- is always set after a color change). ------------------------ -- Predefined formats -- ------------------------ function Info (Text : String := "") return String; -- Prepends Text with a Emph ("🛈") or "Note: " if no tty color enabled function Success (Text : String := "") return String; -- Prepends Text (in normal formatting) with a green check mark, or a -- simple Success: text if no tty or color enabled. function OK (Text : String) return String; -- Bold Light_Green function Emph (Text : String) return String; -- Something to highlight not negatively, bold cyan function Error (Text : String) return String; -- Bold Red function Warn (Text : String) return String; -- Bold Yellow function Bold (Text : String) return String; function Dim (Text : String) return String; function Italic (Text : String) return String; function Underline (Text : String) return String; function Description (Text : String) return String; -- Not bold cyan for crate descriptions function Terminal (Text : String) return String; -- For showing commands that the user can run; mimics old amber displays. function URL (Text : String) return String; function Version (Text : String) return String; -- For versions/version sets, bold magenta private function Info (Text : String := "") return String is (if Color_Enabled and then Is_TTY then Emph ("ⓘ") & " " & Text else "Note: " & Text); function Success (Text : String := "") return String is (if Color_Enabled and then Is_TTY then OK ("✓") & " " & Text else "Success: " & Text); function OK (Text : String) return String is (Format (Text, Fore => ANSI.Light_Green, Style => ANSI.Bright)); function Emph (Text : String) return String is (Format (Text, Fore => ANSI.Cyan, Style => ANSI.Bright)); function Error (Text : String) return String is (Format (Text, Fore => ANSI.Red, Style => ANSI.Bright)); function Warn (Text : String) return String is (Format (Text, Fore => ANSI.Yellow, Style => ANSI.Bright)); function Bold (Text : String) return String is (Format (Text, Style => ANSI.Bright)); function Dim (Text : String) return String is (Format (Text, Style => ANSI.Dim)); function Italic (Text : String) return String is (Format (Text, Style => ANSI.Italic)); function Underline (Text : String) return String is (Format (Text, Style => ANSI.Underline)); function Name (Text : String) return String is (Bold (Text)); function Description (Text : String) return String is (Format (Text, Fore => ANSI.Light_Cyan)); function Terminal (Text : String) return String is (if Color_Enabled and then Is_TTY then ANSI.Color_Wrap (Text, ANSI.Palette_Fg (5, 3, 0)) else Text); function URL (Text : String) return String renames Version; function Version (Text : String) return String is (Format (Text, Fore => ANSI.Magenta, Style => ANSI.Bright)); end CLIC.TTY;
with Ada.Strings.Unbounded; with GNATCOLL.Projects; with GNATCOLL.VFS; with Libadalang.Analysis; with Libadalang.Common; with GraphML_Writers; package Extraction is package GPR renames GNATCOLL.Projects; package GW renames GraphML_Writers; package LAL renames Libadalang.Analysis; package LALCO renames Libadalang.Common; package SU renames Ada.Strings.Unbounded; package VFS renames GNATCOLL.VFS; function Node_Attributes return GW.Attribute_Definition_Sets.Map; function Edge_Attributes return GW.Attribute_Definition_Sets.Map; procedure Extract_Dependency_Graph (Project_Filename : String; Recurse_Projects : Boolean; Directory_Prefix : VFS.Virtual_File; Graph_File : in out GW.GraphML_File); private function "="(L, R : LAL.Ada_Node'Class) return Boolean renames LAL."="; function "+"(Str : String) return SU.Unbounded_String is (SU.To_Unbounded_String(Str)); Internal_Extraction_Error : exception; end Extraction;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_query_tree_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; pad0 : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; window : aliased xcb.xcb_window_t; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_query_tree_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_query_tree_request_t.Item, Element_Array => xcb.xcb_query_tree_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_query_tree_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_query_tree_request_t.Pointer, Element_Array => xcb.xcb_query_tree_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_query_tree_request_t;
with Interfaces; use Interfaces; package MSPGD is pragma Preelaborate; type Buffer_Type is array (Integer range <>) of Unsigned_8; procedure Standby with Inline_Always; procedure Stop with Inline_Always; procedure Reset with Inline_Always; end MSPGD;
-- A74205F.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 FOR AN ACCESS TYPE WHOSE DESIGNATED TYPE IS A PRIVATE TYPE -- ADDITIONAL OPERATIONS FOR THE ACCESS TYPE WHICH DEPEND ON -- CHARACTERISTICS OF THE FULL DECLARATION OF THE PRIVATE TYPE ARE MADE -- AVAILABLE AT THE EARLIEST PLACE WITHIN THE IMMEDIATE SCOPE OF THE -- ACCESS TYPE DECLARATION AND AFTER THE FULL DECLARATION OF THE PRIVATE -- TYPE. -- (1) CHECK FOR COMPONENT SELECTION WITH RECORD TYPES -- (2) CHECK FOR INDEXED COMPONENTS AND SLICES WITH ARRAY TYPES -- (3) CHECK FOR USE OF 'FIRST, 'LAST, 'RANGE, AND 'LENGTH WITH ARRAY -- TYPES -- DSJ 5/5/83 WITH REPORT ; PROCEDURE A74205F IS USE REPORT ; BEGIN TEST("A74205F", "CHECK THAT ADDITIONAL OPERATIONS OF ACCESS TYPES " & "OF PRIVATE TYPES ARE AVAILABLE AT THE EARLIEST " & "PLACE IN THE IMMEDIATE SCOPE OF THE ACCESS TYPE " & "AND AFTER THE FULL DECLARATION") ; DECLARE PACKAGE PACK1 IS TYPE T1 IS PRIVATE ; TYPE T2 IS PRIVATE ; PACKAGE PACK2 IS TYPE ACC1 IS ACCESS T1 ; TYPE ACC2 IS ACCESS T2 ; END PACK2 ; PRIVATE TYPE T1 IS ARRAY ( 1 .. 2 ) OF INTEGER ; TYPE T2 IS RECORD C1, C2 : INTEGER ; END RECORD ; END PACK1 ; PACKAGE BODY PACK1 IS A1 : PACK2.ACC1 := NEW T1'(2,4) ; -- LEGAL A2 : PACK2.ACC1 := NEW T1'(6,8) ; -- LEGAL R1 : PACK2.ACC2 := NEW T2'(3,5) ; -- LEGAL R2 : PACK2.ACC2 := NEW T2'(7,9) ; -- LEGAL PACKAGE BODY PACK2 IS X1 : INTEGER := A1(1) ; -- LEGAL X2 : INTEGER := A1'FIRST ; -- LEGAL X3 : INTEGER := A1'LAST ; -- LEGAL X4 : INTEGER := A1'LENGTH ; -- LEGAL B1 : BOOLEAN := 3 IN A1'RANGE ; -- LEGAL X5 : INTEGER := R1.C1 ; -- LEGAL END PACK2 ; END PACK1 ; BEGIN NULL ; END ; RESULT ; END A74205F ;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ C H A R A C T E R S . H A N D L I N G -- -- -- -- S p e c -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ package Ada.Wide_Characters.Handling is pragma Pure; function Character_Set_Version return String; pragma Inline (Character_Set_Version); -- Returns an implementation-defined identifier that identifies the version -- of the character set standard that is used for categorizing characters -- by the implementation. For GNAT this is "Unicode v.v". function Is_Control (Item : Wide_Character) return Boolean; pragma Inline (Is_Control); -- Returns True if the Wide_Character designated by Item is categorized as -- other_control, otherwise returns False. function Is_Letter (Item : Wide_Character) return Boolean; pragma Inline (Is_Letter); -- Returns True if the Wide_Character designated by Item is categorized as -- letter_uppercase, letter_lowercase, letter_titlecase, letter_modifier, -- letter_other, or number_letter. Otherwise returns False. function Is_Lower (Item : Wide_Character) return Boolean; pragma Inline (Is_Lower); -- Returns True if the Wide_Character designated by Item is categorized as -- letter_lowercase, otherwise returns False. function Is_Upper (Item : Wide_Character) return Boolean; pragma Inline (Is_Upper); -- Returns True if the Wide_Character designated by Item is categorized as -- letter_uppercase, otherwise returns False. function Is_Basic (Item : Wide_Character) return Boolean; pragma Inline (Is_Basic); -- Returns True if the Wide_Character designated by Item has no -- Decomposition Mapping in the code charts of ISO/IEC 10646:2017, -- otherwise returns False. function Is_Digit (Item : Wide_Character) return Boolean; pragma Inline (Is_Digit); -- Returns True if the Wide_Character designated by Item is categorized as -- number_decimal, otherwise returns False. function Is_Decimal_Digit (Item : Wide_Character) return Boolean renames Is_Digit; function Is_Hexadecimal_Digit (Item : Wide_Character) return Boolean; -- Returns True if the Wide_Character designated by Item is categorized as -- number_decimal, or is in the range 'A' .. 'F' or 'a' .. 'f', otherwise -- returns False. function Is_Alphanumeric (Item : Wide_Character) return Boolean; pragma Inline (Is_Alphanumeric); -- Returns True if the Wide_Character designated by Item is categorized as -- letter_uppercase, letter_lowercase, letter_titlecase, letter_modifier, -- letter_other, number_letter, or number_decimal; otherwise returns False. function Is_Special (Item : Wide_Character) return Boolean; pragma Inline (Is_Special); -- Returns True if the Wide_Character designated by Item is categorized -- as graphic_character, but not categorized as letter_uppercase, -- letter_lowercase, letter_titlecase, letter_modifier, letter_other, -- number_letter, or number_decimal. Otherwise returns False. function Is_Line_Terminator (Item : Wide_Character) return Boolean; pragma Inline (Is_Line_Terminator); -- Returns True if the Wide_Character designated by Item is categorized as -- separator_line or separator_paragraph, or if Item is a conventional line -- terminator character (CR, LF, VT, or FF). Otherwise returns False. function Is_Mark (Item : Wide_Character) return Boolean; pragma Inline (Is_Mark); -- Returns True if the Wide_Character designated by Item is categorized as -- mark_non_spacing or mark_spacing_combining, otherwise returns False. function Is_Other_Format (Item : Wide_Character) return Boolean; pragma Inline (Is_Other_Format); -- Returns True if the Wide_Character designated by Item is categorized as -- other_format, otherwise returns False. function Is_Punctuation_Connector (Item : Wide_Character) return Boolean; pragma Inline (Is_Punctuation_Connector); -- Returns True if the Wide_Character designated by Item is categorized as -- punctuation_connector, otherwise returns False. function Is_Space (Item : Wide_Character) return Boolean; pragma Inline (Is_Space); -- Returns True if the Wide_Character designated by Item is categorized as -- separator_space, otherwise returns False. function Is_NFKC (Item : Wide_Character) return Boolean; pragma Inline (Is_NFKC); -- Returns True if the Wide_Character designated by Item could be present -- in a string normalized to Normalization Form KC (as defined by Clause -- 21 of ISO/IEC 10646:2017), otherwise returns False. function Is_Graphic (Item : Wide_Character) return Boolean; pragma Inline (Is_Graphic); -- Returns True if the Wide_Character designated by Item is categorized as -- graphic_character, otherwise returns False. function To_Lower (Item : Wide_Character) return Wide_Character; pragma Inline (To_Lower); -- Returns the Simple Lowercase Mapping of the Wide_Character designated by -- Item. If the Simple Lowercase Mapping does not exist for the -- Wide_Character designated by Item, then the value of Item is returned. function To_Lower (Item : Wide_String) return Wide_String; -- Returns the result of applying the To_Lower Wide_Character to -- Wide_Character conversion to each element of the Wide_String designated -- by Item. The result is the null Wide_String if the value of the formal -- parameter is the null Wide_String. function To_Upper (Item : Wide_Character) return Wide_Character; pragma Inline (To_Upper); -- Returns the Simple Uppercase Mapping of the Wide_Character designated by -- Item. If the Simple Uppercase Mapping does not exist for the -- Wide_Character designated by Item, then the value of Item is returned. function To_Upper (Item : Wide_String) return Wide_String; -- Returns the result of applying the To_Upper Wide_Character to -- Wide_Character conversion to each element of the Wide_String designated -- by Item. The result is the null Wide_String if the value of the formal -- parameter is the null Wide_String. function To_Basic (Item : Wide_Character) return Wide_Character; pragma Inline (To_Basic); -- Returns the Wide_Character whose code point is given by the first value -- of its Decomposition Mapping in the code charts of ISO/IEC 10646:2017 if -- any, returns Item otherwise. function To_Basic (Item : Wide_String) return Wide_String; -- Returns the result of applying the To_Basic conversion to each -- Wide_Character element of the Wide_String designated by Item. The result -- is the null Wide_String if the value of the formal parameter is the null -- Wide_String. The lower bound of the result Wide_String is 1. end Ada.Wide_Characters.Handling;
-- Copyright 2013-2014 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Foo is begin Set_Float (1.0); -- START Set_Double (1, 1.0); Set_Long_Double (1, (I => 2), 1.0); end Foo;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 1 1 -- -- -- -- B o d y -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; package body System.Pack_11 is subtype Bit_Order is System.Bit_Order; Reverse_Bit_Order : constant Bit_Order := Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order)); subtype Ofs is System.Storage_Elements.Storage_Offset; subtype Uns is System.Unsigned_Types.Unsigned; subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7; use type System.Storage_Elements.Storage_Offset; use type System.Unsigned_Types.Unsigned; type Cluster is record E0, E1, E2, E3, E4, E5, E6, E7 : Bits_11; end record; for Cluster use record E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1; E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1; E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1; E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1; E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1; E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1; E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1; E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1; end record; for Cluster'Size use Bits * 8; for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment, 1 + 1 * Boolean'Pos (Bits mod 2 = 0) + 2 * Boolean'Pos (Bits mod 4 = 0)); -- Use maximum possible alignment, given the bit field size, since this -- will result in the most efficient code possible for the field. type Cluster_Ref is access Cluster; type Rev_Cluster is new Cluster with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_Cluster_Ref is access Rev_Cluster; ------------ -- Get_11 -- ------------ function Get_11 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_11 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end Get_11; ------------ -- Set_11 -- ------------ procedure Set_11 (Arr : System.Address; N : Natural; E : Bits_11; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end Set_11; end System.Pack_11;
-- BinToAsc_Suite.Misc_Tests -- Unit tests for BinToAsc -- Copyright (c) 2015, James Humphry - see LICENSE file for details with AUnit; use AUnit; with AUnit.Test_Cases; use AUnit.Test_Cases; package BinToAsc_Suite.Misc_Tests is type Misc_Test is new Test_Cases.Test_Case with null record; procedure Register_Tests (T: in out Misc_Test); function Name (T : Misc_Test) return Test_String; procedure Set_Up (T : in out Misc_Test); procedure Check_Valid_Alphabet (T : in out Test_Cases.Test_Case'Class); procedure Check_Make_Reverse_Alphabet (T : in out Test_Cases.Test_Case'Class); end BinToAsc_Suite.Misc_Tests;
-- Copyright (c) 2020 Raspberry Pi (Trading) Ltd. -- -- SPDX-License-Identifier: BSD-3-Clause -- This spec has been automatically generated from rp2040.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package RP_SVD.PLL_USB is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CS_REFDIV_Field is HAL.UInt6; -- Control and Status\n GENERAL CONSTRAINTS:\n Reference clock frequency -- min=5MHz, max=800MHz\n Feedback divider min=16, max=320\n VCO frequency -- min=400MHz, max=1600MHz type CS_Register is record -- Divides the PLL input reference clock.\n Behaviour is undefined for -- div=0.\n PLL output will be unpredictable during refdiv changes, wait -- for lock=1 before using it. REFDIV : CS_REFDIV_Field := 16#1#; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- Passes the reference clock to the output instead of the divided VCO. -- The VCO continues to run so the user can switch between the reference -- clock and the divided VCO but the output will glitch when doing so. BYPASS : Boolean := False; -- unspecified Reserved_9_30 : HAL.UInt22 := 16#0#; -- Read-only. PLL is locked LOCK : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CS_Register use record REFDIV at 0 range 0 .. 5; Reserved_6_7 at 0 range 6 .. 7; BYPASS at 0 range 8 .. 8; Reserved_9_30 at 0 range 9 .. 30; LOCK at 0 range 31 .. 31; end record; -- Controls the PLL power modes. type PWR_Register is record -- PLL powerdown\n To save power set high when PLL output not required. PD : Boolean := True; -- unspecified Reserved_1_1 : HAL.Bit := 16#0#; -- PLL DSM powerdown\n Nothing is achieved by setting this low. DSMPD : Boolean := True; -- PLL post divider powerdown\n To save power set high when PLL output -- not required or bypass=1. POSTDIVPD : Boolean := True; -- unspecified Reserved_4_4 : HAL.Bit := 16#0#; -- PLL VCO powerdown\n To save power set high when PLL output not -- required or bypass=1. VCOPD : Boolean := True; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for PWR_Register use record PD at 0 range 0 .. 0; Reserved_1_1 at 0 range 1 .. 1; DSMPD at 0 range 2 .. 2; POSTDIVPD at 0 range 3 .. 3; Reserved_4_4 at 0 range 4 .. 4; VCOPD at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype FBDIV_INT_FBDIV_INT_Field is HAL.UInt12; -- Feedback divisor\n (note: this PLL does not support fractional division) type FBDIV_INT_Register is record -- see ctrl reg description for constraints FBDIV_INT : FBDIV_INT_FBDIV_INT_Field := 16#0#; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for FBDIV_INT_Register use record FBDIV_INT at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype PRIM_POSTDIV2_Field is HAL.UInt3; subtype PRIM_POSTDIV1_Field is HAL.UInt3; -- Controls the PLL post dividers for the primary output\n (note: this PLL -- does not have a secondary output)\n the primary output is driven from -- VCO divided by postdiv1*postdiv2 type PRIM_Register is record -- unspecified Reserved_0_11 : HAL.UInt12 := 16#0#; -- divide by 1-7 POSTDIV2 : PRIM_POSTDIV2_Field := 16#7#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- divide by 1-7 POSTDIV1 : PRIM_POSTDIV1_Field := 16#7#; -- unspecified Reserved_19_31 : HAL.UInt13 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for PRIM_Register use record Reserved_0_11 at 0 range 0 .. 11; POSTDIV2 at 0 range 12 .. 14; Reserved_15_15 at 0 range 15 .. 15; POSTDIV1 at 0 range 16 .. 18; Reserved_19_31 at 0 range 19 .. 31; end record; ----------------- -- Peripherals -- ----------------- type PLL_USB_Peripheral is record -- Control and Status\n GENERAL CONSTRAINTS:\n Reference clock frequency -- min=5MHz, max=800MHz\n Feedback divider min=16, max=320\n VCO -- frequency min=400MHz, max=1600MHz CS : aliased CS_Register; -- Controls the PLL power modes. PWR : aliased PWR_Register; -- Feedback divisor\n (note: this PLL does not support fractional -- division) FBDIV_INT : aliased FBDIV_INT_Register; -- Controls the PLL post dividers for the primary output\n (note: this -- PLL does not have a secondary output)\n the primary output is driven -- from VCO divided by postdiv1*postdiv2 PRIM : aliased PRIM_Register; end record with Volatile; for PLL_USB_Peripheral use record CS at 16#0# range 0 .. 31; PWR at 16#4# range 0 .. 31; FBDIV_INT at 16#8# range 0 .. 31; PRIM at 16#C# range 0 .. 31; end record; PLL_USB_Periph : aliased PLL_USB_Peripheral with Import, Address => PLL_USB_Base; end RP_SVD.PLL_USB;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . C A L E N D A R . C O N V E R S I O N S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2008-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides various routines for conversion between Ada and Unix -- time models - Time, Duration, struct tm and struct timespec. with Interfaces.C; package Ada.Calendar.Conversions is function To_Ada_Time (Unix_Time : Interfaces.C.long) return Time; -- Convert a time value represented as number of seconds since the -- Unix Epoch to a time value relative to an Ada implementation-defined -- Epoch. The units of the result are nanoseconds on all targets. Raises -- Time_Error if the result cannot fit into a Time value. function To_Ada_Time (tm_year : Interfaces.C.int; tm_mon : Interfaces.C.int; tm_day : Interfaces.C.int; tm_hour : Interfaces.C.int; tm_min : Interfaces.C.int; tm_sec : Interfaces.C.int; tm_isdst : Interfaces.C.int) return Time; -- Convert a time value expressed in Unix-like fields of struct tm into -- a Time value relative to the Ada Epoch. The ranges of the formals are -- as follows: -- tm_year -- years since 1900 -- tm_mon -- months since January [0 .. 11] -- tm_day -- day of the month [1 .. 31] -- tm_hour -- hours since midnight [0 .. 24] -- tm_min -- minutes after the hour [0 .. 59] -- tm_sec -- seconds after the minute [0 .. 60] -- tm_isdst -- Daylight Savings Time flag [-1 .. 1] -- The returned value is in UTC and may or may not contain leap seconds -- depending on whether binder flag "-y" was used. Raises Time_Error if -- the input values are out of the defined ranges or if tm_sec equals 60 -- and the instance in time is not a leap second occurrence. function To_Duration (tv_sec : Interfaces.C.long; tv_nsec : Interfaces.C.long) return Duration; -- Convert an elapsed time value expressed in Unix-like fields of struct -- timespec into a Duration value. The expected ranges are: -- tv_sec - seconds -- tv_nsec - nanoseconds procedure To_Struct_Timespec (D : Duration; tv_sec : out Interfaces.C.long; tv_nsec : out Interfaces.C.long); -- Convert a Duration value into the constituents of struct timespec. -- Formal tv_sec denotes seconds and tv_nsecs denotes nanoseconds. procedure To_Struct_Tm (T : Time; tm_year : out Interfaces.C.int; tm_mon : out Interfaces.C.int; tm_day : out Interfaces.C.int; tm_hour : out Interfaces.C.int; tm_min : out Interfaces.C.int; tm_sec : out Interfaces.C.int); -- Convert a Time value set in the Ada Epoch into the constituents of -- struct tm. The ranges of the out formals are as follows: -- tm_year -- years since 1900 -- tm_mon -- months since January [0 .. 11] -- tm_day -- day of the month [1 .. 31] -- tm_hour -- hours since midnight [0 .. 24] -- tm_min -- minutes after the hour [0 .. 59] -- tm_sec -- seconds after the minute [0 .. 60] -- tm_isdst -- Daylight Savings Time flag [-1 .. 1] -- The input date is considered to be in UTC function To_Unix_Time (Ada_Time : Time) return Interfaces.C.long; -- Convert a time value represented as number of time units since the Ada -- implementation-defined Epoch to a value relative to the Unix Epoch. The -- units of the result are seconds. Raises Time_Error if the result cannot -- fit into a Time value. function To_Unix_Nano_Time (Ada_Time : Time) return Interfaces.C.long_long; -- Convert a time value represented as number of time units since the Ada -- implementation-defined Epoch to a value relative to the Unix Epoch. The -- units of the result are nanoseconds. Raises Time_Error if the result -- cannot fit into a Time value. end Ada.Calendar.Conversions;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>Loop_2_proc</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>p_mul_stencil_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>_mul_stencil_stream_to_p2_mul1.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>128</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>p_p2_mul1_stencil_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></originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>32</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>24</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></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>160</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>160</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>39</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>9</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>21</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>96</item> <item>97</item> <item>98</item> <item>99</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>10</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>100</item> <item>102</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>11</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>21</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>103</item> <item>105</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>12</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>106</item> <item>107</item> <item>108</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_value_V</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>41</item> <item>42</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp_6</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>176</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>176</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>44</item> <item>45</item> <item>47</item> <item>49</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>19</id> <name>p_382_cast_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>182</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>182</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>50</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp_3</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>51</item> <item>52</item> <item>54</item> <item>56</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>21</id> <name>p_390</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>185</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>185</second> </item> </second> </item> </inlineStackInfo> <originalName>_390</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>58</item> <item>59</item> <item>61</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name>p_390_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>185</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>185</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>62</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp_4</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>63</item> <item>64</item> <item>66</item> <item>68</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>24</id> <name>p_396</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>192</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>192</second> </item> </second> </item> </inlineStackInfo> <originalName>_396</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>70</item> <item>71</item> <item>73</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>25</id> <name>p_396_cast_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>192</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>192</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>74</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_2</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>197</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>197</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>75</item> <item>76</item> <item>78</item> <item>80</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>27</id> <name>p_400_cast_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>200</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>200</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>81</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>28</id> <name>tmp</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>200</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>200</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>82</item> <item>83</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>29</id> <name>tmp1</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>200</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>200</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>84</item> <item>85</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>30</id> <name>tmp1_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>200</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>200</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>86</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>31</id> <name>p_403</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>200</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>200</second> </item> </second> </item> </inlineStackInfo> <originalName>_403</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>87</item> <item>88</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_value_V_7</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>200</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>200</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>89</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>33</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>202</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>202</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>91</item> <item>92</item> <item>93</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>35</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>94</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>37</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_27"> <Value> <Obj> <type>2</type> <id>46</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_28"> <Value> <Obj> <type>2</type> <id>48</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_29"> <Value> <Obj> <type>2</type> <id>53</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_30"> <Value> <Obj> <type>2</type> <id>55</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_31"> <Value> <Obj> <type>2</type> <id>60</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_32"> <Value> <Obj> <type>2</type> <id>65</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>68</content> </item> <item class_id_reference="16" object_id="_33"> <Value> <Obj> <type>2</type> <id>67</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>95</content> </item> <item class_id_reference="16" object_id="_34"> <Value> <Obj> <type>2</type> <id>72</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_35"> <Value> <Obj> <type>2</type> <id>77</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>100</content> </item> <item class_id_reference="16" object_id="_36"> <Value> <Obj> <type>2</type> <id>79</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>127</content> </item> <item class_id_reference="16" object_id="_37"> <Value> <Obj> <type>2</type> <id>95</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_38"> <Value> <Obj> <type>2</type> <id>101</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>2064609</content> </item> <item class_id_reference="16" object_id="_39"> <Value> <Obj> <type>2</type> <id>104</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</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="_40"> <Obj> <type>3</type> <id>8</id> <name>newFuncRoot</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>7</item> </node_objs> </item> <item class_id_reference="18" object_id="_41"> <Obj> <type>3</type> <id>13</id> <name>.preheader38</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>9</item> <item>10</item> <item>11</item> <item>12</item> </node_objs> </item> <item class_id_reference="18" object_id="_42"> <Obj> <type>3</type> <id>36</id> <name>.preheader38.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>18</count> <item_version>0</item_version> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>35</item> </node_objs> </item> <item class_id_reference="18" object_id="_43"> <Obj> <type>3</type> <id>38</id> <name>.preheader37.exitStub</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>37</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>48</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_44"> <id>39</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_45"> <id>42</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_46"> <id>45</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_47"> <id>47</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_48"> <id>49</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_49"> <id>50</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_50"> <id>52</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_51"> <id>54</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_52"> <id>56</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_53"> <id>59</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_54"> <id>61</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_55"> <id>62</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_56"> <id>64</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_57"> <id>66</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_58"> <id>68</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_59"> <id>71</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_60"> <id>73</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_61"> <id>74</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_62"> <id>76</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_63"> <id>78</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_64"> <id>80</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_65"> <id>81</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_66"> <id>82</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_67"> <id>83</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_68"> <id>84</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_69"> <id>85</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_70"> <id>86</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>87</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>88</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>89</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>92</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>93</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>94</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>96</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>97</id> <edge_type>2</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>98</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>99</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>100</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>102</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>103</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>105</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>106</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>107</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>108</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>196</id> <edge_type>2</edge_type> <source_obj>8</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>197</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>198</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>199</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>13</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_92"> <mId>1</mId> <mTag>Loop_2_proc</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2064614</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_93"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>8</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_94"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>13</item> <item>36</item> </basic_blocks> <mII>1</mII> <mDepth>5</mDepth> <mMinTripCount>2064609</mMinTripCount> <mMaxTripCount>2064609</mMaxTripCount> <mMinLatency>2064612</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_95"> <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>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_96"> <states class_id="25" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_97"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_98"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_99"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_100"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_101"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_102"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_103"> <id>2</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_104"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_105"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_106"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_107"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_108"> <id>3</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_109"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_110"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_111"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_112"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_113"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_114"> <id>4</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_115"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_116"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_117"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_118"> <id>5</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_119"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_120"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_121"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_122"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_123"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_124"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_125"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_126"> <id>6</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_127"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_128"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_129"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_130"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_131"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_132"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_133"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_134"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_135"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_136"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>12</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="_137"> <inState>3</inState> <outState>4</outState> <condition> <id>22</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="_138"> <inState>4</inState> <outState>5</outState> <condition> <id>23</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="_139"> <inState>5</inState> <outState>6</outState> <condition> <id>24</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="_140"> <inState>6</inState> <outState>2</outState> <condition> <id>25</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="_141"> <inState>2</inState> <outState>7</outState> <condition> <id>21</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>10</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_142"> <inState>2</inState> <outState>3</outState> <condition> <id>26</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>10</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>24</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>7</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>8</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>5</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_143"> <region_name>Loop 1</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>13</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>5</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>20</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>72</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>78</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>89</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>96</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>102</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>108</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>128</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>138</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>151</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>160</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>167</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>171</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>182</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>188</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>191</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>197</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>18</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>exitcond_flatten_fu_96</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>indvar_flatten_next_fu_102</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>indvar_flatten_phi_fu_89</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>p_382_cast_cast_fu_148</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>p_390_cast_fu_167</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>p_390_fu_160</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_396_cast_cast_fu_178</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>p_396_fu_171</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>p_400_cast_cast_fu_151</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>p_403_fu_191</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp1_cast_fu_188</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>tmp1_fu_154</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>tmp_2_fu_138</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_3_fu_118</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_4_fu_128</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>tmp_6_fu_108</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_fu_182</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_value_V_7_fu_197</first> <second> <count>1</count> <item_version>0</item_version> <item>32</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>2</count> <item_version>0</item_version> <item> <first>StgValue_36_write_fu_78</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>tmp_value_V_read_fu_72</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="50" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>9</count> <item_version>0</item_version> <item> <first>85</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>205</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>210</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>215</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>220</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>225</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>230</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>235</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>9</count> <item_version>0</item_version> <item> <first>exitcond_flatten_reg_201</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>indvar_flatten_next_reg_205</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>indvar_flatten_reg_85</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>p_403_reg_235</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp1_reg_230</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>tmp_2_reg_225</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_3_reg_215</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_4_reg_220</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>tmp_6_reg_210</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>1</count> <item_version>0</item_version> <item> <first>85</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>1</count> <item_version>0</item_version> <item> <first>indvar_flatten_reg_85</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="51" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>p_mul_stencil_stream_V_value_V</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>p_p2_mul1_stencil_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="53" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> <item> <first>2</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P A R . C H 6 -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ pragma Style_Checks (All_Checks); -- Turn off subprogram body ordering check. Subprograms are in order -- by RM section rather than alphabetical with Sinfo.CN; use Sinfo.CN; separate (Par) package body Ch6 is -- Local subprograms, used only in this chapter function P_Defining_Designator return Node_Id; function P_Defining_Operator_Symbol return Node_Id; procedure Check_Junk_Semicolon_Before_Return; -- Check for common error of junk semicolon before RETURN keyword of -- function specification. If present, skip over it with appropriate -- error message, leaving Scan_Ptr pointing to the RETURN after. This -- routine also deals with a possibly misspelled version of Return. ---------------------------------------- -- Check_Junk_Semicolon_Before_Return -- ---------------------------------------- procedure Check_Junk_Semicolon_Before_Return is Scan_State : Saved_Scan_State; begin if Token = Tok_Semicolon then Save_Scan_State (Scan_State); Scan; -- past the semicolon if Token = Tok_Return then Restore_Scan_State (Scan_State); Error_Msg_SC ("Unexpected semicolon ignored"); Scan; -- rescan past junk semicolon else Restore_Scan_State (Scan_State); end if; elsif Bad_Spelling_Of (Tok_Return) then null; end if; end Check_Junk_Semicolon_Before_Return; ----------------------------------------------------- -- 6.1 Subprogram (Also 6.3, 8.5.4, 10.1.3, 12.3) -- ----------------------------------------------------- -- This routine scans out a subprogram declaration, subprogram body, -- subprogram renaming declaration or subprogram generic instantiation. -- SUBPROGRAM_DECLARATION ::= SUBPROGRAM_SPECIFICATION; -- ABSTRACT_SUBPROGRAM_DECLARATION ::= -- SUBPROGRAM_SPECIFICATION is abstract; -- SUBPROGRAM_SPECIFICATION ::= -- procedure DEFINING_PROGRAM_UNIT_NAME PARAMETER_PROFILE -- | function DEFINING_DESIGNATOR PARAMETER_AND_RESULT_PROFILE -- PARAMETER_PROFILE ::= [FORMAL_PART] -- PARAMETER_AND_RESULT_PROFILE ::= [FORMAL_PART] return SUBTYPE_MARK -- SUBPROGRAM_BODY ::= -- SUBPROGRAM_SPECIFICATION is -- DECLARATIVE_PART -- begin -- HANDLED_SEQUENCE_OF_STATEMENTS -- end [DESIGNATOR]; -- SUBPROGRAM_RENAMING_DECLARATION ::= -- SUBPROGRAM_SPECIFICATION renames callable_entity_NAME; -- SUBPROGRAM_BODY_STUB ::= -- SUBPROGRAM_SPECIFICATION is separate; -- GENERIC_INSTANTIATION ::= -- procedure DEFINING_PROGRAM_UNIT_NAME is -- new generic_procedure_NAME [GENERIC_ACTUAL_PART]; -- | function DEFINING_DESIGNATOR is -- new generic_function_NAME [GENERIC_ACTUAL_PART]; -- The value in Pf_Flags indicates which of these possible declarations -- is acceptable to the caller: -- Pf_Flags.Decl Set if declaration OK -- Pf_Flags.Gins Set if generic instantiation OK -- Pf_Flags.Pbod Set if proper body OK -- Pf_Flags.Rnam Set if renaming declaration OK -- Pf_Flags.Stub Set if body stub OK -- If an inappropriate form is encountered, it is scanned out but an -- error message indicating that it is appearing in an inappropriate -- context is issued. The only possible values for Pf_Flags are those -- defined as constants in the Par package. -- The caller has checked that the initial token is FUNCTION or PROCEDURE -- Error recovery: cannot raise Error_Resync function P_Subprogram (Pf_Flags : Pf_Rec) return Node_Id is Specification_Node : Node_Id; Name_Node : Node_Id; Fpart_List : List_Id; Fpart_Sloc : Source_Ptr; Return_Node : Node_Id; Inst_Node : Node_Id; Body_Node : Node_Id; Decl_Node : Node_Id; Rename_Node : Node_Id; Absdec_Node : Node_Id; Stub_Node : Node_Id; Fproc_Sloc : Source_Ptr; Func : Boolean; Scan_State : Saved_Scan_State; begin -- Set up scope stack entry. Note that the Labl field will be set later SIS_Entry_Active := False; SIS_Missing_Semicolon_Message := No_Error_Msg; Push_Scope_Stack; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scope.Table (Scope.Last).Etyp := E_Name; Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Lreq := False; Func := (Token = Tok_Function); Fproc_Sloc := Token_Ptr; Scan; -- past FUNCTION or PROCEDURE Ignore (Tok_Type); Ignore (Tok_Body); if Func then Name_Node := P_Defining_Designator; if Nkind (Name_Node) = N_Defining_Operator_Symbol and then Scope.Last = 1 then Error_Msg_SP ("operator symbol not allowed at library level"); Name_Node := New_Entity (N_Defining_Identifier, Sloc (Name_Node)); -- Set name from file name, we need some junk name, and that's -- as good as anything. This is only approximate, since we do -- not do anything with non-standard name translations. Get_Name_String (File_Name (Current_Source_File)); for J in 1 .. Name_Len loop if Name_Buffer (J) = '.' then Name_Len := J - 1; exit; end if; end loop; Set_Chars (Name_Node, Name_Find); Set_Error_Posted (Name_Node); end if; else Name_Node := P_Defining_Program_Unit_Name; end if; Scope.Table (Scope.Last).Labl := Name_Node; if Token = Tok_Colon then Error_Msg_SC ("redundant colon ignored"); Scan; -- past colon end if; -- Deal with generic instantiation, the one case in which we do not -- have a subprogram specification as part of whatever we are parsing if Token = Tok_Is then Save_Scan_State (Scan_State); -- at the IS T_Is; -- checks for redundant IS's if Token = Tok_New then if not Pf_Flags.Gins then Error_Msg_SC ("generic instantiation not allowed here!"); end if; Scan; -- past NEW if Func then Inst_Node := New_Node (N_Function_Instantiation, Fproc_Sloc); Set_Name (Inst_Node, P_Function_Name); else Inst_Node := New_Node (N_Procedure_Instantiation, Fproc_Sloc); Set_Name (Inst_Node, P_Qualified_Simple_Name); end if; Set_Defining_Unit_Name (Inst_Node, Name_Node); Set_Generic_Associations (Inst_Node, P_Generic_Actual_Part_Opt); TF_Semicolon; Pop_Scope_Stack; -- Don't need scope stack entry in this case return Inst_Node; else Restore_Scan_State (Scan_State); -- to the IS end if; end if; -- If not a generic instantiation, then we definitely have a subprogram -- specification (all possibilities at this stage include one here) Fpart_Sloc := Token_Ptr; Check_Misspelling_Of (Tok_Return); -- Scan formal part. First a special error check. If we have an -- identifier here, then we have a definite error. If this identifier -- is on the same line as the designator, then we assume it is the -- first formal after a missing left parenthesis if Token = Tok_Identifier and then not Token_Is_At_Start_Of_Line then T_Left_Paren; -- to generate message Fpart_List := P_Formal_Part; -- Otherwise scan out an optional formal part in the usual manner else Fpart_List := P_Parameter_Profile; end if; -- We treat what we have as a function specification if FUNCTION was -- used, or if a RETURN is present. This gives better error recovery -- since later RETURN statements will be valid in either case. Check_Junk_Semicolon_Before_Return; Return_Node := Error; if Token = Tok_Return then if not Func then Error_Msg ("PROCEDURE should be FUNCTION", Fproc_Sloc); Func := True; end if; Scan; -- past RETURN Return_Node := P_Subtype_Mark; No_Constraint; else if Func then Ignore (Tok_Right_Paren); TF_Return; end if; end if; if Func then Specification_Node := New_Node (N_Function_Specification, Fproc_Sloc); Set_Subtype_Mark (Specification_Node, Return_Node); else Specification_Node := New_Node (N_Procedure_Specification, Fproc_Sloc); end if; Set_Defining_Unit_Name (Specification_Node, Name_Node); Set_Parameter_Specifications (Specification_Node, Fpart_List); -- Error check: barriers not allowed on protected functions/procedures if Token = Tok_When then if Func then Error_Msg_SC ("barrier not allowed on function, only on entry"); else Error_Msg_SC ("barrier not allowed on procedure, only on entry"); end if; Scan; -- past WHEN Discard_Junk_Node (P_Expression); end if; -- Deal with case of semicolon ending a subprogram declaration if Token = Tok_Semicolon then if not Pf_Flags.Decl then T_Is; end if; Scan; -- past semicolon -- If semicolon is immediately followed by IS, then ignore the -- semicolon, and go process the body. if Token = Tok_Is then Error_Msg_SP ("unexpected semicolon ignored"); T_Is; -- ignroe redundant IS's goto Subprogram_Body; -- If BEGIN follows in an appropriate column, we immediately -- commence the error action of assuming that the previous -- subprogram declaration should have been a subprogram body, -- i.e. that the terminating semicolon should have been IS. elsif Token = Tok_Begin and then Start_Column >= Scope.Table (Scope.Last).Ecol then Error_Msg_SP (""";"" should be IS!"); goto Subprogram_Body; else goto Subprogram_Declaration; end if; -- Case of not followed by semicolon else -- Subprogram renaming declaration case Check_Misspelling_Of (Tok_Renames); if Token = Tok_Renames then if not Pf_Flags.Rnam then Error_Msg_SC ("renaming declaration not allowed here!"); end if; Rename_Node := New_Node (N_Subprogram_Renaming_Declaration, Token_Ptr); Scan; -- past RENAMES Set_Name (Rename_Node, P_Name); Set_Specification (Rename_Node, Specification_Node); TF_Semicolon; Pop_Scope_Stack; return Rename_Node; -- Case of IS following subprogram specification elsif Token = Tok_Is then T_Is; -- ignore redundant Is's if Token_Name = Name_Abstract then Check_95_Keyword (Tok_Abstract, Tok_Semicolon); end if; -- Deal nicely with (now obsolete) use of <> in place of abstract if Token = Tok_Box then Error_Msg_SC ("ABSTRACT expected"); Token := Tok_Abstract; end if; -- Abstract subprogram declaration case if Token = Tok_Abstract then Absdec_Node := New_Node (N_Abstract_Subprogram_Declaration, Token_Ptr); Set_Specification (Absdec_Node, Specification_Node); Pop_Scope_Stack; -- discard unneeded entry Scan; -- past ABSTRACT TF_Semicolon; return Absdec_Node; -- Check for IS NEW with Formal_Part present and handle nicely elsif Token = Tok_New then Error_Msg ("formal part not allowed in instantiation", Fpart_Sloc); Scan; -- past NEW if Func then Inst_Node := New_Node (N_Function_Instantiation, Fproc_Sloc); else Inst_Node := New_Node (N_Procedure_Instantiation, Fproc_Sloc); end if; Set_Defining_Unit_Name (Inst_Node, Name_Node); Set_Name (Inst_Node, P_Name); Set_Generic_Associations (Inst_Node, P_Generic_Actual_Part_Opt); TF_Semicolon; Pop_Scope_Stack; -- Don't need scope stack entry in this case return Inst_Node; else goto Subprogram_Body; end if; -- Here we have a missing IS or missing semicolon, we always guess -- a missing semicolon, since we are pretty good at fixing up a -- semicolon which should really be an IS else Error_Msg_AP ("missing "";"""); SIS_Missing_Semicolon_Message := Get_Msg_Id; goto Subprogram_Declaration; end if; end if; -- Processing for subprogram body <<Subprogram_Body>> if not Pf_Flags.Pbod then Error_Msg_SP ("subprogram body not allowed here!"); end if; -- Subprogram body stub case if Separate_Present then if not Pf_Flags.Stub then Error_Msg_SC ("body stub not allowed here!"); end if; if Nkind (Name_Node) = N_Defining_Operator_Symbol then Error_Msg ("operator symbol cannot be used as subunit name", Sloc (Name_Node)); end if; Stub_Node := New_Node (N_Subprogram_Body_Stub, Sloc (Specification_Node)); Set_Specification (Stub_Node, Specification_Node); Scan; -- past SEPARATE Pop_Scope_Stack; TF_Semicolon; return Stub_Node; -- Subprogram body case else -- Here is the test for a suspicious IS (i.e. one that looks -- like it might more properly be a semicolon). See separate -- section discussing use of IS instead of semicolon in -- package Parse. if (Token in Token_Class_Declk or else Token = Tok_Identifier) and then Start_Column <= Scope.Table (Scope.Last).Ecol and then Scope.Last /= 1 then Scope.Table (Scope.Last).Etyp := E_Suspicious_Is; Scope.Table (Scope.Last).S_Is := Prev_Token_Ptr; end if; Body_Node := New_Node (N_Subprogram_Body, Sloc (Specification_Node)); Set_Specification (Body_Node, Specification_Node); Parse_Decls_Begin_End (Body_Node); return Body_Node; end if; -- Processing for subprogram declaration <<Subprogram_Declaration>> Decl_Node := New_Node (N_Subprogram_Declaration, Sloc (Specification_Node)); Set_Specification (Decl_Node, Specification_Node); -- If this is a context in which a subprogram body is permitted, -- set active SIS entry in case (see section titled "Handling -- Semicolon Used in Place of IS" in body of Parser package) -- Note that SIS_Missing_Semicolon_Message is already set properly. if Pf_Flags.Pbod then SIS_Labl := Scope.Table (Scope.Last).Labl; SIS_Sloc := Scope.Table (Scope.Last).Sloc; SIS_Ecol := Scope.Table (Scope.Last).Ecol; SIS_Declaration_Node := Decl_Node; SIS_Semicolon_Sloc := Prev_Token_Ptr; SIS_Entry_Active := True; end if; Pop_Scope_Stack; return Decl_Node; end P_Subprogram; --------------------------------- -- 6.1 Subprogram Declaration -- --------------------------------- -- Parsed by P_Subprogram (6.1) ------------------------------------------ -- 6.1 Abstract Subprogram Declaration -- ------------------------------------------ -- Parsed by P_Subprogram (6.1) ----------------------------------- -- 6.1 Subprogram Specification -- ----------------------------------- -- SUBPROGRAM_SPECIFICATION ::= -- procedure DEFINING_PROGRAM_UNIT_NAME PARAMETER_PROFILE -- | function DEFINING_DESIGNATOR PARAMETER_AND_RESULT_PROFILE -- PARAMETER_PROFILE ::= [FORMAL_PART] -- PARAMETER_AND_RESULT_PROFILE ::= [FORMAL_PART] return SUBTYPE_MARK -- Subprogram specifications that appear in subprogram declarations -- are parsed by P_Subprogram (6.1). This routine is used in other -- contexts where subprogram specifications occur. -- Note: this routine does not affect the scope stack in any way -- Error recovery: can raise Error_Resync function P_Subprogram_Specification return Node_Id is Specification_Node : Node_Id; begin if Token = Tok_Function then Specification_Node := New_Node (N_Function_Specification, Token_Ptr); Scan; -- past FUNCTION Ignore (Tok_Body); Set_Defining_Unit_Name (Specification_Node, P_Defining_Designator); Set_Parameter_Specifications (Specification_Node, P_Parameter_Profile); Check_Junk_Semicolon_Before_Return; TF_Return; Set_Subtype_Mark (Specification_Node, P_Subtype_Mark); No_Constraint; return Specification_Node; elsif Token = Tok_Procedure then Specification_Node := New_Node (N_Procedure_Specification, Token_Ptr); Scan; -- past PROCEDURE Ignore (Tok_Body); Set_Defining_Unit_Name (Specification_Node, P_Defining_Program_Unit_Name); Set_Parameter_Specifications (Specification_Node, P_Parameter_Profile); return Specification_Node; else Error_Msg_SC ("subprogram specification expected"); raise Error_Resync; end if; end P_Subprogram_Specification; --------------------- -- 6.1 Designator -- --------------------- -- DESIGNATOR ::= -- [PARENT_UNIT_NAME .] IDENTIFIER | OPERATOR_SYMBOL -- The caller has checked that the initial token is an identifier, -- operator symbol, or string literal. Note that we don't bother to -- do much error diagnosis in this routine, since it is only used for -- the label on END lines, and the routines in package Par.Endh will -- check that the label is appropriate. -- Error recovery: cannot raise Error_Resync function P_Designator return Node_Id is Ident_Node : Node_Id; Name_Node : Node_Id; Prefix_Node : Node_Id; function Real_Dot return Boolean; -- Tests if a current token is an interesting period, i.e. is followed -- by an identifier or operator symbol or string literal. If not, it is -- probably just incorrect punctuation to be caught by our caller. Note -- that the case of an operator symbol or string literal is also an -- error, but that is an error that we catch here. If the result is -- True, a real dot has been scanned and we are positioned past it, -- if the result is False, the scan position is unchanged. function Real_Dot return Boolean is Scan_State : Saved_Scan_State; begin if Token /= Tok_Dot then return False; else Save_Scan_State (Scan_State); Scan; -- past dot if Token = Tok_Identifier or else Token = Tok_Operator_Symbol or else Token = Tok_String_Literal then return True; else Restore_Scan_State (Scan_State); return False; end if; end if; end Real_Dot; -- Start of processing for P_Designator begin Ident_Node := Token_Node; Scan; -- past initial token if Prev_Token = Tok_Operator_Symbol or else Prev_Token = Tok_String_Literal or else not Real_Dot then return Ident_Node; -- Child name case else Prefix_Node := Ident_Node; -- Loop through child names, on entry to this loop, Prefix contains -- the name scanned so far, and Ident_Node is the last identifier. loop Name_Node := New_Node (N_Selected_Component, Prev_Token_Ptr); Set_Prefix (Name_Node, Prefix_Node); Ident_Node := P_Identifier; Set_Selector_Name (Name_Node, Ident_Node); Prefix_Node := Name_Node; exit when not Real_Dot; end loop; -- On exit from the loop, Ident_Node is the last identifier scanned, -- i.e. the defining identifier, and Prefix_Node is a node for the -- entire name, structured (incorrectly!) as a selected component. Name_Node := Prefix (Prefix_Node); Change_Node (Prefix_Node, N_Designator); Set_Name (Prefix_Node, Name_Node); Set_Identifier (Prefix_Node, Ident_Node); return Prefix_Node; end if; exception when Error_Resync => while Token = Tok_Dot or else Token = Tok_Identifier loop Scan; end loop; return Error; end P_Designator; ------------------------------ -- 6.1 Defining Designator -- ------------------------------ -- DEFINING_DESIGNATOR ::= -- DEFINING_PROGRAM_UNIT_NAME | DEFINING_OPERATOR_SYMBOL -- Error recovery: cannot raise Error_Resync function P_Defining_Designator return Node_Id is begin if Token = Tok_Operator_Symbol then return P_Defining_Operator_Symbol; elsif Token = Tok_String_Literal then Error_Msg_SC ("invalid operator name"); Scan; -- past junk string return Error; else return P_Defining_Program_Unit_Name; end if; end P_Defining_Designator; ------------------------------------- -- 6.1 Defining Program Unit Name -- ------------------------------------- -- DEFINING_PROGRAM_UNIT_NAME ::= -- [PARENT_UNIT_NAME .] DEFINING_IDENTIFIER -- Note: PARENT_UNIT_NAME may be present only in 95 mode at the outer level -- Error recovery: cannot raise Error_Resync function P_Defining_Program_Unit_Name return Node_Id is Ident_Node : Node_Id; Name_Node : Node_Id; Prefix_Node : Node_Id; begin -- Set identifier casing if not already set and scan initial identifier if Token = Tok_Identifier and then Identifier_Casing (Current_Source_File) = Unknown then Set_Identifier_Casing (Current_Source_File, Determine_Token_Casing); end if; Ident_Node := P_Identifier; Merge_Identifier (Ident_Node, Tok_Return); -- Normal case (not child library unit name) if Token /= Tok_Dot then Change_Identifier_To_Defining_Identifier (Ident_Node); return Ident_Node; -- Child library unit name case else if Scope.Last > 1 then Error_Msg_SP ("child unit allowed only at library level"); raise Error_Resync; elsif Ada_83 then Error_Msg_SP ("(Ada 83) child unit not allowed!"); end if; Prefix_Node := Ident_Node; -- Loop through child names, on entry to this loop, Prefix contains -- the name scanned so far, and Ident_Node is the last identifier. loop exit when Token /= Tok_Dot; Name_Node := New_Node (N_Selected_Component, Token_Ptr); Scan; -- past period Set_Prefix (Name_Node, Prefix_Node); Ident_Node := P_Identifier; Set_Selector_Name (Name_Node, Ident_Node); Prefix_Node := Name_Node; end loop; -- On exit from the loop, Ident_Node is the last identifier scanned, -- i.e. the defining identifier, and Prefix_Node is a node for the -- entire name, structured (incorrectly!) as a selected component. Name_Node := Prefix (Prefix_Node); Change_Node (Prefix_Node, N_Defining_Program_Unit_Name); Set_Name (Prefix_Node, Name_Node); Change_Identifier_To_Defining_Identifier (Ident_Node); Set_Defining_Identifier (Prefix_Node, Ident_Node); -- All set with unit name parsed return Prefix_Node; end if; exception when Error_Resync => while Token = Tok_Dot or else Token = Tok_Identifier loop Scan; end loop; return Error; end P_Defining_Program_Unit_Name; -------------------------- -- 6.1 Operator Symbol -- -------------------------- -- OPERATOR_SYMBOL ::= STRING_LITERAL -- Operator symbol is returned by the scanner as Tok_Operator_Symbol ----------------------------------- -- 6.1 Defining Operator Symbol -- ----------------------------------- -- DEFINING_OPERATOR_SYMBOL ::= OPERATOR_SYMBOL -- The caller has checked that the initial symbol is an operator symbol function P_Defining_Operator_Symbol return Node_Id is Op_Node : Node_Id; begin Op_Node := Token_Node; Change_Operator_Symbol_To_Defining_Operator_Symbol (Op_Node); Scan; -- past operator symbol return Op_Node; end P_Defining_Operator_Symbol; ---------------------------- -- 6.1 Parameter_Profile -- ---------------------------- -- PARAMETER_PROFILE ::= [FORMAL_PART] -- Empty is returned if no formal part is present -- Error recovery: cannot raise Error_Resync function P_Parameter_Profile return List_Id is begin if Token = Tok_Left_Paren then Scan; -- part left paren return P_Formal_Part; else return No_List; end if; end P_Parameter_Profile; --------------------------------------- -- 6.1 Parameter And Result Profile -- --------------------------------------- -- Parsed by its parent construct, which uses P_Parameter_Profile to -- parse the parameters, and P_Subtype_Mark to parse the return type. ---------------------- -- 6.1 Formal part -- ---------------------- -- FORMAL_PART ::= (PARAMETER_SPECIFICATION {; PARAMETER_SPECIFICATION}) -- PARAMETER_SPECIFICATION ::= -- DEFINING_IDENTIFIER_LIST : MODE SUBTYPE_MARK -- [:= DEFAULT_EXPRESSION] -- | DEFINING_IDENTIFIER_LIST : ACCESS_DEFINITION -- [:= DEFAULT_EXPRESSION] -- This scans the construct Formal_Part. The caller has already checked -- that the initial token is a left parenthesis, and skipped past it, so -- that on entry Token is the first token following the left parenthesis. -- Error recovery: cannot raise Error_Resync function P_Formal_Part return List_Id is Specification_List : List_Id; Specification_Node : Node_Id; Scan_State : Saved_Scan_State; Num_Idents : Nat; Ident : Nat; Ident_Sloc : Source_Ptr; Idents : array (Int range 1 .. 4096) of Entity_Id; -- This array holds the list of defining identifiers. The upper bound -- of 4096 is intended to be essentially infinite, and we do not even -- bother to check for it being exceeded. begin Specification_List := New_List; Specification_Loop : loop begin if Token = Tok_Pragma then P_Pragmas_Misplaced; end if; Ignore (Tok_Left_Paren); Ident_Sloc := Token_Ptr; Idents (1) := P_Defining_Identifier; Num_Idents := 1; Ident_Loop : loop exit Ident_Loop when Token = Tok_Colon; -- The only valid tokens are colon and comma, so if we have -- neither do a bit of investigation to see which is the -- better choice for insertion. if Token /= Tok_Comma then -- Assume colon if IN or OUT keyword found exit Ident_Loop when Token = Tok_In or else Token = Tok_Out; -- Otherwise scan ahead Save_Scan_State (Scan_State); Look_Ahead : loop -- If we run into a semicolon, then assume that a -- colon was missing, e.g. Parms (X Y; ...). Also -- assume missing colon on EOF (a real disaster!) -- and on a right paren, e.g. Parms (X Y), and also -- on an assignment symbol, e.g. Parms (X Y := ..) if Token = Tok_Semicolon or else Token = Tok_Right_Paren or else Token = Tok_EOF or else Token = Tok_Colon_Equal then Restore_Scan_State (Scan_State); exit Ident_Loop; -- If we run into a colon, assume that we had a missing -- comma, e.g. Parms (A B : ...). Also assume a missing -- comma if we hit another comma, e.g. Parms (A B, C ..) elsif Token = Tok_Colon or else Token = Tok_Comma then Restore_Scan_State (Scan_State); exit Look_Ahead; end if; Scan; end loop Look_Ahead; end if; -- Here if a comma is present, or to be assumed T_Comma; Num_Idents := Num_Idents + 1; Idents (Num_Idents) := P_Defining_Identifier; end loop Ident_Loop; -- Fall through the loop on encountering a colon, or deciding -- that there is a missing colon. T_Colon; -- If there are multiple identifiers, we repeatedly scan the -- type and initialization expression information by resetting -- the scan pointer (so that we get completely separate trees -- for each occurrence). if Num_Idents > 1 then Save_Scan_State (Scan_State); end if; -- Loop through defining identifiers in list Ident := 1; Ident_List_Loop : loop Specification_Node := New_Node (N_Parameter_Specification, Ident_Sloc); Set_Defining_Identifier (Specification_Node, Idents (Ident)); if Token = Tok_Access then if Ada_83 then Error_Msg_SC ("(Ada 83) access parameters not allowed"); end if; Set_Parameter_Type (Specification_Node, P_Access_Definition); else P_Mode (Specification_Node); if Token = Tok_Procedure or else Token = Tok_Function then Error_Msg_SC ("formal subprogram parameter not allowed"); Scan; if Token = Tok_Left_Paren then Discard_Junk_List (P_Formal_Part); end if; if Token = Tok_Return then Scan; Discard_Junk_Node (P_Subtype_Mark); end if; Set_Parameter_Type (Specification_Node, Error); else Set_Parameter_Type (Specification_Node, P_Subtype_Mark); No_Constraint; end if; end if; Set_Expression (Specification_Node, Init_Expr_Opt (True)); if Ident > 1 then Set_Prev_Ids (Specification_Node, True); end if; if Ident < Num_Idents then Set_More_Ids (Specification_Node, True); end if; Append (Specification_Node, Specification_List); exit Ident_List_Loop when Ident = Num_Idents; Ident := Ident + 1; Restore_Scan_State (Scan_State); end loop Ident_List_Loop; exception when Error_Resync => Resync_Semicolon_List; end; if Token = Tok_Semicolon then Scan; -- past semicolon -- If we have RETURN or IS after the semicolon, then assume -- that semicolon should have been a right parenthesis and exit if Token = Tok_Is or else Token = Tok_Return then Error_Msg_SP ("expected "")"" in place of "";"""); exit Specification_Loop; end if; elsif Token = Tok_Right_Paren then Scan; -- past right paren exit Specification_Loop; -- Special check for common error of using comma instead of semicolon elsif Token = Tok_Comma then T_Semicolon; Scan; -- past comma -- Special check for omitted separator elsif Token = Tok_Identifier then T_Semicolon; -- If nothing sensible, skip to next semicolon or right paren else T_Semicolon; Resync_Semicolon_List; if Token = Tok_Semicolon then Scan; -- past semicolon else T_Right_Paren; exit Specification_Loop; end if; end if; end loop Specification_Loop; return Specification_List; end P_Formal_Part; ---------------------------------- -- 6.1 Parameter Specification -- ---------------------------------- -- Parsed by P_Formal_Part (6.1) --------------- -- 6.1 Mode -- --------------- -- MODE ::= [in] | in out | out -- There is no explicit node in the tree for the Mode. Instead the -- In_Present and Out_Present flags are set in the parent node to -- record the presence of keywords specifying the mode. -- Error_Recovery: cannot raise Error_Resync procedure P_Mode (Node : Node_Id) is begin if Token = Tok_In then Scan; -- past IN Set_In_Present (Node, True); end if; if Token = Tok_Out then Scan; -- past OUT Set_Out_Present (Node, True); end if; if Token = Tok_In then Error_Msg_SC ("IN must precede OUT in parameter mode"); Scan; -- past IN Set_In_Present (Node, True); end if; end P_Mode; -------------------------- -- 6.3 Subprogram Body -- -------------------------- -- Parsed by P_Subprogram (6.1) ----------------------------------- -- 6.4 Procedure Call Statement -- ----------------------------------- -- Parsed by P_Sequence_Of_Statements (5.1) ------------------------ -- 6.4 Function Call -- ------------------------ -- Parsed by P_Call_Or_Name (4.1) -------------------------------- -- 6.4 Actual Parameter Part -- -------------------------------- -- Parsed by P_Call_Or_Name (4.1) -------------------------------- -- 6.4 Parameter Association -- -------------------------------- -- Parsed by P_Call_Or_Name (4.1) ------------------------------------ -- 6.4 Explicit Actual Parameter -- ------------------------------------ -- Parsed by P_Call_Or_Name (4.1) --------------------------- -- 6.5 Return Statement -- --------------------------- -- RETURN_STATEMENT ::= return [EXPRESSION]; -- The caller has checked that the initial token is RETURN -- Error recovery: can raise Error_Resync function P_Return_Statement return Node_Id is Return_Node : Node_Id; begin Return_Node := New_Node (N_Return_Statement, Token_Ptr); -- Sloc points to RETURN -- Expression (Op3) Scan; -- past RETURN if Token /= Tok_Semicolon then -- If no semicolon, then scan an expression, except that -- we avoid trying to scan an expression if we are at an -- expression terminator since in that case the best error -- message is probably that we have a missing semicolon. if Token not in Token_Class_Eterm then Set_Expression (Return_Node, P_Expression_No_Right_Paren); end if; end if; TF_Semicolon; return Return_Node; end P_Return_Statement; end Ch6;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . P A R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2000-2011, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- General wrapper for the parsing of project files with Prj.Tree; package Prj.Pars is procedure Set_Verbosity (To : Verbosity); -- Set the verbosity when parsing the project files procedure Parse (In_Tree : Project_Tree_Ref; Project : out Project_Id; Project_File_Name : String; Packages_To_Check : String_List_Access; Reset_Tree : Boolean := True; In_Node_Tree : Prj.Tree.Project_Node_Tree_Ref := null; Env : in out Prj.Tree.Environment); -- Parse and process a project files and all its imported project files, in -- the project tree In_Tree. -- -- All the project files are parsed (through Prj.Tree) to create a tree in -- memory. That tree is then processed (through Prj.Proc) to create a -- expanded representation of the tree based on the current external -- references. This function is only a convenient wrapper over other -- services provided in the Prj.* package hierarchy. -- -- If parsing is successful, Project is the project ID of the root project -- file; otherwise, Project_Id is set to No_Project. Project_Node_Tree is -- set to the tree (unprocessed) representation of the project file. This -- tree is permanently correct, whereas Project will need to be recomputed -- if the external references change. -- -- Packages_To_Check indicates the packages where any unknown attribute -- produces an error. For other packages, an unknown attribute produces a -- warning. -- -- When Reset_Tree is True, all the project data are removed from the -- project table before processing. -- -- In_Node_Tree (if given) must have been Initialized. The main reason to -- pass an existing tree, is to pass the external references that will then -- be used to process the tree. end Prj.Pars;
----------------------------------------------------------------------- -- servlet-responses.web -- Servlet Responses with AWS server -- Copyright (C) 2009, 2010, 2011, 2017, 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with AWS.Headers; with AWS.Messages; with AWS.Response.Set; with AWS.Containers.Tables; package body Servlet.Responses.Web is procedure Initialize (Resp : in out Response) is begin Resp.Content.Initialize (Size => 256 * 1024, Output => Resp'Unchecked_Access); Resp.Stream := Resp.Content'Unchecked_Access; end Initialize; -- ------------------------------ -- Write the buffer array to the output stream. -- ------------------------------ procedure Write (Stream : in out Response; Buffer : in Ada.Streams.Stream_Element_Array) is begin AWS.Response.Set.Append_Body (D => Stream.Data, Item => Buffer); end Write; -- ------------------------------ -- Flush the buffer (if any) to the sink. -- ------------------------------ procedure Flush (Stream : in out Response) is begin null; end Flush; function To_Status_Code (Status : in Natural) return AWS.Messages.Status_Code; function To_Status_Code (Status : in Natural) return AWS.Messages.Status_Code is use AWS.Messages; begin case Status is when 100 => return S100; when 101 => return S101; when 102 => return S102; when 200 => return S200; when 201 => return S201; when 202 => return S202; when 203 => return S203; when 204 => return S204; when 205 => return S205; when 206 => return S206; when 207 => return S207; when 301 => return S301; when 302 => return S302; when 400 => return S400; when 401 => return S401; when 402 => return S402; when 403 => return S403; when 404 => return S404; when 405 => return S405; when others => return S500; end case; end To_Status_Code; -- ------------------------------ -- Iterate over the response headers and executes the <b>Process</b> procedure. -- ------------------------------ procedure Iterate_Headers (Resp : in Response; Process : not null access procedure (Name : in String; Value : in String)) is Headers : constant AWS.Headers.List := AWS.Response.Header (Resp.Data); begin AWS.Containers.Tables.Iterate_Names (AWS.Containers.Tables.Table_Type (Headers), ";", Process); end Iterate_Headers; -- ------------------------------ -- Returns a boolean indicating whether the named response header has already -- been set. -- ------------------------------ function Contains_Header (Resp : in Response; Name : in String) return Boolean is begin raise Program_Error with "Contains_Header is not implemented"; return False; end Contains_Header; -- ------------------------------ -- Sets a response header with the given name and value. If the header had already -- been set, the new value overwrites the previous one. The containsHeader -- method can be used to test for the presence of a header before setting its value. -- ------------------------------ procedure Set_Header (Resp : in out Response; Name : in String; Value : in String) is begin if AWS.Response.Header (Resp.Data, Name)'Length = 0 then AWS.Response.Set.Add_Header (D => Resp.Data, Name => Name, Value => Value); end if; end Set_Header; -- ------------------------------ -- Adds a response header with the given name and value. -- This method allows response headers to have multiple values. -- ------------------------------ procedure Add_Header (Resp : in out Response; Name : in String; Value : in String) is begin AWS.Response.Set.Add_Header (D => Resp.Data, Name => Name, Value => Value); end Add_Header; -- ------------------------------ -- Sends a temporary redirect response to the client using the specified redirect -- location URL. This method can accept relative URLs; the servlet container must -- convert the relative URL to an absolute URL before sending the response to the -- client. If the location is relative without a leading '/' the container -- interprets it as relative to the current request URI. If the location is relative -- with a leading '/' the container interprets it as relative to the servlet -- container root. -- -- If the response has already been committed, this method throws an -- IllegalStateException. After using this method, the response should be -- considered to be committed and should not be written to. -- ------------------------------ procedure Send_Redirect (Resp : in out Response; Location : in String) is begin Response'Class (Resp).Set_Status (SC_FOUND); Response'Class (Resp).Set_Header (Name => "Location", Value => Location); Resp.Redirect := True; end Send_Redirect; -- ------------------------------ -- Prepare the response data by collecting the status, content type and message body. -- ------------------------------ procedure Build (Resp : in out Response) is begin if not Resp.Redirect then AWS.Response.Set.Content_Type (D => Resp.Data, Value => Resp.Get_Content_Type); Resp.Content.Flush; if AWS.Response.Is_Empty (Resp.Data) then AWS.Response.Set.Message_Body (Resp.Data, ""); end if; else AWS.Response.Set.Mode (D => Resp.Data, Value => AWS.Response.Header); end if; AWS.Response.Set.Status_Code (D => Resp.Data, Value => To_Status_Code (Resp.Get_Status)); end Build; -- ------------------------------ -- Get the response data -- ------------------------------ function Get_Data (Resp : in Response) return AWS.Response.Data is begin return Resp.Data; end Get_Data; end Servlet.Responses.Web;
-- { dg-do compile } -- { dg-options "-O -gnatn -fdump-tree-optimized" } package body Array16 is function F1 (A : access My_T1) return My_T1 is begin return A.all; end; function F2 (A : access My_T2) return My_T2 is begin return A.all; end; procedure Proc (A : access My_T1; B : access My_T2) is L1 : My_T1 := F1(A); L2 : My_T2 := F2(B); begin if L1.D = 0 and then L2(1) = 0 then raise Program_Error; end if; end; end Array16; -- { dg-final { scan-tree-dump-not "secondary_stack" "optimized" } }
with Ada.Strings.Unbounded; limited with kv.avm.Tree_Visitors; limited with kv.avm.Symbol_Tables; with kv.avm.Instructions; with kv.avm.Registers; use kv.avm.Registers; package kv.avm.vole_tree is Parsing_Error : exception; Missing_Parent_Error : exception; Association_Error : exception; Unresolveable_Name : exception; Variable_Undefined : exception; Variable_Unspecified : exception; Terminate_Parsing : exception; -- Once an error has been dealt with, raise this to quietly terminate parsing. subtype String_Type is Ada.Strings.Unbounded.Unbounded_String; package Visitors renames kv.avm.Tree_Visitors; type Node_Base_Class; type Node_Pointer is access all Node_Base_Class'CLASS; type Association_Type is (My_Self, My_Parent, My_Next, My_Previous, My_Name, My_Attributes, My_Methods, My_Kind, My_Inputs, My_Outputs, My_Code, My_Arguments, My_Destination, My_Left, My_Right, My_Value, My_Condition, My_Then_Part, My_Else_Part, My_Loop_Part, My_Imports, My_Actors, My_Loop_Exit); subtype Child_Association_Type is Association_Type range My_Name .. Association_Type'LAST; -- Some class-wide navigation functions function Actor_Of(Target : Node_Base_Class'CLASS) return Node_Pointer; function Message_Of(Target : Node_Base_Class'CLASS) return Node_Pointer; function Association_Of(Target : Node_Base_Class'CLASS) return Association_Type; function Find_Actor(Target : String) return Node_Pointer; -- Some class-wide utilities function Resolve_Name(Target : Node_Base_Class'CLASS; Raise_Errors : Boolean := False) return String; function Resolve_Ref_Name(Target : Node_Base_Class'CLASS; Ref_Name : String; Raise_Errors : Boolean := False) return String; function Resolve_Register(Target : Node_Base_Class'CLASS; Raise_Errors : Boolean := False) return String; type Association_List_Type is array (Association_Type) of Node_Pointer; ---------------------------------------------------------------------------- -- This is the abstract base class of all node classes of the vole -- abstract syntax tree. -- -- Each node has a uniqie ID. -- The Line represents the source code associated with the AST node. -- Nodes are associataed with one or more other nodes through Associations. -- Nodes may have a distinct register type (kind). -- type Node_Base_Class is abstract tagged record ID : Positive; Line : Positive; Associations : Association_List_Type; Kind : kv.avm.Registers.Data_Kind := Unset; end record; procedure Visit(Self : in out Node_Base_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural) is abstract; function Get_ID(Self : Node_Base_Class) return Positive; function Get_Line(Self : Node_Base_Class) return Positive; function Get_Name(Self : Node_Base_Class) return String; function Get_Association(Self : Node_Base_Class; Association : Association_Type) return Node_Pointer; procedure Set (Node : in out Node_Base_Class; Association : in Association_Type; Target : in Node_Pointer); function Get_Kind(Self : Node_Base_Class) return kv.avm.Registers.Data_Kind; procedure Set_Kind(Self : in out Node_Base_Class; Kind : in kv.avm.Registers.Data_Kind); function Get_Length(Self : Node_Base_Class) return Positive; -- 1 for non-lists type Node_List_Class is abstract new Node_Base_Class with null record; type Node_List_Pointer is access all Node_List_Class; overriding function Get_Length(Self : Node_List_Class) return Positive; type Id_Node_Class is new Node_Base_Class with record Name : String_Type; end record; type Id_Node_Pointer is access all Id_Node_Class; overriding procedure Visit(Self : in out Id_Node_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); overriding function Get_Name(Self : Id_Node_Class) return String; -- Get_Symbol_Table takes a Boolean that means: VARIABLE_SYMBOLS : constant Boolean := True; CONSTANT_SYMBOLS : constant Boolean := False; type Actor_Definition_Class is new Node_List_Class with record Attribute_Symbols : access kv.avm.Symbol_Tables.Symbol_Table; Constant_Symbols : access kv.avm.Symbol_Tables.Symbol_Table; Super_Class : Node_Pointer; end record; type Actor_Definition_Pointer is access all Actor_Definition_Class; overriding procedure Visit(Self : in out Actor_Definition_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); overriding function Get_Name(Self : Actor_Definition_Class) return String; not overriding function Get_Symbol_Table(Self : Actor_Definition_Class; Attributes : Boolean) return access kv.avm.Symbol_Tables.Symbol_Table; not overriding function Get_Super_Class(Self : Actor_Definition_Class) return Node_Pointer; type Attribute_Definition_Class is new Node_List_Class with null record; type Attribute_Definition_Pointer is access all Attribute_Definition_Class; overriding procedure Visit(Self : in out Attribute_Definition_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); overriding function Get_Name(Self : Attribute_Definition_Class) return String; type Message_Definition_Class is new Node_List_Class with record Method : Boolean; -- Methods are private (internal) messages Input_Symbols : access kv.avm.Symbol_Tables.Symbol_Table; Local_Symbols : access kv.avm.Symbol_Tables.Symbol_Table; end record; type Message_Definition_Pointer is access all Message_Definition_Class; overriding procedure Visit(Self : in out Message_Definition_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); overriding function Get_Name(Self : Message_Definition_Class) return String; not overriding function Get_Symbol_Table(Self : Message_Definition_Class; Local : Boolean) return access kv.avm.Symbol_Tables.Symbol_Table; type Kind_Node_Class is new Node_Base_Class with null record; type Kind_Node_Pointer is access all Kind_Node_Class; overriding procedure Visit(Self : in out Kind_Node_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); type Argument_Class is new Node_List_Class with null record; type Argument_Pointer is access all Argument_Class; overriding procedure Visit(Self : in out Argument_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); overriding function Get_Name(Self : Argument_Class) return String; type Constructor_Send_Node_Class is new Node_Base_Class with null record; type Constructor_Send_Node_Pointer is access all Constructor_Send_Node_Class; overriding procedure Visit(Self : in out Constructor_Send_Node_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); type Expression_List_Class is new Node_List_Class with record Temp_Name : String_Type; end record; type Expression_List_Pointer is access all Expression_List_Class; overriding procedure Visit(Self : in out Expression_List_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); not overriding procedure Set_Temp_Name (Self : in out Expression_List_Class; Name : in String); not overriding function Get_Temp_Name(Self : Expression_List_Class) return String; type Expression_Op_Class is new Expression_List_Class with record Op : kv.avm.Instructions.operation_type; end record; type Expression_Op_Pointer is access all Expression_Op_Class; overriding procedure Visit(Self : in out Expression_Op_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); not overriding function Get_Op(Self : Expression_Op_Class) return kv.avm.Instructions.operation_type; type Expression_Var_Class is new Expression_List_Class with record Self : Boolean; end record; type Expression_Var_Pointer is access all Expression_Var_Class; overriding procedure Visit(Self : in out Expression_Var_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); overriding function Get_Name(Self : Expression_Var_Class) return String; not overriding function Get_Is_Self(Self : Expression_Var_Class) return Boolean; type Expression_Literal_Class is new Expression_List_Class with record Value : String_Type; end record; type Expression_Literal_Pointer is access all Expression_Literal_Class; overriding procedure Visit(Self : in out Expression_Literal_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); not overriding function Get_Value(Self : Expression_Literal_Class) return String; type Destination_Type is (Actor, Self, Super); type Expression_Call_Class is new Expression_List_Class with record Destination : Destination_Type; Is_Gosub : Boolean; Is_Call : Boolean; Is_Tail : Boolean := False; end record; type Expression_Send_Pointer is access all Expression_Call_Class; overriding procedure Visit(Self : in out Expression_Call_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); not overriding procedure Set_Tail(Self : in out Expression_Call_Class; Tail : Boolean); not overriding function Get_Desc(Self : Expression_Call_Class) return String; not overriding function Is_Gosub(Self : Expression_Call_Class) return Boolean; not overriding function Is_Call(Self : Expression_Call_Class) return Boolean; not overriding function Is_Tail(Self : Expression_Call_Class) return Boolean; type Expression_Fold_Class is new Expression_List_Class with record Tuple_Map_Name : String_Type; Tuple_Map_Init : String_Type; end record; type Expression_Fold_Pointer is access all Expression_Fold_Class; overriding procedure Visit(Self : in out Expression_Fold_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); not overriding procedure Set_Tuple_Map_Name (Self : in out Expression_Fold_Class; Name : in String); not overriding function Get_Tuple_Map_Name(Self : Expression_Fold_Class) return String; not overriding procedure Set_Tuple_Map_Init (Self : in out Expression_Fold_Class; Init : in String); not overriding function Get_Tuple_Map_Init(Self : Expression_Fold_Class) return String; type Statement_List_Class is new Node_List_Class with record Block_Name : String_Type; end record; type Statement_List_Pointer is access all Statement_List_Class; overriding procedure Visit(Self : in out Statement_List_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); not overriding procedure Set_Block_Name (Self : in out Statement_List_Class; Name : in String); not overriding function Get_Block_Name(Self : Statement_List_Class) return String; type Statement_Assign_Class is new Statement_List_Class with null record; type Statement_Assign_Pointer is access all Statement_Assign_Class; overriding procedure Visit(Self : in out Statement_Assign_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); type Statement_Var_Def_Class is new Statement_List_Class with null record; type Statement_Var_Def_Pointer is access all Statement_Var_Def_Class; overriding procedure Visit(Self : in out Statement_Var_Def_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); overriding function Get_Name(Self : Statement_Var_Def_Class) return String; type Statement_Emit_Class is new Statement_List_Class with null record; type Statement_Emit_Pointer is access all Statement_Emit_Class; overriding procedure Visit(Self : in out Statement_Emit_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); type Statement_Return_Class is new Statement_List_Class with null record; type Statement_Return_Pointer is access all Statement_Return_Class; overriding procedure Visit(Self : in out Statement_Return_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); type Statement_If_Class is new Statement_List_Class with null record; type Statement_If_Pointer is access all Statement_If_Class; overriding procedure Visit(Self : in out Statement_If_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); type Statement_Assert_Class is new Statement_List_Class with null record; type Statement_Assert_Pointer is access all Statement_Assert_Class; overriding procedure Visit(Self : in out Statement_Assert_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); type Statement_While_Class is new Statement_List_Class with null record; type Statement_While_Pointer is access all Statement_While_Class; overriding procedure Visit(Self : in out Statement_While_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); type Statement_Send_Class is new Statement_List_Class with record Destination : Destination_Type; end record; type Statement_Send_Pointer is access all Statement_Send_Class; overriding procedure Visit(Self : in out Statement_Send_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); not overriding procedure Set_Destination (Self : in out Statement_Send_Class; Dest : in Destination_Type); not overriding function Get_Destination(Self : Statement_Send_Class) return Destination_Type; type Program_Class is new Node_Base_Class with null record; type Program_Pointer is access all Program_Class; overriding procedure Visit(Self : in out Program_Class; V : access Visitors.Visitor_Class'CLASS; D : Natural); procedure Build_Id_Node (Node : in out Node_Pointer; Line : in Positive; Name : in String); procedure Build_Actor_Node (Node : in out Node_Pointer; Line : in Positive; Name : in Node_Pointer; Attr : in Node_Pointer; Meth : in Node_Pointer; Supr : in Node_Pointer := null); procedure Build_Attribute (Node : in out Node_Pointer; Line : in Positive; Name : in Node_Pointer; Ty_I : in Node_Pointer); procedure Add_Next (Node : in Node_Pointer; Next : in Node_Pointer); procedure Build_Message (Node : in out Node_Pointer; Line : in Positive; pMsg : in Boolean; Name : in Node_Pointer; Args : in Node_Pointer; Rtn : in Node_Pointer; Code : in Node_Pointer; Pred : in Node_Pointer); procedure Build_Constructor (Node : in out Node_Pointer; Line : in Positive; Args : in Node_Pointer; Code : in Node_Pointer); procedure Build_Arg (Node : in out Node_Pointer; Line : in Positive; Name : in Node_Pointer; Kind : in Node_Pointer); procedure Build_Kind (Node : in out Node_Pointer; Line : in Positive; Kind : in kv.avm.Registers.Data_Kind; Init : in Node_Pointer := null); function New_Constructor_Send (Actor : in Node_Pointer; Args : in Node_Pointer) return Node_Pointer; procedure Build_Op_Expression (Node : in out Node_Pointer; Line : in Positive; Op : in kv.avm.Instructions.operation_type; Left : in Node_Pointer; Right : in Node_Pointer := null); procedure Build_Var_Expression (Node : in out Node_Pointer; Line : in Positive; Self : in Boolean; Name : in Node_Pointer); procedure Build_Literal_Expression (Node : in out Node_Pointer; Line : in Positive; Kind : in kv.avm.Registers.Data_Kind; Value : in String); procedure Build_Assignment (Node : in out Node_Pointer; Line : in Positive; Target : in Node_Pointer; Value : in Node_Pointer); procedure Build_Var_Def (Node : in out Node_Pointer; Line : in Positive; Name : in Node_Pointer; Ty_I : in Node_Pointer); procedure Build_Emit (Node : in out Node_Pointer; Line : in Positive; Expr : in Node_Pointer); procedure Build_Return (Node : in out Node_Pointer; Line : in Positive; What : in Node_Pointer); procedure Build_Call_Statement (Node : in out Node_Pointer; Line : in Positive; Kind : in Destination_Type; -- Self : in Boolean; -- Call : in Boolean; Dest : in Node_Pointer; Name : in Node_Pointer; Args : in Node_Pointer); procedure Build_Send_Statement (Node : in out Node_Pointer; Line : in Positive; Kind : in Destination_Type; Dest : in Node_Pointer; Name : in Node_Pointer; Args : in Node_Pointer); procedure Build_If (Node : in out Node_Pointer; Line : in Positive; Condition : in Node_Pointer; Then_Part : in Node_Pointer; Else_Part : in Node_Pointer); procedure Build_Fold (Node : in out Node_Pointer; Line : in Positive; What : in Node_Pointer); procedure Build_Assert (Node : in out Node_Pointer; Line : in Positive; Condition : in Node_Pointer); procedure Build_While (Node : in out Node_Pointer; Line : in Positive; Condition : in Node_Pointer; Loop_Part : in Node_Pointer); procedure Build_Program (Node : in out Node_Pointer; Line : in Positive; Imports : in Node_Pointer; Actors : in Node_Pointer); procedure Save_Program (Node : in Node_Pointer); function Get_Program return Program_Pointer; end kv.avm.vole_tree;
-------------------------------------------------------------- -------- Load_Control -------------------------------------- -- This package provides a protected object that controls -- the servicing of calling tasks, such that they are kept -- waiting until the system Load is less than some threshold -- value (different for each task type). -- Lifted from: http://www.cs.uni.edu//~mccormic/AdaEssentials/requeue_statement.htm -------------------------------------------------------------- -------------------------------------------------------------- -------- Test_Requeue -------------------------------------- -- This procedure creates a task that reduces the Load to 3 -- and then to 1, and two arrays of tasks of type Urgent_Task -- and Casual_Task having threshold values of 4 and 2, -- respectively -------------------------------------------------------------- with Ada.Text_IO; use Ada.Text_IO; procedure Requeue_statements is package Load_Control is subtype Load_Type is Integer range 0..5; protected Load_Manager is entry Wait_Until_Load_Less_Than(Threshold : in Load_Type); procedure Set_Load(Load : in Load_Type); private Current_Load : Load_Type := 5; Retrying : Boolean := False; entry Wait_To_Retry(Load : in Load_Type); end Load_Manager; end Load_Control; -------------------------------------------------------------- package body Load_Control is protected body Load_Manager is ---------------------------------- entry Wait_Until_Load_Less_Than(Threshold : in Load_Type) when not Retrying is begin if Current_Load > Threshold then requeue Wait_To_Retry; -- requeue statement end if; end Wait_Until_Load_Less_Than; ---------------------------------- procedure Set_Load(Load : in Load_Type) is begin Current_Load := Load; Retrying := True; end Set_Load; ---------------------------------- entry Wait_To_Retry(Load : in Load_Type) when Retrying is begin if Wait_To_Retry'Count = 0 then -- Count attribute Retrying := False; end if; requeue Wait_Until_Load_Less_Than; -- requeue statement end Wait_To_Retry; ---------------------------------- end Load_Manager; end Load_Control; -------------------------------------------- task Load_Monitor; task body Load_Monitor is begin delay 4.0; Load_Control.Load_Manager.Set_Load(3); delay 2.0; Load_Control.Load_Manager.Set_Load(1); end Load_Monitor; -------------------------------------------- task type Urgent_Task; task body Urgent_Task is -- Threshold = 4 begin delay 2.0; Put_Line("Urgent_Task will get on queue"); Load_Control.Load_Manager.Wait_Until_Load_Less_Than(4); Put_Line("Urgent task completed"); end Urgent_Task; -------------------------------------------- task type Casual_Task; task body Casual_Task is -- Threshold = 2 begin Put_Line("Casual task will get on queue"); Load_Control.Load_Manager.Wait_Until_Load_Less_Than(2); Put_Line("Casual task completed"); end Casual_Task; -------------------------------------------- UT : array(1..2) of Urgent_Task; -- declare 2 tasks CT : array(1..2) of Casual_Task; -- declare 2 tasks -------------------------------------------- begin null; end Requeue_statements; --------------------------------------------------------------
-- CA1102A0.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. --* -- WKB 6/12/81 PACKAGE CA1102A0 IS -- BODY IS IN CA1102A1. PROCEDURE P (INVOKED : IN OUT BOOLEAN); END CA1102A0;
<?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>reduce_2</name> <ret_bitwidth>18</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>x_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>x.V</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>13</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>10</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>64</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_2"> <Value> <Obj> <type>0</type> <id>2</id> <name>left_7_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>left[7].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>85</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_3"> <Value> <Obj> <type>0</type> <id>3</id> <name>left_7_V_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>left[7].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>86</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>4</id> <name>left_7_V_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>left[7].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>87</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>5</id> <name>left_7_V_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>left[7].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>88</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>6</id> <name>left_7_V_4</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>left[7].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>89</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>7</id> <name>left_7_V_5</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>left[7].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>90</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>8</id> <name>left_7_V_6</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>left[7].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>91</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>9</id> <name>left_7_V_7</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>left[7].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>92</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>93</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>12</id> <name>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>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>95</item> <item>96</item> <item>97</item> <item>98</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>13</id> <name>exitcond3</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond3_fu_155_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>99</item> <item>101</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>15</id> <name>i_4</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_4_fu_161_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>102</item> <item>104</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.73</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>16</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>105</item> <item>106</item> <item>107</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_fu_167_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>109</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>19</id> <name>x_V_addr</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>110</item> <item>112</item> <item>113</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>20</id> <name>x_V_load</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>114</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>21</id> <name>left_0_V</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>left[0].V</originalName> <rtlName>left_0_V_fu_176_p1</rtlName> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>115</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>22</id> <name>tmp_18</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_18_fu_172_p1</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>116</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>23</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>16</count> <item_version>0</item_version> <item>117</item> <item>118</item> <item>120</item> <item>121</item> <item>123</item> <item>124</item> <item>126</item> <item>127</item> <item>129</item> <item>130</item> <item>132</item> <item>133</item> <item>135</item> <item>136</item> <item>138</item> <item>139</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.36</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>25</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>222</item> <item>223</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>26</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>224</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>28</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>219</item> <item>220</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>29</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>221</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>31</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>216</item> <item>217</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>32</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>218</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>34</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>213</item> <item>214</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>35</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>215</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>37</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>210</item> <item>211</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>38</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>212</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>40</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>207</item> <item>208</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>41</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>209</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>43</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>140</item> <item>141</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>44</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>142</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>46</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>225</item> <item>226</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>47</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>227</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>49</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>228</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>51</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>108</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>53</id> <name>p_Val2_7</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>right[1].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>143</item> <item>144</item> <item>146</item> <item>147</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>54</id> <name>p_Val2_s</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>right[1].V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>148</item> <item>149</item> <item>150</item> <item>151</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>55</id> <name>i2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>152</item> <item>153</item> <item>155</item> <item>156</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>56</id> <name>exitcond</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond_fu_220_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>157</item> <item>159</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.95</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>58</id> <name>i_3</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_3_fu_226_p2</rtlName> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>160</item> <item>162</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.56</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>59</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>163</item> <item>164</item> <item>165</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_1</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_1_fu_232_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>167</item> <item>168</item> <item>169</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_s</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_s_fu_240_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>170</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>63</id> <name>x_V_addr_1</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>171</item> <item>172</item> <item>173</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>64</id> <name>x_V_load_1</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>174</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>65</id> <name>right_0_V</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName>right[0].V</originalName> <rtlName>right_0_V_fu_281_p1</rtlName> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>175</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>66</id> <name>tmp_19</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_19_fu_245_p1</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>176</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>67</id> <name>right_1_V_1</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName>right[1].V</originalName> <rtlName>right_1_V_1_fu_285_p3</rtlName> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>177</item> <item>178</item> <item>179</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.75</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>68</id> <name>right_1_V_2</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName>right[1].V</originalName> <rtlName>right_1_V_2_fu_292_p3</rtlName> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>180</item> <item>181</item> <item>182</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.75</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>69</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>183</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>71</id> <name>left_7_V_load</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>184</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>72</id> <name>left_7_V_1_load</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>185</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>73</id> <name>left_7_V_2_load</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>186</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>74</id> <name>left_7_V_3_load</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>187</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>75</id> <name>left_7_V_4_load</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>188</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>76</id> <name>left_7_V_5_load</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>189</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>77</id> <name>left_7_V_6_load</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>190</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>78</id> <name>left_7_V_7_load</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>191</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>79</id> <name>p_Val2_8</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName>grp_reduce_fu_143</rtlName> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <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> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>80</id> <name>tmp1</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>operator()</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>operator()</second> </first> <second>88</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp1_fu_299_p2</rtlName> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>202</item> <item>203</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>81</id> <name>agg_result_i</name> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>operator()</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>operator()</second> </first> <second>88</second> </item> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>ap_return</rtlName> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>204</item> <item>205</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.96</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>82</id> <name/> <fileName>firmware/nnet_utils/nnet_common.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/nnet_utils/nnet_common.h</first> <second>reduce&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt;, 10, nnet::Op_add&amp;lt;ap_fixed&amp;lt;18, 8, 5, 3, 0&amp;gt; &amp;gt; &amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>206</item> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_66"> <Value> <Obj> <type>2</type> <id>84</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_67"> <Value> <Obj> <type>2</type> <id>94</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>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_68"> <Value> <Obj> <type>2</type> <id>100</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>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_69"> <Value> <Obj> <type>2</type> <id>103</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>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_70"> <Value> <Obj> <type>2</type> <id>111</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_71"> <Value> <Obj> <type>2</type> <id>119</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_72"> <Value> <Obj> <type>2</type> <id>122</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_73"> <Value> <Obj> <type>2</type> <id>125</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_74"> <Value> <Obj> <type>2</type> <id>128</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_75"> <Value> <Obj> <type>2</type> <id>131</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_76"> <Value> <Obj> <type>2</type> <id>134</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_77"> <Value> <Obj> <type>2</type> <id>137</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_78"> <Value> <Obj> <type>2</type> <id>145</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>18</bitwidth> </Value> <const_type>4</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_79"> <Value> <Obj> <type>2</type> <id>154</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>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_80"> <Value> <Obj> <type>2</type> <id>158</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>2</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_81"> <Value> <Obj> <type>2</type> <id>161</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>2</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_82"> <Value> <Obj> <type>2</type> <id>192</id> <name>reduce</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:reduce&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_83"> <Obj> <type>3</type> <id>11</id> <name>arrayctor.loop1.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>9</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> </node_objs> </item> <item class_id_reference="18" object_id="_84"> <Obj> <type>3</type> <id>17</id> <name>branch0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>12</item> <item>13</item> <item>15</item> <item>16</item> </node_objs> </item> <item class_id_reference="18" object_id="_85"> <Obj> <type>3</type> <id>24</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> </node_objs> </item> <item class_id_reference="18" object_id="_86"> <Obj> <type>3</type> <id>27</id> <name>branch6</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>25</item> <item>26</item> </node_objs> </item> <item class_id_reference="18" object_id="_87"> <Obj> <type>3</type> <id>30</id> <name>branch5</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>28</item> <item>29</item> </node_objs> </item> <item class_id_reference="18" object_id="_88"> <Obj> <type>3</type> <id>33</id> <name>branch4</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>31</item> <item>32</item> </node_objs> </item> <item class_id_reference="18" object_id="_89"> <Obj> <type>3</type> <id>36</id> <name>branch3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>34</item> <item>35</item> </node_objs> </item> <item class_id_reference="18" object_id="_90"> <Obj> <type>3</type> <id>39</id> <name>branch2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>37</item> <item>38</item> </node_objs> </item> <item class_id_reference="18" object_id="_91"> <Obj> <type>3</type> <id>42</id> <name>branch1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>40</item> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_92"> <Obj> <type>3</type> <id>45</id> <name>.branch0.backedge_crit_edge</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>43</item> <item>44</item> </node_objs> </item> <item class_id_reference="18" object_id="_93"> <Obj> <type>3</type> <id>48</id> <name>branch7</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>46</item> <item>47</item> </node_objs> </item> <item class_id_reference="18" object_id="_94"> <Obj> <type>3</type> <id>50</id> <name>branch0.backedge</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>49</item> </node_objs> </item> <item class_id_reference="18" object_id="_95"> <Obj> <type>3</type> <id>52</id> <name>.preheader.preheader</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>51</item> </node_objs> </item> <item class_id_reference="18" object_id="_96"> <Obj> <type>3</type> <id>60</id> <name>.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>58</item> <item>59</item> </node_objs> </item> <item class_id_reference="18" object_id="_97"> <Obj> <type>3</type> <id>70</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>9</count> <item_version>0</item_version> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> </node_objs> </item> <item class_id_reference="18" object_id="_98"> <Obj> <type>3</type> <id>83</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>12</count> <item_version>0</item_version> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>150</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_99"> <id>85</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>2</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_100"> <id>86</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>3</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>87</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>4</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>88</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>5</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>89</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>6</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>90</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>91</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>92</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>93</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>95</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>96</id> <edge_type>2</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="_110"> <id>97</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>12</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>98</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>12</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>99</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="_113"> <id>101</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>102</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>104</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>105</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>106</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>107</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>108</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>109</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>110</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>112</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>113</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>114</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>115</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>116</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>117</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>118</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>120</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>121</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>123</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>124</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>126</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>127</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>129</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>130</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>132</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>133</id> <edge_type>2</edge_type> <source_obj>33</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>136</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>138</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>139</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>140</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>141</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>142</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>143</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>53</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>144</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>53</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>146</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>147</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>148</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>54</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>149</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>54</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>150</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>151</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>152</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>55</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>153</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>55</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>155</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>156</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>157</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>159</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>160</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>162</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>163</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>164</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>165</id> <edge_type>2</edge_type> <source_obj>83</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>168</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>169</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>170</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>171</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>172</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>173</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>174</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>175</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>176</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>177</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>178</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>179</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>180</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>181</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>182</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>183</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>184</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>185</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>186</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>187</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>188</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>189</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>190</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>191</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>193</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>194</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>195</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>196</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>197</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>198</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>199</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>200</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>201</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>202</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>203</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>204</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>205</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>206</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>207</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>208</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>209</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>210</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>211</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>212</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>213</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>214</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>215</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>216</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>217</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>218</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>219</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>220</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>221</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>222</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>223</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>224</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>225</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>226</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>227</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>228</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>240</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>241</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>242</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>243</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>244</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>245</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>246</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>247</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>248</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>249</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>250</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>251</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>252</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>253</id> <edge_type>2</edge_type> <source_obj>33</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>254</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>255</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>256</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>257</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>258</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>259</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>17</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>260</id> <edge_type>2</edge_type> <source_obj>52</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>261</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>262</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>263</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>60</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_249"> <mId>1</mId> <mTag>reduce.2</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>59</mMinLatency> <mMaxLatency>59</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_250"> <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>11</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> <item class_id_reference="22" object_id="_251"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>11</count> <item_version>0</item_version> <item>17</item> <item>24</item> <item>27</item> <item>30</item> <item>33</item> <item>36</item> <item>39</item> <item>42</item> <item>45</item> <item>48</item> <item>50</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>24</mMinLatency> <mMaxLatency>24</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_252"> <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>52</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> <item class_id_reference="22" object_id="_253"> <mId>5</mId> <mTag>Loop 2</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>60</item> <item>70</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>2</mMinTripCount> <mMaxTripCount>2</mMaxTripCount> <mMinLatency>4</mMinLatency> <mMaxLatency>4</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_254"> <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>29</mMinLatency> <mMaxLatency>29</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_255"> <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="_256"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_257"> <id>2</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_258"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_259"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_260"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_261"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_262"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_263"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_264"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_265"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_266"> <id>2</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_267"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_268"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_269"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_270"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_271"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>20</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_275"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_276"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_277"> <id>3</id> <operations> <count>19</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_278"> <id>20</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_279"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_280"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_281"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_282"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_283"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_284"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_285"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_286"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_287"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_288"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_289"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_290"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_291"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_292"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_293"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_294"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_296"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_297"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_298"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_299"> <id>5</id> <operations> <count>21</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_300"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_301"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_302"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_303"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_304"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_305"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_306"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_307"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_308"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_309"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_310"> <id>64</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_311"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_312"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_313"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_314"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_315"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_316"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_317"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_318"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_319"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_320"> <id>79</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_321"> <id>6</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_322"> <id>64</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_323"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_324"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_327"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_328"> <id>79</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_329"> <id>8</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_330"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <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="_333"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_334"> <inState>2</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>13</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_335"> <inState>3</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_336"> <inState>4</inState> <outState>2</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_337"> <inState>2</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>13</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_338"> <inState>5</inState> <outState>6</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>56</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_339"> <inState>5</inState> <outState>7</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>56</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_340"> <inState>6</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_341"> <inState>7</inState> <outState>8</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_342"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>grp_reduce_fu_143 (reduce)</first> <second class_id="39" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>FF</first> <second>437</second> </item> <item> <first>LUT</first> <second>714</second> </item> </second> </item> </dp_component_resource> <dp_expression_resource> <count>8</count> <item_version>0</item_version> <item> <first>ap_return ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>18</second> </item> <item> <first>(1P1)</first> <second>18</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>18</second> </item> </second> </item> <item> <first>exitcond3_fu_155_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>5</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>exitcond_fu_220_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>i_3_fu_226_p2 ( + ) </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>10</second> </item> </second> </item> <item> <first>i_4_fu_161_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>right_1_V_1_fu_285_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>18</second> </item> <item> <first>(2P2)</first> <second>18</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>18</second> </item> </second> </item> <item> <first>right_1_V_2_fu_292_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>18</second> </item> <item> <first>(2P2)</first> <second>18</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>18</second> </item> </second> </item> <item> <first>tmp1_fu_299_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>18</second> </item> <item> <first>(1P1)</first> <second>18</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>18</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>4</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>9</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>44</second> </item> </second> </item> <item> <first>i2_reg_132</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>4</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>i_reg_97</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>x_V_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>12</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>19</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>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>grp_reduce_fu_143_ap_start_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>i2_reg_132</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>i_3_reg_378</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>i_4_reg_361</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>i_reg_97</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>left_7_V_1_fu_48</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>5</second> </item> <item> <first>FF</first> <second>13</second> </item> </second> </item> <item> <first>left_7_V_2_fu_52</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>5</second> </item> <item> <first>FF</first> <second>13</second> </item> </second> </item> <item> <first>left_7_V_3_fu_56</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>5</second> </item> <item> <first>FF</first> <second>13</second> </item> </second> </item> <item> <first>left_7_V_4_fu_60</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>5</second> </item> <item> <first>FF</first> <second>13</second> </item> </second> </item> <item> <first>left_7_V_5_fu_64</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>5</second> </item> <item> <first>FF</first> <second>13</second> </item> </second> </item> <item> <first>left_7_V_6_fu_68</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>5</second> </item> <item> <first>FF</first> <second>13</second> </item> </second> </item> <item> <first>left_7_V_7_fu_72</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>5</second> </item> <item> <first>FF</first> <second>13</second> </item> </second> </item> <item> <first>left_7_V_fu_44</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>5</second> </item> <item> <first>FF</first> <second>13</second> </item> </second> </item> <item> <first>p_Val2_7_reg_108</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>18</second> </item> </second> </item> <item> <first>p_Val2_8_reg_444</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>18</second> </item> </second> </item> <item> <first>p_Val2_s_reg_120</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>18</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>18</second> </item> </second> </item> <item> <first>tmp_18_reg_371</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>tmp_19_reg_388</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>1</count> <item_version>0</item_version> <item> <first>grp_reduce_fu_143</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_dsp_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>grp_reduce_fu_143 (reduce)</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> </dp_component_map> <dp_expression_map> <count>8</count> <item_version>0</item_version> <item> <first>ap_return ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>exitcond3_fu_155_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>exitcond_fu_220_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>i_3_fu_226_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>i_4_fu_161_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>right_1_V_1_fu_285_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>right_1_V_2_fu_292_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp1_fu_299_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>80</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>64</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>2</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>3</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>4</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>5</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>6</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>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>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>18</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>21</first> <second> <first>2</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>2</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>56</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>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>64</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>65</first> <second> <first>5</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>5</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>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>1</second> </second> </item> <item> <first>80</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>7</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>11</first> <second class_id="48" 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>24</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>27</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>50</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>52</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>60</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>70</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>83</first> <second> <first>2</first> <second>4</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="50" tracking_level="0" version="0"> <count>47</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>44</first> <second> <count>1</count> <item_version>0</item_version> <item>2</item> </second> </item> <item> <first>48</first> <second> <count>1</count> <item_version>0</item_version> <item>3</item> </second> </item> <item> <first>52</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>56</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>60</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>64</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>68</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>72</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>76</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>83</first> <second> <count>4</count> <item_version>0</item_version> <item>20</item> <item>20</item> <item>64</item> <item>64</item> </second> </item> <item> <first>89</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>101</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>124</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>136</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>143</first> <second> <count>2</count> <item_version>0</item_version> <item>79</item> <item>79</item> </second> </item> <item> <first>155</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>161</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>167</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>172</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>185</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>195</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>200</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>205</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>210</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>215</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>220</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>226</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>232</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>240</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>245</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>249</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>253</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>257</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>265</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>269</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>273</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>277</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>281</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>285</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>292</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>299</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>304</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="53" tracking_level="0" version="0"> <count>29</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>agg_result_i_fu_304</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>exitcond3_fu_155</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>exitcond_fu_220</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>i2_phi_fu_136</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>i_3_fu_226</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>i_4_fu_161</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>i_phi_fu_101</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>left_0_V_fu_176</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>left_7_V_1_fu_48</first> <second> <count>1</count> <item_version>0</item_version> <item>3</item> </second> </item> <item> <first>left_7_V_2_fu_52</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>left_7_V_3_fu_56</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>left_7_V_4_fu_60</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>left_7_V_5_fu_64</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>left_7_V_6_fu_68</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>left_7_V_7_fu_72</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>left_7_V_fu_44</first> <second> <count>1</count> <item_version>0</item_version> <item>2</item> </second> </item> <item> <first>p_Val2_7_phi_fu_112</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_Val2_s_phi_fu_124</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>right_0_V_fu_281</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>right_1_V_1_fu_285</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>right_1_V_2_fu_292</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp1_fu_299</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>tmp_18_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_19_fu_245</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>tmp_1_fu_232</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_fu_167</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_s_fu_240</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>x_V_addr_1_gep_fu_89</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>x_V_addr_gep_fu_76</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>1</count> <item_version>0</item_version> <item> <first>grp_reduce_fu_143</first> <second> <count>2</count> <item_version>0</item_version> <item>79</item> <item>79</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>16</count> <item_version>0</item_version> <item> <first>StgValue_31_store_fu_180</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>StgValue_33_store_fu_185</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>StgValue_35_store_fu_190</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>StgValue_37_store_fu_195</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>StgValue_39_store_fu_200</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>StgValue_41_store_fu_205</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>StgValue_43_store_fu_210</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>StgValue_45_store_fu_215</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>left_7_V_1_load_load_fu_253</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>left_7_V_2_load_load_fu_257</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>left_7_V_3_load_load_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>left_7_V_4_load_load_fu_265</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>left_7_V_5_load_load_fu_269</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>left_7_V_6_load_load_fu_273</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>left_7_V_7_load_load_fu_277</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>left_7_V_load_load_fu_249</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>1</count> <item_version>0</item_version> <item> <first>ap_return</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> </return_ports> <dp_mem_port_nodes class_id="55" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first class_id="57" tracking_level="0" version="0"> <first>x_V</first> <second>0</second> </first> <second> <count>4</count> <item_version>0</item_version> <item>20</item> <item>20</item> <item>64</item> <item>64</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>29</count> <item_version>0</item_version> <item> <first>97</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>108</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>132</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>310</first> <second> <count>1</count> <item_version>0</item_version> <item>2</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>3</item> </second> </item> <item> <first>322</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>328</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>340</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>346</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>352</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>361</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>366</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>371</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>378</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>383</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>388</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>394</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>399</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>404</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>409</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>414</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>419</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>424</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>429</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>434</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>439</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>444</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>29</count> <item_version>0</item_version> <item> <first>i2_reg_132</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>i_3_reg_378</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>i_4_reg_361</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>i_reg_97</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>left_7_V_1_load_reg_399</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>left_7_V_1_reg_316</first> <second> <count>1</count> <item_version>0</item_version> <item>3</item> </second> </item> <item> <first>left_7_V_2_load_reg_404</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>left_7_V_2_reg_322</first> <second> <count>1</count> <item_version>0</item_version> <item>4</item> </second> </item> <item> <first>left_7_V_3_load_reg_409</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>left_7_V_3_reg_328</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>left_7_V_4_load_reg_414</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>left_7_V_4_reg_334</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>left_7_V_5_load_reg_419</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>left_7_V_5_reg_340</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>left_7_V_6_load_reg_424</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>left_7_V_6_reg_346</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>left_7_V_7_load_reg_429</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>left_7_V_7_reg_352</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>left_7_V_load_reg_394</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>left_7_V_reg_310</first> <second> <count>1</count> <item_version>0</item_version> <item>2</item> </second> </item> <item> <first>p_Val2_7_reg_108</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_Val2_8_reg_444</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>p_Val2_s_reg_120</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>right_1_V_1_reg_434</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>right_1_V_2_reg_439</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_18_reg_371</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_19_reg_388</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>x_V_addr_1_reg_383</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>x_V_addr_reg_366</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>4</count> <item_version>0</item_version> <item> <first>97</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>108</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>132</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>4</count> <item_version>0</item_version> <item> <first>i2_reg_132</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>i_reg_97</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>p_Val2_7_reg_108</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_Val2_s_reg_120</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="58" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="59" tracking_level="0" version="0"> <first>x_V(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>4</count> <item_version>0</item_version> <item>20</item> <item>20</item> <item>64</item> <item>64</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="60" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="61" tracking_level="0" version="0"> <first>1</first> <second>RAM</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. package body DG_Types.Test_Data is procedure Set_Up (Gnattest_T : in out Test) is pragma Unreferenced (Gnattest_T); begin null; end Set_Up; procedure Tear_Down (Gnattest_T : in out Test) is pragma Unreferenced (Gnattest_T); begin null; end Tear_Down; end DG_Types.Test_Data;
with Generic_Collection_Test; with Generic_Table_Test; with Remote_Node_Test; package body Unit_Tests is function Suite return Access_Test_Suite is type T_GenericTableTest is access all Generic_Table_Test.Test'Class; type T_GenericCollectionTest is access all Generic_Collection_Test.Test'Class; type T_RemoteNodeTest is access all Remote_Node_Test.Test'Class; Ret : constant Access_Test_Suite := new Test_Suite; GenericTableTest : constant T_GenericTableTest := new Generic_Table_Test.Test; GenericCollectionTest : constant T_GenericCollectionTest := new Generic_Collection_Test.Test; RemoteNodeTest : constant T_RemoteNodeTest := new Remote_Node_Test.Test; begin Ret.Add_Test (GenericTableTest); Ret.Add_Test (GenericCollectionTest); Ret.Add_Test (RemoteNodeTest); return Ret; end Suite; end Unit_Tests;
-- Standard Ada library specification -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual --------------------------------------------------------------------------- with Ada.Iterator_Interfaces; generic type Element_Type is private; with function Hash (Element : Element_Type) return Hash_Type; with function Equivalent_Elements (Left, Right : Element_Type) return Boolean; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Bounded_Hashed_Sets is pragma Preelaborate(Bounded_Hashed_Sets); pragma Remote_Types(Bounded_Hashed_Sets); type Set (Capacity : Count_Type; Modulus : Hash_Type) is tagged private with Constant_Indexing => Constant_Reference, Default_Iterator => Iterate, Iterator_Element => Element_Type; pragma Preelaborable_Initialization(Set); type Cursor is private; pragma Preelaborable_Initialization(Cursor); Empty_Set : constant Set; No_Element : constant Cursor; function Has_Element (Position : Cursor) return Boolean; package Set_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function "=" (Left, Right : Set) return Boolean; function Equivalent_Sets (Left, Right : Set) return Boolean; function To_Set (New_Item : Element_Type) return Set; function Capacity (Container : Set) return Count_Type; procedure Reserve_Capacity (Container : in out Set; Capacity : in Count_Type); function Default_Modulus (Capacity : Count_Type) return Hash_Type; function Length (Container : Set) return Count_Type; function Is_Empty (Container : Set) return Boolean; procedure Clear (Container : in out Set); function Element (Position : Cursor) return Element_Type; procedure Replace_Element (Container : in out Set; Position : in Cursor; New_Item : in Element_Type); procedure Query_Element (Position : in Cursor; Process : not null access procedure (Element : in Element_Type)); type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased in Set; Position : in Cursor) return Constant_Reference_Type; procedure Assign (Target : in out Set; Source : in Set); function Copy (Source : Set; Capacity : Count_Type := 0; Modulus : Hash_Type := 0) return Set; procedure Move (Target : in out Set; Source : in out Set); procedure Insert (Container : in out Set; New_Item : in Element_Type; Position : out Cursor; Inserted : out Boolean); procedure Insert (Container : in out Set; New_Item : in Element_Type); procedure Include (Container : in out Set; New_Item : in Element_Type); procedure Replace (Container : in out Set; New_Item : in Element_Type); procedure Exclude (Container : in out Set; Item : in Element_Type); procedure Delete (Container : in out Set; Item : in Element_Type); procedure Delete (Container : in out Set; Position : in out Cursor); procedure Union (Target : in out Set; Source : in Set); function Union (Left, Right : Set) return Set; function "or" (Left, Right : Set) return Set renames Union; procedure Intersection (Target : in out Set; Source : in Set); function Intersection (Left, Right : Set) return Set; function "and" (Left, Right : Set) return Set renames Intersection; procedure Difference (Target : in out Set; Source : in Set); function Difference (Left, Right : Set) return Set; function "-" (Left, Right : Set) return Set renames Difference; procedure Symmetric_Difference (Target : in out Set; Source : in Set); function Symmetric_Difference (Left, Right : Set) return Set; function "xor" (Left, Right : Set) return Set renames Symmetric_Difference; function Overlap (Left, Right : Set) return Boolean; function Is_Subset (Subset : Set; Of_Set : Set) return Boolean; function First (Container : Set) return Cursor; function Next (Position : Cursor) return Cursor; procedure Next (Position : in out Cursor); function Find (Container : Set; Item : Element_Type) return Cursor; function Contains (Container : Set; Item : Element_Type) return Boolean; function Equivalent_Elements (Left, Right : Cursor) return Boolean; function Equivalent_Elements (Left : Cursor; Right : Element_Type) return Boolean; function Equivalent_Elements (Left : Element_Type; Right : Cursor) return Boolean; procedure Iterate (Container : in Set; Process : not null access procedure (Position : in Cursor)); function Iterate (Container : in Set) return Set_Iterator_Interfaces.Forward_Iterator'Class; generic type Key_Type (<>) is private; with function Key (Element : Element_Type) return Key_Type; with function Hash (Key : Key_Type) return Hash_Type; with function Equivalent_Keys (Left, Right : Key_Type) return Boolean; package Generic_Keys is function Key (Position : Cursor) return Key_Type; function Element (Container : Set; Key : Key_Type) return Element_Type; procedure Replace (Container : in out Set; Key : in Key_Type; New_Item : in Element_Type); procedure Exclude (Container : in out Set; Key : in Key_Type); procedure Delete (Container : in out Set; Key : in Key_Type); function Find (Container : Set; Key : Key_Type) return Cursor; function Contains (Container : Set; Key : Key_Type) return Boolean; procedure Update_Element_Preserving_Key (Container : in out Set; Position : in Cursor; Process : not null access procedure (Element : in out Element_Type)); type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Reference_Preserving_Key (Container : aliased in out Set; Position : in Cursor) return Reference_Type; function Constant_Reference (Container : aliased in Set; Key : in Key_Type) return Constant_Reference_Type; function Reference_Preserving_Key (Container : aliased in out Set; Key : in Key_Type) return Reference_Type; end Generic_Keys; private -- not specified by the language end Ada.Containers.Bounded_Hashed_Sets;
with physics.Space; private with box2d_Physics.Object, box2d_c.joint_Cursor, box2d_c.Pointers, physics.Model, physics.Shape, physics.Object, physics.Joint.ball, physics.Joint.slider, physics.Joint.hinge, physics.Joint.cone_twist, physics.Joint.DoF6, ada.Containers.hashed_Maps; package box2d_Physics.Space -- -- Provide a Box2D implementation of a physical space. -- is type Item is new physics.Space.item with private; type View is access all Item'Class; function to_Space return Item; overriding function manifold_Count (Self : in Item) return Natural; overriding function Manifold (Self : access Item; Index : in Positive) return physics.space.a_Manifold; overriding function object_Count (Self : in Item) return Natural; private function Hash (the_C_Object : in box2d_c.Pointers.Object_Pointer) return ada.Containers.Hash_type; use type box2d_c.Pointers.Object_pointer; use type box2d_Physics.Object.view; package c_Object_Maps_of_Object is new ada.Containers.hashed_Maps (Key_type => box2d_c.Pointers.Object_Pointer, Element_type => box2d_Physics.Object.view, Hash => Hash, equivalent_Keys => "=", "=" => "="); type Item is new physics.Space.item with record C : box2d_c.Pointers.Space_Pointer; object_Map : c_Object_Maps_of_Object.Map; end record; use Math; type joint_Cursor is new physics.Space.joint_Cursor with record C : aliased box2d_c.joint_Cursor.item; end record; overriding procedure next (Cursor : in out joint_Cursor); overriding function has_Element (Cursor : in joint_Cursor) return Boolean; overriding function Element (Cursor : in joint_Cursor) return physics.Joint.view; overriding function first_Joint (Self : in Item) return physics.Space.joint_Cursor'Class; ---------- --- Forge -- overriding procedure destruct (Self : in out Item); --------- --- Forge -- -- Shapes overriding function new_Shape (Self : access Item; Model : in physics.Model.view) return physics.Shape.view; -- 3D overriding function new_sphere_Shape (Self : access Item; Radius : in Real := 0.5) return physics.Shape.view; overriding function new_box_Shape (Self : access Item; half_Extents : in Vector_3 := (0.5, 0.5, 0.5)) return physics.Shape.view; overriding function new_capsule_Shape (Self : access Item; Radius : in Real := 0.5; Height : in Real) return physics.Shape.view; overriding function new_cone_Shape (Self : access Item; Radius : in Real := 0.5; Height : in Real := 1.0) return physics.Shape.view; overriding function new_cylinder_Shape (Self : access Item; half_Extents : in Vector_3 := (0.5, 0.5, 0.5)) return physics.Shape.view; overriding function new_heightfield_Shape (Self : access Item; Heightfield : in out physics.Heightfield; Scale : in Vector_3) return physics.Shape.view; overriding function new_multisphere_Shape (Self : access Item; Sites : in physics.Vector_3_array; Radii : in math.Vector) return physics.Shape.view; overriding function new_plane_Shape (Self : access Item; Normal : in Vector_3 := (0.0, 1.0, 0.0); Offset : in Real := 0.0) return physics.Shape.view; overriding function new_convex_hull_Shape (Self : access Item; Points : in physics.Vector_3_array) return physics.Shape.view; overriding function new_mesh_Shape (Self : access Item; Points : access Physics.Geometry_3D.a_Model) return physics.Shape .view; -- 2D overriding function new_circle_Shape (Self : access Item; Radius : in Real := 0.5) return physics.Shape .view; overriding function new_polygon_Shape (Self : access Item; Vertices : in physics.Space.polygon_Vertices) return physics.Shape .view; -- Objects overriding function new_Object (Self : access Item; of_Shape : in physics.Shape .view; of_Mass : in Real; Friction : in Real; Restitution : in Real; at_Site : in Vector_3; is_Kinematic : in Boolean) return physics.Object.view; -- Joints -- overriding function new_hinge_Joint (Self : access Item; Object_A, Object_B : in physics.Object.view; Anchor_in_A, Anchor_in_B : in Vector_3; pivot_Axis : in Vector_3; low_Limit, high_Limit : in Real; collide_Conected : in Boolean) return physics.Joint.hinge.view; overriding function new_hinge_Joint (Self : access Item; Object_A, Object_B : in physics.Object.view; Frame_A, Frame_B : in Matrix_4x4; low_Limit, high_Limit : in Real; collide_Conected : in Boolean) return physics.Joint.hinge.view; overriding function new_hinge_Joint (Self : access Item; Object_A : in physics.Object.view; Frame_A : in Matrix_4x4) return physics.Joint.hinge.view; overriding function new_DoF6_Joint (Self : access Item; Object_A, Object_B : in physics.Object.view; Frame_A, Frame_B : in Matrix_4x4) return physics.Joint.DoF6.view; overriding function new_ball_Joint (Self : access Item; Object_A, Object_B : in physics.Object.view; Pivot_in_A, Pivot_in_B : in Vector_3) return physics.Joint.ball.view; overriding function new_slider_Joint (Self : access Item; Object_A, Object_B : in physics.Object.view; Frame_A, Frame_B : in Matrix_4x4) return physics.Joint.slider.view; overriding function new_cone_twist_Joint (Self : access Item; Object_A, Object_B : in physics.Object.view; Frame_A, Frame_B : in Matrix_4x4) return physics.Joint.cone_twist.view; ------------- -- Attributes -- overriding function Gravity (Self : in Item) return Vector_3; overriding procedure Gravity_is (Self : in out Item; Now : in Vector_3); --------------- --- Operations -- overriding procedure evolve (Self : in out Item; By : in Duration); overriding procedure add (Self : in out Item; the_Object : in physics.Object.view); overriding procedure rid (Self : in out Item; the_Object : in physics.Object.view); overriding function cast_Ray (Self : access Item; From, To : in Vector_3) return physics.Space.ray_Collision; overriding procedure add (Self : in out Item; the_Joint : in physics.Joint.view); overriding procedure rid (Self : in out Item; the_Joint : in physics.Joint.view); overriding procedure update_Bounds (Self : in out Item; of_Obect : in physics.Object.view); overriding procedure set_Joint_local_Anchor (Self : in out Item; the_Joint : in physics.Joint.view; is_Anchor_A : in Boolean; local_Anchor : in Vector_3); end box2d_Physics.Space;
with openGL.Program.lit_colored_textured_skinned; package openGL.Geometry.lit_colored_textured_skinned -- -- Supports per-vertex site color, texture, lighting and skinning. -- is type Item is new openGL.Geometry.item with private; function new_Geometry return access Geometry.lit_colored_textured_skinned.item'Class; procedure define_Program; ---------- -- Vertex -- type Vertex is record Site : Vector_3; Normal : Vector_3; Color : lucid_Color; Coords : Coordinate_2D; bone_Ids : Vector_4; bone_Weights : Vector_4; end record; pragma Convention (C, Vertex); type Vertex_array is array (long_Index_t range <>) of aliased Vertex; -------------- -- Attributes -- procedure Vertices_are (Self : in out Item; Now : in Vertex_array); overriding procedure Indices_are (Self : in out Item; Now : in Indices; for_Facia : in Positive); function Program return openGL.Program.lit_colored_textured_skinned.view; private type Item is new Geometry.item with null record; overriding procedure enable_Texture (Self : in Item); end openGL.Geometry.lit_colored_textured_skinned;
----------------------------------------------------------------------- -- awa-comments-beans -- Beans for the comments module -- Copyright (C) 2014 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Util.Beans.Basic; with Util.Beans.Objects; with ADO; with ADO.Schemas; with ADO.Sessions; with ASF.Helpers.Beans; with AWA.Comments.Models; with AWA.Comments.Modules; -- == Comment Beans == -- Several bean types are provided to represent and manage a list of tags. -- The tag module registers the bean constructors when it is initialized. -- To use them, one must declare a bean definition in the application XML configuration. -- -- === Comment_List_Bean === -- The <tt>Comment_List_Bean</tt> holds a list of comments and provides operations used by the -- <tt>awa:tagList</tt> component to add or remove tags within a <tt>h:form</tt> component. -- A bean can be declared and configured as follows in the XML application configuration file: -- -- <managed-bean> -- <managed-bean-name>postCommentList</managed-bean-name> -- <managed-bean-class>AWA.Comments.Beans.Comment_List_Bean</managed-bean-class> -- <managed-bean-scope>request</managed-bean-scope> -- <managed-property> -- <property-name>entity_type</property-name> -- <property-class>String</property-class> -- <value>awa_post</value> -- </managed-property> -- <managed-property> -- <property-name>permission</property-name> -- <property-class>String</property-class> -- <value>blog-comment-post</value> -- </managed-property> -- </managed-bean> -- -- The <tt>entity_type</tt> property defines the name of the database table to which the comments -- are assigned. The <tt>permission</tt> property defines the permission name that must be used -- to verify that the user has the permission do add or remove the comment. -- package AWA.Comments.Beans is type Comment_Bean is new AWA.Comments.Models.Comment_Bean with record Module : Modules.Comment_Module_Access := null; Entity_Type : Ada.Strings.Unbounded.Unbounded_String; Permission : Ada.Strings.Unbounded.Unbounded_String; end record; type Comment_Bean_Access is access all Comment_Bean'Class; -- Get the value identified by the name. overriding function Get_Value (From : in Comment_Bean; Name : in String) return Util.Beans.Objects.Object; -- Set the value identified by the name. overriding procedure Set_Value (From : in out Comment_Bean; Name : in String; Value : in Util.Beans.Objects.Object); -- Create the comment. overriding procedure Create (Bean : in out Comment_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String); -- Save the comment. overriding procedure Save (Bean : in out Comment_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String); -- Publish or not the comment. overriding procedure Publish (Bean : in out Comment_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String); -- Delete the comment. overriding procedure Delete (Bean : in out Comment_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String); -- Create a new comment bean instance. function Create_Comment_Bean (Module : in AWA.Comments.Modules.Comment_Module_Access) return Util.Beans.Basic.Readonly_Bean_Access; type Comment_List_Bean is new AWA.Comments.Models.Comment_Info_List_Bean and Util.Beans.Basic.Bean with record Module : AWA.Comments.Modules.Comment_Module_Access; Entity_Type : Ada.Strings.Unbounded.Unbounded_String; Entity_Id : ADO.Identifier; Permission : Ada.Strings.Unbounded.Unbounded_String; Current : Natural := 0; end record; type Comment_List_Bean_Access is access all Comment_List_Bean'Class; -- Set the value identified by the name. -- If the name cannot be found, the method should raise the No_Value -- exception. overriding procedure Set_Value (From : in out Comment_List_Bean; Name : in String; Value : in Util.Beans.Objects.Object); -- Set the entity type (database table) with which the comments are associated. procedure Set_Entity_Type (Into : in out Comment_List_Bean; Table : in ADO.Schemas.Class_Mapping_Access); -- Set the permission to check before removing or adding a comment on the entity. procedure Set_Permission (Into : in out Comment_List_Bean; Permission : in String); -- Load the comments associated with the given database identifier. procedure Load_Comments (Into : in out Comment_List_Bean; For_Entity_Id : in ADO.Identifier); -- Load the comments associated with the given database identifier. procedure Load_Comments (Into : in out Comment_List_Bean; Session : in out ADO.Sessions.Session; For_Entity_Id : in ADO.Identifier); -- Create the comment list bean instance. function Create_Comment_List_Bean (Module : in AWA.Comments.Modules.Comment_Module_Access) return Util.Beans.Basic.Readonly_Bean_Access; function Get_Comment_Bean is new ASF.Helpers.Beans.Get_Bean (Element_Type => Comment_Bean, Element_Access => Comment_Bean_Access); function Get_Comment_List_Bean is new ASF.Helpers.Beans.Get_Bean (Element_Type => Comment_List_Bean, Element_Access => Comment_List_Bean_Access); end AWA.Comments.Beans;
-- C35A05D.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 FOR FIXED POINT TYPES THE FORE AND AFT ATTRIBUTES YIELD -- THE CORRECT VALUES. -- CASE D: TYPES TYPICAL OF APPLICATIONS USING FIXED POINT ARITHMETIC. -- WRG 8/14/86 WITH REPORT; USE REPORT; PROCEDURE C35A05D IS PI : CONSTANT := 3.14159_26535_89793_23846; TWO_PI : CONSTANT := 2 * PI; HALF_PI : CONSTANT := PI / 2; MM : CONSTANT := 23; -- THE NAME OF EACH TYPE OR SUBTYPE ENDS WITH THAT TYPE'S -- 'MANTISSA VALUE. TYPE MICRO_ANGLE_ERROR_M15 IS DELTA 16.0 RANGE -(2.0 ** 19) .. 2.0 ** 19; TYPE TRACK_RANGE_M15 IS DELTA 0.125 RANGE -(2.0 ** 12) .. 2.0 ** 12; TYPE SECONDS_MM IS DELTA 2.0 ** (8 - MM) RANGE -(2.0 ** 8) .. 2.0 ** 8; TYPE RANGE_CELL_MM IS DELTA 2.0 ** (-5) RANGE -(2.0 ** (MM - 5) ) .. 2.0 ** (MM - 5); TYPE PIXEL_M10 IS DELTA 1.0 / 1024.0 RANGE 0.0 .. 1.0; TYPE RULER_M8 IS DELTA 1.0 / 16.0 RANGE 0.0 .. 12.0; TYPE HOURS_M16 IS DELTA 24.0 * 2.0 ** (-15) RANGE 0.0 .. 24.0; TYPE MILES_M16 IS DELTA 3000.0 * 2.0 ** (-15) RANGE 0.0 .. 3000.0; TYPE SYMMETRIC_DEGREES_M7 IS DELTA 2.0 RANGE -180.0 .. 180.0; TYPE NATURAL_DEGREES_M15 IS DELTA 2.0 ** (-6) RANGE 0.0 .. 360.0; TYPE SYMMETRIC_RADIANS_M16 IS DELTA PI * 2.0 ** (-15) RANGE -PI .. PI; TYPE NATURAL_RADIANS_M8 IS DELTA TWO_PI * 2.0 ** ( -7) RANGE 0.0 .. TWO_PI; ------------------------------------------------------------------- SUBTYPE ST_MILES_M8 IS MILES_M16 DELTA 3000.0 * 2.0 ** (-15) RANGE 0.0 .. 10.0; SUBTYPE ST_NATURAL_DEGREES_M11 IS NATURAL_DEGREES_M15 DELTA 0.25 RANGE 0.0 .. 360.0; SUBTYPE ST_SYMMETRIC_RADIANS_M8 IS SYMMETRIC_RADIANS_M16 DELTA HALF_PI * 2.0 ** (-7) RANGE -HALF_PI .. HALF_PI; ------------------------------------------------------------------- PROCEDURE CHECK_FORE_AND_AFT (NAME : STRING; ACTUAL_FORE : INTEGER; CORRECT_FORE : POSITIVE; ACTUAL_AFT : INTEGER; CORRECT_AFT : POSITIVE) IS BEGIN IF ACTUAL_FORE /= IDENT_INT (CORRECT_FORE) THEN FAILED (NAME & "'FORE =" & INTEGER'IMAGE(ACTUAL_FORE) ); END IF; IF ACTUAL_AFT /= IDENT_INT (CORRECT_AFT) THEN FAILED (NAME & "'AFT =" & INTEGER'IMAGE(ACTUAL_AFT) ); END IF; END CHECK_FORE_AND_AFT; BEGIN TEST ("C35A05D", "CHECK THAT FOR FIXED POINT TYPES THE FORE AND " & "AFT ATTRIBUTES YIELD THE CORRECT VALUES - " & "TYPICAL TYPES"); CHECK_FORE_AND_AFT ("MICRO_ANGLE_ERROR_M15", MICRO_ANGLE_ERROR_M15'FORE, 7, MICRO_ANGLE_ERROR_M15'AFT, 1); CHECK_FORE_AND_AFT ("TRACK_RANGE_M15", TRACK_RANGE_M15'FORE, 5, TRACK_RANGE_M15'AFT, 1); CHECK_FORE_AND_AFT ("SECONDS_MM", SECONDS_MM'FORE, 4, SECONDS_MM'AFT, 5); CHECK_FORE_AND_AFT ("RANGE_CELL_MM", RANGE_CELL_MM'FORE, 7, RANGE_CELL_MM'AFT, 2); CHECK_FORE_AND_AFT ("PIXEL_M10", PIXEL_M10'FORE, 2, PIXEL_M10'AFT, 4); CHECK_FORE_AND_AFT ("RULER_M8", RULER_M8'FORE, 3, RULER_M8'AFT, 2); CHECK_FORE_AND_AFT ("HOURS_M16", HOURS_M16'FORE, 3, HOURS_M16'AFT, 4); CHECK_FORE_AND_AFT ("MILES_M16", MILES_M16'FORE, 5, MILES_M16'AFT, 2); CHECK_FORE_AND_AFT ("SYMMETRIC_DEGREES_M7", SYMMETRIC_DEGREES_M7'FORE, 4, SYMMETRIC_DEGREES_M7'AFT, 1); CHECK_FORE_AND_AFT ("NATURAL_DEGREES_M15", NATURAL_DEGREES_M15'FORE, 4, NATURAL_DEGREES_M15'AFT, 2); CHECK_FORE_AND_AFT ("SYMMETRIC_RADIANS_M16", SYMMETRIC_RADIANS_M16'FORE, 2, SYMMETRIC_RADIANS_M16'AFT, 5); CHECK_FORE_AND_AFT ("NATURAL_RADIANS_M8", NATURAL_RADIANS_M8'FORE, 2, NATURAL_RADIANS_M8'AFT, 2); CHECK_FORE_AND_AFT ("ST_MILES_M8", ST_MILES_M8'FORE, 3, ST_MILES_M8'AFT, 2); CHECK_FORE_AND_AFT ("ST_NATURAL_DEGREES_M11", ST_NATURAL_DEGREES_M11'FORE, 4, ST_NATURAL_DEGREES_M11'AFT, 1); CHECK_FORE_AND_AFT ("ST_SYMMETRIC_RADIANS_M8", ST_SYMMETRIC_RADIANS_M8'FORE, 2, ST_SYMMETRIC_RADIANS_M8'AFT, 2); RESULT; END C35A05D;