JPH0776928B2 - USE procedure processing method in COBOL compiler - Google Patents

USE procedure processing method in COBOL compiler

Info

Publication number
JPH0776928B2
JPH0776928B2 JP62103970A JP10397087A JPH0776928B2 JP H0776928 B2 JPH0776928 B2 JP H0776928B2 JP 62103970 A JP62103970 A JP 62103970A JP 10397087 A JP10397087 A JP 10397087A JP H0776928 B2 JPH0776928 B2 JP H0776928B2
Authority
JP
Japan
Prior art keywords
instruction
use procedure
procedure
perform
library
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
JP62103970A
Other languages
Japanese (ja)
Other versions
JPS63269230A (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 JP62103970A priority Critical patent/JPH0776928B2/en
Publication of JPS63269230A publication Critical patent/JPS63269230A/en
Publication of JPH0776928B2 publication Critical patent/JPH0776928B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Description

【発明の詳細な説明】 〔概要〕 COBOLソースプログラムにおけるUSE手続きのオブジェク
ト展開で,第1の入口と第2の入口の2種の入口を設け
ると共に,これらの各入口に対応して,それぞれジャン
プ命令による復帰,リターン命令による復帰を行う命令
展開をすることにより,エラー出口として利用されるUS
E手続きを,PERFORM命令からも参照することを可能にし
ている。
[Detailed Description of the Invention] [Outline] In the object expansion of the USE procedure in the COBOL source program, two types of entrances, a first entrance and a second entrance, are provided, and jumps are made corresponding to these entrances, respectively. US used as an error exit by expanding instructions that perform return by instruction and return by return instruction
The E procedure can be referred to from the PERFORM command.

〔産業上の利用分野〕[Industrial application field]

本発明は,計算機言語の1つであるCOBOL言語におけるU
SE手続きを,PERFORM命令から参照可能にしたCOBOLコン
パイラにおけるUSE手続き処理方法に関するものであ
る。
The present invention is a U in the COBOL language, which is one of the computer languages.
It relates to the USE procedure processing method in the COBOL compiler that makes it possible to refer to the SE procedure from the PERFORM instruction.

〔従来の技術〕[Conventional technology]

第4図は従来のUSEオブジェクト展開説明図,第5図はP
ERFORM命令説明図,第6図は従来のPERFORM実行論理説
明図である。
Fig. 4 is an explanatory diagram of conventional USE object expansion, and Fig. 5 is P
FIG. 6 is an explanatory diagram of the ERFORM instruction, and FIG. 6 is an explanatory diagram of a conventional PERFORM execution logic.

COBOL言語では,入出力命令(OPEN,READ,WRITE,REWRITE
およびDELETE命令)において,エラーが発生したときの
処理手続きをUSE命令を用いて定義することができる。
In the COBOL language, I / O commands (OPEN, READ, WRITE, REWRITE
And DELETE command), the processing procedure when an error occurs can be defined using the USE command.

第4図に示すように,USE手続きU1は,入出力処理を行う
ライブラリ30から,コール(CALL)命令で呼ばれること
を考慮して,USE手続きのオブジェクト展開の終了時に
は,呼び出し元へ制御を戻すためのリターン(RET)命
令を展開しなければならない。
As shown in FIG. 4, the USE procedure U1 returns control to the caller at the end of the object expansion of the USE procedure, considering that it is called by the call (CALL) instruction from the library 30 that performs input / output processing. You must expand the return (RET) instruction for.

ところで,従来のオブジェクト展開形式では,PERFORM命
令で「USE手続き」を呼ぶことはできなかった。これは,
PERFORM命令で対象とする手続きの出口に,RET命令が展
開されていると困るからである。
By the way, in the conventional object expansion format, it was not possible to call the "USE procedure" with the PERFORM instruction. this is,
This is because it is a problem if the RET instruction is expanded at the exit of the procedure targeted by the PERFORM instruction.

その理由について,第5図を参照して説明する。PERFOR
M命令は,一般に第5図に示す(1),(2)のように
使用される。
The reason will be described with reference to FIG. PERFOR
The M instruction is generally used as shown in (1) and (2) of FIG.

このPERFORM命令を,CALL命令を用いてオブジェクト展開
を行うとすると,PERFORM命令の出口では,制御を戻すた
めのRET命令が展開されていなければならない。第5図
では,手続きBの出口(3)と,手続きCの出口(4)
で,RET命令を展開する必要がある。
If the CALL command is used for object expansion of this PERFORM command, the RET command for returning control must be expanded at the exit of the PERFORM command. In FIG. 5, the procedure B exit (3) and the procedure C exit (4)
Then, it is necessary to expand the RET instruction.

ここで,第5図(1)のソースプログラム上のPERFORM
命令の記述による実行時の動作を考えてみる。まず,手
続きAにCALL命令により制御が渡る。その後,手続きB
を実行し,手続きBの出口(3)で,RET命令によって制
御が戻されてしまう。従って,次に必要な手続きCの処
理は行われないことになる。
Here, PERFORM on the source program of Fig. 5 (1)
Consider the operation at the time of execution by describing the instruction. First, control is transferred to procedure A by the CALL command. After that, procedure B
Is executed, and control is returned by the RET instruction at the exit (3) of procedure B. Therefore, the process of the next required procedure C is not performed.

この例からわかるように,結論としてPERFORM命令のオ
ブジェクト展開をCALL命令を用いて行うことはできな
い。
As can be seen from this example, the conclusion is that the PERFORM instruction cannot be expanded using the CALL instruction.

実際のPERFORM命令の展開形式は,第6図に示す実行論
理を実現するようになっている。
The actual expansion format of the PERFORM instruction is adapted to realize the execution logic shown in FIG.

COBOLコンパイラは,PERFORM命令の出口となる手続き名
に対して,1つずつ復帰アドレス域41を用意する。なお,
復帰アドレス域41の初期値は,次の命令のアドレス,即
ち,この例では,手続き名P2の命令のアドレスとする。
そして,以下の〜のような実行論理を実現するオブ
ジェクト展開を行う。
The COBOL compiler prepares a return address area 41 for each procedure name that is the exit of the PERFORM instruction. In addition,
The initial value of the return address area 41 is the address of the next instruction, that is, the address of the instruction of the procedure name P2 in this example.
Then, object expansion that realizes the following execution logic is performed.

まず,手続きの出口に対応した復帰アドレス域41の
内容を,そのPERFORM命令に対応する復帰アドレス退避
域40に退避する。
First, the contents of the return address area 41 corresponding to the exit of the procedure are saved in the return address save area 40 corresponding to the PERFORM instruction.

復帰アドレス域41に,復帰アドレス(PERFORM命令
のオブジェクト中の処理のアドレス)を設定する。
The return address (the address of the process in the object of the PERFORM instruction) is set in the return address area 41.

ジャンプ(JMP)命令により,手続き名P1に制御を
移す。
The jump (JMP) instruction transfers control to procedure name P1.

P1の手続き命令を実行する。 Executes the P1 procedure instruction.

ジャンプ命令により,復帰アドレス域41に設定され
ている復帰アドレスに制御を移す。
The jump instruction transfers control to the return address set in the return address area 41.

復帰アドレス退避域40に設定されている内容を,復
帰アドレス域41に復元する。
The contents set in the return address save area 40 are restored in the return address area 41.

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

以上のように,PERFORM命令のオブジェクト展開を,CALL
命令を用いて行うことができないため,従来方式によれ
ば,RET命令で制御を戻すUSE手続きを,PERFORM命令で参
照することはできない。そのため,エラーが発生したと
きに行うメッセージ出力やその他のUSE手続きによる処
理手続きを,通常の動作時にPERFORM命令によって使用
することはできないという問題があった。
As described above, the object expansion of the PERFORM instruction is
According to the conventional method, the USE procedure that returns control with the RET instruction cannot be referenced with the PERFORM instruction because it cannot be performed with an instruction. Therefore, there is a problem that the message output performed when an error occurs and other processing procedures by the USE procedure cannot be used by the PERFORM instruction during normal operation.

USE手続きをPERFORM命令で参照して,使用することがで
きれば,エラー処理に関連して同じ処理が必要な場合
に,重複した処理の記述をなくし,変更が容易な統一し
たエラー処理等を実現できると考えられる。
If the USE procedure can be used by referring to the PERFORM command, when the same processing is required in relation to error processing, duplicated processing description can be eliminated and unified error processing that can be easily changed can be realized. it is conceivable that.

本発明は上記問題点の解決を図り,入出力処理を行うラ
イブラリ等は従来同様変更することなく,PERFORM命令
で,USE手続きを呼ぶことができる手段を提供することを
目的としている。
It is an object of the present invention to solve the above problems and to provide a means for calling a USE procedure with a PERFORM instruction without changing the library for input / output processing as in the conventional case.

〔問題点を解決するための手段〕[Means for solving problems]

第1図は本発明の原理説明図である。 FIG. 1 is an explanatory view of the principle of the present invention.

第1図において,10はCOBOL言語で記述されたCOBOLソー
スプログラム,11はCPUおよびメモリなどからなる処理装
置,12はCOBOLソースプログラム10を機械語コードに変換
するCOBOLコンパイラ,13は文法上のエラーチェック等を
行い中間テキストを生成する構文解析部,14は構文解析
結果による内部コードで表現された中間テキスト,15は
コード生成を行うオブジェクト展開部,16はコンパイル
結果であるオブジェクトプログラムを表す。
In Fig. 1, 10 is a COBOL source program written in COBOL, 11 is a processing unit consisting of a CPU and memory, 12 is a COBOL compiler that converts the COBOL source program 10 into machine language code, and 13 is a grammatical error. A parsing unit for generating an intermediate text by performing a check or the like, 14 is an intermediate text represented by an internal code based on a result of the parsing, 15 is an object expanding unit for generating a code, and 16 is an object program as a compilation result.

COBOLソースプログラム10中のS1,S2は,USE手続きの定義
文である。ここで,呼び出しの条件等を指定することが
できる。U1,U2は,それぞれS1,S2で指定された条件のエ
ラーが発生したときに,ライブラリ(図示省略)から呼
び出されて実行されるUSE手続きである。S3は,PERFORM
命令である。
S1 and S2 in the COBOL source program 10 are definition statements of the USE procedure. Here, the calling condition and the like can be specified. U1 and U2 are USE procedures that are called from a library (not shown) and executed when an error of the conditions specified by S1 and S2 occurs. S3 is PERFORM
It is an instruction.

構文解析部13は,COBOLソースプログラム10を入力し,文
法エラー等のチェックを行って,結果を中間テキスト14
として出力する。オブジェクト展開部15は,中間テキス
ト14を入力し,特に,USE手続きについて,第1図に示す
ようなオブジェクトプログラム16を生成する。
The syntactic analysis unit 13 inputs the COBOL source program 10, checks for grammatical errors, etc., and outputs the result to the intermediate text 14
Output as. The object expansion unit 15 inputs the intermediate text 14 and generates an object program 16 as shown in FIG. 1 particularly for the USE procedure.

オブジェクトプログラム16において,E11,E21は,PERFORM
命令からの入口,E12,E22は,入出力処理を行うライブラ
リからの入口である。本発明では,このように各USE手
続きについて,2つの入口が設けられる。
In the object program 16, E11 and E21 are PERFORM
Instruction entry ports E12 and E22 are entry points from the library that performs input / output processing. In the present invention, two entrances are thus provided for each USE procedure.

OB1,OB2は,それぞれAのUSE手続きおよびBのUSE手続
きのオブジェクト本体である。第1のAの入口E11に対
して,AのUSE手続きOB1の実行後,ジャンプ(JMP)命令i
11により制御が戻され,第2のA′の入口E12に対して,
AのUSE手続きOB1の実行後,最終的にリターン(RET)命
令i12により呼び出し元へ制御が戻される。BのUSE手続
きOB2についても同様である。
OB1 and OB2 are object bodies of the A USE procedure and the B USE procedure, respectively. After executing A's USE procedure OB1 for the first A entrance E11, a jump (JMP) instruction i
Control is returned by 11 to the second E'inlet E12,
After execution of the USE procedure OB1 of A, control is finally returned to the caller by the return (RET) instruction i12. The same applies to B's USE procedure OB2.

20a,20bは,各USE手続きに対応して設けられるUSE復帰
アドレス域であり,USE手続きの分岐制御に用いられる。
21a,21bは,USE復帰アドレス退避域であり,USE復帰アド
レスの退避領域として用いられる。
20a and 20b are USE return address areas provided for each USE procedure, and are used for branch control of the USE procedure.
21a and 21b are USE return address save areas, which are used as USE return address save areas.

〔作用〕[Action]

本発明によるUSE手続きのオブジェクト展開によれば,PE
RFORM命令からUSE手続きOB1を参照する場合,第1の入
口E11へ制御を移行するようにされ,JMP命令i11によって
制御が戻される。一方,入出力処理を行うライブラリか
らの呼び出しでは,RET命令により復帰する必要があるた
め,ライブラリから第2の入口E12へ制御を移行するよ
うにされ,最終的にRET命令i12によって,呼び出し元で
あるライブラリへ制御が戻される。従って,ライブラリ
およびPERFORM命令の双方から,USE手続きを共通に参照
することが可能になる。
According to the object expansion of the USE procedure according to the present invention, PE
When referring to the USE procedure OB1 from the RFORM instruction, control is transferred to the first entrance E11, and the control is returned by the JMP instruction i11. On the other hand, when calling from the library that performs input / output processing, it is necessary to return by the RET instruction, so control is transferred from the library to the second entrance E12, and finally by the RET instruction i12, the calling source Control is returned to a library. Therefore, the USE procedure can be commonly referenced from both the library and the PERFORM instruction.

〔実施例〕〔Example〕

第2図および第3図は本発明の一実施例に係るUSE手続
きの実行論理を説明するための図である。
2 and 3 are diagrams for explaining the execution logic of the USE procedure according to the embodiment of the present invention.

以下,第1図に示すオブジェクト展開部15によって生成
されたUSE手続きに関するオブジェクトプログラム16の
処理について,第2図および第3図を参照して説明す
る。
The processing of the object program 16 relating to the USE procedure generated by the object expanding unit 15 shown in FIG. 1 will be described below with reference to FIGS. 2 and 3.

第2図は,ライブラリ30からUSE手続きがCALL命令で呼
び出される例を示している。
FIG. 2 shows an example in which the USE procedure is called by the CALL instruction from the library 30.

OPEN,READ,WRITE,REWRITEおよびDELETE命令などの入出
力命令を処理するライブラリ30では,エラーが発生した
ときに,プログラム内で定義されたUSE手続きをCALL命
令によって呼び出すようになっている。以下,第2図に
示す番号〜に従って説明する。
In the library 30 that processes input / output instructions such as OPEN, READ, WRITE, REWRITE and DELETE instructions, when an error occurs, the USE procedure defined in the program is called by the CALL instruction. Hereinafter, the description will be given according to the numbers 1 to 3 shown in FIG.

ライブラリのCALL命令による制御移行先は,USE手続
きの第2の入口であり,例えばOPEN命令のエラー処理と
して,AのUSE手続きOB1が指定されていると,その第2の
入口A′に制御が渡る。
The control transfer destination by the CALL instruction of the library is the second entrance of the USE procedure. For example, if the USE procedure OB1 of A is specified as the error processing of the OPEN instruction, the control is executed at the second entrance A '. Cross

USE手続きに対応して設けられるUSE復帰アドレス域
20aには,初期値として,PERFORM命令によるUSE手続き等
の連続実行のため,ソースプログラム上におけるUSE手
続き終了の次の命令アドレス,即ち,ここではBのUSE
手続きOB2の先頭アドレスが設定されている。このUSE復
帰アドレスを,USE復帰アドレス退避域21aに退避する。
USE return address area provided for USE procedure
In 20a, as the initial value, since the USE procedure by the PERFORM instruction is continuously executed, the instruction address next to the end of the USE procedure on the source program, that is, the USE of B in this case.
The start address of procedure OB2 is set. This USE return address is saved in the USE return address save area 21a.

処理に復帰するための図示αのアドレスを,USE復
帰アドレス域20aに設定する。
The address indicated by α for returning to the processing is set in the USE return address area 20a.

JMP命令により,AのUSE手続きOB1の処理に分岐し,US
E手続きの処理を実行する。
JMP instruction branches to USE procedure OB1 of A, and US
E Perform procedure processing.

USE手続きの処理実行後,JMP命令により,USE復帰ア
ドレス域20aの内容(α)に分岐する。
After the execution of the USE procedure, a JMP instruction is used to branch to the contents (α) of the USE return address area 20a.

USE復帰アドレス退避域21aの値を,USE復帰アドレス
域20aに転記して,復帰アドレスを復元する。
The value of the USE return address save area 21a is transferred to the USE return address area 20a to restore the return address.

RET命令により,ライブラリ30に復帰する。 The RET instruction returns to the library 30.

第3図は,PERFORM命令により,AのUSE手続きおよびBのU
SE手続きが,連続的に通して参照される例を示してい
る。PERFORM命令からは,USE手続きに対し,JMP命令によ
って分岐する。以下,第3図に示す番号〜に従って
説明する。
Figure 3 shows the USE procedure of A and the U of B by the PERFORM command.
It shows an example where SE procedures are referenced continuously. The PERFORM instruction branches to the USE procedure with the JMP instruction. Hereinafter, the description will be given according to the numbers 1 to 3 shown in FIG.

「PERFORM A THROUGH B.」の命令のオブジェクト
では,まず,最終に実行されるBのUSE手続き用に設け
られたUSE復帰アドレス域20bの内容を,このPERFORM命
令用の復帰アドレス退避域40に退避する。なお,USE復帰
アドレス域20bには,初期値として,次の命令のアドレ
ス(Cのアドレス)が設定されている。
In the object of the instruction of "PERFORM A THROUGH B.", first, the contents of the USE return address area 20b provided for the USE procedure of B finally executed are saved in the return address save area 40 for this PERFORM instruction. To do. In the USE return address area 20b, the address of the next instruction (address of C) is set as an initial value.

USE復帰アドレス域20bに,処理の先頭アドレス
(β)を,復帰アドレスとして設定する。
The start address (β) of the process is set as the return address in the USE return address area 20b.

JMP命令により,第1の入口Aに分岐し,AのUSE手続
きOB1の処理を行う。
The JMP instruction branches to the first entrance A and performs the USE procedure OB1 of A.

USE復帰アドレス域20aの初期値として設定されてい
るアドレス,即ち,次のBのUSE手続きの先頭アドレス
に分岐し,BのUSE手続きOB2の処理を行う。
The process branches to the address set as the initial value of the USE return address area 20a, that is, the start address of the next B USE procedure, and the B USE procedure OB2 is processed.

USE復帰アドレス域20bに設定されているアドレス
(βの位置)に分岐する。
Branches to the address (β position) set in the USE return address area 20b.

復帰アドレス退避域40に退避されている値を,USE復
帰アドレス域20bに転記し,復元する。
The value saved in the return address save area 40 is copied and restored in the USE return address area 20b.

第2図および第3図の例からわかるように,ライブラリ
からUSE手続きを呼び出した場合にも,PERFORM命令からU
SE手続きを呼び出した場合にも,それぞれ共通のUSE手
続きの処理を行うことができ,それぞれRET命令,JMP命
令によって,呼び出し元へ制御を戻すことができる。
As can be seen from the examples in Figs. 2 and 3, even when the USE procedure is called from the library, the U
Even when the SE procedure is called, the processing of the common USE procedure can be performed, and control can be returned to the caller by the RET and JMP instructions, respectively.

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

以上説明したように,本発明によれば,USE手続きをライ
ブラリおよびPERFORM命令のどちらからも参照すること
ができ,COBOLソースプログラムの記述を簡単化すること
ができる。また,エラー発生に関連する処理の変更も容
易になると共に,重複するプログラムを削除することが
できるので,オブジェクトプログラムの縮小化が可能と
なる。
As described above, according to the present invention, the USE procedure can be referenced from both the library and the PERFORM instruction, and the description of the COBOL source program can be simplified. In addition, it becomes easy to change the processing related to the error occurrence, and since the duplicated programs can be deleted, the object program can be downsized.

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

第1図は本発明の原理説明図,第2図および第3図は本
発明の一実施例に係るUSE手続きの実行論理を説明する
ための図,第4図は従来のUSEオブジェクト展開説明
図,第5図はPERFORM命令説明図,第6図は従来のPERFO
RM実行論理説明図である。 図中,10はCOBOLソースプログラム,11は処理装置,12はCO
BOLコンパイラ,13は構文解析部,14は中間テキスト,15は
オブジェクト展開部,16はオブジェクトプログラム,E11,
E21は第1の入口,E12,E22は第2の入口,i11,i21はジャ
ンプ命令,i12,i22はリターン命令,20a,20bはUSE復帰ア
ドレス域,21a,21bはUSE復帰アドレス退避域を表す。
FIG. 1 is a diagram for explaining the principle of the present invention, FIGS. 2 and 3 are diagrams for explaining the execution logic of a USE procedure according to an embodiment of the present invention, and FIG. 4 is a diagram for explaining a conventional USE object expansion. , Fig. 5 is an explanatory diagram of the PERFORM instruction, and Fig. 6 is a conventional PERFO.
It is an RM execution logic explanatory view. In the figure, 10 is a COBOL source program, 11 is a processing unit, and 12 is a CO.
BOL compiler, 13 is syntactic analysis part, 14 is intermediate text, 15 is object expansion part, 16 is object program, E11,
E21 is the first entrance, E12 and E22 are the second entrance, i11 and i21 are jump instructions, i12 and i22 are return instructions, 20a and 20b are USE return address areas, and 21a and 21b are USE return address save areas. .

Claims (1)

【特許請求の範囲】[Claims] 【請求項1】COBOLソースプログラム(10)をオブジェ
クトプログラム(16)に翻訳するCOBOLコンパイラ(1
2)におけるUSE手続き処理方法において, USE手続きのオブジェクト展開にあたって,PERFORM命令
のオブジェクト展開におけるジャンプ命令で呼び出され
る第1の入口(E11,E12)と,入出力処理を行うライブ
ラリからコール命令で呼び出される第2の入口(E12,E2
2)とを設けると共に, USE手続き本体部の後にUSE手続きに対応して設けられる
所定の復帰アドレス域(20a,20b)に設定されているア
ドレスへのジャンプ命令(i11,i21)を設け, ライブラリからの上記第2の入口への制御移行に対し
て,上記復帰アドレス域(20a,20b)に,リターン命令
(i12,i22)を含む復帰用処理部のアドレスを設定した
後,USE手続きの本体部へジャンプし,USE手続きの実行終
了時にはリターン命令(i12,i22)によって呼び出し元
のライブラリへ復帰し, PERFORM命令からの上記第1の入口への制御移行に対し
ては,あらかじめ上記復帰アドレス域(20a,20b)に設
定されているアドレスにジャンプ命令(i11,i21)によ
って復帰するオブジェクト展開を行い, USE手続きをライブラリおよびPERFORM命令のいずれから
も参照可能にしたことを特徴とするCOBOLコンパイラに
おけるUSE手続き処理方法。
1. A COBOL compiler (1 that translates a COBOL source program (10) into an object program (16)
In the USE procedure processing method in 2), in the object expansion of the USE procedure, the first entrance (E11, E12) called by the jump instruction in the object expansion of the PERFORM instruction and the call instruction from the library that performs the input / output processing are called. Second entrance (E12, E2
2) and a jump instruction (i11, i21) to the address set in the specified return address area (20a, 20b) provided corresponding to the USE procedure after the main body of the USE procedure. For the control transfer from the above to the second entrance, after setting the address of the restoration processing unit including the return instruction (i12, i22) in the restoration address area (20a, 20b), the main body of the USE procedure To the caller library by returning to the calling source library by the return instruction (i12, i22) at the end of the execution of the USE procedure, and the return address area is previously set for the control transfer from the PERFORM instruction to the first entrance. The object is expanded by returning to the address set in (20a, 20b) by a jump instruction (i11, i21), and the USE procedure can be referenced from both the library and the PERFORM instruction. USE procedure processing method in a COBOL compiler.
JP62103970A 1987-04-27 1987-04-27 USE procedure processing method in COBOL compiler Expired - Fee Related JPH0776928B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP62103970A JPH0776928B2 (en) 1987-04-27 1987-04-27 USE procedure processing method in COBOL compiler

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP62103970A JPH0776928B2 (en) 1987-04-27 1987-04-27 USE procedure processing method in COBOL compiler

Publications (2)

Publication Number Publication Date
JPS63269230A JPS63269230A (en) 1988-11-07
JPH0776928B2 true JPH0776928B2 (en) 1995-08-16

Family

ID=14368202

Family Applications (1)

Application Number Title Priority Date Filing Date
JP62103970A Expired - Fee Related JPH0776928B2 (en) 1987-04-27 1987-04-27 USE procedure processing method in COBOL compiler

Country Status (1)

Country Link
JP (1) JPH0776928B2 (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP5845788B2 (en) * 2011-09-30 2016-01-20 富士通株式会社 Execution control program, execution control apparatus, and execution control method

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS6324422A (en) * 1986-07-17 1988-02-01 Nec Corp Coexistence system for more than two kinds of access procedures in segment system computer

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS6324422A (en) * 1986-07-17 1988-02-01 Nec Corp Coexistence system for more than two kinds of access procedures in segment system computer

Also Published As

Publication number Publication date
JPS63269230A (en) 1988-11-07

Similar Documents

Publication Publication Date Title
JP2801931B2 (en) Logic design processing device, circuit conversion rule translation device, and circuit conversion rule translation method
JPH0776928B2 (en) USE procedure processing method in COBOL compiler
JPH0358232A (en) Preprocessor calling system
JPH03176744A (en) Software testing system
KR100309674B1 (en) Transaction preprocessing method of real-time database management system
KR950005523B1 (en) Step-run processing method of programmable logic controller
JPH06119203A (en) Debugging line deleting device
JPH0239332A (en) Software break system
JPH07334356A (en) Method and device for supporting description of developing process of software
JPH0588878A (en) Lisp instruction executing system
JPH01267731A (en) System for preparing segment overlay program
JPH0417031A (en) System for optimizing propagation of constant value
JPH0488438A (en) One-instruction execution system of debugger for source program in high-level language
JPH03233730A (en) Software error processing system
JPH01274253A (en) Software break system
JPH02205930A (en) Interface check processing method
JPS6388649A (en) Output system for error detailed information at time of generating unfair decimal data exceptions
JPS63269229A (en) Compiling system for character string operation system instruction
JPH1124939A (en) Program conversion method
JPH1083328A (en) Pseudo input/output realizing system for single body test
JPH0261715A (en) Command interpreter with memory function
JPH09305411A (en) Program execution device for compilation type program
JPH064348A (en) Program debugging system
JPH06282442A (en) Compiler device
JPS63228341A (en) Program syntax checking system

Legal Events

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