JPH02211589A - Data driving type control method - Google Patents

Data driving type control method

Info

Publication number
JPH02211589A
JPH02211589A JP3103889A JP3103889A JPH02211589A JP H02211589 A JPH02211589 A JP H02211589A JP 3103889 A JP3103889 A JP 3103889A JP 3103889 A JP3103889 A JP 3103889A JP H02211589 A JPH02211589 A JP H02211589A
Authority
JP
Japan
Prior art keywords
instruction
data
program
execution
processing type
Prior art date
Legal status (The legal status 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 status listed.)
Granted
Application number
JP3103889A
Other languages
Japanese (ja)
Other versions
JP2765911B2 (en
Inventor
Yukito Maejima
前島 幸仁
Tahei Suzuki
鈴木 太平
Toko Otsubo
大坪 東光
Yoshikatsu Iguma
猪熊 義勝
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Hitachi Ltd
Original Assignee
Hitachi Ltd
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 Hitachi Ltd filed Critical Hitachi Ltd
Priority to JP3103889A priority Critical patent/JP2765911B2/en
Publication of JPH02211589A publication Critical patent/JPH02211589A/en
Application granted granted Critical
Publication of JP2765911B2 publication Critical patent/JP2765911B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Abstract

PURPOSE:To curtail the overhead for a queue control and to contrive the improvement of the performance of a device by executing an instruction without allowing a queue to intervene, in the case when an instruction executing formation is a sequential processing type. CONSTITUTION:In the case of a sequential processing, a head address of an instruction of this program is extracted from an instruction address store area 21, its address is set as an instruction address, an arithmetic designation 11 is extracted from an instruction template instructed by the instruction address, a processing of an arithmetic part 5 corresponding to the designation 11 is determined, and an instruction execution control part 2 transfers the instruction address of an arithmetic object to this arithmetic processing. The arithmetic part 5 which receives a control extracts prescribed input data from an area indicated by the number of input data acquisition destinations 12 and an input data acquisition destination 13 in the instruction template, executes a prescribed operation, stores a result of operation in an output data store area 17, and returns the control to the control part 2. Subsequently, when the next instruction exists, the control part 2 extracts an address of the next instruction from an output data notice destination 15, and sets its address as a new instruction address and executes an instruction processing.

Description

【発明の詳細な説明】 〔産業上の利用分野〕 本発明はデータ駆動型制御方法に関し、特に、単一のノ
イマン型マシンで逐次処理型のプログラムを実行する際
に命令の待合せ制御を省略することで、実行性能を向上
させることができるデータ駆動命令の制御方法に関する
ものである。
[Detailed Description of the Invention] [Industrial Application Field] The present invention relates to a data-driven control method, and in particular, to a method for omitting instruction queuing control when a sequential processing program is executed on a single Neumann-type machine. The present invention relates to a data-driven instruction control method that can improve execution performance.

また、本発明はコンパイル装置に関し、特に。The present invention also relates to a compiling device, in particular.

データ駆動型プログラムのソースコード表現あるいは図
式表現されたデータ駆動型プログラム図から命令の実行
順序を解析し、命令の実行制御方法が逐次処理型である
か、あるいは並列処理型であるかの識別表示を生成する
ことができるコンパイル装置に関するものである。
Analyzes the instruction execution order from the source code representation of the data-driven program or the diagrammatically represented data-driven program diagram, and identifies whether the instruction execution control method is sequential processing type or parallel processing type. It relates to a compile device that can generate .

〔従来の技術〕[Conventional technology]

データ駆動型プログラムの特長として、(1)データの
依存関係のみで命令実行順序が決まり、しかも、プログ
ラム自身が図式表現されるため、理解性の向上が期待で
きる、(2)並列処理を陽に表現できる、などがある。
The features of data-driven programs are (1) the order of instruction execution is determined only by data dependencies, and the program itself is represented diagrammatically, which can be expected to improve understandability; (2) parallel processing is made explicit. It can be expressed, etc.

従来、単一のノイマン型プロセッサでデータ駆動型プロ
グラムを実行する際には、命令の出力結果により同時に
複数の命令が実行可能となる場合があるので、特開昭6
1−23239号公報の記載にあるように、命令の実行
待合せをFIFOキューを用いて行う必要がある。
Conventionally, when a data-driven program is executed by a single Neumann-type processor, it may be possible to execute multiple instructions at the same time depending on the output result of the instruction.
As described in Japanese Patent No. 1-23239, it is necessary to wait for the execution of instructions using a FIFO queue.

この方法によれば、並列記述あるいは逐次記述されたデ
ータ駆動型プログラムを同一制御機構で実行できる反面
、命令実行の待合せの必要のない逐次記述されたデータ
駆動型プログラムでも、−度命令をFIFOキューに登
録してからでないと命令の実行ができないという欠点が
ある。
According to this method, data-driven programs written in parallel or sequentially can be executed using the same control mechanism, but even in data-driven programs written sequentially that do not require waiting for instruction execution, instructions can be stored in the FIFO queue. The disadvantage is that commands cannot be executed unless they are registered.

〔発明が解決しようとする課題〕[Problem to be solved by the invention]

前述のように、従来の技術においては、逐次記述された
データ駆動型プログラムと並列記述されたデータ駆動型
プログラムとを同一のデータ駆動制御機端で実行できる
利点があるが、命令実行の待合せの必要のない逐次記述
されたデータ駆動型プログラムの命令実行においても、
必ず一度FIFOキューに登録する必要があり、処理能
力の低下を招くという問題がある。そこで、もしデータ
駆動型プログラムが逐次処理型か並列処理型かの識別が
できれば、逐次処理型の場合には、前記キュー制御に要
するオーバヘッドを削減できる。
As mentioned above, the conventional technology has the advantage of being able to execute a data-driven program written sequentially and a data-driven program written in parallel on the same data-driven controller, but it is difficult to wait for instruction execution. Even when executing instructions of data-driven programs written sequentially that are not necessary,
It is necessary to register the data in the FIFO queue once, which poses a problem of reducing processing performance. Therefore, if it is possible to identify whether a data-driven program is a sequential processing type or a parallel processing type, in the case of a sequential processing type, the overhead required for the queue control can be reduced.

さらに、ソースコード表現あるいは図式表現されたデー
タ駆動型プログラムにおいて、命令間で授受されるトー
クンを解析することで、余分なトークンを削除し、並列
処理型から逐次処理型に変換することができれば、処理
能力の向上が期待できる。
Furthermore, in a data-driven program expressed in source code or diagrammatic form, if it were possible to remove unnecessary tokens and convert from a parallel processing type to a sequential processing type by analyzing the tokens exchanged between instructions. Improvements in processing capacity can be expected.

本発明の目的は、データ駆動型プログラムの命令実行制
御において、オーバヘッドに基因する処理能力低下を最
小に抑えることができるデータ駆動型制御方法を提供す
ることにある。
SUMMARY OF THE INVENTION An object of the present invention is to provide a data-driven control method that can minimize a decrease in processing performance due to overhead in controlling the execution of instructions of a data-driven program.

また、本発明の目的は、ソースコード表現あるいは図式
表現さ九たデータ駆動型プログラムから余分なトークン
を除去し、その結果、データ駆動型プログラムが命令実
行の待合せを必要としない逐次処理型であるか、あるい
は命令実行の待合せを必要とする並列記述であるかの識
別表示情報を自動生成することが可能なデータ駆動型プ
ログラムのコンパイル装置を提供することにある。
It is also an object of the present invention to remove redundant tokens from a data-driven program in source code or diagrammatic representation, so that the data-driven program is a sequential processing type that does not require waiting for instruction execution. An object of the present invention is to provide a compiling device for a data-driven program that can automatically generate identification information indicating whether the program is a parallel description that requires waiting for execution of instructions, or a parallel description that requires waiting for instruction execution.

〔課題を解決するための手段〕[Means to solve the problem]

上記の目的を達成するため1本発明のデータ駆動制御方
法は、各命令対応に演算を指示する演算名称と、入力デ
ータ入手先と、入力データ入手先数と、該入力データを
用いた演算結果の出力データ通知先と、出力データ通知
先数を示すデータと、該入力データが準備されたことを
示す入力データ到着カウンタと、出力データを格納する
出力データ格納エリアとから構成される命令群からなる
プログラム命令部と、命令の実行を待合せるための・先
入れ先出しのキュー手段と、演算を行う演算処理部と、
データ駆動に基づいて命令を制御する命令実行制御部と
を格納した記憶手段を有するデータ駆動型制御方法にお
いて、データ駆動型プログラムの実行単位あるいはデー
タ駆動型呼出しプログラム単位にその命令実行制御方法
が逐次処理型であるか、あるいは並列処理型であるかの
識別表示手段をプログラム命令部に設け、命令実行制御
部は命令実行に際し該識別表示情報を判定し、逐次処理
型の場合には命令実行の結果により起動される命令を前
記キューに登録することなく直ちに実行し、並列処理型
の場合には命令実行の結果により起動される命令を前記
キューに登録して、命令の実行待合せを行わせることに
特徴がある。
In order to achieve the above objects, 1 the data-driven control method of the present invention provides an operation name for instructing an operation corresponding to each instruction, an input data acquisition source, the number of input data acquisition sources, and an operation result using the input data. An instruction group consisting of an output data notification destination, data indicating the number of output data notification destinations, an input data arrival counter indicating that the input data has been prepared, and an output data storage area for storing the output data. a program instruction section, a first-in, first-out queue means for waiting for the execution of instructions, and an arithmetic processing section for performing operations;
In a data-driven control method having a storage means storing an instruction execution control unit that controls instructions based on data drive, the instruction execution control method is sequentially executed for each execution unit of a data-driven program or for each data-driven calling program. A means for identifying whether the program is a processing type or a parallel processing type is provided in the program instruction section, and the instruction execution control section determines the identification information when executing an instruction. Immediately execute an instruction activated by a result without registering it in the queue, and in the case of a parallel processing type, register an instruction activated by a result of instruction execution in the queue to wait for execution of the instruction. There are characteristics.

また、上記目的を達成するため、データ駆動型プログラ
ムを翻訳するコンパイル装置において、該ソースコード
または図式表現されたデータ駆動型プログラム図を読み
込み、プログラム中の命令間で授受されるデータフロー
を解析し、命令の接続情報を含む中間データを作成し、
この中間データに含まれる接続情報から命令の実行順序
を解析し、余分なトークンを削除した後、該データ駆動
型プログラム命令の実行制御方法が逐次処理型であるか
、あるいは並列処理型であるかの識別表示情報を生成す
ることに特徴がある。
In addition, in order to achieve the above purpose, a compilation device that translates a data-driven program reads the source code or the diagrammatically expressed data-driven program diagram and analyzes the data flow exchanged between instructions in the program. , create intermediate data containing instruction connection information,
After analyzing the instruction execution order from the connection information included in this intermediate data and removing extra tokens, it is determined whether the execution control method of the data-driven program instructions is sequential processing type or parallel processing type. The feature is that it generates identification display information.

〔作用〕[Effect]

上記により、データ駆動型プログラムの命令実行制御に
おいて、データ駆動型プログラムの実行fg御方法を識
別する情報により、逐次処理型で命令実行する場合は、
命令実行の待合せのキューを介せずに直接命令を実行す
ることができるので、性能向上が図れる。また、ソース
コード表現あるいは図式表現されたデータ駆動型プログ
ラムは、コンパイル装置により命令の実行順序が解析さ
れ。
As described above, in the instruction execution control of a data-driven program, when executing instructions in a sequential processing type using information that identifies the execution fg control method of the data-driven program,
Since instructions can be executed directly without going through a queue for waiting for instruction execution, performance can be improved. Furthermore, in a data-driven program expressed as a source code or diagrammatically, the execution order of instructions is analyzed by a compiling device.

余分なトークンが削除され、その結果該データ駆動型プ
ログラムの命令の実行制御方法が逐次処理型であるか、
あるいは並列処理型であるかの識別が行われ、データ駆
動型プログラム命令の制御方法についての最適化が自動
的に行える。
The redundant tokens are removed, so that the instruction execution control method of the data-driven program is sequential;
Alternatively, it is determined whether the program is a parallel processing type, and the control method for data-driven program instructions can be automatically optimized.

〔実施例〕〔Example〕

以下、本発明の一実施例を図面により説明する。 An embodiment of the present invention will be described below with reference to the drawings.

第1図は本発明のデータ駆動型制御方法を備えた制御装
置の一実施例のブロック構成図である。第1図において
、3はデータ駆動型プログラムあるいはデータ駆動型の
呼出しプログラムの命令であるプログラム命令部、4は
FIFOキューを用いて命令を待合せる待合せ部、5は
命令内の演算部で指示される演算を行う演算部、2はデ
ータ駆動型プログラムあるいはデータ駆動型の呼出しプ
ログラム命令をデータ駆動に基づいて実行制御する命令
実行制御部で、1はこれら各処理部2,3.4.5から
構成される装置 3、4、5は記憶手段に格納され、通常のノイマン型プ
ロセッサにより制御される。
FIG. 1 is a block diagram of an embodiment of a control device equipped with the data-driven control method of the present invention. In FIG. 1, numeral 3 is a program instruction section that is an instruction of a data-driven program or a data-driven calling program, 4 is a waiting section that waits for instructions using a FIFO queue, and 5 is an instruction in an arithmetic section within the instruction. 2 is an instruction execution control unit that controls the execution of a data-driven program or a data-driven calling program instruction based on data drive; The configured devices 3, 4, 5 are stored in storage means and controlled by a conventional Neumann type processor.

第3図はプログラム命令部2における命令の実行制御形
式を識別する識別表示情報と命令テンプレートの一構成
例を示す.識別表示情報2−0はデ−夕駆動型プログラ
ムあるいはデータ駆動型呼出しプログラム単位に用意さ
れ、例えば、命令の実行制御方式が逐次処理型なら0′
、並列処理型なら1′の値を持つ、命令アドレス格納エ
リア21は該データ駆動型プログラムあるいは該呼出し
プログラムが逐次処理型の場合に、該プログラムの命令
の先頭アドレスを格納する。命令テンプレート内の演算
名称11は命令で指示される演算を示す、入力データ入
手先13は入力データの入手先アドレスを示し、入力デ
ータ入手先数12は入力データ入手先の数を示す、出力
データ通知先15は命令の演算結果により出力データが
準備されたことを次命令に通知するための命令アドレス
を示し、出力データ通知先数14は出力データ通知先の
登録数を示す、入力データ到着カウンタ16は命令の実
行に必要な入力データの到着数を示す、出力データ格納
エリア17は演算結果を格納するエリアである。
FIG. 3 shows a configuration example of identification display information for identifying the execution control format of instructions in the program instruction section 2 and an instruction template. Identification display information 2-0 is prepared for each data-driven program or data-driven calling program, and for example, if the instruction execution control method is sequential processing type, it is set to 0'.
, if the program is of the parallel processing type, the instruction address storage area 21 has a value of 1'.If the data-driven program or the calling program is of the sequential processing type, the instruction address storage area 21 stores the start address of the instruction of the program. The operation name 11 in the instruction template indicates the operation specified by the instruction, the input data source 13 indicates the input data source address, the number of input data sources 12 indicates the number of input data sources, and the output data Notification destination 15 indicates an instruction address for notifying the next instruction that output data has been prepared according to the calculation result of the instruction, and output data notification destination number 14 is an input data arrival counter indicating the number of registered output data notification destinations. Reference numeral 16 indicates the number of arrivals of input data necessary for executing an instruction. Output data storage area 17 is an area for storing calculation results.

ここで、入力データ入手先数12と出力データ通知先数
14は共に′0′以上の任意の整数であり、例えば、0
′は入力データ入手先13がないか、出力データ通知先
15がないことを示し。
Here, the number of input data acquisition sources 12 and the number of output data notification destinations 14 are both arbitrary integers greater than or equal to '0', for example, 0.
' indicates that there is no input data acquisition source 13 or no output data notification destination 15.

1以上の整数の場合には、入力データ入手先13あるい
は出力データ通知先15のエリアが存在することを示す
If it is an integer greater than or equal to 1, it indicates that an area for input data acquisition destination 13 or output data notification destination 15 exists.

命令テンプレート内の演算名称11、入力データ入手先
数12、入力データ入手先13.出力データ通知先数1
4、出力データ通知先15、入力データ到着カウンタ1
6、出力データ格納エリア17はデータ駆動型プログラ
ムあるいは呼出しプログラム内の各命令対応に用意され
、記憶手段に格納される。また、これらの命令群はデー
タ駆動に基づいて実行されるので、命令の実行に必要な
入力データの全てが揃った時点で始めて演算が実行され
る。
Operation name in the instruction template 11, number of input data sources 12, input data sources 13. Number of output data notification destinations: 1
4, Output data notification destination 15, Input data arrival counter 1
6. The output data storage area 17 is prepared for each instruction in the data-driven program or the calling program, and is stored in the storage means. Furthermore, since these instruction groups are executed based on data drive, operations are executed only when all input data necessary for execution of the instruction is collected.

第4図は第1図における命令実行制御部2の動作フロー
図の一例である。第4図により第1図の機能ブロックお
よび第3図の識別表示情報20、命令アドレス格納アリ
ア21.命令フィールド11〜17の位置付けと動作を
説明する。ここでは、データ駆動型プログラムの命令実
行制御について説明するが、データ駆動型の呼出しプロ
グラムについても命令実行制御はデータ駆動型プログラ
ムと同じなので説明は省略する。
FIG. 4 is an example of an operation flow diagram of the instruction execution control section 2 in FIG. 1. FIG. 4 shows the functional blocks of FIG. 1, the identification display information 20 of FIG. 3, the instruction address storage area 21. The positioning and operation of command fields 11 to 17 will be explained. Here, instruction execution control for a data-driven program will be explained, but since the instruction execution control for a data-driven calling program is the same as that for a data-driven program, the explanation will be omitted.

ここでいう逐次処理型の定義は、(1)命令実行に必要
な入力データ(トークン)数が′l″で、(2)出力デ
ータ通知先数が1′で、(3)プログラム命令の終了は
出力データ通知先数が0′である、という(1)から(
3)までの条件を満たすものをいう、また、並列処理型
は逐次処理型以外の全てのデータ駆動型プログラムをい
い、プログラム終了は、待合せ部4のキューが空き状態
になった。すなわち、実行すべき命令が登録されていな
いことで判定される。
The definition of the sequential processing type here is: (1) the number of input data (tokens) required to execute the instruction is ``l'', (2) the number of output data notification destinations is 1'', and (3) the end of the program instruction. From (1), the number of output data notification destinations is 0', (
The parallel processing type refers to all data-driven programs other than the sequential processing type, and the program ends when the queue in the waiting section 4 becomes empty. In other words, it is determined that the command to be executed is not registered.

プログラムの実行に先立って、プログラム命令部3内の
実行対象であるデータ駆動型プログラムの実行形式、例
えば、逐次処理型ならば10′が、並列処理型ならばt
l、Iの値が識別表示情報20に格納される。そして、
該データ駆動型プログラムの実行形式が逐次処理型の場
合には、命令の先頭アドレスが命令アドレス格納エリア
21に格納され、並列処理型の場合には、命令の先頭ア
ドレスが待合せ部4のキューの先頭に登録され、命令ア
ドレス格納エリア21には何も格納しない。
Prior to program execution, the execution format of the data-driven program to be executed in the program instruction section 3, for example, 10' for a sequential processing type, t for a parallel processing type.
The values of l and I are stored in the identification display information 20. and,
When the execution format of the data-driven program is a sequential processing type, the start address of the instruction is stored in the instruction address storage area 21, and when the execution format is a parallel processing type, the start address of the instruction is stored in the queue of the waiting section 4. It is registered at the beginning, and nothing is stored in the instruction address storage area 21.

プログラムの実行は次のようになる。命令実行制御部2
は、先ずプログラムの実行形式を指示する識別表示情報
20を抽出し、実行形式が逐次処理型であるか並列処理
型であるかの判定処理を行う(ステップ30)、その結
果、識別表示情報20の値が0′、すなわち、逐次処理
型の場合には、命令アドレス格納エリア21から該プロ
グラムの命令の先頭アドレスを抽出しくステップ38)
、そのアドレスを命令アドレスとし、命令アドレスで指
示される命令テンプレートから演算名称11を抽出し、
演算名称11に対応する演算部5の演算処理を決定し、
命令実行制御部2は演算対象の命令アドレスを該演算処
理に引き継ぎ、該演算処理に制御を渡す、そして、制御
を受けた演算部5の演算処理は、引き継いだ命令アドレ
スで指示される命令テンプレート内の入力データ入手先
数12と入力データ入手先13で指示されるエリアから
所定の入力データを抽出し、抽出した入力データに対し
所定の演算を行い、その演算結果を出力データ格納エリ
ア17に格納し、制御を命令実行制御部2に戻す0以上
の処理がステップ39で行ねれる。
The program execution is as follows. Instruction execution control unit 2
First, the identification display information 20 indicating the execution format of the program is extracted, and a determination process is performed as to whether the execution format is a sequential processing type or a parallel processing type (step 30).As a result, the identification display information 20 If the value is 0', that is, if it is a sequential processing type, extract the start address of the instruction of the program from the instruction address storage area 21 (step 38).
, take that address as an instruction address, extract the operation name 11 from the instruction template specified by the instruction address,
Determine the calculation process of the calculation unit 5 corresponding to the calculation name 11,
The instruction execution control unit 2 takes over the instruction address of the calculation target to the calculation process and passes control to the calculation process, and the calculation process of the controlled calculation unit 5 executes the instruction template specified by the inherited instruction address. Predetermined input data is extracted from the area specified by the input data acquisition source number 12 and input data acquisition source 13, a predetermined operation is performed on the extracted input data, and the operation result is stored in the output data storage area 17. Zero or more processes for storing and returning control to the instruction execution control section 2 are performed in step 39.

制御を受けた命令実行制御部2は、該命令アドレスで指
示される命令テンプレート内の出力データ通知先数14
が1′、すなわち1次命令が存在すれば出力データ通知
先15から次命令のアドレスを抽出し、そのアドレスを
新たに命令アドレスとしくステップ40)、ステップ3
9に戻る。
The command execution control unit 2 that has received the control determines the number of output data notification destinations (14) in the command template specified by the command address.
is 1', that is, if the primary instruction exists, the address of the next instruction is extracted from the output data notification destination 15, and that address is set as a new instruction address.Step 40), Step 3
Return to 9.

以上、出力データ通知先数14が1′であるかぎりステ
ップ39〜ステツプ40までを繰り返し、出力データ通
知先数14がJ Olであれば、実行すべき次命令アド
レスが存在しないということで、全てのプログラムの命
令実行処理を終了する。
As described above, steps 39 to 40 are repeated as long as the number of output data notification destinations 14 is 1', and if the number of output data notification destinations 14 is JOl, it means that there is no next instruction address to be executed. The instruction execution processing of the program ends.

また、並列処理型の場合には、待合せ部4のキューに登
録されたアドレスが存在するかどうか判定しくステップ
31)、アドレスが存在すればアドレスを命令アドレス
として前記キューから取り出し、その命令アドレスで指
示される命令テンプレートから演算名称工1を抽出し、
演算名称11に対応する演算部5の演算処理を決定し、
命令実行制御部2は演算対象の命令アドレスを該演算処
理に引き継ぎ、該演算処理に制御を渡す。そして、制御
を受けた演算部5の演算処理は、引き継いだ命令アドレ
スで指示される命令テンプレート内の入力データ入手先
数12と入力データ入手先13で指示されるエリアから
所定の入力データを抽出し、抽出した入力データに対し
所定の演算を行い。
In the case of the parallel processing type, it is determined whether or not there is an address registered in the queue of the waiting section 4 (step 31), and if the address exists, the address is taken out from the queue as an instruction address, and the instruction address is used as the instruction address. Extract operation name 1 from the instructed instruction template,
Determine the calculation process of the calculation unit 5 corresponding to the calculation name 11,
The instruction execution control unit 2 takes over the instruction address of the calculation target to the calculation process, and passes control to the calculation process. Then, the arithmetic processing of the controlled arithmetic unit 5 extracts predetermined input data from the area specified by the number of input data sources 12 and the input data source 13 in the instruction template specified by the inherited instruction address. Then, predetermined calculations are performed on the extracted input data.

その演算結果を出力データ格納エリア17に格納し、制
御を命令実行制御部2に戻す0以上の処理がステップ3
2で行われる。
The operation result is stored in the output data storage area 17 and the control is returned to the instruction execution control unit 2. Zero or more processes are performed in step 3.
It is done in 2.

そして、制御を受けた命令実行制御部2は、該命令アド
レスで指示される命令テンプレート内の出力データ通知
先数14を判定し1例えばt O′ならば通知先がない
と判定し、ステップ31に戻り、正数であれば出力デー
タ通知先15が存在すると判定する(ステップ33)6
次に、出力データ通知先15から次命令のアドレスを1
つ抽出し、次命令のアドレスで指示される命令テンプレ
ート内の入力データ到着カウンタ16を更新することで
、トークンの伝達を行い(ステップ34)、次命令の実
行に必要な全ての入力データが揃ったかどうか判定する
(ステップ35)、もし、入力データが揃っていれば、
次命令のアドレスを待合せ部4のキューに登録しくステ
ップ36)、入力データが揃っていなければ、何もしな
いでステップ37に遷移する。所定の出力データ通知先
数14で指示される通知先数だけ、ステップ34〜ステ
ツプ37までの処理を繰り返す、そして、出力データ通
知先へのトークンの通知が全て終了するとステップ31
に戻る。
Then, the command execution control unit 2 that has received the control determines the number of output data notification destinations 14 in the instruction template specified by the instruction address, and if it is 1, for example, t O', it is determined that there is no notification destination, and in step 31 If the number is positive, it is determined that the output data notification destination 15 exists (step 33) 6
Next, the address of the next instruction is set to 1 from the output data notification destination 15.
By extracting the input data and updating the input data arrival counter 16 in the instruction template specified by the address of the next instruction, the token is transmitted (step 34), and all the input data necessary for executing the next instruction is collected. (step 35). If the input data is complete,
The address of the next command is registered in the queue of the waiting section 4 (step 36), and if the input data is not complete, the process moves to step 37 without doing anything. The process from step 34 to step 37 is repeated as many times as the number of notification destinations specified by the predetermined number of output data notification destinations 14, and when notification of tokens to all output data notification destinations is completed, step 31
Return to

そして、待合せ部4のキューに登録されたアドレスがな
くなるまで、ステップ32〜ステツプ37までの処理を
繰り返し、待合せ部4のキューが空き、すなわち、実行
すべき命令アドレスが登録されていなければ、プログラ
ムの命令実行処理を終了する。
Then, the processing from step 32 to step 37 is repeated until there are no addresses registered in the queue of the waiting section 4. If the queue of the waiting section 4 is empty, that is, no instruction address to be executed is registered, the program The instruction execution process ends.

以上述べたように、逐次処理型の場合には、待合せ部の
キューへの登録処理をスキップすることができる。
As described above, in the case of the sequential processing type, the registration process in the queue of the waiting section can be skipped.

また、本発明の一実施例を別の図面により説明する。第
2図は本発明の一実施例を示すコンパイル装置のブロッ
ク構成図である。第2図において、コンパイル装置50
の入力となるものは、図式表現されたデータ駆動プログ
ラムか、または図式表現されたデータ駆動プログラムと
全く等価な結線衣ソースコードである。51は図式記述
されたデータ駆動プログラムを結線衣ソースコードに変
換する結線衣ソースコード変換部、52は結線衣ソース
コードの構文解析と命令間で授受されるデータのフロー
の解析とを行い、命令の入出力データ情報と命令間の制
御フロー情報とを含む中間データファイル55生成する
構文解析部、53は構文解析部52で生成された中間デ
ータファイル55の制御フロー情報からデータ駆動の原
則に基づいて命令実行順序を解析し、そして冗長なトー
クンを削除し、その結果から命令実行制御方法を決定し
、最適接続情報ファイル56を生成する命令実行解析部
、54は最適接続情報ファイル56に含まれる最適化さ
れた接続情報と命令実行制御方法の識別表示情報とを第
3図示した実行可能な命令テンプレートに変換するプロ
グラム命令コード生成部である。
Further, an embodiment of the present invention will be described with reference to other drawings. FIG. 2 is a block diagram of a compiling device showing one embodiment of the present invention. In FIG. 2, a compiling device 50
The input is either a data-driven program represented graphically or a wiring source code that is completely equivalent to the data-driven program represented graphically. 51 is a source code conversion unit that converts a diagrammatically described data-driven program into source code; 52 is a unit that analyzes the syntax of the source code and analyzes the flow of data exchanged between instructions; A syntax analysis unit 53 generates an intermediate data file 55 containing input/output data information and control flow information between instructions, based on the data-driven principle from the control flow information of the intermediate data file 55 generated by the syntax analysis unit 52. An instruction execution analysis unit 54 is included in the optimum connection information file 56, which analyzes the order of instruction execution by deleting redundant tokens, determines an instruction execution control method based on the result, and generates the optimum connection information file 56. This is a program instruction code generation unit that converts optimized connection information and identification display information of an instruction execution control method into an executable instruction template as shown in FIG.

第5図はコンパイル装置50の入力となる図式表現され
たデータ駆動プログラム図の一例である。
FIG. 5 is an example of a diagrammatically represented data-driven program diagram that is input to the compiling device 50.

基本的な演算を行う命令60は長方形ノードで表わし、
その中に演算名称を記入する。また、演算結果によりそ
の結果が選択的に出力される命令61は台形ノードで表
わす、命令間で授受されるデータは有向アーク62で示
される。図中においては、命令60や命令61の上から
入る有向アークが入力を表わし、下から出る有向アーク
が出力を表わす、なお、命令間で授受されないデータ6
3、例えば英数字や構造体などなどは、直接命令の入力
として記述する。さらに、入力データとはならないが命
令の実行順序を規定するために制御トークン64があり
、命令の左右から入る。
Instructions 60 for performing basic operations are represented by rectangular nodes,
Enter the operation name in it. Further, instructions 61 whose results are selectively output based on calculation results are represented by trapezoidal nodes, and data exchanged between instructions is represented by directed arcs 62. In the figure, the directed arc that enters from above the instruction 60 or the instruction 61 represents the input, and the directed arc that exits from the bottom represents the output. Note that data 6 that is not exchanged between instructions
3. For example, alphanumeric characters and structures are written as direct command input. Furthermore, there are control tokens 64 that do not serve as input data but are used to define the order of execution of instructions, and are entered from the left and right sides of the instructions.

また、結線表へのコード変換を容易にするために、各命
令には命令を識別するための固有番号65と、入力ピン
番号66と出力ピン番号67を付与してあり、同一命令
に対して入力ピン番号66と出力ピン番号67は複数の
付与が可能である。
In addition, in order to facilitate code conversion to the connection table, each instruction is given a unique number 65 to identify the instruction, an input pin number 66, and an output pin number 67. A plurality of input pin numbers 66 and output pin numbers 67 can be assigned.

第6図は構文解析部51の入力となる結線表ソースコー
ドの例で、第5図のデータ駆動プログラム図と全く等価
なものである。すなわち、結線表は各命令毎に付与され
た固有番号を記述する固有番号記述部70.命令名称を
記述する命令名称記述部71、入カニデータを記述する
入力データ記述部72、制御トークンを記述する制御ト
ークン記述部73からなる。また、命令の終了表示は;
′で指示し、入力データ記述部72は左から順に0ピン
、1ピン・・・・・・に対応し、各入力ピンは空白で区
切られる。そして、各入力データは入力となる前位の命
令の固有番号と出力ピンを参照する形式で記述し1例え
ば、’1−3’ とあれば命令の固有番号が1で、出力
ピン番号が3の出力データを入力データとすることを示
す、また、制御トークンは′申′で識別され、入力デー
タと同様に命令の固有番号と出力ピンを参照する形式で
記述され、複数ある場合には′、′で区切られる。
FIG. 6 shows an example of a connection table source code that is input to the syntax analysis unit 51, and is completely equivalent to the data-driven program diagram shown in FIG. That is, the connection table includes a unique number description section 70. which describes the unique number assigned to each instruction. It consists of an instruction name description part 71 that describes the command name, an input data description part 72 that describes the input data, and a control token description part 73 that describes the control token. Also, the end display of the command is;
', and the input data description section 72 corresponds to pins 0, 1, . . . in order from the left, and each input pin is separated by a blank space. Each input data is written in a format that refers to the unique number of the previous instruction that is input and the output pin.For example, '1-3' means that the unique number of the instruction is 1 and the output pin number is 3. Control tokens are identified by 'sign' and are written in a format that refers to the instruction's unique number and output pin in the same way as input data, and if there is more than one, ' , ' delimited.

さらに、命令間で参照されない入力データは対応する入
力ピンに直接記述する。
Furthermore, input data that is not referenced between instructions is written directly to the corresponding input pin.

第7図は第5図のデータ駆動プログラムを入力として、
構文解析部52で生成される中間データファイル55に
格納される制御フロー回倒である。
Figure 7 shows the data-driven program in Figure 5 as input.
This is a control flow rotation stored in the intermediate data file 55 generated by the syntax analysis unit 52.

この図において、命令間で授受されるデータと制御トー
クンのみが記述対象となり、命令に直接入力となる英数
字、構造体などは除外される。
In this diagram, only the data and control tokens exchanged between instructions are described, and alphanumeric characters, structures, etc. that are directly input to the instructions are excluded.

第8図は命令実行解析部53が冗長なトークンを削減す
る際の処理手順の一例を示すものである。
FIG. 8 shows an example of a processing procedure when the instruction execution analysis unit 53 reduces redundant tokens.

処理手順は以下のように行われる。The processing procedure is performed as follows.

(1)制御フロー図上の全ての枝について、′削除不可
能”のマークを付ける(ステップ80)。
(1) Mark all branches on the control flow diagram as 'undeleteable' (step 80).

(2)制御フロー図上の全てのノードについて、“処理
未終了″のマークを付ける。ただし、入口ノードはと処
理終了″のマークを付ける(ステップ81)。
(2) Mark all nodes on the control flow diagram as "unfinished". However, the entry node is marked with "processing completed" (step 81).

(3)処理終了ノードの中から“処理未終了″のマーク
が付いたノードと枝を持つノードを1つ選択し、処理対
象とする(ステップ83)。
(3) Select one node marked as "unfinished" and a node having a branch from among the processing-completed nodes and set it as the processing target (step 83).

(4)処理対象のノードの入力枝から出発して、削除不
可能な枝を通って、入口ノードまでに至るバスの長さを
計算する。このバス長は処理対象ノードの全ての枝に対
して求める(ステップ84)、そして、削除不可能な枝
の中から任意の一本の基準波を選び、他の削除不可能な
枝とバス長を比較し、基準波のパス長が他の削除不可能
なパス長より必ず短ければ、″削除可能″とマークする
。基準波の選択は全ての入力枝に対して行う。そして、
全ての入力枝のパス長に対して、バス長の比較が全て終
了すると、処理対象ノードに”処理終了″マークを付け
る。ただし、入力枝が一本しかない場合は、直ちに処理
対象ノードに″処理終了”マークを付ける。
(4) Calculate the length of the bus starting from the input branch of the processing target node, passing through the non-deletable branch, and ending at the input node. This bus length is determined for all branches of the processing target node (step 84), and an arbitrary reference wave is selected from among the branches that cannot be deleted, and the bus length is compared with other branches that cannot be deleted. are compared, and if the path length of the reference wave is always shorter than other non-removable path lengths, it is marked as "deletable". The reference wave is selected for all input branches. and,
When all bus length comparisons are completed for the path lengths of all input branches, a "processing completed" mark is placed on the processing target node. However, if there is only one input branch, the processing target node is marked as "processing completed" immediately.

また、比較対象のバス上のそれぞれに条件分岐のノード
が存在する場合は、削除不可能と判定する(ステップ8
5)。
Furthermore, if there is a conditional branch node on each bus to be compared, it is determined that deletion is impossible (step 8
5).

(5)全てのノードに対して、処理が終了すれば(ステ
ップ82)、制御フロー図から゛′削除可能′″のマー
クの付いた枝を削除する。
(5) When processing is completed for all nodes (step 82), branches marked as ``Deletable'' are deleted from the control flow diagram.

(6)制御フロー図の命令実行形式を前述した逐次処理
型の定義に従って判定し、その結果を識別表示情報とし
て生成する。
(6) Determine the instruction execution format of the control flow diagram according to the definition of the sequential processing type described above, and generate the result as identification display information.

第9図は第5図で示されるデータ駆動プログラム図の制
御フローから冗長なトークンを削除したものである。
FIG. 9 shows the control flow of the data-driven program diagram shown in FIG. 5 with redundant tokens removed.

第2図から第3図および第5図から第9図を用いて、コ
ンパイル装置50の処理の流れをまとめてみると次のよ
うになる。
The processing flow of the compiling device 50 can be summarized as follows using FIGS. 2 to 3 and 5 to 9.

第5図で示したデータ駆動プログラム図を結線衣ソース
コード変換部51で読み込み、第6図に示す結線衣へ変
換する。そして、結線衣は構文解析部52の入力となり
、構文解析したのち、第7図で示す制御フロー図が中間
データファイル55に出力される0次に、命令実行解析
部53は第8図に示す処理手順に従って、制御フロー図
から冗長なトークンを削除し、第9図に示すトークンが
最適化された制御フロー図を最適接続情報ファイル56
に出力するとともに、命令実行形式を決定し、その結果
を識別表示情報20に設定する。そして、プログラム命
令コード生成部54は処理対象の最適接続情報ファイル
56から制御フロー図と入出力データ情報を読みだし、
第3図で示す実行可能な命令テンプレート、m副表示情
報20と。
The data-driven program diagram shown in FIG. 5 is read by the wiring source code converter 51 and converted into the wiring diagram shown in FIG. 6. The connection code becomes an input to the syntax analysis unit 52, and after parsing the syntax, the control flow diagram shown in FIG. 7 is output to the intermediate data file 55. According to the processing procedure, redundant tokens are deleted from the control flow diagram, and the token-optimized control flow diagram shown in FIG. 9 is created in the optimal connection information file 56.
At the same time, the instruction execution format is determined and the result is set in the identification display information 20. Then, the program instruction code generation unit 54 reads the control flow diagram and input/output data information from the optimal connection information file 56 to be processed,
The executable instruction template and m sub-display information 20 shown in FIG.

命令アドレス格納エリア21を生成する。An instruction address storage area 21 is generated.

〔発明の効果〕〔Effect of the invention〕

本発明によれば、データ駆動プログラムの命令実行制御
において、命令実行形式が逐次処理型の場合には、待合
せキューを介することなく命令を実行できるので、キュ
ー制御のためのオーバヘッドが削減でき、性能を向上さ
せることができる。
According to the present invention, in the instruction execution control of a data-driven program, when the instruction execution format is a sequential processing type, the instructions can be executed without going through a waiting queue, so the overhead for queue control can be reduced and the performance is improved. can be improved.

また、図式記述あるいはコード表現されたデータ駆動プ
ログラムのコンパイルにおいて、冗長なトークンを削除
でき、しかも命令実行形式が自動的に決定できるので、
命令実行形式の最適化作業を効率よくできる。
In addition, when compiling a data-driven program expressed graphically or in code, redundant tokens can be removed and the instruction execution format can be automatically determined.
Optimization work for instruction execution format can be done efficiently.

【図面の簡単な説明】[Brief explanation of the drawing]

第1図は本発明のデータ駆動型制御方法を備えた制御装
置のブロック構成一実施例を示す図、第2図は本発明の
コンパイル方法を備えたコンパイル装置のブロック構成
の一実施例を示す図、第3図は第1図におけるプログラ
ム命令部に格納される命令テンプレートの一構成例を示
す図、第4図は第1図における命令実行制御部の動作フ
ローの一例を示す図、第5図は本発明の実施例の入力と
なるデータ駆動プログラム図の一例を示す図、第6図は
本発明の実施例の入力となるデータ駆動プログラム図と
等価な結線衣ソースコードの一例を示す図、第7図は第
5図のデータ駆動プログラム図を実施例の中で変換した
制御フロー図の一例を示す図、第8図は本発明に本質的
な冗長なトークンを削除する手順を示す一例を示す図、
第9図は第2図の命令実行解析部により最適化されたデ
ータ駆動プログラム図の一例を示す図である。 1・・・データ駆動制御を有する制御装置、2・・・命
令実行制御部、3・・・プログラム命令部、4・・・待
合せ部、5・・・演算部、20・・・識別表示情報、5
o・・・コンパイル装置、51・・・結線衣ソースコー
ド変換部。 52・・・構文解析部、53・・・命令実行解析部、5
4・・・プログラム命令コード生成部。 第1図 第3図 第4図 第7図 第6図 第8図
FIG. 1 is a diagram showing an example of the block configuration of a control device equipped with the data-driven control method of the present invention, and FIG. 2 is a diagram showing an example of the block configuration of a compiling device equipped with the compiling method of the present invention. 3 is a diagram showing an example of the configuration of an instruction template stored in the program instruction section in FIG. 1, FIG. 4 is a diagram showing an example of the operation flow of the instruction execution control section in FIG. 1, and FIG. The figure shows an example of a data-driven program diagram that serves as an input to the embodiment of the present invention, and FIG. 6 shows an example of a wiring source code equivalent to the data-driven program diagram that serves as an input to the embodiment of the present invention. , FIG. 7 is a diagram showing an example of a control flow diagram obtained by converting the data-driven program diagram of FIG. A diagram showing
FIG. 9 is a diagram showing an example of a data-driven program diagram optimized by the instruction execution analysis section of FIG. 2. DESCRIPTION OF SYMBOLS 1... Control device having data-driven control, 2... Instruction execution control unit, 3... Program instruction unit, 4... Queue unit, 5... Arithmetic unit, 20... Identification display information ,5
o... Compilation device, 51... Connection source code conversion unit. 52...Syntax analysis unit, 53...Instruction execution analysis unit, 5
4...Program instruction code generation section. Figure 1 Figure 3 Figure 4 Figure 7 Figure 6 Figure 8

Claims (1)

【特許請求の範囲】 1、入力データ入手先と入力データ入手先数と該入力デ
ータを用いた演算結果を次命令に通知する出力データ通
知先と出力データ通知先数を示すデータと該入力データ
が準備されたことを示す入力データ到着カウンタと出力
データの格納エリアから構成されるプログラム命令部と
、命令内で指示される演算を行う演算部と、先入れ先出
しのキューにより命令の実行を待合せるための持合せ部
と、該命令をデータ駆動で実行制御する命令実行制御部
とを記憶手段に格納した情報処理装置において、データ
駆動型プログラムの実行単位にその命令実行制御方法が
逐次処理型か並列処理型かの識別表示手段をプログラム
命令部に設け、命令実行制御部は命令実行に際し該識別
表示情報を判定し、逐次処理型の場合には、命令実行の
結果により起動される次命令を前記キューによる命令の
実行待合せをすることなく直ちに実行し、並列処理型の
場合には、命令実行の結果により起動される次命令を前
記キューに登録して、命令の実行待合せを行うことを特
徴とするデータ駆動型制御方法。 2、特許請求範囲の第1項において、データ駆動により
命令が実行される呼出しプログラム単位に命令実行制御
方法が逐次処理型であるか、あるいは並列処理型である
かの識別表示手段をプログラム命令部に設け、命令実行
制御部は命令実行に際し該識別表示情報を判定し、逐次
処理型の場合には、命令実行の結果により起動される次
命令を前記キューによる命令の実行待合せをすることな
く直ちに実行し、並列処理型の場合には、命令実行の結
果により起動される次命令を前記キューに登録して、命
令の実行待合せを行うことを特徴とするデータ駆動型制
御方法。 3、データ駆動型プログラムを翻訳するコンパイル方式
において、該ソースプログラムを読み込み、ソースプロ
グラム中の命令間で授受されるデータのフローを解析し
、命令の入出力データ情報と制御フロー情報とを含む中
間データを生成する構文解析部と、前記構文解析部から
生成される前記中間データに含まれる命令の制御フロー
情報から命令実行順序を解析し、データ駆動型プログラ
ムの命令実行制御方法が逐次処理型であるか、あるいは
並列処理型であるかの識別表示情報を生成する命令実行
解析部と、該ソースプログラムの中間データとそれに対
応する処理の実行制御方法を指示する識別表示情報とを
機械命令に変換するプログラム命令コード生成部とを備
えたことを特徴とするコンパイル装置。 4、図式表現されたデータ駆動型プログラムを翻訳する
コンパイル装置において、入力された図式表現の該プロ
グラム図から接続情報を抽出し、接続情報を結線表形式
のソースプログラムのコードに変換する結線表ソースコ
ード変換部と、ソースプログラム中の命令間で授受され
るデータのフローを解析し、命令の接続情報と制御フロ
ー情報とを含む中間データを生成する構文解析部と、前
記図形解析部から生成される前記中間データに含まれる
命令の制御フロー情報から命令実行順序を解析し、デー
タ駆動型のプログラムの命令実行制御方法が逐次処理型
であるか、あるいは並列処理型であるかの識別表示情報
を生成する命令実行解析部と、該ソースプログラムの中
間データとそれに対応する処理識別情報とを機械命令に
変換するプログラム命令コード生成部とを備えたことを
特徴とするコンパイル装置。
[Scope of Claims] 1. An input data acquisition source, the number of input data acquisition sources, an output data notification destination that notifies the next instruction of the operation result using the input data, data indicating the number of output data notification destinations, and the input data. A program instruction section consisting of an input data arrival counter that indicates that the program is ready and a storage area for output data, an arithmetic section that performs the operations specified in the instruction, and a first-in, first-out queue for waiting for execution of instructions. and an instruction execution control section that controls the execution of the instructions in a data-driven manner, in an information processing device that stores in a storage means whether the instruction execution control method is sequential processing type or parallel processing type for each execution unit of a data-driven program. A program instruction section is provided with an identification display means to indicate whether the program is a processing type, and the instruction execution control section determines the identification display information when executing an instruction. It is characterized in that the instruction is executed immediately without waiting for execution in a queue, and in the case of a parallel processing type, the next instruction activated by the result of instruction execution is registered in the queue, and the execution of the instruction is waited for. data-driven control method. 2. In claim 1, the program instruction section includes means for identifying whether the instruction execution control method is a sequential processing type or a parallel processing type for each calling program in which instructions are executed by data drive. The instruction execution control unit determines the identification display information when executing an instruction, and in the case of a sequential processing type, immediately executes the next instruction activated by the result of instruction execution without waiting for execution of the instruction in the queue. A data-driven control method, characterized in that, in the case of a parallel processing type, the next instruction activated according to the result of the instruction execution is registered in the queue, and the execution of the instruction is waited for. 3. In a compilation method for translating a data-driven program, the source program is read, the flow of data exchanged between instructions in the source program is analyzed, and intermediate information including instruction input/output data information and control flow information is analyzed. A syntax analysis unit that generates data and an instruction execution order are analyzed from the control flow information of instructions included in the intermediate data generated by the syntax analysis unit, and the instruction execution control method of the data-driven program is a sequential processing type. An instruction execution analysis unit that generates identification information indicating whether the source program is a parallel processing type or a parallel processing type, and converts intermediate data of the source program and identification information that instructs the execution control method of the corresponding process into machine instructions. A compiling device comprising: a program instruction code generation unit. 4. A connection table source that extracts connection information from the input program diagram in a diagrammatic representation and converts the connection information into code of a source program in a connection table format in a compiling device that translates a data-driven program represented in a diagram. a code conversion unit; a syntax analysis unit that analyzes the flow of data exchanged between instructions in a source program and generates intermediate data including instruction connection information and control flow information; and a syntax analysis unit that generates intermediate data including instruction connection information and control flow information; The instruction execution order is analyzed from the instruction control flow information included in the intermediate data, and identifying information indicating whether the instruction execution control method of the data-driven program is a sequential processing type or a parallel processing type is obtained. A compiling device comprising: an instruction execution analysis section that generates an instruction execution analysis section; and a program instruction code generation section that converts intermediate data of the source program and processing identification information corresponding thereto into machine instructions.
JP3103889A 1989-02-13 1989-02-13 Data driven control method and compiling device Expired - Fee Related JP2765911B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP3103889A JP2765911B2 (en) 1989-02-13 1989-02-13 Data driven control method and compiling device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP3103889A JP2765911B2 (en) 1989-02-13 1989-02-13 Data driven control method and compiling device

Publications (2)

Publication Number Publication Date
JPH02211589A true JPH02211589A (en) 1990-08-22
JP2765911B2 JP2765911B2 (en) 1998-06-18

Family

ID=12320323

Family Applications (1)

Application Number Title Priority Date Filing Date
JP3103889A Expired - Fee Related JP2765911B2 (en) 1989-02-13 1989-02-13 Data driven control method and compiling device

Country Status (1)

Country Link
JP (1) JP2765911B2 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2374950A (en) * 2001-04-23 2002-10-30 Imagination Tech Ltd Expanded functionality of processor operations within a fixed width instruction encoding

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB2374950A (en) * 2001-04-23 2002-10-30 Imagination Tech Ltd Expanded functionality of processor operations within a fixed width instruction encoding
GB2374950B (en) * 2001-04-23 2005-11-16 Imagination Tech Ltd Expanded functionality of processor operations within a fixed width instruction encoding

Also Published As

Publication number Publication date
JP2765911B2 (en) 1998-06-18

Similar Documents

Publication Publication Date Title
JPH02211589A (en) Data driving type control method
JPH07141192A (en) Translating processing
JP2529429B2 (en) Programmable controller
EP0244928A1 (en) Improvements relating to control flow in computers
JPH11242598A (en) Compiling method and device, object program executing method and device and program storage medium
JP3637606B2 (en) Data processing device
JPS63138427A (en) Processing system for scheduling instruction to array
JP3240647B2 (en) Computer language structured processing
JPS63186333A (en) Scheduling processing system for instruction to local branching instruction
JP2653880B2 (en) Program content analyzer
JPH0575841U (en) Program converter
JP2727023B2 (en) Information processing device
JPH02146688A (en) Hash collision evading system in data driven microprocessor
JPS58208854A (en) Reduction cell unit
JPH04123256A (en) Back track processing system for data editing function
JP2000010803A (en) Information processor
JPH0535497A (en) Realization system for logical language
JPS63156254A (en) Control method for intermediate text by interpreter
JPH0635713A (en) Mutual calling system for logical language and another language
JPH01283640A (en) Data driving type control method
JPH0711827B2 (en) Standard graphic drawing optimization processing method
JPS63254533A (en) Control system for register equivalence information
JPS61208131A (en) Program execution system
JPS62182843A (en) Fast compiling/linking system
JPH03150667A (en) Character string retrieval system

Legal Events

Date Code Title Description
LAPS Cancellation because of no payment of annual fees