JP2585780B2 - DO loop optimization processing method for input / output library - Google Patents

DO loop optimization processing method for input / output library

Info

Publication number
JP2585780B2
JP2585780B2 JP1011113A JP1111389A JP2585780B2 JP 2585780 B2 JP2585780 B2 JP 2585780B2 JP 1011113 A JP1011113 A JP 1011113A JP 1111389 A JP1111389 A JP 1111389A JP 2585780 B2 JP2585780 B2 JP 2585780B2
Authority
JP
Japan
Prior art keywords
input
output
processing
library
array
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.)
Expired - Fee Related
Application number
JP1011113A
Other languages
Japanese (ja)
Other versions
JPH02191040A (en
Inventor
聡 真田
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.)
Fujitsu Ltd
Original Assignee
Fujitsu 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 Fujitsu Ltd filed Critical Fujitsu Ltd
Priority to JP1011113A priority Critical patent/JP2585780B2/en
Publication of JPH02191040A publication Critical patent/JPH02191040A/en
Application granted granted Critical
Publication of JP2585780B2 publication Critical patent/JP2585780B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Description

【発明の詳細な説明】 〔産業上の利用分野〕 本発明は,FORTRANプログラムにおける入出力文を解析
し,所定の入出力ライブラリを呼び出すオブジェクトプ
ログラムを出力するFORTRANコンパイラを備えたデータ
処理システムにおいて,効率のよい入出力の実行を可能
とした入出力ライブラリにおけるDOループ最適化処理方
式に関する。
DETAILED DESCRIPTION OF THE INVENTION [Industrial Application Field] The present invention relates to a data processing system provided with a FORTRAN compiler that analyzes input / output statements in a FORTRAN program and outputs an object program that calls a predetermined input / output library. The present invention relates to a DO loop optimization processing method in an input / output library that enables efficient input / output execution.

FORTRANプログラムは,特に,科学技術計算等に多く
用いられるが,計算量や入出力のデータ量に応じて,計
算機処理時間が長くかかるので,少しでも速く実行する
ことができるように,実行速度の向上が望まれている。
FORTRAN programs are often used for scientific and technical calculations, but the computer processing time is long depending on the amount of calculation and the amount of input / output data. Improvement is desired.

〔従来の技術〕[Conventional technology]

第6図は従来技術の例を示す。 FIG. 6 shows an example of the prior art.

FORTRANコンパイラは,FORTRANプログラム20のような
ソースプログラムを入力すると,構文解析,意味解析を
行い,機械語命令等からなるオブジェクトプログラムを
作成する。ソースプログラム中に,READ文やWRITE文など
の入出力文があると,その入出力対象となる変数を指定
して,あらかじめ用意された入出力ライブラリにおける
該当する処理を行うプログラムを呼び出す命令を,オブ
ジェクトプログラム中に組み込む。
When a FORTRAN compiler inputs a source program such as the FORTRAN program 20, it performs syntax analysis and semantic analysis and creates an object program including machine language instructions and the like. If a source program contains an input / output statement such as a READ statement or a WRITE statement, an instruction that calls a program that performs the corresponding processing in a prepared input / output library is specified by specifying the variable to be input / output. Embed in the object program.

従来技術では,FORTRANプログラム20において,例えば
第6図(イ)に示すように,多次元配列のDO形並びに入
出力要素として指定したREAD文があると,次元数だけル
ープをネストさせて,配列の1要素ずつ,オブジェクト
プログラムから入出力ライブラリを呼び出すようにして
いた。すなわち,第6図(ロ)に示すように,入出力対
象となっている配列が3次元であれば,I,J,Kの3重のル
ープのネストにより,A(I,J,K)の入出力を行うように
していた。
In the prior art, in the FORTRAN program 20, if there is a DO form of a multidimensional array and a READ statement specified as an input / output element, as shown in FIG. The I / O library was called from the object program one element at a time. That is, as shown in FIG. 6 (b), if the array to be input / output is three-dimensional, A (I, J, K) is obtained by nesting three loops of I, J, K. Input and output.

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

従って,入出力ライブラリの呼び出し回数が多くな
り,パラメータの作成や,レジスタの退避・復元の処理
などのための処理時間が長くなるという問題があった。
また,多重ループにおけるループ回数の判定処理が,多
く必要になるという問題があった。
Therefore, there has been a problem that the number of calls to the input / output library increases and the processing time for creating parameters and saving / restoring registers increases.
In addition, there is a problem that a large number of determination processes of the number of loops in a multiplex loop are required.

本発明は上記問題点の解決を図り,入出力文に現れた
DO形並びによるループのネストを少なくし,入出力処理
の高速化を図ることを目的としている。
The present invention solves the above problems and appears in input / output statements.
The purpose is to reduce the number of loop nests due to the DO form list and speed up input / output processing.

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

第1図は本発明の構成例を示す。 FIG. 1 shows a configuration example of the present invention.

第1図において,10はCPUおよびメモリなどからなるデ
ータ処理装置,11はFORTRAN言語で記述されたFORTRANプ
ログラムを機械語レベルに翻訳するFORTRANコンパイラ,
12はFORTRANコンパイラ11の翻訳結果として出力される
オブジェクトプログラム,13はオブジェクトプログラム1
2とFORTRANライブラリ等との結合編集を行い,実行形式
であるロードモジュールを生成するリンカ,14はDO形並
びにパラメータ,15は入出力を行うプログラム群からな
る入出力ライブラリを表す。
In FIG. 1, 10 is a data processing device including a CPU and a memory, 11 is a FORTRAN compiler for translating a FORTRAN program described in FORTRAN language into a machine language level,
12 is an object program output as a translation result of FORTRAN compiler 11, 13 is an object program 1
2 is a linker that performs a combined edit of the FORTRAN library and the like and generates a load module as an executable form, 14 denotes a DO type and parameters, and 15 denotes an input / output library comprising a group of programs for input / output.

FORTRANコンパイラ11は,入力したFORTRANプログラム
(図示省略)における入出力文において,DO形並びに検
出したときに,DO形ならびの解析結果に応じて,少なく
とも,配列の次元数と,要素の長さおよび位置情報とを
持つDO形並びにパラメータ14を作成し,そのDO形並びに
パラメータ14を指定して,入出力ライブラリ15を呼び出
すオブジェクトプログラム12を出力するように構成され
る。
The FORTRAN compiler 11 determines at least the number of dimensions of the array, the length of the element, and the length of the element according to the DO form and the analysis result when an input / output statement in the input FORTRAN program (not shown) is detected. An DO program and parameters 14 having position information are created, and the DO program and parameters 14 are designated to output an object program 12 that calls an input / output library 15.

入出力ライブラリ15は,実行時に,オブジェクトプロ
グラム12のロードモジュールから呼び出されると,DO形
並びにパラメータ14を解析し,配列の個数が1個である
か,配列の次元数が2以上であるか,各次元の増加アド
レスが1要素の長さに等しいかなどの最適化条件のチェ
ックを行い,最適化可能である場合に,入出力並びの処
理におけるDOループのネストを削減して,各要素の入出
力を行うようになっている。
When the input / output library 15 is called from the load module of the object program 12 at the time of execution, the input / output library 15 analyzes the DO type and the parameters 14, and determines whether the number of arrays is one, the number of dimensions of the array is two or more, or not. The optimization conditions such as whether the increment address of each dimension is equal to the length of one element are checked, and if optimization is possible, the nest of DO loops in input / output list processing is reduced, and the It performs input and output.

〔作用〕[Action]

従来,FORTRANにおける通常の実行文において,DOルー
プのネストがあった場合,ループアンローリングによっ
て,そのネストを少なくする最適化は行われていた。し
かし,オブジェクトプログラム12から呼び出される入出
力ライブラリ15においては,オブジェクトプログラム12
からのインタフェース情報が充分でなく,また,入出力
ライブラリ15は,あらかじめ固定的に用意されるもので
あるため,ネストの削減はできなかった。
Conventionally, when there is a nest of DO loops in a normal executable statement in FORTRAN, optimization has been performed to reduce the nest by loop unrolling. However, in the input / output library 15 called from the object program 12, the object program 12
The nesting could not be reduced because the interface information from the server was not sufficient and the input / output library 15 was prepared in advance in a fixed manner.

本発明では,オブジェクトプログラム12からのインタ
フェース情報として,DO形並びにパラメータ14を用意
し,これによって,入出力ライブラリ15が,ダイナミッ
クに入出力文におけるDO形並びの最適化処理を行うこと
を可能としている。
In the present invention, a DO type and parameters 14 are prepared as interface information from the object program 12, thereby enabling the input / output library 15 to dynamically optimize the DO type list in the input / output statement. I have.

〔実施例〕〔Example〕

第2図は本発明の一実施例で用いるDO形並びパラメー
タの例,第3図は本発明の一実施例による最適化の例,
第4図は本発明の一実施例による入出力処理の例,第5
図は本発明の一実施例に係るDOループ最適化処理の例を
示す。
FIG. 2 is an example of DO type arrangement parameters used in one embodiment of the present invention, FIG. 3 is an example of optimization according to one embodiment of the present invention,
FIG. 4 is an example of input / output processing according to an embodiment of the present invention, FIG.
The figure shows an example of the DO loop optimization processing according to one embodiment of the present invention.

FORTRANプログラムに,DO形並びに指定する入出力文が
あると,第1図に示すFORTRANコンパイラ11は,第2図
に示すようなDO形並びパラメータ14を作成するオブジェ
クトプログラム12を,翻訳結果として出力する。
If the FORTRAN program includes a DO form and an input / output statement to be specified, the FORTRAN compiler 11 shown in FIG. 1 outputs an object program 12 for creating DO form arrangement parameters 14 as shown in FIG. 2 as a translation result. I do.

DO形並びパラメータ14には,例えば第2図に示すよう
に,パラメータの種別,配列の次元数m,配列の個数n,各
繰り返し回数の値が設定され,また,並びの型,並びの
属性,1要素の長さ,配列要素の先頭要素の番地,各次元
ごとの増加アドレス値などが,配列の個数分設定される
ようになっている。
As shown in FIG. 2, for example, as shown in FIG. 2, the parameter type, the number of array dimensions m, the number of arrays n, and the number of repetitions are set in the DO type list parameter 14, and the type of the list and the attributes of the list are set. , The length of one element, the address of the head element of the array element, the increment address value for each dimension, etc. are set for the number of arrays.

DO形並びパラメータ14は,通常,オブジェクトプログ
ラム12が動的に作成するが,値が決まっていれば,デー
タ域に静的に設けるようにしてもよい。
Normally, the DO type list parameter 14 is dynamically created by the object program 12, but may be statically provided in the data area if the value is determined.

例えば,第3図(イ)に示すようなFORTRANプログラ
ム20のREAD文の場合,第2図に示すDO形並びパラメータ
14に設定される値は,次のようになる。
For example, in the case of a READ statement of FORTRAN program 20 as shown in FIG.
The value set to 14 is as follows:

パラメータの種別 =DO形並びパラメータ 配列の次元数(m)=3 配列の個数 (n)=1 繰り返し回数1 =3 繰り返し回数2 =5 繰り返し回数3 =5 並びの型 =REAL*4 増加アドレス値1 =8 増加アドレス値2 =4 増加アドレス値3 =4 1要素の長さ =4 入出力文の処理におけるDOループ最適化の条件は,以
下のとおりである。
Parameter type = DO type list parameter Number of array dimensions (m) = 3 Number of arrays (n) = 1 Number of repetitions 1 = 3 Number of repetitions 2 = 5 Number of repetitions 3 = 5 Type of array = REAL * 4 Increased address value 1 = 8 Increased address value 2 = 4 Increased address value 3 = 4 Length of one element = 4 The conditions for DO loop optimization in processing input / output statements are as follows.

配列の個数=1かつ 配列の次元数≧2かつ 増加アドレスi=……=増加アドレスi =1要素の長さ (ただし1≦i<jでiからjは連続した整数) 第3図(イ)に示すREAD文では,配列変数のJとK
が,この最適化条件に合致し,1つの次元に統合できる。
すなわち,A(I,J,K)の3次元配列を,図示のようにA
(I,L)の2次元配列のように扱うことができ,ループ
のネストを3重から2重にする。
Number of arrays = 1 and number of array dimensions ≧ 2 and increasing address i =... = Increasing address i = 1 element length (where 1 ≦ i <j and successive integers from i to j) FIG. In the READ statement shown in parentheses), the array variables J and K
Satisfies this optimization condition and can be integrated into one dimension.
That is, the three-dimensional array of A (I, J, K) is
It can be handled like a two-dimensional array of (I, L), and the nest of loops is changed from triple to double.

第3図(ロ)は,A(I,J,K)の3次元配列のデータ領
域を示しており,第3図(ハ)は,A(I,L)の2次元配
列のデータ領域を示している。第3図(イ)に示すREAD
文による入出力要素は,第3図(ロ),(ハ)におい
て,○印で示しているが,変数JとKとをLに統合して
も,図から明らかなように,入出力要素の領域は同じで
ある。Lの繰り返し回数は,JとKの繰り返し回数を掛け
合わせたものとなる。
FIG. 3 (b) shows the data area of the three-dimensional array of A (I, J, K), and FIG. 3 (c) shows the data area of the two-dimensional array of A (I, L). Is shown. READ shown in Fig. 3 (a)
The input / output elements based on the sentence are indicated by circles in FIGS. 3 (b) and 3 (c). However, even if the variables J and K are integrated into L, as shown in FIG. Are the same. The number of repetitions of L is obtained by multiplying the number of repetitions of J and K.

第4図(イ)は,第3図(イ)と同じFORTRANプログ
ラム20を示しているが,本発明により最適化を行うと,
入出力ライブラリ15における入出力処理は,第4図
(ロ)図示のように行われる。すなわち,I,J,Kによる3
重のループが,1I,Lによる2重のループに削減され,繰
り返し回数の判定処理が削減される。そのため,処理が
高速になる。また,この処理は,入出力ライブラリ15に
おいて行われるため,オブジェクトプログラム12側の処
理負担が軽減される。
FIG. 4 (a) shows the same FORTRAN program 20 as in FIG. 3 (a).
The input / output processing in the input / output library 15 is performed as shown in FIG. That is, I, J, K
The double loop is reduced to a double loop by 1I, L, and the process of determining the number of repetitions is reduced. Therefore, the processing speed is increased. Since this processing is performed in the input / output library 15, the processing load on the object program 12 is reduced.

第5図は,第1図に示す入出力ライブラリ15における
DOループ最適化処理の例を示している。以下の説明にお
ける〜は,第5図に示す処理〜に対応する。な
お,処理に入る前に,入出力ライブラリ15では,パラ
メータがDO形並びであるかどうかを判定し,DO形並びで
ない場合には,従来通り,1要素ずつの入出力処理を行
う。また,配列処理が可能であるかどうかを判定し,配
列処理可能である場合には,配列処理化による最適化処
理を行う。配列処理可能でない場合に,次のDOループの
最適化のチェックに移る。
FIG. 5 shows the input / output library 15 shown in FIG.
9 shows an example of DO loop optimization processing. In the following description, 〜 corresponds to the process 示 す shown in FIG. Before starting the processing, the input / output library 15 determines whether or not the parameters are in the DO form list. If the parameters are not in the DO form list, the input / output processing is performed for each element as before. Also, it is determined whether or not array processing is possible. If array processing is possible, optimization processing by array processing is performed. Moves to the next DO loop optimization check if array processing is not possible.

まず,DOループ最適化可能かどうかを調べるため
に,配列の個数が1であるかどうか判定する。2以上の
場合,DOループ最適化不可とし,従来通りの入出力処理
を行う。
First, it is determined whether the number of arrays is 1 to check whether DO loop optimization is possible. If the value is 2 or more, DO loop optimization cannot be performed, and input / output processing is performed as usual.

配列の個数が1である場合,配列の次元数が2以上
であるかどうかを判定する。2以上でない場合,ネスト
の削減はできないので,DOループ最適化不可とする。
If the number of arrays is one, it is determined whether the number of dimensions of the array is two or more. If it is not more than 2, the nest cannot be reduced, so DO loop optimization cannot be performed.

配列の次元数が2以上である場合,次に各次元の増
加アドレスが,入出力並びの1要素の長さと等しい次元
を探し,その中で連続した複数の次元を見つける。
If the number of dimensions of the array is two or more, next, a search is made for a dimension whose increasing address is equal to the length of one element in the input / output list, and a plurality of continuous dimensions are found.

増加アドレスが1要素の長さに等しい連続した複数
の次元が見つからなかった場合,DOループ最適化不可と
する。
If a plurality of continuous dimensions whose increment address is equal to the length of one element are not found, DO loop optimization cannot be performed.

最適化が可能である場合,入出力並びの1要素の長
さと等しい連続した複数の次元を,1つの次元とする。連
続個所が複数である場合には,それぞれまとめる。そし
て,繰り返し回数および次元数を新たに求める。繰り返
し回数は,統合した各次元の繰り返し回数を掛け合わせ
たものとする。例えば,次のような6次元配列があった
場合, 1要素の長さ=4 1次元の増加アドレス=4 2次元の増加アドレス=4 3次元の増加アドレス=8 4次元の増加アドレス=4 5次元の増加アドレス=4 6次元の増加アドレス=4 1次元と2次元,および4次元と5次元と6次元と
が,それぞれ統合の対象となる。
When optimization is possible, a continuous dimension equal to the length of one element in the input / output list is defined as one dimension. If there is more than one continuous part, put them together. Then, the number of repetitions and the number of dimensions are newly obtained. The number of repetitions is obtained by multiplying the number of repetitions of each integrated dimension. For example, if there is the following six-dimensional array, the length of one element = 4 The one-dimensional increment address = 4 The two-dimensional increment address = 4 The three-dimensional increment address = 8 The four-dimensional increment address = 45 Increased address of dimension = 46 Increased address of 6 dimension = 4 One, two, and four, five, and six dimensions are targets of integration, respectively.

次元数を減らした入出力並び情報をもとに,1要素ず
つの入出力処理を行う。
Input / output processing is performed for each element based on the input / output list information with the reduced number of dimensions.

〔発明の効果〕〔The invention's effect〕

以上説明したように,本発明によれば,入出力文に複
数の次元のDO形並びが現れた場合に,所定の条件のもと
に入出力ライブラリにおけるDOループのネストが削減さ
れるので,FORTRANプログラムによる入出力処理の性能が
向上する。
As described above, according to the present invention, when a DO form list having a plurality of dimensions appears in an input / output statement, the nest of DO loops in the input / output library is reduced under a predetermined condition. The performance of input / output processing by FORTRAN programs is improved.

【図面の簡単な説明】[Brief description of the drawings]

第1図は本発明の構成例, 第2図は本発明の一実施例で用いるDO形並びパラメータ
の例, 第3図は本発明の一実施例による最適化の例, 第4図は本発明の一実施例による入出力処理の例, 第5図は本発明の一実施例に係るDOループ最適化処理の
例, 第6図は従来技術の例を示す。 図中,10はデータ処理装置,11はFORTRANコンパイラ,12は
オブジェクトプログラム,13はリンカ,14はDO形並びパラ
メータ,15は入出力ライブラリを表す。
FIG. 1 is a configuration example of the present invention, FIG. 2 is an example of DO type arrangement parameters used in an embodiment of the present invention, FIG. 3 is an example of optimization according to an embodiment of the present invention, and FIG. FIG. 5 shows an example of input / output processing according to an embodiment of the present invention, FIG. 5 shows an example of DO loop optimization processing according to an embodiment of the present invention, and FIG. In the figure, 10 is a data processing device, 11 is a FORTRAN compiler, 12 is an object program, 13 is a linker, 14 is a DO type arrangement parameter, and 15 is an input / output library.

Claims (1)

(57)【特許請求の範囲】(57) [Claims] 【請求項1】FORTRANプログラムの入出力文で指定され
た入出力要素の並びが配列形式で繰り返すものである場
合に,少なくともその入出力要素に関する配列の次元数
と,各次元ごとの入出力要素繰り返し情報とを持つパラ
メータを作成する手段と, 前記パラメータを指定して,入出力処理を実行する入出
力ライブラリを呼び出す手段と, 呼び出された入出力ライブラリにおいて,呼び出し元か
ら指定されたパラメータを解析し,そのパラメータで指
定された入出力要素の配列の次元数が2以上である場合
に,複数の次元を1つの次元にまとめることができるか
どうかの最適化条件をチェックし,最適化条件を満足す
るときに複数の次元を1つの次元にまとめることによ
り,各入出力要素に対して入出力処理を繰り返して行う
ためのループのネストを削減し,要求された入出力処理
を実行する手段とを備えた ことを特徴とする入出力ライブラリにおけるDOループ最
適化処理方式。
When the sequence of input / output elements specified in an input / output statement of a FORTRAN program is repeated in an array format, at least the number of dimensions of the array relating to the input / output elements and the input / output elements for each dimension Means for creating a parameter having repetition information; means for calling the input / output library for executing the input / output processing by designating the parameter; and analyzing the parameter specified by the caller in the called input / output library. If the number of dimensions of the array of input / output elements specified by the parameter is 2 or more, check the optimization conditions to see if multiple dimensions can be combined into one dimension, and By combining multiple dimensions into one dimension when satisfied, a loop for repeating input / output processing for each input / output element Reduce the door, DO loop optimization processing method in the input-output library comprising the means for performing the requested input and output processing.
JP1011113A 1989-01-20 1989-01-20 DO loop optimization processing method for input / output library Expired - Fee Related JP2585780B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP1011113A JP2585780B2 (en) 1989-01-20 1989-01-20 DO loop optimization processing method for input / output library

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP1011113A JP2585780B2 (en) 1989-01-20 1989-01-20 DO loop optimization processing method for input / output library

Publications (2)

Publication Number Publication Date
JPH02191040A JPH02191040A (en) 1990-07-26
JP2585780B2 true JP2585780B2 (en) 1997-02-26

Family

ID=11768955

Family Applications (1)

Application Number Title Priority Date Filing Date
JP1011113A Expired - Fee Related JP2585780B2 (en) 1989-01-20 1989-01-20 DO loop optimization processing method for input / output library

Country Status (1)

Country Link
JP (1) JP2585780B2 (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH08234996A (en) * 1995-02-28 1996-09-13 Nec Software Ltd Generation method for fortran execution program including input/output message lacking format of structure type data

Also Published As

Publication number Publication date
JPH02191040A (en) 1990-07-26

Similar Documents

Publication Publication Date Title
Aho et al. On finding lowest common ancestors in trees
US20060206869A1 (en) Methods and systems for developing data flow programs
JPH06502941A (en) System of high-level virtual computers with heterogeneous operating systems
US5396627A (en) Method of producing object program based on interprocedural dataflow analysis of a source program
CN111860816A (en) Compiling method, device, equipment and storage medium of neural network model
US8752056B2 (en) Running native code across single or multi-core hybrid processor achitecture
JP2585780B2 (en) DO loop optimization processing method for input / output library
JP3102030B2 (en) Program creation device
US11386155B2 (en) Filter evaluation in a database system
JPH02116930A (en) Array processing system in input/output library
JP3887097B2 (en) COMPILING METHOD, COMPILING DEVICE, AND COMPUTER-READABLE STORAGE MEDIUM CONTAINING COMPILING PROGRAM
Khalfallah et al. Enhancing monitoring queries invoking composition of services
US20230237097A1 (en) Information processing device, information processing method, and recording medium
JP3300388B2 (en) Parallel process generation method
Kato et al. A Comprehension-Based Database Language and Its Distributed Execution.
JP3233467B2 (en) Program conversion method and apparatus
JPS63148372A (en) Program conversion device
JPH05265776A (en) Method for visualizing parallel execution process
JPS6297031A (en) Matching system for bit number of mantissa part
JPH04287121A (en) Tuple space system
JP3156343B2 (en) Data dependency information processing method
Mattson Portable programs for parallel computers using STRAND/sup 88
JPH02222038A (en) Processing system for fortran input/output list
JPS5846439A (en) Program editing method of computer
JPH0675757A (en) Link system for virtual space resident program

Legal Events

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