JPS6161419B2 - - Google Patents

Info

Publication number
JPS6161419B2
JPS6161419B2 JP55143811A JP14381180A JPS6161419B2 JP S6161419 B2 JPS6161419 B2 JP S6161419B2 JP 55143811 A JP55143811 A JP 55143811A JP 14381180 A JP14381180 A JP 14381180A JP S6161419 B2 JPS6161419 B2 JP S6161419B2
Authority
JP
Japan
Prior art keywords
data
memory
instruction
stored
counter
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
Application number
JP55143811A
Other languages
Japanese (ja)
Other versions
JPS5769460A (en
Inventor
Masahiro Kuryama
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 JP55143811A priority Critical patent/JPS5769460A/en
Publication of JPS5769460A publication Critical patent/JPS5769460A/en
Publication of JPS6161419B2 publication Critical patent/JPS6161419B2/ja
Granted legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/07Responding to the occurrence of a fault, e.g. fault tolerance
    • G06F11/14Error detection or correction of the data by redundancy in operation

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Quality & Reliability (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Retry When Errors Occur (AREA)
  • Executing Machine-Instructions (AREA)

Description

【発明の詳細な説明】 本発明は情報処理装置の命令実行中にメモリか
ら読出されたデータの必要なものを命令処理用メ
モリとは別に設けたメモリにセーブしておきエラ
ー発生により命令単位の再試行を行う時、セーブ
されていたデータをもとの命令処理用のメモリに
リストアして命令実行前の状態に戻して再実行す
る場合のデータセーブ制御方式に関するものであ
る。
DETAILED DESCRIPTION OF THE INVENTION The present invention saves necessary data read from memory during instruction execution in an information processing device in a memory provided separately from the instruction processing memory, and prevents data from being processed in units of instructions in the event of an error. This invention relates to a data save control method for restoring saved data to the original instruction processing memory to return to the state before the instruction was executed when retrying the instruction.

命令処理用のメモリより読出された命令やデー
タはレジスタに入り解読されて命令単位に実行さ
れ処理されて行くが、データ処理中にエラーが発
生すると再度命令実行前の状態に戻して再試行す
る必要がある。命令によつては例えば所番地のメ
モリ内容を+1、−1、2n倍等に変更することも
あり得るのでこの時にはデータは既に更新されて
変化しているかもしれない。この為、メモリより
読出されたデータをセーブしておきメモリにリス
トアすることが必要となる。さて、この場合、実
際に命令で使用されたデータだけセーブされてい
れば十分であるが、メモリを複数の処理装置で共
用させるときには干渉を避けるために必要以上の
データのセーブ・リストアは好ましくない。よつ
て使用されたデータの先頭が、メモリの読出し幅
の境界(例えば4バイト又は8バイトの境界)に
一致していなければ必要なデータだけ取り出した
り、逆にリストアするとき位置をあわせるのにバ
イトアラインを必要とする。すなわちメモリに格
納されたデータにはバイト単位にアドレスが与え
られておりこれにより1バイトが処理単位となる
がメモリからは通常一度に1ワード(例えば4バ
イト又は8バイト)単位で読出され命令ではワー
ド内の全バイトを使用するとは限らず必ずしもリ
ストアするデータとワードの先頭が合致すること
はないため不必要なデータを捨て先頭を合せるい
わゆるバイトアラインが必要となる等複雑な制御
を必要とする欠点がある。
Instructions and data read from the memory for instruction processing enter registers, are decoded, and are executed and processed instruction by instruction. However, if an error occurs during data processing, the system returns to the state before the instruction was executed and tries again. There is a need. Depending on the instruction, for example, the memory contents at the address may be changed by +1, -1, 2 n times, etc., so the data may have already been updated and changed at this time. Therefore, it is necessary to save the data read from the memory and restore it to the memory. Now, in this case, it is sufficient if only the data actually used in the instruction is saved, but when memory is shared by multiple processing units, it is not desirable to save and restore more data than necessary to avoid interference. . If the beginning of the used data does not match the boundary of the memory read width (for example, a 4-byte or 8-byte boundary), you can extract only the necessary data, or conversely, it takes a few bytes to align the position when restoring. Requires alignment. In other words, data stored in memory is given an address in units of bytes, so that one byte is a unit of processing, but data is usually read out from memory in units of one word (for example, 4 bytes or 8 bytes) at a time, and instructions are not used. Not all bytes in a word are necessarily used, and the data to be restored does not necessarily match the beginning of the word, so complex control is required, such as so-called byte alignment, which discards unnecessary data and aligns the beginning. There are drawbacks.

本発明の目的は上記の如き複雑な制御をなくし
マシンチエツクハンドラー(エラーの発生した場
合に起動されエラーの記録や回復を行うプログラ
ムあるいはマイクロプログラム等)を非常に簡単
にして短時間で再試行の準備が出来る様にして情
報処理装置の稼動率向上を図ることにある。
The purpose of the present invention is to eliminate the above-mentioned complicated control and to greatly simplify the machine check handler (a program or microprogram that is activated when an error occurs to record and recover from the error) so that it can be retried in a short time. The purpose is to improve the operating rate of an information processing device by making preparations possible.

本発明は必要なデータを含む1ワードを読出す
時、1ワードのデータすべてをそのまゝバイトア
ラインせずにセーブし、同時に該ワードのメモリ
アドレス、アクセス方向、(命令で使用された2
以上のバイトのアドレスがワードの切目から増加
する方向に並んでいるかその逆方向に並んでいる
かを示す)データ長又は必要とするバイト位置を
示すバイトマークをセーブする。更にデータがセ
ーブされているか否か及びセーブされたデータの
ワード数を示すカウンタを設ける。該カウンタは
命令の実行開始時にクリアされ、セーブする度に
セーブされたワード数だけカウントアツプされ
る。リストアはセーブされたデータ、アドレス、
アクセス方向、データ長等を用いてカウンタに示
された回数だけ行えば良い。
When reading one word containing necessary data, the present invention saves all the data of one word as is without byte alignment, and at the same time changes the memory address of the word, the access direction, (the two used in the instruction)
Save a byte mark indicating the data length or the required byte position (indicating whether the addresses of the above bytes are arranged in the increasing direction from the word break or in the opposite direction). Furthermore, a counter is provided to indicate whether data is saved or not and the number of words of saved data. The counter is cleared at the start of execution of an instruction, and is incremented by the number of words saved each time it is saved. Restoring saved data, addresses,
It is sufficient to perform the process as many times as indicated on the counter using the access direction, data length, etc.

以下図面に従い詳細に説明する。 A detailed explanation will be given below according to the drawings.

図面は本発明の一実施例を示す回路のブロツク
図で本発明に関係する部分のみ示し他は省略して
ある。1はメモリ、2はメモリアドレスレジス
タ、3はレングスレジスタ、4はアクセスデイレ
クシヨンレジスタ、5はカウンタ、6はアドレス
セーブメモリ、7はデータセーブメモリ、8は処
理装置、9,10は制御回路である。処理装置8
とメモリ1とメモリアドレス2と制御回路9は情
報処理装置を構成する主要部で、その他と制御回
路9の一部が本発明に関する部分である。メモリ
アドレスレジスタ2の指定するアドレスによりメ
モリ1より読出されたデータの中セーブする必要
のあるものはデータセーブメモリ7へ入りセーブ
され、又一方メモリアドレス、アクセス方向及び
データ長等はアドレスセーブメモリ6に入りセー
ブされると共にカウンタ5をカウントアツプす
る。但しカウンタ5は命令の実行開始時にクリア
され、セーブするたびにカウントアツプされる。
エラーが発生した場合、リストアを行うがカウン
タ5の内容を調べ0ならばリストアする必要がな
いものと判定し或量が示されていればカウントダ
ウンしながらリストアする。即ちアドレスセーブ
メモリ6の出力は制御回路10を経てメモリアド
レスレジスタ2、レングスレジスタ3及びアクセ
スデイレクシヨンレジスタ4に戻されメモリ1の
アドレス、アクセス方向、データ長等を読出した
時と同一になる様にしてデータセーブメモリ7よ
り読出されたデータを制御回路9により正常動作
時のメモリライト回路(図示せず)を用いてメモ
リ1にリストアしカウンタ5をカウントダウンす
る。カウンタ5が0になるまで、上記と同様の動
作を繰り返す。
The drawing is a block diagram of a circuit showing one embodiment of the present invention, and only parts related to the present invention are shown and other parts are omitted. 1 is a memory, 2 is a memory address register, 3 is a length register, 4 is an access direction register, 5 is a counter, 6 is an address save memory, 7 is a data save memory, 8 is a processing unit, 9 and 10 are control circuits It is. Processing device 8
, the memory 1, the memory address 2, and the control circuit 9 are the main parts constituting the information processing apparatus, and the others and a part of the control circuit 9 are parts related to the present invention. Data that needs to be saved among the data read out from the memory 1 according to the address specified by the memory address register 2 is stored in the data save memory 7, while the memory address, access direction, data length, etc. are stored in the address save memory 6. The data is entered and saved, and the counter 5 is counted up. However, the counter 5 is cleared at the start of execution of the instruction, and is incremented every time the instruction is saved.
When an error occurs, restoration is performed, but the contents of the counter 5 are checked, and if it is 0, it is determined that restoration is not necessary, and if a certain amount is indicated, restoration is performed while counting down. That is, the output of the address save memory 6 is returned to the memory address register 2, length register 3, and access direction register 4 via the control circuit 10, so that the address, access direction, data length, etc. of the memory 1 are the same as when they were read. The control circuit 9 restores the data read out from the data save memory 7 to the memory 1 using a memory write circuit (not shown) during normal operation, and the counter 5 counts down. The same operation as above is repeated until the counter 5 reaches 0.

以上説明した如く本発明はワード内でのデータ
の位置、アクセス方向、データのバイト単位アク
セスと連続アクセスの違いなどを意識することな
くセーブ及びリストアが行え複雑な制御を要しな
い。セーブデータを必要とする命令か否か、ある
いはセーブデータの量の命令ごとの違いもカウン
タのみで区別出来るので命令ごとに異なつた制御
をする必要がなくなりマシンチエツクハンドラー
が非常に簡単になり短時間で再試行の準備が出来
る様になる。
As explained above, according to the present invention, saving and restoring can be performed without being aware of the position of data within a word, the access direction, the difference between byte-by-byte access and continuous access of data, etc., and does not require complicated control. Since the counter alone can distinguish whether an instruction requires save data or the difference in the amount of save data for each instruction, there is no need to perform different controls for each instruction, which greatly simplifies the machine check handler and saves time. Now you can prepare to try again.

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

図面は本発明の一実施例を示す回路のブロツク
図である。1はメモリ、2はメモリアドレスレジ
スタ、3はレングスレジスタ、4はアクセスデイ
レクシヨンレジスタ、5はカウンタ、6はアドレ
スセーブメモリ、7はデータセーブメモリ、8は
処理装置、9,10は制御回路である。
The drawing is a block diagram of a circuit showing one embodiment of the present invention. 1 is a memory, 2 is a memory address register, 3 is a length register, 4 is an access direction register, 5 is a counter, 6 is an address save memory, 7 is a data save memory, 8 is a processing unit, 9 and 10 are control circuits It is.

Claims (1)

【特許請求の範囲】 1 命令により処理されるデータを格納する第1
のメモリおよび該第1のメモリとは独立したセー
ブ情報格納用の第2のメモリを有し、命令実行
中、該命令により処理すべく第1のメモリから読
出された所要のデータを第2のメモリに記憶させ
ておき、エラー発生時第2のメモリに記憶された
データを用いて命令実行前の状態を再現し、命令
再試行を行う情報処理装置において第2のメモリ
に第1のメモリから読出された1ワードのデータ
中の複数の処理単位の全てを記憶させると共に、
該データのアクセスに関するメモリ・アドレスお
よびワード内の該命令処理で使用される処理単位
の範囲を示す情報も記憶させることを特徴とする
データセーブ制御方式。 2 上記第2のメモリは最後に記憶されたデータ
の位置を示すためのカウンタを備え、該カウンタ
は命令実行開始時にクリアされ、データが記憶保
持されるたびにカウントアツプされることを特徴
とする特許請求の範囲1項記載のデータセーブ制
御方式。
[Claims] 1. A first storage unit storing data to be processed by an instruction.
and a second memory for storing save information independent of the first memory, and during execution of an instruction, necessary data read from the first memory to be processed by the instruction is stored in the second memory. The data is stored in a memory, and when an error occurs, the data stored in the second memory is used to reproduce the state before the instruction execution, and in an information processing device that retries the instruction, the data is transferred from the first memory to the second memory. Storing all of the plurality of processing units in one word of read data, and
A data save control method characterized in that information indicating a memory address related to accessing the data and a range of processing units used in the instruction processing within a word is also stored. 2. The second memory has a counter for indicating the position of the last stored data, and the counter is cleared at the start of instruction execution, and is incremented each time data is stored. A data save control method according to claim 1.
JP55143811A 1980-10-15 1980-10-15 Data saving control system Granted JPS5769460A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP55143811A JPS5769460A (en) 1980-10-15 1980-10-15 Data saving control system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP55143811A JPS5769460A (en) 1980-10-15 1980-10-15 Data saving control system

Publications (2)

Publication Number Publication Date
JPS5769460A JPS5769460A (en) 1982-04-28
JPS6161419B2 true JPS6161419B2 (en) 1986-12-25

Family

ID=15347513

Family Applications (1)

Application Number Title Priority Date Filing Date
JP55143811A Granted JPS5769460A (en) 1980-10-15 1980-10-15 Data saving control system

Country Status (1)

Country Link
JP (1) JPS5769460A (en)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS59125453A (en) * 1982-12-31 1984-07-19 Fujitsu Ltd Retrying system
JP5263497B2 (en) * 2008-07-09 2013-08-14 セイコーエプソン株式会社 Signal processor and semiconductor device
JP5263498B2 (en) * 2008-07-09 2013-08-14 セイコーエプソン株式会社 Signal processor and semiconductor device

Also Published As

Publication number Publication date
JPS5769460A (en) 1982-04-28

Similar Documents

Publication Publication Date Title
GB1182240A (en) Data Processing Systems.
US4985826A (en) Method and device to execute two instruction sequences in an order determined in advance
JPS6161419B2 (en)
IE61306B1 (en) Method and device to execute two instruction sequences in an order determined in advance
US5590279A (en) Memory data copying apparatus
KR860002027B1 (en) Key memory error processing system
JP3130798B2 (en) Bus transfer device
JPS58154043A (en) Information processor
JP3344432B2 (en) Information processing device
JPH0690683B2 (en) Fault handling method for multiprocessor system
JPH043218A (en) Method and device for writing data
JPS6050672A (en) Read control system of rotary memory
JPS6161273A (en) Control system of memory device
EP0358224A2 (en) Semiconductor disk device useful in transaction processing system
SU1124314A1 (en) Device for restoring information when occuring faults in computer blocks
JPH02143343A (en) Robustizing processing system for storing ordinal file
JP2772192B2 (en) I / O processor
JPH0259837A (en) Data recovery processing system
JPS6044709B2 (en) Buff retry method
JPH02245846A (en) Memory protecting circuit
JPS609300B2 (en) information processing equipment
JPS6332642A (en) Information processor
JPS6180447A (en) Store control system of memory
JPH03283188A (en) Memory system
JPS592151A (en) Check point recovering system