WO2023202290A1 - 一种基于脚本的数据流图生成方法及装置 - Google Patents

一种基于脚本的数据流图生成方法及装置 Download PDF

Info

Publication number
WO2023202290A1
WO2023202290A1 PCT/CN2023/082101 CN2023082101W WO2023202290A1 WO 2023202290 A1 WO2023202290 A1 WO 2023202290A1 CN 2023082101 W CN2023082101 W CN 2023082101W WO 2023202290 A1 WO2023202290 A1 WO 2023202290A1
Authority
WO
WIPO (PCT)
Prior art keywords
variable
script
data flow
module
name
Prior art date
Application number
PCT/CN2023/082101
Other languages
English (en)
French (fr)
Inventor
赵鑫鑫
魏朝飞
姜凯
李锐
Original Assignee
山东浪潮科学研究院有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 山东浪潮科学研究院有限公司 filed Critical 山东浪潮科学研究院有限公司
Publication of WO2023202290A1 publication Critical patent/WO2023202290A1/zh

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F30/00Computer-aided design [CAD]
    • G06F30/30Circuit design
    • G06F30/32Circuit design at the digital level
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/901Indexing; Data structures therefor; Storage structures
    • G06F16/9024Graphs; Linked lists
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/901Indexing; Data structures therefor; Storage structures
    • G06F16/9027Trees
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/903Querying
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/31Programming languages or programming paradigms
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Definitions

  • the invention relates to the field of digital logic design, and specifically provides a script-based data flow diagram generation method and device.
  • the present invention aims at the above-mentioned deficiencies in the prior art and provides a highly practical script-based data flow diagram generation method.
  • a further technical task of the present invention is to provide a script-based data flow diagram generation device that is reasonably designed, safe and applicable.
  • a script-based data flow diagram generation method First, the user writes the design code in the language according to the needs, and instantiates each design module to form a single top-level engineering design; then, the user writes the port variables and instantiates the connection variable retrieval. Script that recognizes Verilog-1995 and later versions.
  • workflow of the script is:
  • step S1 the structure is divided into a port domain, a variable domain, a constant domain and a pointer domain.
  • the pointer domain stores information about a parent pointer and multiple child pointers.
  • the port domain, variable domain and constant domain Use linked list storage method.
  • step S2 starting from the top-level module, the entire project is retrieved according to a pre-order traversal algorithm similar to a binary tree, and a project tree is obtained with the top-level module as the root and each instantiated module as branches and leaves;
  • step S3 according to a similar binary tree pre-order traversal algorithm, starting from the root of the engineering tree, using "()" at the top of the current module design file as the keyword, find all the port variables of the current module. If before the port declaration If the variable type and bit width are declared, the current module port variable retrieval is completed and the retrieval results are stored in the corresponding variable structure port field of the module;
  • step S4 use "reg/wire" as the keyword to retrieve all variable name declarations in the current module, and then remove the port variables retrieved in the previous step S3 to obtain all internal variable information and store it after completion.
  • variable field of the variable structure In the variable field of the variable structure.
  • step S5 search using "parameter/localparam” as the keyword, obtain all the constants of the current module, and store them in the constant field of the variable structure.
  • the assigned information includes the line number of the assignment behavior, the complete assignment statement, and the submodule instantiation name. After storing the information into the corresponding variable name in the structure, the current module information retrieval and storage are completed. live.
  • step S8 the user learns from the script the variable name of the data flow graph and the name of the instantiated module where it is located.
  • the script finds the corresponding variable structure node in the structure tree based on the instantiated module name, and adds the variable name in the structure corresponding to The information is printed out using a binary tree-like preorder traversal algorithm.
  • a script-based data flow diagram generation device includes: at least one memory and at least one processor;
  • the at least one memory is used to store machine-readable programs
  • the at least one processor is configured to call the machine-readable program to execute a script-based data flow diagram generation method.
  • the script-based data flow diagram generation method and device of the present invention have the following outstanding beneficial effects:
  • the present invention proposes a data flow diagram for automatically generating variables according to user needs by using a script language. This method is easy to implement, has a simple process, is efficient and stable, and can significantly shorten the time of digital logic design and development.
  • Figure 1 is a flow chart of a script-based data flow diagram generation method.
  • a script-based data flow diagram generation method is used.
  • the user uses the Verilog hardware description language to write the design code according to the needs, and instantiates each design module. Composing a single top-level engineering design;
  • the workflow of the script is as follows:
  • S1 Design and declare a variable structure.
  • the structure is divided into port domain, variable domain, constant domain and pointer domain.
  • the pointer domain stores the information of the parent pointer and multiple child pointers.
  • the port domain, variable domain and constant domain use linked list storage method. .
  • the assigned information includes the line number of the assignment behavior, the complete assignment statement, and the submodule instantiation name.
  • step S7 Loop from step S3 to step S6 until the information retrieval and saving of all node modules in the project tree is completed.
  • the user inputs into the script the variable name that needs to be understood in the data flow diagram and the name of the instantiated module where it is located.
  • the script finds the corresponding variable structure node in the structure tree based on the instantiated module name, and converts the information corresponding to the variable name in the structure to Binary tree-like preorder traversal algorithm prints output. If the design is changed, you only need to re-call the script to obtain the data flow diagram of each variable of the new design.
  • a script-based data flow diagram generation device in this embodiment includes: at least one memory and at least one processor;
  • the at least one memory is used to store machine-readable programs
  • the at least one processor is configured to call the machine-readable program to execute a script-based data flow diagram generation method.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Software Systems (AREA)
  • Data Mining & Analysis (AREA)
  • Computer Hardware Design (AREA)
  • Geometry (AREA)
  • Evolutionary Computation (AREA)
  • Computing Systems (AREA)
  • Computational Linguistics (AREA)
  • Stored Programmes (AREA)

Abstract

本发明涉及数字逻辑设计领域,具体提供了一种基于脚本的数据流图生成方法,其特征在于,首先,用户根据需求进行语言编写设计代码,并将各设计模块实例化,组成一个单一顶层的工程设计;然后,用户编写端口变量及实例化连接变量检索脚本,所述脚本能够识别Verilog-1995及之后的版本。与现有技术相比,本发明根据用户需求自动化生成变量的数据流图,实施方便,流程简单,高效稳定,可以大幅缩短数字逻辑设计开发的时间。

Description

一种基于脚本的数据流图生成方法及装置 技术领域
本发明涉及数字逻辑设计领域,具体提供一种基于脚本的数据流图生成方法及装置。
背景技术
目前,电子信息技术产业发展迅速,对于专用芯片的性能要求越来越高,在集成电路制技术迅速进步的同时,集成电路的复杂度呈指数增加,数字逻辑设计规模越来越大,包含大量的输出变量和中间变量,因此,非常容易出现赋值对象错误、遗漏赋值或者位宽不匹配等问题。
发明内容
本发明是针对上述现有技术的不足,提供一种实用性强的基于脚本的数据流图生成方法。
本发明进一步的技术任务是提供一种设计合理,安全适用的基于脚本的数据流图生成装置。
本发明解决其技术问题所采用的技术方案是:
一种基于脚本的数据流图生成方法,首先,用户根据需求进行语言编写设计代码,并将各设计模块实例化,组成一个单一顶层的工程设计;然后,用户编写端口变量及实例化连接变量检索脚本,所述脚本能够识别Verilog-1995及之后的版本。
进一步的,所述脚本的工作流程为:
S1、设计变量结构体;
S2、检索工程设计的实例化递归关系;
S3、按照类似二叉树前序遍历算法;
S4、以“reg/wire”为关键字检索当前模块中所有的变量名声明;
S5、以“parameter/localparam”为关键字进行检索,获取当前模块所有的常量;
S6、根据步骤S3到步骤S5检索得到的信息,以“变量名=/<=”为关键 字逐一检索每一个变量在当前模块代码行中被赋值的信息;
S7、循环步骤S3至步骤S6直至完成工程树中所有节点模块的信息检索和保存;
S8、用户向脚本输入。
进一步的,在步骤S1中,所述结构体分为端口域、变量域、常量域和指针域,所述指针域存储父指针和多个子指针的信息,所述端口域、变量域和常量域采用链表存储方式。
进一步的,在步骤S2中,从顶层模块开始,按照类似二叉树前序遍历算法,检索整个工程,得出以顶层模块为树根,各实例化模块为树枝和树叶的工程树;
为每一个节点实例化一个对应的变量结构体,得到结构体树,并根据工程树为每一个变量结构体填入各自的父指针,既实例化当前模块的上级模块和子指针,既当前模块中实例化的下级模块。
进一步的,在步骤S3中,按照类似二叉树前序遍历算法,从工程树树根开始,以当前模块设计文件顶端“()”为关键字,找到当前模块所有的端口变量,如果在端口声明前有变量类型和位宽声明,则完成当前模块端口变量检索并将检索结果储存在该模块对应的变量结构体端口域中;
否则,在模块设计中以端口名为关键字检索对应的类型和位宽声明,完成后存储在变量结构体端口域中。
进一步的,在步骤S4中,以“reg/wire”为关键字检索当前模块中所有的变量名声明,然后将上一步S3中检索出的端口变量剔除后,得到所有内部变量信息,完成后存储在变量结构体变量域中。
进一步的,在步骤S5中,以“parameter/localparam”为关键字进行检索,获取当前模块所有的常量,并存储在变量结构体常量域中。
进一步的,在步骤S6中,根据步骤S3到步骤S5检索得到的信息,以“变量名=/<=”为关键字逐一检索每一个变量在当前模块代码行中被赋值的信息,所述被赋值的信息包括赋值行为的行号、完整赋值语句;
以“.(变量名)”为关键字逐一检索每一个变量在当前模块子模块端口中被赋值的信息,所述被赋值的信息包括赋值行为的行号、完整赋值语句、子模块实例化名,将信息存入结构体中对应变量名后,完成当前模块信息检索和保 存。
进一步的,在步骤S8中,用户向脚本了解数据流图的变量名及所在实例化模块名,脚本根据实例化模块名找到结构体树中对应的变量结构体节点,将结构体中变量名所对应的信息以类二叉树前序遍历算法打印输出。
一种基于脚本的数据流图生成装置,包括:至少一个存储器和至少一个处理器;
所述至少一个存储器,用于存储机器可读程序;
所述至少一个处理器,用于调用所述机器可读程序,执行一种基于脚本的数据流图生成方法。
本发明的一种基于脚本的数据流图生成方法及装置和现有技术相比,具有以下突出的有益效果:
本发明针对现有数字逻辑设计流程中的人工检查和debug设计中变量数据流的方法,提出了一种通过使用脚本语言,根据用户需求自动化生成变量的数据流图。该方法实施方便,流程简单,高效稳定,可以大幅缩短数字逻辑设计开发的时间。
附图说明
为了更清楚地说明本发明实施例或现有技术中的技术方案,下面将对实施例或现有技术描述中所需要使用的附图作简单地介绍,显而易见地,下面描述中的附图是本发明的一些实施例,对于本领域普通技术人员来讲,在不付出创造性劳动的前提下,还可以根据这些附图获得其他的附图。
附图1是一种基于脚本的数据流图生成方法的流程示意图。
具体实施方式
为了使本技术领域的人员更好的理解本发明的方案,下面结合具体的实施方式对本发明作进一步的详细说明。显然,所描述的实施例仅仅是本发明一部分实施例,而不是全部的实施例。基于本发明中的实施例,本领域普通技术人员在没有做出创造性劳动前提下所获得的所有其他实施例都属于本发明保护的范围。
下面给出一个最佳实施例:
如图1所示,本实施例中的一种基于脚本的数据流图生成方法,首先,用户根据需求使用Verilog硬件描述语言编写设计代码,并将各设计模块实例化, 组成一个单一顶层的工程设计;
然后,用户编写端口变量及其实例化连接变量检索脚本,该脚本可以识别Verilog-1995及之后的版本。
该脚本的工作流程如下:
S1、设计并声明变量结构体,该结构体内分为端口域、变量域、常量域和指针域,指针域存储父指针和多个子指针的信息,端口域、变量域和常量域采用链表存储方式。
S2、检索工程设计的实例化递归关系,从顶层模块开始,按照类似二叉树前序遍历算法,检索整个工程,得出以顶层模块为树根,各实例化模块为树枝和树叶的工程树,为每一个节点实例化一个对应的变量结构体,得到结构体树,并根据工程树为每一个变量结构体填入各自的父指针既实例化当前模块的上级模块和子指针既当前模块中实例化的下级模块。
S3、按照类似二叉树前序遍历算法,从工程树树根开始,以当前模块设计文件顶端“()”为关键字,找到当前模块所有的端口变量,如果在端口声明前有变量类型和位宽声明,则完成当前模块端口变量检索并将检索结果储存在该模块对应的变量结构体端口域中;
否则,在模块设计中以端口名为关键字检索对应的类型和位宽声明,完成后存储在变量结构体端口域中。
S4、以“reg/wire”为关键字检索当前模块中所有的变量名声明,然后将上一步S3中检索出的端口变量剔除后,得到所有内部变量信息,完成后存储在变量结构体变量域中。
S5、以“parameter/localparam”为关键字进行检索,获取当前模块所有的常量,并存储在变量结构体常量域中。
S6、根据步骤S3到步骤S5检索得到的信息,以“变量名=/<=”为关键字逐一检索每一个变量在当前模块代码行中被赋值的信息,这些被赋值的信息包括赋值行为的行号、完整赋值语句;
以“.(变量名)”为关键字逐一检索每一个变量在当前模块子模块端口中被赋值的信息,这些被赋值的信息包括赋值行为的行号、完整赋值语句、子模块实例化名,将信息存入结构体中对应变量名后,完成当前模块信息检索和保存。
S7、循环步骤S3到步骤S6,直至完成工程树中所有节点模块的信息检索和保存。
S8、用户向脚本输入需要了解数据流图的变量名及其所在实例化模块名,脚本根据实例化模块名找到结构体树中对应的变量结构体节点,将结构体中变量名所对应的信息以类二叉树前序遍历算法打印输出,如果更改了设计,只需要重新调用脚本就可以获得新设计各变量的数据流图。
基于上述方法,本实施例中的一种基于脚本的数据流图生成装置,包括:至少一个存储器和至少一个处理器;
所述至少一个存储器,用于存储机器可读程序;
所述至少一个处理器,用于调用所述机器可读程序,执行一种基于脚本的数据流图生成方法。
上述具体的实施方式仅是本发明具体的个案,本发明的专利保护范围包括但不限于上述具体的实施方式,任何符合本发明的一种基于脚本的数据流图生成方法及装置权利要求书的且任何所述技术领域普通技术人员对其做出的适当变化或者替换,皆应落入本发明的专利保护范围。
尽管已经示出和描述了本发明的实施例,对于本领域的普通技术人员而言,可以理解在不脱离本发明的原理和精神的情况下可以对这些实施例进行多种变化、修改、替换和变型,本发明的范围由所附权利要求及其等同物限定。

Claims (10)

  1. 一种基于脚本的数据流图生成方法,其特征在于,首先,用户根据需求进行语言编写设计代码,并将各设计模块实例化,组成一个单一顶层的工程设计;然后,用户编写端口变量及实例化连接变量检索脚本,所述脚本能够识别Verilog-1995及之后的版本。
  2. 根据权利要求1所述的一种基于脚本的数据流图生成方法,其特征在于,所述脚本的工作流程为:
    S1、设计变量结构体;
    S2、检索工程设计的实例化递归关系;
    S3、按照类似二叉树前序遍历算法;
    S4、以“reg/wire”为关键字检索当前模块中所有的变量名声明;
    S5、以“parameter/localparam”为关键字进行检索,获取当前模块所有的常量;
    S6、根据步骤S3到步骤S5检索得到的信息,以“变量名=/<=”为关键字逐一检索每一个变量在当前模块代码行中被赋值的信息;
    S7、循环步骤S3至步骤S6直至完成工程树中所有节点模块的信息检索和保存;
    S8、用户向脚本输入。
  3. 根据权利要求2所述的一种基于脚本的数据流图生成方法,其特征在于,在步骤S1中,所述结构体分为端口域、变量域、常量域和指针域,所述指针域存储父指针和多个子指针的信息,所述端口域、变量域和常量域采用链表存储方式。
  4. 根据权利要求3所述的一种基于脚本的数据流图生成方法,其特征在于,在步骤S2中,从顶层模块开始,按照类似二叉树前序遍历算法,检索整个工程,得出以顶层模块为树根,各实例化模块为树枝和树叶的工程树;
    为每一个节点实例化一个对应的变量结构体,得到结构体树,并根据工程树为每一个变量结构体填入各自的父指针,既实例化当前模块的上级模块和子指针,既当前模块中实例化的下级模块。
  5. 根据权利要求4所述的一种基于脚本的数据流图生成方法,其特征在 于,在步骤S3中,按照类似二叉树前序遍历算法,从工程树树根开始,以当前模块设计文件顶端“()”为关键字,找到当前模块所有的端口变量,如果在端口声明前有变量类型和位宽声明,则完成当前模块端口变量检索并将检索结果储存在该模块对应的变量结构体端口域中;
    否则,在模块设计中以端口名为关键字检索对应的类型和位宽声明,完成后存储在变量结构体端口域中。
  6. 根据权利要求5所述的一种基于脚本的数据流图生成方法,其特征在于,在步骤S4中,以“reg/wire”为关键字检索当前模块中所有的变量名声明,然后将上一步S3中检索出的端口变量剔除后,得到所有内部变量信息,完成后存储在变量结构体变量域中。
  7. 根据权利要求6所述的一种基于脚本的数据流图生成方法,其特征在于,在步骤S5中,以“parameter/localparam”为关键字进行检索,获取当前模块所有的常量,并存储在变量结构体常量域中。
  8. 根据权利要求7所述的一种基于脚本的数据流图生成方法,其特征在于,在步骤S6中,根据步骤S3到步骤S5检索得到的信息,以“变量名=/<=”为关键字逐一检索每一个变量在当前模块代码行中被赋值的信息,所述被赋值的信息包括赋值行为的行号、完整赋值语句;
    以“.(变量名)”为关键字逐一检索每一个变量在当前模块子模块端口中被赋值的信息,所述被赋值的信息包括赋值行为的行号、完整赋值语句、子模块实例化名,将信息存入结构体中对应变量名后,完成当前模块信息检索和保存。
  9. 根据权利要求8所述的一种基于脚本的数据流图生成方法,其特征在于,在步骤S8中,用户向脚本了解数据流图的变量名及所在实例化模块名,脚本根据实例化模块名找到结构体树中对应的变量结构体节点,将结构体中变量名所对应的信息以类二叉树前序遍历算法打印输出。
  10. 一种基于脚本的数据流图生成装置,其特征在于,包括:至少一个存储器和至少一个处理器;
    所述至少一个存储器,用于存储机器可读程序;
    所述至少一个处理器,用于调用所述机器可读程序,执行权利要求1至9中任一所述的方法。
PCT/CN2023/082101 2022-04-18 2023-03-17 一种基于脚本的数据流图生成方法及装置 WO2023202290A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN202210402011.7 2022-04-18
CN202210402011.7A CN114741993B (zh) 2022-04-18 2022-04-18 一种基于脚本的数据流图生成方法及装置

Publications (1)

Publication Number Publication Date
WO2023202290A1 true WO2023202290A1 (zh) 2023-10-26

Family

ID=82281966

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2023/082101 WO2023202290A1 (zh) 2022-04-18 2023-03-17 一种基于脚本的数据流图生成方法及装置

Country Status (2)

Country Link
CN (1) CN114741993B (zh)
WO (1) WO2023202290A1 (zh)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114741993B (zh) * 2022-04-18 2023-06-16 山东浪潮科学研究院有限公司 一种基于脚本的数据流图生成方法及装置

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105814568A (zh) * 2013-12-12 2016-07-27 国立大学法人东京工业大学 逻辑电路生成装置以及方法
US9619601B1 (en) * 2015-01-22 2017-04-11 Xilinx, Inc. Control and data flow graph generation for hardware description languages
CN110489297A (zh) * 2019-08-26 2019-11-22 山东浪潮人工智能研究院有限公司 一种基于图形界面的fpga调试信号设置方法
CN112083897A (zh) * 2020-07-30 2020-12-15 济南浪潮高新科技投资发展有限公司 一种数字逻辑设计中信号声明系统、方法、设备及介质
CN113419740A (zh) * 2021-06-22 2021-09-21 中国工商银行股份有限公司 程序数据流的分析方法、装置、电子设备及可读存储介质
CN114253524A (zh) * 2021-12-20 2022-03-29 山东浪潮科学研究院有限公司 一种基于脚本的用于辅助状态机逻辑代码设计的方法
CN114741993A (zh) * 2022-04-18 2022-07-12 山东浪潮科学研究院有限公司 一种基于脚本的数据流图生成方法及装置

Family Cites Families (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1783604A3 (en) * 2005-11-07 2007-10-03 Slawomir Adam Janczewski Object-oriented, parallel language, method of programming and multi-processor computer
US8510706B1 (en) * 2009-09-04 2013-08-13 The Mathworks, Inc. Generating comments for code generated from a model
CN104391793B (zh) * 2014-11-27 2017-07-14 中国联合网络通信集团有限公司 测试步骤及测试脚本生成方法及装置
CN106155755B (zh) * 2015-06-03 2020-06-23 上海红神信息技术有限公司 程序编译方法和程序编译器
CN105718372B (zh) * 2016-01-22 2018-05-18 珠海市精实测控技术有限公司 一种电控板黑盒测试用例生成及自动测试方法
US10379825B2 (en) * 2017-05-22 2019-08-13 Ab Initio Technology Llc Automated dependency analyzer for heterogeneously programmed data processing system
CN107341010B (zh) * 2017-06-26 2019-12-13 华中科技大学 一种C/C++与COStream混合编程方法和可视化编译系统
CN107516040A (zh) * 2017-07-25 2017-12-26 中国人民解放军63928部队 一种基于数据控制流图的脆弱性特征分析和获取方法
CN110413468A (zh) * 2019-08-06 2019-11-05 哈尔滨工业大学 基于代码突变的fpga在线故障注入方法
US11429604B2 (en) * 2019-09-10 2022-08-30 Oracle International Corporation Techniques of heterogeneous hardware execution for SQL analytic queries for high volume data processing
US11991041B2 (en) * 2019-12-30 2024-05-21 Oracle International Corporation Autonomous terraforming on cloud infrastructures
CN111949269B (zh) * 2020-07-14 2021-06-11 华中科技大学 一种COStream语法分析过程中符号表和静态数据流图生成方法

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105814568A (zh) * 2013-12-12 2016-07-27 国立大学法人东京工业大学 逻辑电路生成装置以及方法
US9619601B1 (en) * 2015-01-22 2017-04-11 Xilinx, Inc. Control and data flow graph generation for hardware description languages
CN110489297A (zh) * 2019-08-26 2019-11-22 山东浪潮人工智能研究院有限公司 一种基于图形界面的fpga调试信号设置方法
CN112083897A (zh) * 2020-07-30 2020-12-15 济南浪潮高新科技投资发展有限公司 一种数字逻辑设计中信号声明系统、方法、设备及介质
CN113419740A (zh) * 2021-06-22 2021-09-21 中国工商银行股份有限公司 程序数据流的分析方法、装置、电子设备及可读存储介质
CN114253524A (zh) * 2021-12-20 2022-03-29 山东浪潮科学研究院有限公司 一种基于脚本的用于辅助状态机逻辑代码设计的方法
CN114741993A (zh) * 2022-04-18 2022-07-12 山东浪潮科学研究院有限公司 一种基于脚本的数据流图生成方法及装置

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
FUNCTION Y: "ANGR Source Code Analysis-DFG Data Flow Graph", CSDN, XP009549659, Retrieved from the Internet <URL:https://blog.csdn.net/doudoudouzoule/article/details/80391464> *

Also Published As

Publication number Publication date
CN114741993B (zh) 2023-06-16
CN114741993A (zh) 2022-07-12

Similar Documents

Publication Publication Date Title
WO2023202290A1 (zh) 一种基于脚本的数据流图生成方法及装置
CN110489812B (zh) 多层层级网表处理方法、装置、计算机设备及存储介质
US11106437B2 (en) Lookup table optimization for programming languages that target synchronous digital circuits
Verbruggen et al. Semantic programming by example with pre-trained models
CN116341441B (zh) 对数字逻辑电路进行优化的方法及相关设备
CN105320681A (zh) 一种数据库内容合并方法及装置
US10884982B2 (en) Hash-based mount point lookup in virtual file systems
CN116341429B (zh) 对逻辑网络进行逻辑重写方法及相关设备
Shrestha et al. A logarithmic binary decision diagram-based method for multistate system analysis
Hall Equivalence between AND/OR graphs and context-free grammars
Otworowska et al. Demons of Ecological Rationality.
CN115982416A (zh) 一种数据处理方法、装置、可读存储介质及电子设备
CN109933589B (zh) 用于数据汇总的基于ElasticSearch聚合运算结果的数据结构转换方法
CN117349763A (zh) 确定人工智能应用的核函数的方法、计算设备和介质
CN109635801A (zh) 光学字符识别后处理的方法、装置及计算机可读存储介质
Liberatore The complexity of the language A
CN114579141A (zh) require框架转化为VUE框架的方法及装置
CN114676132A (zh) 一种数据表关联方法、装置、存储介质及电子设备
CN113076330B (zh) 查询处理方法、装置、数据库系统、电子设备及存储介质
CN115687338A (zh) 项目批量添加标识信息方法和装置、终端
JPWO2021252324A5 (zh)
CN107506299B (zh) 一种代码分析方法及终端设备
CN114138425B (zh) 一种基于公式生成表单的方法及装置
CN117372182B (zh) 一种基于快速开发持久层代码辅助方法的保险管理系统
CN112416362B (zh) 一种pdk编译功能的实现方法

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 23790951

Country of ref document: EP

Kind code of ref document: A1