JP2917384B2 - Information processing device - Google Patents

Information processing device

Info

Publication number
JP2917384B2
JP2917384B2 JP8270590A JP8270590A JP2917384B2 JP 2917384 B2 JP2917384 B2 JP 2917384B2 JP 8270590 A JP8270590 A JP 8270590A JP 8270590 A JP8270590 A JP 8270590A JP 2917384 B2 JP2917384 B2 JP 2917384B2
Authority
JP
Japan
Prior art keywords
instruction
segment
address
register
operand
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 - Lifetime
Application number
JP8270590A
Other languages
Japanese (ja)
Other versions
JPH03282622A (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.)
NEC Corp
Original Assignee
Nippon Electric Co 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 Nippon Electric Co Ltd filed Critical Nippon Electric Co Ltd
Priority to JP8270590A priority Critical patent/JP2917384B2/en
Publication of JPH03282622A publication Critical patent/JPH03282622A/en
Application granted granted Critical
Publication of JP2917384B2 publication Critical patent/JP2917384B2/en
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Landscapes

  • Advance Control (AREA)

Description

【発明の詳細な説明】 〔産業上の利用分野〕 本発明は、情報処理装置に関する。Description: TECHNICAL FIELD The present invention relates to an information processing apparatus.

〔従来の技術〕[Conventional technology]

情報処理装置の記憶管理の手法の一つにセグメンテー
ションがある。セグメンテーションによると、記憶はセ
グメントと呼ばれる単位で管理される。セグメントはセ
グメント記述子と呼ばれる記述子で規定される。
Segmentation is one of the storage management methods of an information processing device. According to segmentation, storage is managed in units called segments. A segment is defined by a descriptor called a segment descriptor.

第3図にセグメント記述子の一例を示す。この例では
セグメント記述子はフラグ、リミット、ベースの3つの
フィールドで構成される。フラグ部はこのセグメント記
述子が規定するセグメントの属性が与えられる(読み出
し可、書き込み可、実行可等)。リセット部はセグメン
トのサイズを示す。ベース部はセグメントのベースアド
レスを示している。
FIG. 3 shows an example of the segment descriptor. In this example, the segment descriptor is composed of three fields: flag, limit, and base. The flag section is provided with the attribute of the segment defined by the segment descriptor (readable, writable, executable, etc.). The reset section indicates the size of the segment. The base indicates the base address of the segment.

セグメントに対するアクセスは、そのセグメントを規
定するセグメント記述子をセグメントレジスタと呼ばれ
るレジスタにロードした後、命令により生成されるアド
レス(実行アドレスと称す。)をセグメントレジスタに
ロードされたセグメント記述子のベース部に加算するこ
とでおこなわれる。このときの命令とオペランドの関係
は第4図に示される。
To access a segment, after loading a segment descriptor defining the segment into a register called a segment register, an address generated by an instruction (referred to as an execution address) is stored in the base of the segment descriptor loaded into the segment register. This is done by adding The relationship between the instruction and the operand at this time is shown in FIG.

セグメント記述子はパラメータセグメント,アーギュ
メントセグメント,リンケージセグメント等の制御プロ
グラムが管理するセグメントに格納されている。各セグ
メントのセグメント記述子はパラメータセグメントレジ
スタ,アーギュメントセグメントレジスタ,リンケージ
セグメントレジスタと呼ばれるレジスタに格納されてい
て制御プログラムにより管理されている。
The segment descriptor is stored in a segment managed by the control program, such as a parameter segment, an argument segment, and a linkage segment. The segment descriptor of each segment is stored in registers called parameter segment registers, argument segment registers, and linkage segment registers, and is managed by a control program.

ロードポインタ命令は、あるセグメントに格納されて
いるオペランドをアクセスするために、そのセグメント
を規定するセグメント記述子とセグメント内のアドレス
を、それぞれセグメントレジスタとアドレスレジスタに
ロードする。
In order to access an operand stored in a certain segment, the load pointer instruction loads a segment descriptor defining the segment and an address in the segment into a segment register and an address register, respectively.

第5図にロードポインタ命令の動作の概略が示されて
いる。
FIG. 5 shows the outline of the operation of the load pointer instruction.

ロードポインタ命令ではアドレス生成した後、そのア
ドレスを直接オペランドとするかまたはそのアドレスを
もとにメモリアクセスすることでオペランドを得る(ア
ドレス修飾部によって決まる)。オペランドは図に示さ
れるようにAR,S.Dと呼ばれる3つのフィールドに分割さ
れる。AR部はそのままアドレスレジスタにロードされ
る。S部,D部はセグメント記述子のID情報である。S部
はセグメント記述子がどのセグメントに格納されている
かを示している。D部はセグメント内のディスプレース
メントアドレス情報を示している。このID情報で指定さ
れるセグメント記述子がセグメントレジスタにロードさ
れる。
In the load pointer instruction, after an address is generated, the operand is directly obtained as an operand or a memory is accessed based on the address to obtain an operand (determined by an address modifier). The operand is divided into three fields called AR and SD as shown in the figure. The AR section is loaded into the address register as it is. The S and D parts are ID information of the segment descriptor. The S section indicates in which segment the segment descriptor is stored. The part D indicates the displacement address information in the segment. The segment descriptor specified by this ID information is loaded into the segment register.

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

上述したように、従来の情報処理装置においては、ロ
ードポインタ命令は異なるセグメントに格納されている
オペランドをアクセスするときに出現する比較的出現頻
度の高い命令であるが、オペランドの読み出しとセグメ
ント記述子の読み出しの2回のメモリアクセスが必要で
あり、高速化が困難であった。
As described above, in the conventional information processing apparatus, the load pointer instruction is an instruction that appears relatively frequently when accessing an operand stored in a different segment. Reading requires two memory accesses, and it is difficult to increase the speed.

また、パイプライン化された情報処理装置において
は、この2回のメモリアクセスはパイプライン化されな
い為、特に処理時間が長くなるという問題があった。
Further, in a pipelined information processing apparatus, since the two memory accesses are not pipelined, there is a problem that the processing time is particularly long.

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

本発明の装置は、セグメンテーションにより記憶管理
をおこなう情報処理装置において、 過去の命令の履歴におけるあらかじめ定められたロー
ドポインタ命令の命令アドレス情報と該ロードポインタ
命令のオペランドとして指定されるセグメント記述子の
ID情報とを対にして複数対記憶するヒストリテーブル手
段と、 命令先取りにおいて、先取りされるべきロードポイン
タ命令のアドレス情報が前記ヒストリテーブル手段に登
録されているか否かを調べ、該ロードポインタ命令の登
録の判明に応答して前記ヒストリテーブル手段から応答
するID情報を読み出す手段と、 該読出し手段により読み出されたセグメント記述子の
ID情報に従ってセグメント記述子の読み出し動作を実施
するセグメント記述子読み出し手段とを具備することを
特徴とする。
An apparatus according to the present invention is an information processing apparatus that performs storage management by segmentation. The information processing apparatus includes: a predetermined instruction address information of a load pointer instruction in a history of past instructions; and a segment descriptor specified as an operand of the load pointer instruction.
History table means for storing a plurality of pairs of ID information; and in instruction prefetching, it is checked whether or not address information of a load pointer instruction to be prefetched is registered in the history table means. Means for reading ID information responding from the history table means in response to the identification of the registration, and reading of the segment descriptor read by the reading means.
Segment descriptor reading means for performing a segment descriptor reading operation according to the ID information.

〔実施例〕〔Example〕

次に、本発明の実施例について図面を参照して説明す
る。
Next, embodiments of the present invention will be described with reference to the drawings.

第1図は本発明の情報処理装置の一実施例を示す構成
図、第2図は第1図のアドレスヒストリテーブル106の
詳細を示す構成図である。
FIG. 1 is a configuration diagram showing an embodiment of the information processing apparatus of the present invention, and FIG. 2 is a configuration diagram showing details of the address history table 106 of FIG.

先行制御装置1は命令読出しのための仮想アドレスを
出力し、読出しされた命令を入力し、入力した命令のオ
ペランド読出しのための仮想アドレスを出力し、オペラ
ンドを読み出す。
The preceding controller 1 outputs a virtual address for reading an instruction, inputs a read instruction, outputs a virtual address for reading an operand of the input instruction, and reads an operand.

命令キャッシュ2は先行制御装置1から命令読出しの
ための仮想アドレスを入力し、入力した仮想アドレスに
対応して記憶されている命令を出力する。
The instruction cache 2 inputs a virtual address for reading an instruction from the preceding control device 1 and outputs an instruction stored corresponding to the input virtual address.

オペランドキャッシュ3は先行制御装置1からオペラ
ンド読出しのための仮想アドレスを入力し、入力した仮
想アドレスに対応して記憶されているオペランドを先行
制御装置1と演算実行装置(図示省略)とに出力する。
The operand cache 3 inputs a virtual address for reading an operand from the preceding control device 1 and outputs an operand stored corresponding to the input virtual address to the preceding control device 1 and an operation execution device (not shown). .

次に本実施例の動作について説明する。 Next, the operation of this embodiment will be described.

先行制御装置1の命令先取り用IC101が、命令先取り
動作毎に命令セグメントレジスタ103に格納されている
命令セグメントのベース部と加算器104で加算され、命
令仮想アドレスレジスタ105に設定される。命令仮想ア
ドレスレジスタ105の出力は命令読出しのための仮想ア
ドレスとして命令キャッシュ2に送出されるとともに、
先行制御装置1のアドレスヒストリテーブル106にも送
出される。ヒストリテーブル106には入力した命令先取
りアドレスに該当するアドレスが記録されていないもの
とする。
The instruction prefetch IC 101 of the preceding control device 1 adds the base of the instruction segment stored in the instruction segment register 103 to the base of the instruction segment in the instruction virtual address register 105 for each instruction prefetch operation. The output of the instruction virtual address register 105 is sent to the instruction cache 2 as a virtual address for reading an instruction.
It is also sent to the address history table 106 of the preceding control device 1. It is assumed that no address corresponding to the input instruction prefetch address is recorded in the history table 106.

命令キャッシュ2は、入力した命令先取りアドレスを
アドレス変換機構204によりアドレス変換することで対
応する物理アドレスを生成する。この物理アドレスをも
とに命令キャッシュのアドレス部205とデータ部203を索
引することで命令が読み出される。読み出された命令
は、先行制御装置1の命令レジスタ114に設定される。
The instruction cache 2 converts the input instruction prefetch address by the address conversion mechanism 204 to generate a corresponding physical address. The instruction is read out by indexing the address part 205 and the data part 203 of the instruction cache based on the physical address. The read instruction is set in the instruction register 114 of the preceding control device 1.

デコード・制御装置118は命令レジスタ114に設定され
た命令をデコードして命令の種類を判定する。また、命
令レジスタ114に設定された命令の所定のビット位置の
指定をもとにアドレスレジスタファイル116,インデック
スレジスタファイル117,セグメントレジスタファイル11
5よりアドレスレジスタ,インデックスレジスタ,セグ
メントレジスタの内容が読出される。命令レジスタ114
に設定された命令のディスプレースメント及び、アドレ
スレジスタ,インデックスレジスタ,セグメントレジス
タの内容がそれぞれデコード・制御装置118により制御
されるセレクタ119,120,121,122を介してレジスタ126,1
24,125,123にそれぞれ設定される。アドレス加算器127
はレジスタ126,124,125,123の出力を加算してオペラン
ドアドレスを求め、その結果は仮想アドレスレジスタ12
8に設定される。仮想アドレスレジスタ128の出力は、オ
ペランド読み出しのための仮想アドレスとしてオペラン
ドキャッシュ3に送出される。
The decode / control device 118 decodes the instruction set in the instruction register 114 to determine the type of the instruction. The address register file 116, the index register file 117, and the segment register file 11 are specified based on the specified bit position of the instruction set in the instruction register 114.
From 5, the contents of the address register, index register, and segment register are read. Instruction register 114
, And the contents of the address register, index register, and segment register are controlled by the decode / control device 118 through the registers 126, 1 via the selectors 119, 120, 121, 122, respectively.
24,125,123 are set respectively. Address adder 127
Calculates the operand address by adding the outputs of the registers 126, 124, 125, and 123, and the result is the virtual address register 12
Set to 8. The output of the virtual address register 128 is sent to the operand cache 3 as a virtual address for reading the operand.

オペランドキャッシュ3は入力したオペランドアドレ
スをアドレス変換機構301によりアドレス変換すること
で対応する物理アドレスを生成する。この物理アドレス
をもとに、オペランドキャッシュのアドレス部306とデ
ータ部303を索引することでオペランドが読み出され
る。読み出されたオペランドは演算実行装置(図示省
略)と先行制御装置1のアドレスヒストリテーブル106
とセレクタ109とに送られる。
The operand cache 3 converts the input operand address by the address conversion mechanism 301 to generate a corresponding physical address. Based on the physical address, the operand is read by indexing the address section 306 and the data section 303 of the operand cache. The read operands are stored in the address history table 106 of the operation execution device (not shown) and the preceding control device 1.
And sent to the selector 109.

処理中の命令がロードポインタ命令のときは、オペラ
ンドキャッシュより送られたオペランドはセレクタ109
を介してレジスタ112に設定される。レジスタ112に設定
されたオペランドは第5図で示されるように、AR部,S
部,D部より構成される。S部をもとにしてセグメントレ
ジスタファイル115よりセグメント記述子が格納されて
いるセグメントのセグメント記述子が読み出されセレク
タ119を介してレジスタ123に設定される。同時にD部は
セレクタ122を介してレジスタ126に設定される。このと
き、レジスタ124,125には‘0'が設定される。レジスタ1
23〜126の値はアドレス加算器127により加算され、仮想
アドレスとしてオペランドキャッシュ3に送られる。こ
の仮想アドレスに対応したアドレスに格納されているセ
グメント記述子が読み出され、演算実行装置に送られ
る。
If the instruction being processed is a load pointer instruction, the operand sent from the operand cache is the selector 109
Is set in the register 112 via The operand set in the register 112 is, as shown in FIG.
Section and D section. The segment descriptor of the segment in which the segment descriptor is stored is read out from the segment register file 115 based on the S portion, and is set in the register 123 via the selector 119. At the same time, the D section is set in the register 126 via the selector 122. At this time, '0' is set in the registers 124 and 125. Register 1
The values 23 to 126 are added by the address adder 127 and sent to the operand cache 3 as a virtual address. The segment descriptor stored at the address corresponding to the virtual address is read and sent to the operation execution device.

演算実行装置は最初に読み出したオペランドのAR部と
次に読み出したセグメント記述子をアドレスレジスタフ
ァイル116,セグメントレジスタファイル115に格納して
ロードポインタ命令の処理は終了する(パスは不図
示)。
The arithmetic execution device stores the AR portion of the operand read first and the segment descriptor read next in the address register file 116 and the segment register file 115, and ends the processing of the load pointer instruction (the path is not shown).

第2図には第1図におけるアドレスヒストリテーブル
106の詳細が示されている。ヒストリテーブル106はCAM
構造になっている。本実施例では、4ワードのフルアソ
シアティブ構成になっているが、ワード数は問わない。
またセットアソシアティブ構成でも良い。
FIG. 2 shows the address history table in FIG.
106 details are shown. History table 106 is CAM
It has a structure. In this embodiment, a four-word fully associative configuration is used, but the number of words is not limited.
Also, a set associative configuration may be used.

ヒストリテーブル106のタグ部11にはロードポインタ
の命令の格納されていたアドレスがその実行の履歴とし
て設定される。このアドレスは、アドレス計算用IC110
の出力が使用され、デコード・制御装置118がロードポ
インタ命令を検出したときタグ部11に格納される。デー
タ部にはオペランドキャッシュ3により送られたロード
ポインタ命令のオペランドのID情報S,D部が格納され、
タグ部11に格納されたアドレス情報と対になる。アドレ
ス計算用IC110は相対分岐命令等で使用されるもので命
令レジスタ114に設定される命令が格納されていたアド
レスを保持し、命令レジスタ114には1命令語ずつ設定
されるのでインクリメントは1番地ずつ行なわれる。
In the tag section 11 of the history table 106, the address where the instruction of the load pointer is stored is set as the execution history. This address is the address calculation IC110
Is output to the tag unit 11 when the decode / control device 118 detects the load pointer instruction. The data section stores the ID information S and D sections of the operands of the load pointer instruction sent by the operand cache 3.
It is paired with the address information stored in the tag unit 11. The address calculation IC 110 is used for a relative branch instruction or the like, and holds the address where the instruction set in the instruction register 114 is stored. Since the instruction register 114 is set for each instruction word, the increment is 1 address. It is performed one by one.

同じ番地のロードポインタ命令が再び処理されるとき
は、ヒストリテーブル106に格納された履歴として使用
される。命令読み出し仮想アドレスがレジスタ105より
送られると比較回路13によりタグ部11の値と比較され
る。ここで一致がみられると、一致したタグ部11と対に
なったデータ部がセレクタ15を介してレジスタ107に設
定される。また一致を示す情報がオアゲート14で生成さ
れフリップフロップ108に設定される。
When the load pointer instruction at the same address is processed again, it is used as a history stored in the history table 106. When the instruction read virtual address is sent from the register 105, it is compared with the value of the tag unit 11 by the comparison circuit 13. If a match is found here, the data portion paired with the matched tag portion 11 is set in the register 107 via the selector 15. Information indicating a match is generated by the OR gate 14 and set in the flip-flop 108.

レジスタ107とフリップフロップ108の値はそれぞれレ
ジスタ112,フィリップフロップ113に設定される。ロー
ドポインタ命令が命令キャッシュ2より命令レジスタ11
4に読み出されたとき、デコーダ・制御装置118はフリッ
プフロップ113の値によりレジスタ112にそのロードポイ
ンタ命令のS,D部が読み出されていると判定し、オペラ
ンドの読み出しとセグメント記述子の読み出しを連続し
ておこなえる。
The values of the register 107 and the flip-flop 108 are set in the register 112 and the flip-flop 113, respectively. Load pointer instruction is stored in instruction register 11 from instruction cache 2.
4, the decoder / control device 118 determines that the S and D portions of the load pointer instruction have been read out to the register 112 based on the value of the flip-flop 113, reads the operand, and reads the segment descriptor. Reading can be performed continuously.

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

以上説明したように本発明は、ロードポインタ命令が
格納されているアドレスをタグ部に保持し、該命令のセ
グメント記述子のID情報をデータに保持するヒストリテ
ーブル手段を用いて、ロードポインタ命令の先取りに応
じて上記ヒストリテーブル手段を索引することにより得
られる上記データ部出力よりID情報を得ることにより、
命令先取りとID情報読出しを並列しておこなうことがで
きるため、オペランドに含まれるID情報によりセグメン
ト記述子を読み出す処理に比べ、オペランドとセグメン
ト記述子を連続して読み出せるため、ハイプライン処理
の乱れを減少させるという効果がある。
As described above, the present invention uses the history table means for storing the address at which the load pointer instruction is stored in the tag section and storing the ID information of the segment descriptor of the instruction in the data, using the history table means. By obtaining ID information from the data section output obtained by indexing the history table means according to prefetching,
Since instruction prefetching and ID information reading can be performed in parallel, the operand and segment descriptor can be read continuously compared to the process of reading the segment descriptor based on the ID information included in the operand. It has the effect of reducing it.

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

第1図は本発明の一実施例を示す情報処理装置の概略ブ
ロック図、第2図はヒストリバッファの概略ブロック
図、第3図はセグメントとセグメント記述子の関係を示
す図、第4図はセグメンテーションにより記憶管理方式
のセグメントとオペランドの関係を示す図、第5図はロ
ードポインタ命令の処理を示す図である。 1……先行制御装置、2……命令キャッシュ、 3……オペランドキャッシュ。
FIG. 1 is a schematic block diagram of an information processing apparatus showing one embodiment of the present invention, FIG. 2 is a schematic block diagram of a history buffer, FIG. 3 is a diagram showing the relationship between segments and segment descriptors, and FIG. FIG. 5 is a diagram showing a relationship between a segment and an operand in a storage management system by segmentation, and FIG. 5 is a diagram showing processing of a load pointer instruction. 1 ... preceding control device, 2 ... instruction cache, 3 ... operand cache.

Claims (1)

(57)【特許請求の範囲】(57) [Claims] 【請求項1】セグメンテーションにより記憶管理をおこ
なう情報処理装置において、 過去の命令の履歴におけるあらかじめ定められたゼグメ
ント記述子とセグメント内のアドレスをそれぞれセグメ
ントレジスタとアドレスレジスタにロードする命令の命
令アドレス情報と該命令のオペランドとして指定される
セグメント記述子のID情報とを対にして複数対記憶する
ヒストリテーブル手段と、 命令先取りにおいて、先取りされるべき前記命令のアド
レス情報が前記ヒストリテーブル手段に登録されている
か否かを調べ、該命令の登録の判明に応答して前記ヒス
トリテーブル手段から応答するID情報を読み出す手段
と、 該読出し手段により読み出されたセグメント記述子のID
情報に従ってセグメント記述子の読み出し動作を実施す
るセグメント記述子読み出し手段とを具備することを特
徴とする情報処理装置。
1. An information processing apparatus for performing storage management by segmentation, comprising: a predetermined segment descriptor in a history of past instructions and instruction address information of an instruction to load an address in a segment into a segment register and an address register, respectively. History table means for storing a plurality of pairs of ID information of a segment descriptor designated as an operand of the instruction; and in instruction prefetching, address information of the instruction to be prefetched is registered in the history table means. Means for examining whether or not the instruction has been registered and reading ID information responding from the history table means in response to the registration of the instruction; and an ID of the segment descriptor read by the reading means.
An information processing apparatus comprising: a segment descriptor reading unit that performs a segment descriptor reading operation according to information.
JP8270590A 1990-03-29 1990-03-29 Information processing device Expired - Lifetime JP2917384B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP8270590A JP2917384B2 (en) 1990-03-29 1990-03-29 Information processing device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP8270590A JP2917384B2 (en) 1990-03-29 1990-03-29 Information processing device

Publications (2)

Publication Number Publication Date
JPH03282622A JPH03282622A (en) 1991-12-12
JP2917384B2 true JP2917384B2 (en) 1999-07-12

Family

ID=13781820

Family Applications (1)

Application Number Title Priority Date Filing Date
JP8270590A Expired - Lifetime JP2917384B2 (en) 1990-03-29 1990-03-29 Information processing device

Country Status (1)

Country Link
JP (1) JP2917384B2 (en)

Also Published As

Publication number Publication date
JPH03282622A (en) 1991-12-12

Similar Documents

Publication Publication Date Title
US5408626A (en) One clock address pipelining in segmentation unit
KR0185988B1 (en) Ensuring data integrety by locked-load and conditional-store operations in a multiprocessor system
KR100218572B1 (en) Granularity hint for translation buffer in high performace processor
KR100190252B1 (en) Branch performance in high speed processor
US4679140A (en) Data processor with control of the significant bit lengths of general purpose registers
KR100309615B1 (en) High Speed Programmable Logic Controllers (PLC)
JPH06119166A (en) Method for performing data operation in register with simplified-instruction-set processor
JPS6217252B2 (en)
US6687808B2 (en) Data processor using indirect register addressing
JP2917384B2 (en) Information processing device
US5864877A (en) Apparatus and method for fast forwarding of table index (TI) bit for descriptor table selection
US5822607A (en) Method for fast validation checking for code and data segment descriptor loads
US5815729A (en) Method and apparatus for on the fly descriptor validation
JPH0552539B2 (en)
JP2540959B2 (en) Information processing device
KR930002324B1 (en) Microprocessor with buffer
JP3147884B2 (en) Storage device and information processing device
JPH0471219B2 (en)
JPS61145643A (en) Variable word length instruction processing system
JP2878526B2 (en) Prefetch control method
JPH0282331A (en) Cache memory controlling system
JPH03185539A (en) Data processor
JPH06332701A (en) Information processor
JPH07271580A (en) Data processor provided with branching destination prediction processing function
JPH024011B2 (en)