JP2642787B2 - Interruption location search method - Google Patents

Interruption location search method

Info

Publication number
JP2642787B2
JP2642787B2 JP3022563A JP2256391A JP2642787B2 JP 2642787 B2 JP2642787 B2 JP 2642787B2 JP 3022563 A JP3022563 A JP 3022563A JP 2256391 A JP2256391 A JP 2256391A JP 2642787 B2 JP2642787 B2 JP 2642787B2
Authority
JP
Japan
Prior art keywords
address
procedure
interruption
pointer
statement
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
JP3022563A
Other languages
Japanese (ja)
Other versions
JPH04263339A (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 JP3022563A priority Critical patent/JP2642787B2/en
Publication of JPH04263339A publication Critical patent/JPH04263339A/en
Application granted granted Critical
Publication of JP2642787B2 publication Critical patent/JP2642787B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Landscapes

  • Debugging And Monitoring (AREA)

Description

【発明の詳細な説明】DETAILED DESCRIPTION OF THE INVENTION

【0001】[0001]

【産業上の利用分野】本発明は、中断アドレスを検索す
る中断位置検索方式であって、デバッグプログラムの実
行中断時に中断位置表示を行う言語デバッガの中断位置
検索方式に関するものである。
BACKGROUND OF THE INVENTION 1. Field of the Invention The present invention relates to an interrupt position search method for searching for an interrupt address, and more particularly to an interrupt position search method for a language debugger for displaying an interrupt position when execution of a debug program is interrupted.

【0002】[0002]

【従来の技術】従来、言語デバッガは、利用者が設定し
た中断点でプログラムの実行を中断した場合、中断点管
理テーブルの先頭から順に検索し、中断アドレスが存在
するか否かを判定していた。検索して見つかった場合、
利用者が設定した中断アドレスであったので、翻訳時に
作成した文情報テーブルを参照して原始プログラムの文
番号に変換し、中断した文番号を表示するようにしてい
た。
2. Description of the Related Art Conventionally, when a language debugger interrupts the execution of a program at an interrupt point set by a user, the language debugger searches the interrupt point management table sequentially from the top to determine whether or not an interrupt address exists. Was. If a search is found,
Because the interrupt address was set by the user, the sentence information table created at the time of translation was referred to, converted to the source program's statement number, and the suspended statement number was displayed.

【0003】[0003]

【発明が解決しようとする課題】そのため、設定する中
断点の数が多くなればなるほど、中断点管理テーブルに
設定する中断アドレスの数が多くなり、この中断点管理
テーブルを検索するのに多くの時間が必要になってしま
うという問題があった。本発明は、直前中断位置テーブ
ルポインタや直前中断手続き格納域、手続き管理情報を
設け、これらをもとに中断アドレスを容易かつ迅速に検
索して文番号を表示することを目的としている。
Therefore, the larger the number of break points to be set, the larger the number of break addresses to be set in the break point management table, and the larger the number of break addresses to search this break point management table. There was a problem that time was required. An object of the present invention is to provide a last interruption position table pointer, a last interruption procedure storage area, and procedure management information, and to easily and quickly retrieve an interruption address based on these to display a statement number.

【0004】[0004]

【課題を解決するための手段】図1は、本発明の原理構
成図を示す。図1において、文情報テーブル8は、翻訳
時にアドレスと文番号を対応づけて格納したテーブルで
ある。中断点管理テーブル9は、設定した中断点のアド
レスを昇順(あるいは降順)に整列して格納するテーブ
ルである。
FIG. 1 is a block diagram showing the principle of the present invention. In FIG. 1, a sentence information table 8 is a table in which addresses and sentence numbers are stored in association with each other during translation. The break point management table 9 is a table that stores addresses of set break points in ascending order (or descending order).

【0005】直前中断位置テーブルポインタ10は、中
断点管理テーブル9の直前のアドレスをポイントするポ
インタである。手続き管理情報11は、中断点を設定し
た手続き毎にその手続き開始アドレス、手続き終了アド
レス、および文情報テーブル8へのポインタを格納する
ものである。
The immediately preceding interruption position table pointer 10 is a pointer that points to the address immediately before the interruption point management table 9. The procedure management information 11 stores a procedure start address, a procedure end address, and a pointer to the statement information table 8 for each procedure for which an interruption point has been set.

【0006】直前中断手続き格納域12は、直前に使用
した手続き管理情報11へのポインタを格納するもので
ある。
The immediately preceding interrupted procedure storage area 12 stores a pointer to the procedure management information 11 used immediately before.

【0007】[0007]

【作用】本発明は、図1の(イ)に示すように、利用者
からの実行指示に対応して、中断時にPSWから取り出
した現在の中断アドレスが直前中断位置テーブルポイン
タ10によってポイントする中断点管理テーブル9から
取り出したアドレスよりも例えば大きいときにポイント
した位置から順次検索し、または、例えば小さいときに
中断点管理テーブル9の先頭から順次検索し、一致する
アドレスが見つかったときに、翻訳時に作成した文情報
テーブル8を検索して文番号を取り出して表示するよう
にしている。
According to the present invention, as shown in FIG. 1 (a), in response to an execution instruction from a user, an interruption in which the current interruption address extracted from the PSW at the time of interruption is pointed to by the immediately preceding interruption position table pointer 10 is executed. For example, when the address is larger than the address extracted from the point management table 9, the search is sequentially performed from the pointed position, or when the address is smaller, the search is sequentially performed from the beginning of the interruption point management table 9. The sentence information table 8 created at this time is searched to extract and display the sentence number.

【0008】また、本発明は、図1の(ロ)に示すよう
に、利用者からの実行指示に対応して、中断時にPSW
から取り出した現在の中断アドレスが直前中断手続き格
納域12のポインタでポイントする手続き管理情報11
の手続き開始アドレスおよび手続き終了アドレスの間の
ときにポインタでポイントする文情報テーブル8から一
致するアドレスの文番号を検索して取り出して表示し、
一方、手続き開始アドレスおよび手続き終了アドレスの
間にないときに手続き管理情報11を順次検索して手続
き開始アドレスおよび手続き終了アドレスの間にあるも
のを見つけ、この手続き管理情報11のポインタでポイ
ントする文情報テーブル8から一致するアドレスの文番
号を検索して取り出して表示するようにしている。
Further, according to the present invention, as shown in FIG. 1 (b), in response to a user's execution
Management information 11 to which the current interrupt address extracted from the pointer is pointed by the pointer of the immediately preceding interrupted procedure storage area 12
From the sentence information table 8 pointed to by the pointer at the time between the procedure start address and the procedure end address.
On the other hand, when it is not between the procedure start address and the procedure end address, the procedure management information 11 is sequentially searched to find one between the procedure start address and the procedure end address, and the statement pointed to by the pointer of the procedure management information 11 The statement number of the matching address is retrieved from the information table 8, retrieved, and displayed.

【0009】従って、直前中断位置テーブルポインタ1
0や直前中断手続き格納域12、手続き管理情報11を
設け、これらをもとに中断アドレスを容易かつ迅速に検
索して対応する文番号を表示することが可能となる。
Therefore, the immediately preceding interruption position table pointer 1
0, the immediately preceding suspended procedure storage area 12, and the procedure management information 11 are provided, and based on these, the suspended address can be easily and quickly searched to display the corresponding sentence number.

【0010】[0010]

【実施例】まず、図1の構成について説明する。図1の
(イ)、(ロ)において、入力部1は、中断指示のコマ
ンドを入力したり、実行指示のコマンドを入力したりす
るものである。中断指示は、例えばAT 4000であ
って、ATが中断指示コマンドを表わし、4000がパ
ラメタであって、中断指示する原始プログラムの文番号
4000を表わす。また、実行指示は、例えばGOであ
って、GOが実行再開(実行開始)コマンドである。
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS First, the configuration of FIG. 1 will be described. In FIGS. 1A and 1B, the input unit 1 is used to input a command for an interruption instruction or a command for an execution instruction. The suspend instruction is, for example, AT 4000, where AT indicates a suspend instruction command, 4000 is a parameter, and indicates a statement number 4000 of a source program for which suspend is instructed. The execution instruction is, for example, GO, and GO is an execution restart (execution start) command.

【0011】デバッガ処理部2は、デバッグを行うもの
であって、利用者からの中断指示に対応して中断点を設
定する中断点設定部3、および利用者からの実行指示に
対応して中断点の管理を行う中断点管理部4などから構
成されるものである。メモリ5は、原始プログラムを翻
訳した実行可能形式の実行プログラム6をロードして実
行するためのメモリである。
The debugger processing section 2 performs debugging, and sets an interruption point in response to an interruption instruction from a user, and an interruption point setting section 3 and interrupts in response to an execution instruction from the user. It is composed of an interruption point management unit 4 for managing points. The memory 5 is a memory for loading and executing an executable executable program 6 obtained by translating a source program.

【0012】デバッグ情報域7は、原始プログラムの翻
訳時に採取した原始プログラムの文番号と、翻訳した実
行プログラムのアドレスとの対応関係を格納する文情報
テーブル8などを設ける領域である。中断点管理テーブ
ル9は、利用者が設定した中断点のアドレスを昇順(あ
るいは降順)に整列して格納するテーブルである。ここ
では、以下昇順の場合について説明する。
The debug information area 7 is an area for providing a statement information table 8 for storing the correspondence between the statement number of the source program collected at the time of translation of the source program and the address of the translated execution program. The interruption point management table 9 is a table that stores addresses of interruption points set by the user in ascending order (or descending order). Here, the case of ascending order will be described below.

【0013】直前中断位置テーブルポインタ10は、中
断点管理テーブル9中の直前に中断したアドレスをポイ
ントするポインタである。手続き管理情報11は、利用
者が中断点を設定した手続き毎にその手続き開始アドレ
ス、手続き終了アドレス、および文情報テーブル8への
ポインタを格納したものである(図6を用いて後述す
る)。
The immediately preceding interruption position table pointer 10 is a pointer that points to the immediately preceding interruption address in the interruption point management table 9. The procedure management information 11 stores a procedure start address, a procedure end address, and a pointer to the statement information table 8 for each procedure for which a user has set an interruption point (described later with reference to FIG. 6).

【0014】直前中断手続き格納域12は、直前の中断
点で使用した手続き管理情報11へのポインタを格納す
るものである。これは、中断点が変わる毎に、直前に使
用した手続き管理情報11へのポインタに更新する。次
に、図1の(イ)の構成の動作を、図2ないし図4を用
いて詳細に説明する。
The immediately preceding interruption procedure storage area 12 stores a pointer to the procedure management information 11 used at the immediately preceding interruption point. This is updated every time the interruption point changes to a pointer to the procedure management information 11 used immediately before. Next, the operation of the configuration shown in FIG. 1A will be described in detail with reference to FIGS.

【0015】図2は、原始プログラム/実行プログラム
例を示す。図2の(イ)は、原始プログラム例を示す。
これは、利用者(プログラムマ)が文番号に対応づけて
業務内容を図示のように記述したプログラムである。図
2の(ロ)は、実行プログラム例を示す。これは、図2
の(イ)の原始プログラム例を翻訳し、実行可能形式の
実行プログラムにしたものを模式的に表わしたものであ
る。ここで、欄外の文番号は図2の(イ)の原始プログ
ラムの文番号を表わす。欄内のアドレスは実行可能形式
の実行プログラムのアドレスを表わし、機械命令はプロ
セッサが実行し得るコードを模式的に表わしたものであ
る。
FIG. 2 shows an example of a source program / executable program. FIG. 2A shows an example of a source program.
This is a program in which a user (programmer) describes the contents of work in association with statement numbers as shown in the figure. FIG. 2B shows an example of an execution program. This is shown in FIG.
(A) is a translation of the source program example to form an executable executable program. Here, the statement numbers in the margins represent the statement numbers of the source program in FIG. The addresses in the columns represent the addresses of executable programs in an executable format, and the machine instructions schematically represent codes executable by the processor.

【0016】図3は、本発明の具体例説明図を示す。図
3の(イ)は、文情報テーブル例を示す。これは、図2
の(イ)の原始プログラムを、図2の(ロ)の実行プロ
グラムに翻訳したときに採取したものであって、実行プ
ログラムのアドレスに対応づけて原始プログラムの文番
号を格納したものである。この文情報テーブル8を参照
することにより、中断点のアドレスから原始プログラム
の文番号を見つけて表示するようにしている。
FIG. 3 is a diagram illustrating a specific example of the present invention. FIG. 3A shows an example of a sentence information table. This is shown in FIG.
This is obtained when the source program of (a) is translated into the execution program of (b) of FIG. 2, and stores the statement number of the source program in association with the address of the execution program. By referring to the statement information table 8, the statement number of the source program is found and displayed from the address of the interruption point.

【0017】図3の(ロ)は、中断点管理テーブル例を
示す。これは、利用者が中断指示した文番号に対応する
実行プログラム中の中断点の位置のアドレスを、ここで
は昇順に格納したものである。利用者がデバッグのため
の情報を採取するために、中断指示した中断点のアドレ
スがこの中断点管理テーブル9に昇順に格納されるの
で、実行プログラムの実行中に中断したときに当該中断
点管理テーブル9を検索して見つかったときに利用者が
設定した中断点であると判定し、その文番号を表示する
ためのものである。
FIG. 3B shows an example of an interruption point management table. In this case, the addresses of the positions of the interruption points in the execution program corresponding to the statement numbers instructed to be interrupted by the user are stored here in ascending order. In order for the user to collect information for debugging, the addresses of the interruption points instructed to be interrupted are stored in the interruption point management table 9 in ascending order, so that when the execution is interrupted during execution of the execution program, the interruption point management is performed. When the table 9 is searched and found, it is determined that the interruption point is set by the user, and the sentence number is displayed.

【0018】図3の(ハ)は、直前中断位置テーブルポ
インタ例を示す。これは、直前に中断した中断点の中断
点管理テーブル9へのポインタを格納するものである。
ここで、図中の“2”は、図3の(ロ)の番号“2”を
表わし、これが直前の中断点のアドレス(番号2、アド
レス000884)である。図3の(ニ)は、実行再開
指示命令例を示す。これは、実行プログラムの実行の再
開(開始を含む)を指示するコマンドであって、図1の
実行指示に対応している。
FIG. 3C shows an example of the immediately preceding interruption position table pointer. This stores a pointer to the interruption point management table 9 of the interruption point interrupted immediately before.
Here, "2" in the figure represents the number "2" in (b) of FIG. 3, which is the address (number 2, address 000884) of the immediately preceding interruption point. FIG. 3D shows an example of an execution restart instruction command. This is a command for instructing restart (including start) of the execution of the execution program, and corresponds to the execution instruction in FIG.

【0019】図4のフローチャートに示す順序に従い、
図1の(イ)の構成の動作を、図3を参照して詳細に説
明する。図4において、S1は、SVC aaか否かを
判別する。これは、実行指示のGOコマンドの投入に対
応して、実行プログラムを順次実行し、設定した中断点
である埋め込まれたSVC aa(デバッグを行う処理
に制御を渡す命令)の実行か否かを判別する。YESの
場合には、S2以降の本発明の処理に進む。NOの場合
には、本発明のデバッグ処理ではないので、他の処理を
続行する。
According to the sequence shown in the flowchart of FIG.
The operation of the configuration shown in FIG. 1A will be described in detail with reference to FIG. In FIG. 4, S1 determines whether or not it is SVC aa. That is, in response to the input of the GO command of the execution instruction, the execution program is sequentially executed, and whether or not to execute the embedded SVC aa (instruction for transferring control to the process for performing debugging) which is the set interruption point is determined. Determine. In the case of YES, the process proceeds to the process of the present invention after S2. In the case of NO, since it is not the debug processing of the present invention, other processing is continued.

【0020】S2は、PSW(プログラム状態語)から
現在の中断アドレスを取り出す。S3は、直前中断位置
テーブルポインタ10の指す中断点管理テーブル9から
直前に中断した位置のアドレス(直前中断位置アドレ
ス)を取り出す。S4は、直前中断位置アドレス≦現中
断アドレスか否かを判別する。これは、S3で中断位置
管理テーブル9から取り出した直前に中断した位置のア
ドレス(直前中断位置アドレス)が、S2でPSWから
取り出した現在の中断アドレスよりも小さい、等しいか
否かを判別する。YESの場合には、現中断アドレスが
直前中断位置アドレスよりも大きいので、S5で直前中
断位置テーブルポインタ10を検索の基点とし、S7に
進む。これにより、中断点管理テーブル9の先頭から検
索することなく、直前の中断アドレスから検索を開始す
ることができ、迅速に検索可能となる。一方、NOの場
合には、現中断アドレスが直前中断位置アドレスよりも
小さいので、S6で中断点管理テーブル9の先頭を検索
の基点とし、S7に進む。
In step S2, the current interrupt address is extracted from the PSW (program status word). In S3, the address of the position at which the immediately preceding interruption was performed (the immediately preceding interruption position address) is extracted from the interruption point management table 9 pointed to by the immediately preceding interruption position table pointer 10. In S4, it is determined whether or not the immediately preceding interruption position address ≦ the current interruption address. It is determined whether or not the address of the position immediately before the interruption from the interruption position management table 9 in S3 (the immediately preceding interruption position address) is smaller than or equal to the current interruption address extracted from the PSW in S2. In the case of YES, since the current interruption address is larger than the immediately preceding interruption position address, in S5, the immediately preceding interruption position table pointer 10 is used as a search starting point, and the process proceeds to S7. As a result, the search can be started from the immediately preceding interrupt address without searching from the head of the interrupt point management table 9, and the search can be quickly performed. On the other hand, in the case of NO, since the current interruption address is smaller than the immediately preceding interruption position address, the head of the interruption point management table 9 is set as a search base point in S6, and the process proceeds to S7.

【0021】S7は、中断点管理テーブル9から中断ア
ドレスを取り出し、S8で現中断アドレス=中断アドレ
スか否かを判別する。YESの場合には、現中断アドレ
スに一致する中断アドレスが中断点管理テーブル9から
見つかったので、S10で文情報テーブル8から文番号
を取り出して表示し、S11に進む。一方、NOの場合
には、S9で対象を次の中断点管理テーブル9に移し、
S7以降を繰り返し行う。
In step S7, the interruption address is extracted from the interruption point management table 9, and in step S8, it is determined whether or not the current interruption address is equal to the interruption address. In the case of YES, since a break address matching the current break address is found in the break point management table 9, the statement number is extracted from the statement information table 8 and displayed in S10, and the process proceeds to S11. On the other hand, in the case of NO, the target is moved to the next interruption point management table 9 in S9,
S7 and subsequent steps are repeated.

【0022】S11は、ユーザからの入力待ちする。そ
して、GOコマンドの投入があった場合(S12のYE
Sの場合)には、S1以降を繰り返し行う。以上の処理
について、図3を参照して具体例を説明する。 (1) 利用者から図3の(イ)の文情報テーブル8中
の文番号800、2000、3500、4100につい
て中断指示を与えた場合、図3の(ロ)に示すように、
これらの文番号に対応する実行プログラム6中のアドレ
ス00024A、000884、001296、001ED2を図示のように格納
し、利用者が中断点を設定したアドレスを記憶する。
In step S11, an input from the user is waited. When a GO command is input (YE in S12)
In the case of S), S1 and subsequent steps are repeated. A specific example of the above processing will be described with reference to FIG. (1) When the user gives an instruction to interrupt the sentence numbers 800, 2000, 3500, and 4100 in the sentence information table 8 of (a) of FIG. 3, as shown in (b) of FIG.
The addresses 00024A, 000884, 001296, and 001ED2 in the execution program 6 corresponding to these statement numbers are stored as shown in the figure, and the addresses at which the user sets break points are stored.

【0023】(2) 今、プログラムの実行が文番号2
000で中断しているとする。このとき、直前中断位置
テーブルポインタ10は番号2(アドレス000884)をポ
イントするように更新する。この状態で利用者がGOコ
マンドを投入して実行プログラムの実行を再開させる。 (3) 中断点で停止し、このときにPSWから取り出
した中断アドレスが001ED2であった場合、これは(2)
で更新した直前中断位置テーブルポインタ10がポイン
トする番号2のアドレス000884よりも大きいので、直前
中断位置テーブルポインタ10がポイントする番号2の
アドレス000884を取り出し、一致するか否かを判別する
(図4のS1のYES、S2、S3、S4のYES、S
5、S7、S8)。一致しないので、次のアドレス0012
96、更に次のアドレス001ED2を取り出し、一致するか否
かを判別すると、アドレス001ED2のときに一致したの
で、図3の(イ)文情報テーブルを参照してこのアドレ
ス001ED2の文番号4100を取り出し表示する(図4の
S8のNO、S9、S7、S8のNO、S9、S7、S
8のYES、S10)。また、このとき、直前中断位置
テープルポインタ10は、番号15のアドレス001ED2に
更新する。
(2) Now, the execution of the program is sentence number 2
Suppose it is interrupted at 000. At this time, the immediately preceding interruption position table pointer 10 is updated so as to point to the number 2 (address 000884). In this state, the user inputs a GO command to restart the execution of the execution program. (3) If the operation is stopped at the interruption point and the interruption address extracted from the PSW at this time is 001ED2, this is (2)
Since the address 000884 of the number 2 pointed to by the immediately preceding interruption position table pointer 10 updated by the above is retrieved from the address 000884 of the number 2 pointed to by the immediately preceding interruption position table pointer 10, it is determined whether or not they match (FIG. 4). S1 YES, S2, S3, S4 YES, S
5, S7, S8). Since they do not match, the next address 0012
96. Further, the next address 001ED2 is fetched, and it is determined whether or not the address 001ED2 matches. When the address 001ED2 is found, the address 001ED2 matches, and the sentence number 4100 of this address 001ED2 is fetched by referring to the (a) sentence information table of FIG. Display (NO in S8, S9, S7, NO in S8, S9, S7, S in FIG. 4)
8 (YES, S10). At this time, the immediately preceding interruption position table pointer 10 is updated to the address 001ED2 of the number 15.

【0024】(4) 更に、利用者がGOコマンドを投
入して実行プログラムの実行を再開させる。 (5) 中断点で停止し、このときにPSWから取り出
した中断アドレスが001296であった場合、これは(3)
で更新した直前中断位置テーブルポインタ10がポイン
トする番号15のアドレス001ED2よりも小さいので、中
断点管理テーブル9の先頭のアドレス、ここでは00024A
を取り出し、一致するか否かを判別する(図4のS1の
YES、S2、S3、S4のNO、S6、S7、S
8)。一致しないので、更に次のアドレス000884を取り
出し、一致するか否かを判別すると、一致しないので、
アドレス001296になるまで繰り返し、図3の(イ)文情
報テーブルを参照してこれの文番号3500を取り出し
表示する。
(4) Further, the user inputs a GO command to restart the execution of the execution program. (5) When the operation is stopped at the interruption point and the interruption address extracted from the PSW at this time is 00196, this is (3)
Is smaller than the address 001ED2 of the number 15 to which the immediately preceding interruption position table pointer 10 is updated, so that the head address of the interruption point management table 9, here 00024A
And determine whether they match (YES in S1, NO in S2, S3, S4 in FIG. 4, S6, S7, S
8). Since they do not match, the next address 000884 is further taken out and it is determined whether or not they match.
The process is repeated until the address becomes 001296, and the sentence number 3500 is retrieved and displayed with reference to the (a) sentence information table of FIG.

【0025】以上のように、直前中断位置テーブルポイ
ンタ10を設け、現中断アドレスがこの直前中断位置テ
ーブルポインタ10でポイントする中断点管理テーブル
9のアドレスよりも大きい、等しいときに当該ポイント
するアドレスから検索を開始、一方、小さいときに中断
点管理テーブル9の先頭から検索を開始し、一致するア
ドレスが見つかったときに文情報テーブル8を検索して
文番号を表示することにより、検索する範囲を少なくし
て高速に該当するアドレスを見つけてその文番号を表示
することが可能となる。
As described above, the immediately preceding interruption position table pointer 10 is provided, and when the current interruption address is greater than or equal to the address of the interruption point management table 9 pointed by the immediately preceding interruption position table pointer 10, the address pointed to when the current interruption address is equal is determined. The search is started. On the other hand, when the address is small, the search is started from the beginning of the break point management table 9, and when a matching address is found, the sentence information table 8 is searched and the sentence number is displayed, so that the search range is increased It is possible to find the corresponding address at a high speed and display the statement number at a minimum.

【0026】次に、図1の(ロ)の構成の動作を、図5
ないし図8を用いて詳細に説明する。図5は、原始プロ
グラム/実行プログラム例を示す。図5の(イ)は、原
始プログラム例を示す。これは、利用者(プログラム
マ)が文番号に対応づけて業務内容を図示のように記述
したプログラムである。
Next, the operation of the configuration shown in FIG.
This will be described in detail with reference to FIG. FIG. 5 shows an example of a source program / executable program. FIG. 5A shows an example of a source program. This is a program in which a user (programmer) describes the contents of work in association with statement numbers as shown in the figure.

【0027】図5の(ロ)は、実行プログラム例を示
す。これは、図5の(イ)の原始プログラム例を翻訳
し、実行可能形式の実行プログラムにしたものを模式的
に表わしたものである。ここで、欄外の文番号は図5の
(イ)の原始プログラムの文番号を表わす。欄内のアド
レスは実行可能形式の実行プログラムのアドレスを表わ
し、機械命令はプロセッサが実行し得るコードを模式的
に表わしたものである。
FIG. 5B shows an example of an execution program. This is a schematic representation of a translation of the source program example of FIG. 5A into an executable executable program. Here, the statement numbers in the margins represent the statement numbers of the source program in FIG. The addresses in the columns represent the addresses of executable programs in an executable format, and the machine instructions schematically represent codes executable by the processor.

【0028】図6は、本発明の他の具体例説明図を示
す。図6の(イ)は、手続き管理情報11のリンク構造
を示す。これは、手続き監視格納域13から、利用者が
中断点を設定指示した手続き毎に手続き管理情報11を
順次リンクする様子を模式的に示したものである。ま
た、直前中断手続き格納域12のポインタからポイント
する直前に中断した手続きの手続き管理情報11への当
該ポインタをその都度、更新するようにしている。
FIG. 6 is a diagram illustrating another embodiment of the present invention. FIG. 6A shows a link structure of the procedure management information 11. This schematically shows how the procedure management information 11 is sequentially linked from the procedure monitoring storage area 13 for each procedure for which the user has instructed to set a break point. Further, the pointer to the procedure management information 11 of the procedure interrupted immediately before the pointer is pointed from the pointer in the immediately preceding interrupted procedure storage area 12 is updated each time.

【0029】図6の(ロ)は、図6の(イ)の手続き管
理情報11と、この手続き管理情報11からポイントす
る文情報テーブル8とを模式的に示したものである。こ
こで、手続き管理情報11には、図示のように、実行プ
ログラム中の当該手続きの手続き開始アドレス、手続き
終了アドレス、および当該手続きのアドレスが格納され
ている文情報テーブル8中の範囲をポイントするポイン
タを格納する。
FIG. 6 (b) schematically shows the procedure management information 11 of FIG. 6 (a) and the statement information table 8 pointed to by the procedure management information 11. Here, as shown in the figure, the procedure management information 11 points to a procedure start address, a procedure end address of the procedure in the execution program, and a range in the statement information table 8 in which the address of the procedure is stored. Stores a pointer.

【0030】図7および図8のフローチャートに示す順
序に従い、図1の(ロ)の構成の動作を、図6を参照し
て詳細に説明する。図7において、S21は、SVC
aaか否かを判別する。これは、実行指示のGOコマン
ドの投入に対応して、実行プログラムを順次実行し、設
定した中断点である埋め込まれたSVC aa(デバッ
グを行う処理に制御を渡す命令)の実行か否かを判別す
る。YESの場合には、S22以降の本発明の処理に進
む。NOの場合には、本発明のデバッグ処理ではないの
で、他の処理を続行する。
The operation of the configuration shown in FIG. 1B in accordance with the order shown in the flowcharts of FIGS. 7 and 8 will be described in detail with reference to FIG. In FIG. 7, S21 is an SVC
aa is determined. That is, in response to the input of the GO command of the execution instruction, the execution program is sequentially executed, and whether or not to execute the embedded SVC aa (instruction for transferring control to the process for performing debugging) which is the set interruption point is determined. Determine. In the case of YES, the process proceeds to the process of the present invention after S22. In the case of NO, since it is not the debug processing of the present invention, other processing is continued.

【0031】S22は、PSW(プログラム状態語)か
ら現在の中断アドレスを取り出す。S23は、直前中断
手続き格納域12から手続き管理情報11をポイントす
るポインタ(アドレス)を取り出す。S24は、S23
で取り出したポインタでポイントする手続き管理情報1
1から手続き開始アドレスと手続き終了アドレスを取り
出す。
In step S22, the current interrupt address is extracted from the PSW (program status word). In step S23, a pointer (address) pointing to the procedure management information 11 is extracted from the immediately preceding suspended procedure storage area 12. S24 is S23
Procedure management information 1 pointed by the pointer extracted in step 1
From 1, the procedure start address and the procedure end address are extracted.

【0032】S25は、中断アドレスがS24で取り出
した手続き開始アドレスと手続き終了アドレスの間にあ
るか否かを判別する。YESの場合には、現在の中断ア
ドレスが直前中断手続き格納域12がポイントする手続
き管理情報11内のアドレスと判明したので、図8のS
30に進む。一方、NOの場合には、現在の中断アドレ
スが直前中断手続き格納域12がポイントする手続き管
理情報11内のアドレスでないと判明したので、S26
で図6の(イ)手続き監視格納域13から先頭の手続き
管理情報11を取り出し、S27でこの取り出した手続
き管理情報11から手続き開始アドレスおよび手続き終
了アドレスを取り出し、S29で中断アドレスがこれら
手続き開始アドレスと手続き終了アドレスの間にあるか
否かを判別し、YESの場合には図8のS30に進み、
一方、NOの場合にS28で次の手続き管理情報11を
取り出してS27を繰り返す。
In step S25, it is determined whether or not the interruption address is between the procedure start address and the procedure end address extracted in step S24. In the case of YES, it is determined that the current suspended address is the address in the procedure management information 11 to which the immediately preceding suspended procedure storage area 12 points, so
Go to 30. On the other hand, in the case of NO, it is determined that the current suspended address is not the address in the procedure management information 11 to which the immediately preceding suspended procedure storage area 12 points.
6A, the first procedure management information 11 is extracted from the procedure monitoring storage area 13, and the procedure start address and the procedure end address are extracted from the extracted procedure management information 11 in S27. It is determined whether the address is between the address and the procedure end address, and in the case of YES, the process proceeds to S30 of FIG.
On the other hand, if NO, the next procedure management information 11 is extracted in S28, and S27 is repeated.

【0033】以上の処理によって、PSWから取り出し
た現在の中断アドレスが、直前中断手続き格納域12か
らポイントする手続き管理情報11中の手続き開始アド
レスと手続き終了アドレスの間のときに、即時に図8の
S30以降の処理に進み、文情報テーブル8から該当す
るアドレスの文情報を取り出して表示することが可能と
なる。
With the above processing, when the current interrupt address extracted from the PSW is between the procedure start address and the procedure end address in the procedure management information 11 pointed to from the immediately preceding interrupted procedure storage area 12, FIG. The process proceeds to S30 and subsequent steps, and the sentence information of the corresponding address can be extracted from the sentence information table 8 and displayed.

【0034】図8のS30は、手続き管理情報11がポ
イントする文情報テーブル8を取り出し、S31でこの
取り出した文情報テーブル8からアドレスを取り出す。
S32は、中断アドレス=アドレスか否かを判別する。
これは、S22でPSWから取り出した現在の中断アド
レスと、S21で文情報テーブル8から取り出したアド
レスとが等しいか否かを判別する。YESの場合には、
S34でアドレスに対応する文番号を文情報テーブル8
から取り出し、S35でこの文番号を表示し、S36で
直前中断手続き格納域12に手続き管理情報11へのポ
インタを格納し、S7でユーザからの入力待ちする。一
方、NOの場合には、中断アドレスとアドレスとが等し
くなかったので、S33で次のアドレスを文情報テーブ
ル8から取り出し、S32を繰り返し行う。
In S30 of FIG. 8, the statement information table 8 pointed to by the procedure management information 11 is extracted, and in S31, an address is extracted from the extracted statement information table 8.
A step S32 decides whether or not the interruption address is equal to the address.
That is, it is determined whether or not the current interruption address extracted from the PSW in S22 is equal to the address extracted from the statement information table 8 in S21. If yes,
In S34, the statement number corresponding to the address is stored in the statement information table 8
The sentence number is displayed in S35, a pointer to the procedure management information 11 is stored in the immediately preceding interrupted procedure storage area 12 in S36, and an input from the user is waited in S7. On the other hand, in the case of NO, since the interruption address and the address are not equal, the next address is retrieved from the statement information table 8 in S33, and S32 is repeated.

【0035】S38は、利用者からGOコマンドが投入
された場合、図7のS21から処理を再開する。以上の
処理について、図6を参照して具体例を説明する。 (1) 利用者から図6の(ロ)の文情報テーブル8中
の文番号4000、4100について中断指示を与え、
2つの手続き管理情報11−1、11−2に示すよう
に、これら各手続きの手続き開始アドレスと手続き終了
アドレスを図示のように格納して図6の(イ)の手続き
監視格納域13からリンクしておく。また、手続き管理
情報11中から文情報テーブル8中の該当する中断点の
アドレスの範囲を図示のようにポイントするポインタを
格納し、当該手続きの中断点のアドレスを迅速に検索可
能にしておく。
In S38, when the GO command is input from the user, the processing is restarted from S21 in FIG. A specific example of the above processing will be described with reference to FIG. (1) The user gives an interruption instruction for the sentence numbers 4000 and 4100 in the sentence information table 8 of FIG.
As shown in the two pieces of procedure management information 11-1 and 11-2, the procedure start address and procedure end address of each procedure are stored as shown in the figure, and are linked from the procedure monitoring storage area 13 of FIG. Keep it. Further, a pointer that points the address range of the corresponding interruption point in the statement information table 8 from the procedure management information 11 is stored as shown in the figure, and the address of the interruption point of the procedure can be quickly searched.

【0036】(2) 今、プログラムの実行が文番号4
000で中断しているとする。このとき、直前中断手続
き格納域12から手続き管理情報11−2をポイントす
るように更新されている。この状態で利用者がGOコマ
ンドを投入して実行プログラムの実行を再開させる。 (3) 中断点で停止し、このときにPSWから取り出
した中断アドレスが001ED2であった場合、(2)で更新
した直前中断手続き格納域12からポイントする手続き
管理情報11−2の手続き開始アドレス001296と手続き
終了アドレス001ED2との間にあると判明するので(S2
1のYES、S22、S23、S24、S25のYE
S)、この手続き管理情報11−2のポインタでポイン
トする文情報テーブル8の位置からアドレス001296を取
り出すが一致しないので(S30、S31、S32のN
O)、次のアドレス001ED2を取り出して一致するので
(S33、S32のYES)、文情報テーブル8から文
番号を取り出して表示する(S34、S35)と共に、
直前中断手続き格納域12に今回の手続き管理情報への
ポインタを格納して更新する。
(2) Now, the execution of the program is sentence number 4
Suppose it is interrupted at 000. At this time, it has been updated to point to the procedure management information 11-2 from the immediately preceding suspended procedure storage area 12. In this state, the user inputs a GO command to restart the execution of the execution program. (3) Stop at the interruption point, and if the interruption address extracted from the PSW at this time is 001ED2, the procedure start address of the procedure management information 11-2 pointed to from the immediately preceding interruption procedure storage area 12 updated in (2) Since it is determined that the address is between 001296 and the procedure end address 001ED2 (S2
1 for YES, YE for S22, S23, S24, S25
S) The address 001296 is extracted from the position of the statement information table 8 pointed by the pointer of the procedure management information 11-2, but does not match (N of S30, S31, S32).
O) Since the next address 001ED2 is taken out and matches (S33, S32: YES), the sentence number is taken out from the sentence information table 8 and displayed (S34, S35), and
The pointer to the current procedure management information is stored and updated in the immediately preceding interrupted procedure storage area 12.

【0037】(4) また、PSWから取り出した中断
アドレスが、直前中断手続き格納域12のポインタによ
ってポイントされた手続き管理情報11の手続き開始ア
ドレスと手続き終了アドレスの間にない場合(S21の
YES、S22、S23、S24、S25のNO)、図
6の(イ)の手続き監視格納域13からリンクされてい
る先頭の手続き管理情報11の手続き開始アドレスと手
続き終了アドレスとの間に中断アドレスがあるか否かを
順次検索し、間にあるものを見付け、同様に、文情報テ
ーブル8から一致するアドレスを検索してその文番号を
表示する。
(4) When the interrupt address extracted from the PSW is not between the procedure start address and the procedure end address of the procedure management information 11 pointed to by the pointer of the immediately preceding interrupted procedure storage area 12 (YES in S21, (NO in S22, S23, S24, S25), there is an interruption address between the procedure start address and the procedure end address of the first procedure management information 11 linked from the procedure monitoring storage area 13 in FIG. The search is sequentially performed to determine whether or not there is something in between. Similarly, a matching address is searched from the sentence information table 8 and the sentence number is displayed.

【0038】以上のように、直前中断手続き格納域12
および手続き管理情報11を設け、現中断アドレスがこ
の直前中断手続き格納域12のポインタでポイントする
手続き管理情報11の手続き開始アドレスと手続き終了
アドレスとの間にあるときにこれからポインタする文情
報テーブル8の範囲を検索して一致するアドレスの文番
号を表示することにより、検索する範囲を少なくして高
速に該当するアドレスを見つけてその文番号を表示する
ことが可能となる。
As described above, the immediately preceding suspended procedure storage area 12
And the procedure management information 11, the statement information table 8 to be pointed to when the current suspended address is between the procedure start address and the procedure end address of the procedure management information 11 pointed to by the pointer of the immediately preceding suspended procedure storage area 12. By searching the range and displaying the sentence number of the matching address, it becomes possible to reduce the search range, find the corresponding address at high speed, and display the sentence number.

【0039】[0039]

【発明の効果】以上説明したように、本発明によれば、
直前中断位置テーブルポインタ10を設けて中断点の現
中断アドレスがこの直前中断位置テーブルポインタ10
でポイントする中断点管理テーブル9のアドレスよりも
例えば大きいときに当該アドレス以降を検索して一致す
るアドレスの文番号を表示、あるいは例えば小さいとき
に中断点管理テーブル9の先頭から検索して一致するア
ドレスの文番号を表示したり、また、直前中断手続き格
納域12や手続き管理情報11を設けて中断点の現中断
アドレスがこの直前中断手続き格納域12のポインタで
ポイントする手続き管理情報11の手続き開始アドレス
と手続き終了アドレスとの間にあるときにこれからポイ
ントする文情報テーブル8から一致するアドレスの文番
号を取り出して表示したりする構成を採用しているた
め、(1) 多数設定された中断点の中から現中断アド
レスに一致するアドレスを中断点管理テーブル9から検
索するのに、当該中断点管理テーブル9の並びをむやみ
に先頭から検索するのではなくて、キーとなる情報をも
とに容易かつ迅速に検索し、利用者に中断位置(文番
号)をより早く通知することができ、デバッガの実行性
能を向上させることができる。
As described above, according to the present invention,
The last interruption position table pointer 10 is provided so that the current interruption address of the interruption point is
For example, when the address is larger than the address of the interruption point management table 9 pointed at, the address after the address is searched and the sentence number of the matching address is displayed. The statement number of the address is displayed, and the immediately preceding suspended procedure storage area 12 and the procedure management information 11 are provided, and the current suspended address of the interruption point is pointed by the pointer of the immediately preceding suspended procedure storage area 12 to the procedure of the procedure management information 11. Since a configuration is adopted in which a statement number of a matching address is taken out from the statement information table 8 to be pointed to when it is between the start address and the procedure end address and displayed, (1) a large number of set interruptions In order to retrieve an address corresponding to the current interruption address from the interruption point from the interruption point management table 9, the interruption Rather than retrieving the order of the point management table 9 from the beginning, it is possible to search easily and quickly based on key information, and to notify the user of the interruption position (sentence number) more quickly. Thus, the execution performance of the debugger can be improved.

【0040】(2) 多数設定された中断点の中から現
中断アドレスに一致するアドレスを文情報テーブル8の
先頭から1つ1つ検索するのではなく、中断アドレスが
存在する範囲を限定してから文情報テーブル8を検索し
て一致するアドレスを見つけてその文番号を表示、更に
直前に中断した範囲を優先的に検索して一致するアドレ
スを見つけてその文番号を表示することで、中断点の文
番号をより早く利用者に通知することができ、デバッガ
の実行性能を向上させることができる。
(2) Rather than searching for the address that matches the current break address from among a large number of set break points one by one from the beginning of the statement information table 8, the range in which the break address exists is limited. From the sentence information table 8 to find a matching address and display the sentence number, and further preferentially search the immediately preceding range to find a matching address and display the sentence number, thereby interrupting. The user can be notified of the statement number of the point earlier, and the execution performance of the debugger can be improved.

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

【図1】本発明の原理構成図である。FIG. 1 is a principle configuration diagram of the present invention.

【図2】原始プログラム/実行プログラム例である。FIG. 2 is an example of a source program / executable program.

【図3】本発明の具体例説明図である。FIG. 3 is an explanatory view of a specific example of the present invention.

【図4】本発明の中断時のフローチャートである。FIG. 4 is a flowchart at the time of interruption of the present invention.

【図5】原始プログラム/実行プログラムである。FIG. 5 shows a source program / execution program.

【図6】本発明の他の具体例説明図である。FIG. 6 is an explanatory view of another specific example of the present invention.

【図7】本発明の中断時のフローチャート(その1)で
ある。
FIG. 7 is a flowchart (part 1) of the present invention at the time of interruption.

【図8】本発明の中断時のフローチャート(その2)で
ある。
FIG. 8 is a flowchart (part 2) of the present invention at the time of interruption.

【符号の説明】[Explanation of symbols]

1:入力部 2:デバッガ処理部 3:中断点設定部 4:中断点管理部 5:メモリ 6:実行プログラム 7:デバッグ情報域 8:文情報テーブル 9:中断点管理テーブル 10:直前中断位置テーブル 11:手続き管理情報 12:直前中断手続き格納域 13:手続き監視格納域 1: Input unit 2: Debugger processing unit 3: Interruption point setting unit 4: Interruption point management unit 5: Memory 6: Execution program 7: Debug information area 8: Statement information table 9: Interruption point management table 10: Last interruption position table 11: Procedure management information 12: Immediately suspended procedure storage area 13: Procedure monitoring storage area

Claims (2)

(57)【特許請求の範囲】(57) [Claims] 【請求項1】 中断アドレスを検索する中断位置検索方
式において、 設定した中断点の中断アドレスを昇順(あるいは降順)
に整列して格納する中断点管理テーブルと、 この中断点管理テーブル中の直前の中断アドレスをポイ
ントする直前中断点位置テーブルポインタと、 利用者からの実行指示に対応して中断時にPSWから
取り出した現在の中断アドレスが上記直前中断点位置テ
ーブルポインタによってポイントする上記中断点管理テ
ーブルから取り出した中断アドレスよりも大きい(ある
いは小さい)ときに当該ポイントした位置から順次検索
し、または、小さい(あるいは大きい)ときに上記中断
点管理テーブルの先頭から順次検索し、一致する中断ア
ドレスが見つかったときに、翻訳時に作成した文情報テ
ーブルを検索して文番号を取り出す手段と、 この取り出された文番号を 表示する手段とを備えたこと
を特徴とする中断位置検索方式。
In an interruption position search method for searching an interruption address, an interruption address of a set interruption point is arranged in ascending order (or descending order).
Break point management table that is arranged and stored in the table, a break point position table pointer that points to the immediately preceding break address in the break point management table, and a PSW that is taken out from the PSW upon a break in response to a user's execution instruction. When the current interruption address is larger (or smaller) than the interruption address extracted from the interruption point management table pointed by the immediately preceding interruption point position table pointer, the search is sequentially performed from the pointed position, or smaller (or larger). ) when sequentially searched from the beginning of the interruption point management table, when the interruption address match is found, and means to eject the statement number searches the text information table created during translation and the retrieved statement And a means for displaying a number .
【請求項2】 中断アドレスを検索する中断位置検索方
式において、 中断点を設定した手続き毎にその手続き開始アドレス、
手続き終了アドレス、および当該手続きの、翻訳時に作
成した文情報テーブルへのポインタを格納する手続き管
理情報と、 直前に使用した上記手続き管理情報へのポインタを格納
する直前中断手続き格納域と、 利用者からの実行指示に対応して中断時にPSWから
取り出した現在の中断アドレスが上記直前中断手続き格
納域のポインタでポイントする上記手続き管理情報の手
続き開始アドレスおよび手続き終了アドレスの間のとき
にポインタでポイントする文情報テーブルから一致する
アドレスの文番号を取り出し、一方、手続き開始アドレ
スおよび手続き終了アドレスの間でないときに上記手続
き管理情報を順次検索して手続き開始アドレスおよび手
続き終了アドレスの間にあるものを見つけ、この手続き
管理情報のポインタでポイントする文情報テーブルから
一致するアドレスの文番号を取り出す手段と、 この取り出された文番号を 表示する手段とを備えたこと
を特徴とする中断位置検索方式。
2. An interruption position search method for searching for an interruption address, wherein, for each procedure for which an interruption point is set, a procedure start address,
A procedure management information for storing a procedure end address and a pointer to a sentence information table created at the time of translation of the procedure, a immediately preceding suspended procedure storage area for storing a pointer to the procedure management information used immediately before; At the time of interruption in response to the execution instruction from, the current interruption address taken out from the PSW is pointed by the pointer of the immediately preceding interruption procedure storage area, and the pointer is located between the procedure start address and the procedure end address of the procedure management information. The statement number of the matching address is extracted from the statement information table to be pointed. On the other hand, when the procedure management information is not between the procedure start address and the procedure end address, the procedure management information is sequentially searched to find the statement between the procedure start address and the procedure end address. Find and point to this procedure management information pointer Means to eject the statement number of the address coincident with the statement information table, interrupt position search method characterized by comprising means for displaying the sentence number retrieved.
JP3022563A 1991-02-18 1991-02-18 Interruption location search method Expired - Fee Related JP2642787B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP3022563A JP2642787B2 (en) 1991-02-18 1991-02-18 Interruption location search method

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP3022563A JP2642787B2 (en) 1991-02-18 1991-02-18 Interruption location search method

Publications (2)

Publication Number Publication Date
JPH04263339A JPH04263339A (en) 1992-09-18
JP2642787B2 true JP2642787B2 (en) 1997-08-20

Family

ID=12086342

Family Applications (1)

Application Number Title Priority Date Filing Date
JP3022563A Expired - Fee Related JP2642787B2 (en) 1991-02-18 1991-02-18 Interruption location search method

Country Status (1)

Country Link
JP (1) JP2642787B2 (en)

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS61213936A (en) * 1985-03-18 1986-09-22 Omron Tateisi Electronics Co Step execution system for high-level language program
JPS63178341A (en) * 1987-01-20 1988-07-22 Fujitsu Ltd Program debugging system
JP2659366B2 (en) * 1987-02-16 1997-09-30 株式会社日立製作所 Debugging method and device

Also Published As

Publication number Publication date
JPH04263339A (en) 1992-09-18

Similar Documents

Publication Publication Date Title
JP2710188B2 (en) Method and data processing apparatus for generating interaction between data processing system and user
JPH067397Y2 (en) Document input device
JP2000276485A (en) Electronic dictionary device and recording medium where electronic dictionary program is recorded
JP2642787B2 (en) Interruption location search method
JPH08314965A (en) Document retrieving device
JP2991142B2 (en) Structured document database system with dynamic componentization function
JP2715222B2 (en) Dynamic reflection of operating environment
JPH04367029A (en) Programming device for programmable controller
JPH03129570A (en) Data base retrieving system
JP2644059B2 (en) Data input method
JPH0371342A (en) Reserved word deciding system
JP2751423B2 (en) Program debug processing method
JPS61279906A (en) Programmable controller
JPH05216684A (en) Program execution device and execution method
JPH1185755A (en) Machine translation system, method therefor and recording medium for machine translation
JP2623106B2 (en) Computer system
JPH05334152A (en) Rapid access method for variable length message file
JPH07152541A (en) Switching method for system non-interruption program
JPH038070A (en) Keyword extracting system
JP2728795B2 (en) Simulator debugger
JPH09282314A (en) Character input device
JP2745500B2 (en) String search device
JPH04360204A (en) Interactive nc device
JPH0365729A (en) Batch translation system
JPH05266021A (en) Data retrieving method

Legal Events

Date Code Title Description
A01 Written decision to grant a patent or to grant a registration (utility model)

Free format text: JAPANESE INTERMEDIATE CODE: A01

Effective date: 19970325

LAPS Cancellation because of no payment of annual fees