JPS63219037A - Data processor - Google Patents

Data processor

Info

Publication number
JPS63219037A
JPS63219037A JP5331687A JP5331687A JPS63219037A JP S63219037 A JPS63219037 A JP S63219037A JP 5331687 A JP5331687 A JP 5331687A JP 5331687 A JP5331687 A JP 5331687A JP S63219037 A JPS63219037 A JP S63219037A
Authority
JP
Japan
Prior art keywords
list
data
list data
data processing
memory device
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.)
Pending
Application number
JP5331687A
Other languages
Japanese (ja)
Inventor
Kazuo Okamura
和男 岡村
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.)
Panasonic Holdings Corp
Original Assignee
Matsushita Electric Industrial 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 Matsushita Electric Industrial Co Ltd filed Critical Matsushita Electric Industrial Co Ltd
Priority to JP5331687A priority Critical patent/JPS63219037A/en
Publication of JPS63219037A publication Critical patent/JPS63219037A/en
Pending legal-status Critical Current

Links

Abstract

PURPOSE:To obtain a deice capable of suppressing a data transferring quantity to be small by providing a main operation device, which stores the position of the respective node of a list data as the table type data of a vector expression and consists of a non-list data processing part. CONSTITUTION:A reference to an atom data is stored in the VALUE part of the list data, and a data processing is performed by a register 5 and an operating means 6 in an atom data processing part 7. A list data processing is performed by a list data processing part 4 in the main operation device 8 and by a suboperation device 12, and one of element registers 9 corresponds to the list register 2. When the list data of a main memory device 1 is processed, an identification information is transferred to the list register 2, and at the same time, a respective element is transferred to the element register 9 by a transferring device 13. At the same time that the list data of the device 1 is referred in the processing part 4, the corresponding area in the memory device is referred, and the processing of the list data is performed in parallel.

Description

【発明の詳細な説明】 産業上の利用分野 本発明は主に人工知能分野へ使用することを目的とした
データ処理装置に関するものである。
DETAILED DESCRIPTION OF THE INVENTION Field of Industrial Application The present invention relates to a data processing device mainly intended for use in the field of artificial intelligence.

従来の技術 近年、コンピュータ応用の一つとして人工知能分野が盛
んに研究されている。この分野においては構造を持った
データを処理する必要があり、そのため構造データを取
り扱うことのできる言語であるLISPが広く使用され
ている。しかしLISP言語は汎用のコンピュータで実
行するのは非効率であるため様々な工夫を施した専用マ
シンが開発されてきた。
BACKGROUND OF THE INVENTION In recent years, the field of artificial intelligence has been actively researched as one of computer applications. In this field, it is necessary to process structured data, and therefore LISP, a language that can handle structured data, is widely used. However, since it is inefficient to execute the LISP language on a general-purpose computer, special-purpose machines with various improvements have been developed.

これら専用マシンは主に言語的側面からアプローチを行
って改善を行ったものでその改善の内容の代表的なもの
を以下に示す。
These dedicated machines were improved mainly from a linguistic perspective, and the typical improvements made are shown below.

(1)  CAR,CDR等、原始的関数はマイクロプ
ログラムレベルで実行する。
(1) Primitive functions such as CAR and CDR are executed at the microprogram level.

(2)  ジェネリックデータタイプを扱うためTAG
付きデータ形式とする。
(2) TAG for handling generic data types
data format.

(3)スタック処理を高速にするためハードウェアコン
トロールスタックを設ける。
(3) Provide a hardware control stack to speed up stack processing.

(例えば、参考文献rLIsPマシン」情報処理Vo1
.23  k 8  pp 752−772)しかしな
がら、前記したような言語の実行系に関する改善はなさ
れてきたものの、計算機内部における構造体データの表
現としては基本的には要素の順序関係と結合の方法をポ
インタで表現したもの(以下リストと呼ぶ)を使用して
いる。この方法では全てのリスト操作にポインタを遂次
たどっていく操作を伴うため、人工知能分野の応用プロ
グラムに頻繁に現れる以下の操作を行うには本質的に効
率が悪い。(イ)パターンマツチング;リストの分解操
作を伴うため非効率である。(ロ)任意の要素へのアク
セス、リストの分解、特定要素の置き換え;リストたぐ
りとなり効率が悪い。
(For example, Reference rLIsP Machine" Information Processing Vol.
.. 23 k 8 pp 752-772) However, although improvements have been made to the execution system of the language as described above, the representation of structure data inside a computer is basically based on pointer order relationships and connection methods of elements. (hereinafter referred to as a list) is used. In this method, all list operations involve sequentially following the pointer, so it is essentially inefficient for performing the following operations that frequently appear in application programs in the field of artificial intelligence. (a) Pattern matching: It is inefficient because it involves decomposition of a list. (b) Accessing arbitrary elements, decomposing lists, replacing specific elements; it becomes a list traversal, which is inefficient.

上記の問題点を解決するために、リストデータの表現方
法をかえる提案がなされている。
In order to solve the above problems, proposals have been made to change the method of expressing list data.

一般に、2進木リストは始点のノードがら始まって順次
左右に分岐して行き葉のノードでそれぞれの分岐が終了
する形をとる。葉のノードにはアトムノードとNILノ
ードの2種類がある。葉のノードでないノードは分岐が
続行している事を示すリストノードである。このリスト
ノードは葉のノードの位置を間接的にあられすためのも
のである。
In general, a binary tree list starts from a starting node, branches left and right sequentially, and each branch ends at a leaf node. There are two types of leaf nodes: atom nodes and NIL nodes. Nodes that are not leaf nodes are list nodes that indicate that the branch is continuing. This list node is used to indirectly indicate the position of the leaf node.

ポインタ表現ではこの構造表現をそのままの形で全ての
ノードをアドレスで接続したセルで表現している。この
結果、各要素へのアクセスは常にアドレスの間接参照の
繰り返しが必要となっている。
In the pointer representation, this structural representation is expressed as is by cells in which all nodes are connected by addresses. As a result, access to each element always requires repeated indirect references to the address.

しかし、葉のノードの位置を直接的にあらゎすことがで
きれば、リストノードの情報を持つ必要はない。したが
って、葉の位置情報と葉自身の情報を順次並べた表で、
等価なリストデータを表現することができる。葉のノー
ド位置を表現する方法としてCDR方向に順次番号を付
け、CAR方向に順次項目を割り当てた一次元ベクトル
表現が提案されている。従ってリストデータは葉の位置
情報を示すベクトルと葉自身の情報を組としたデータの
集合で表現される。この表現法ではポインタ表現のよう
にリストの解釈を2進木リストに限る必要がない。
However, if the positions of leaf nodes can be directly determined, there is no need to have list node information. Therefore, in a table that sequentially arranges the leaf position information and the leaf's own information,
Equivalent list data can be expressed. A one-dimensional vector representation has been proposed as a method for expressing leaf node positions, in which numbers are sequentially assigned in the CDR direction and items are sequentially assigned in the CAR direction. Therefore, the list data is expressed as a set of data that includes a vector indicating leaf position information and information about the leaf itself. With this representation method, there is no need to limit the interpretation of a list to a binary tree list, as is the case with pointer representations.

第3図にリストデータの表現例を示す。これは8式で表
記した場合(A (B (C) ”) D)となるリス
トデータの図式表現(al、および、表形式表現(b)
を示したものである。図式表現において丸印はリストノ
ードを表し、四角で囲ったものは葉のノードを示してい
る。また各ノードの上に付記した数字列は上記した方法
に従って表したノード位置を示すものである。この葉の
部分を抜きだして表の形で表現したものが表形式表現(
blであって、アドレス部にノード位置ベクトルが、バ
リュ一部に葉の要素が入った表で構成されている。この
ような表現形式をとることにより、リストデータをポイ
ンタをたぐ°ることなく各要素に対し並列に処理するこ
とが可能になり、前述の操作を高速に行うことができる
FIG. 3 shows an example of list data representation. This is the graphical representation (al) and tabular representation (b) of list data that becomes (A (B (C) ”) D) when expressed in 8 formulas.
This is what is shown. In the diagrammatic representation, circles represent list nodes, and squares represent leaf nodes. Further, the number string added above each node indicates the node position expressed according to the above-described method. This leaf part is extracted and expressed in the form of a table, which is expressed in tabular form (
bl is composed of a table in which the address part contains the node position vector and the value part contains the leaf elements. By adopting such an expression format, it becomes possible to process each element of list data in parallel without moving pointers, and the above-described operations can be performed at high speed.

以下図面を参照しながら、この表表現に基づいた従来の
データ処理装置の一例について説明する。
An example of a conventional data processing device based on this tabular representation will be described below with reference to the drawings.

第4図は従来の処理装置を示すものである。第4図にお
いて、1は表形式のリストデータを記憶するメモリ装置
、2は、表形式データの各要素を処理する複数の処理ユ
ニット3からなるリストデータ処理装置、4はアトムデ
ータ処理装置、5は前述のメモリ装置から前述のリスト
データ処理中の各処理ユニットへ表形式データの各要素
を順次割り当てる転送装置である。
FIG. 4 shows a conventional processing device. In FIG. 4, 1 is a memory device that stores tabular list data, 2 is a list data processing device consisting of a plurality of processing units 3 that process each element of the tabular data, 4 is an atom data processing device, and 5 is a transfer device that sequentially allocates each element of tabular data from the aforementioned memory device to each processing unit that is processing the aforementioned list data.

以上のように構成されたデータ処理装置について、以下
その動作を説明する。
The operation of the data processing apparatus configured as described above will be described below.

まず、通常の数値データ、および文字データなどはアト
ムデータ処理装置4において処理される。
First, normal numerical data, character data, etc. are processed in the atom data processing device 4.

リストデータはメモリ装置1から各要素別にリストデー
タ処理装置内の各処理ユニット3に転送装置5により順
次転送され、各処理ユニットによって並列に処理される
。このようにアトムデータをリストデータとは別に処理
することにより、リストデータの効率的処理と、処理系
の構成の単純化を狙っている。
The list data is sequentially transferred from the memory device 1 to each processing unit 3 in the list data processing device for each element by the transfer device 5, and is processed in parallel by each processing unit. By processing atom data separately from list data in this way, we aim to efficiently process list data and simplify the configuration of the processing system.

発明が解決しようとする問題点 しかしながら上記のような構成では、メモリ装置からり
ストデータ処理装置内の各処理ユニソトへのデータ転送
が多発するので、リストデータの並列処理におけるボト
ルネックが発生するという問題点を有していた。
Problems to be Solved by the Invention However, with the above configuration, data transfer from the memory device to each processing unit in the list data processing device occurs frequently, resulting in a bottleneck in parallel processing of list data. It had some problems.

本発明は上記問題点に鑑み、表形式のリストデータの並
列処理においてデータ転送量が少ないデータ処理装置を
提供するものである。
In view of the above problems, the present invention provides a data processing device that reduces the amount of data transferred in parallel processing of tabular list data.

問題点を解決するための手段 上記問題点を解決するために本発明のデータ処理装置は
、リストデータの各ノードの位置をベクトルで表現した
表形式のデータとして記憶する主メモリ装置と、表形式
のリストデータの識別情報を記憶する複数のリストレジ
スタとリスト演算手段からなるリストデータ処理部およ
び複数個のレジスタと演算手段からなる非リストデータ
処理部からなる主演算装置と、表形式のリストデータの
各要素を記憶する複数の要素レジスータと演算手段と副
メモリ装置を持ち前記の主演算装置の制御のもとにリス
トデータの各要素を並列に処理する複数個の副演算装置
と、前記各副演算装置に対し前記主メモリ装置に蓄えら
れた表形式データの要素を順次割り当てる転送装置とを
、備えたものである。
Means for Solving the Problems In order to solve the above problems, the data processing device of the present invention includes a main memory device that stores the position of each node of list data as tabular data expressed as a vector; a main processing unit consisting of a list data processing section consisting of a plurality of list registers for storing identification information of list data and a list calculation means; a non-list data processing section consisting of a plurality of registers and a calculation means; and list data in a table format. a plurality of sub-processing units each having a plurality of element registers for storing each element of the list data, a calculation means, and a sub-memory device and processing each element of the list data in parallel under the control of the main processing unit; and a transfer device that sequentially allocates elements of the tabular data stored in the main memory device to the sub-processing device.

作用 本発明は上記した構成によって、表形式のりストデータ
を処理する複数個の処理ユニット毎に固有のメモリを持
つことにより、各処理ユニットに対しメモリ装置からの
転送が一度行われた後は、その情報は各処理ユニットに
記憶され以後の処理に使用することができる。この結果
処理の度にデータを転送することを避けることができる
ため、全体のデータ転送量を著しく減らすことができる
According to the above-described structure, the present invention has its own memory for each of the plurality of processing units that process list data in tabular format, so that once the data is transferred from the memory device to each processing unit, The information is stored in each processing unit and can be used for subsequent processing. As a result, it is possible to avoid transferring data every time processing is performed, so the overall amount of data transferred can be significantly reduced.

実施例 以下本発明の一実施例のデータ処理装置について、図面
を参照しながら説明する。第1図は本発明の実施例にお
けるデータ処理装置の構成を示すものである。第1図に
おいて、1は主メモリ装置、2はリストレジスタ、3は
リスト演算手段であり、リストデータ処理部4は複数の
リストレジスタとリスト演算手段の総称である。5はレ
ジスタ、6は演算手段であり、アトムデータ処理部7は
複数のレジスタと演算手段の総称である。さらに主演算
装置8はリストデータ処理部およびアトムデータ処理部
の総称である。9は要素レジスタ、10は要素演算手段
、11は副メモリ装置である。副演算装置12は要素レ
ジスタ、要素演算手段、および副メモリ装置の総称であ
る。13は転送装置である。
Embodiment Hereinafter, a data processing apparatus according to an embodiment of the present invention will be described with reference to the drawings. FIG. 1 shows the configuration of a data processing device in an embodiment of the present invention. In FIG. 1, 1 is a main memory device, 2 is a list register, and 3 is a list calculation means, and the list data processing section 4 is a general term for a plurality of list registers and list calculation means. 5 is a register, 6 is a calculation means, and the atom data processing section 7 is a general term for a plurality of registers and calculation means. Furthermore, the main processing unit 8 is a general term for the list data processing section and the atom data processing section. 9 is an element register, 10 is an element calculation means, and 11 is a sub memory device. The sub-processing device 12 is a general term for element registers, element calculation means, and sub-memory device. 13 is a transfer device.

第2図は上記実施例における副メモリ装置と主メモリ装
置のアドレス空間の関係を図示したものである。
FIG. 2 illustrates the relationship between the address spaces of the sub memory device and the main memory device in the above embodiment.

第2図において21は主メモリ装置のアドレス空間を表
し、22は前記アドレス空間中のりストデータ領域であ
り、23は副メモリ装置のアドレス空間である。
In FIG. 2, 21 represents the address space of the main memory device, 22 is the rest data area in the address space, and 23 is the address space of the sub memory device.

以上のように構成されたデータ処理装置につき、以下第
1図および第2図を用いて説明する。
The data processing apparatus configured as described above will be explained below using FIG. 1 and FIG. 2.

まず、リストデータの各要素のVALUE部にはアトム
データへのリファレンスが格納される。
First, a reference to atom data is stored in the VALUE section of each element of list data.

それらの実際の値である数値や文字のデータの処理は、
アトムデータ処理部7中のレジスタ5および演算手段6
を用いて行われる。これらのアトムデータは主記憶中に
格納される。
The processing of numerical and character data, which are their actual values, is
Register 5 and calculation means 6 in atom data processing section 7
This is done using These atom data are stored in main memory.

次にリストデータの処理は、主演算装置8内のリストデ
ータ処理部4と副演算装置12によって行われる。
Next, list data processing is performed by the list data processing unit 4 in the main processing unit 8 and the sub processing unit 12.

リストデータ処理部のひとつのリストレジスタ2に対し
、各副演算装置内の要素レジスタ9のひとつが対応する
。すなわち、リストレジスタ内にリストデータの識別情
報が格納され、対応する複数の要素レジスタ内にリスト
データの各要素がそれぞれ格納され、全体で一つのリス
トデータを表現している。
One list register 2 in the list data processing section corresponds to one element register 9 in each sub-processing unit. That is, identification information of list data is stored in a list register, and each element of list data is stored in a plurality of corresponding element registers, representing one list data as a whole.

主メモリ装置1に蓄えられたリストデータが処理される
場合、まずリストデータ処理部内のリストレジスタにリ
ストデータの識別情報が転送され、それと同時にリスト
データの各要素が転送装置13により各副演算装置の要
素レジスタに対し別々に転送される。そして前記リスト
レジスタに演算が施されると、対応する要素レジスタに
対し必要な演算が同時に施される。
When the list data stored in the main memory device 1 is processed, the identification information of the list data is first transferred to the list register in the list data processing section, and at the same time, each element of the list data is transferred to each sub-processing device by the transfer device 13. are transferred separately to the element registers. When an operation is performed on the list register, necessary operations are simultaneously performed on the corresponding element register.

一度転送された各要素のデータは各副演算装置の管理に
置かれ、各副演算装置の副メモリ装W12に蓄えられ、
主メモリ装置と副演算装置間の不要なデータ転送は行わ
れない。各副メモリ装置のアドレス空間23は図2に示
すように主メモリ装置のアドレス空間の一部分22に置
かれており、さらに全ての各副メモリ装置のアドレス空
間21は同一アドレスにある。この結果、ある特定のリ
ストデータの識別情報および各要素は、本データ処理装
置のアドレス空間の同一アドレス上に全て存在すること
になる。
The data of each element once transferred is placed under the management of each sub-processing unit and stored in the sub-memory device W12 of each sub-processing unit.
Unnecessary data transfer between the main memory device and the sub-processing device is not performed. The address space 23 of each secondary memory device is located in a portion 22 of the address space of the main memory device as shown in FIG. 2, and furthermore, the address space 21 of every secondary memory device is at the same address. As a result, the identification information and each element of certain list data all exist at the same address in the address space of this data processing device.

この結果、リストデータ処理部において、主メモリ装置
のアドレス空間中のりストデータ領域を参照すると、同
時に全ての各副演算装置において対応するメモリ装置中
の領域が参照され、リストデータの処理は並列に行われ
る。
As a result, when the list data processing section refers to the list data area in the address space of the main memory device, the corresponding area in the memory device is simultaneously referenced in all sub-processing units, and the list data processing is performed in parallel. It will be done.

この様なアドレス空間を持つことにより、簡単な構成で
データの転送量を最小に抑えた処理装置を構成すること
ができる。
By having such an address space, it is possible to configure a processing device that minimizes the amount of data transferred with a simple configuration.

発明の効果 以上のように本発明はりストデータの各ノードの位置を
ベクトルで表現した表形式のデータとして記憶する主メ
モリ装置と、表形式のリストデータの識別情報を記憶す
る複数のレジスタと演算手段からなるリストデータ処理
部および複数個のレジスタと演算手段からなる非リスト
データ処理部からなる主演算装置と、表形式のリストデ
ータの各要素を記憶する複数のレジスタと演算手段と副
メモリ装置を持ち前記の主演算装置の制御のもとにリス
トデータの各要素を並列に処理する複数個の副演算装置
と、前記各副演算装置に対し前記主メモリ装置に蓄えら
れた表形式データの要素を順次割り当てる転送装置とを
具備し、表形式のりストデータの並列処理においてデー
タ転送量を小さく抑えることのできるデータ処理装置を
提供するものである。
Effects of the Invention As described above, the present invention includes a main memory device that stores the position of each node of list data as tabular data expressed as a vector, a plurality of registers that store identification information of the tabular list data, and operations. a main processing unit consisting of a list data processing section consisting of means and a non-list data processing section consisting of a plurality of registers and arithmetic means, a plurality of registers for storing each element of list data in tabular form, arithmetic means, and a secondary memory device. a plurality of sub-processing units that process each element of list data in parallel under the control of the main processing unit; The present invention provides a data processing device that is equipped with a transfer device that sequentially allocates elements, and that can keep the amount of data transferred small in parallel processing of list data in a tabular format.

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

第1図は本発明の一実施例におけるデータ処理装置のブ
ロック図、第2図は第1図の主メモリ装置および副メモ
リ装置のアドレス空間上の対応図、第3図(al (b
)はリストデータの表形式表現の一例を示す説明図、第
4図は従来のデータ処理装置のブロック図である。 1・・・・・・主メモリ装置、2・・・・・・リストレ
ジスタ、3・・・・・・リスト演算手段、4・・・・・
・リストデータ処理部、5・・・・・・レジスタ、6・
・・・・・演算手段、7・・・・・・アトムデータ処理
部、8・・・・・・主演算装置、9・・・・・・要素レ
ジスタ、10・・・・・・要素演算手段、11・・・・
・・副メモリ装置、12・・・・・・副演算装置、13
・・・・・・転送装置。
FIG. 1 is a block diagram of a data processing device according to an embodiment of the present invention, FIG. 2 is a correspondence diagram of the address space of the main memory device and sub memory device in FIG. 1, and FIG.
) is an explanatory diagram showing an example of a tabular representation of list data, and FIG. 4 is a block diagram of a conventional data processing device. 1...Main memory device, 2...List register, 3...List calculation means, 4...
・List data processing unit, 5...Register, 6.
...Arithmetic means, 7...Atom data processing unit, 8...Main arithmetic unit, 9...Element register, 10...Element operation Means, 11...
...Sub-memory device, 12...Sub-processing device, 13
・・・・・・Transfer device.

Claims (1)

【特許請求の範囲】[Claims] リストデータの各ノードの位置をベクトルで表現した表
形式のデータとして記憶する主メモリ装置と、前記表形
式のリストデータの識別情報を記憶する複数のリストレ
ジスタとリスト演算手段からなるリストデータ処理部お
よび複数個のレジスタと演算手段からなる非リストデー
タ処理部からなる主演算装置と、前記表形式のリストデ
ータの各要素を記憶する複数の要素レジスタと要素演算
手段と副メモリ装置を持ち前記の主演算装置の制御のも
とにリストデータの各要素を並列に処理する複数個の副
演算装置と、前記各副演算装置に対し前記主メモリ装置
に蓄えられた表形式データの要素を順次割り当てる転送
装置とを備えたことを特徴とするデータ処理装置。
A list data processing unit comprising a main memory device that stores the position of each node of list data as tabular data expressed as a vector, a plurality of list registers that store identification information of the tabular list data, and list calculation means. and a main arithmetic unit comprising a non-list data processing section comprising a plurality of registers and arithmetic means, a plurality of element registers for storing each element of the tabular list data, an element arithmetic means, and an auxiliary memory device. a plurality of sub-processing units that process each element of list data in parallel under the control of the main processing unit; and sequentially allocating elements of the tabular data stored in the main memory unit to each of the sub-processing units; A data processing device comprising: a transfer device.
JP5331687A 1987-03-09 1987-03-09 Data processor Pending JPS63219037A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP5331687A JPS63219037A (en) 1987-03-09 1987-03-09 Data processor

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP5331687A JPS63219037A (en) 1987-03-09 1987-03-09 Data processor

Publications (1)

Publication Number Publication Date
JPS63219037A true JPS63219037A (en) 1988-09-12

Family

ID=12939314

Family Applications (1)

Application Number Title Priority Date Filing Date
JP5331687A Pending JPS63219037A (en) 1987-03-09 1987-03-09 Data processor

Country Status (1)

Country Link
JP (1) JPS63219037A (en)

Similar Documents

Publication Publication Date Title
EP0779584B1 (en) Apparatus for storing information for a host processor
JPS5883450A (en) Digital computer
JPS63219037A (en) Data processor
JP2606305B2 (en) Data processing device
JPS63292331A (en) Data processor
JPS63291127A (en) Data processor
JP2705166B2 (en) Data processing device
JPS63292330A (en) Data processor
JPH01287745A (en) Data processor
JPH0231278A (en) Data processor
JPS63255741A (en) Data processor
US20220129246A1 (en) Functional Method for Universal Computation by Extended Formal Matrix Product
JPH01145727A (en) Data processor
JPH0215332A (en) Data processor
JPS62256045A (en) Data driving type computer
JPS63118943A (en) Data processor
Dayar et al. Avoiding Unreachable States
JPH02158836A (en) Data processing device
Lyons Stack Frames and Local Variables1
JPS63276129A (en) Data processor
JPS63292333A (en) Data processor
JP2002530785A (en) Digital memory structure and device and management method thereof
JPS6361334A (en) Data processor
JPH01161440A (en) Data processor
JPH02110735A (en) List data processor