JPH01150936A - Program executing system - Google Patents

Program executing system

Info

Publication number
JPH01150936A
JPH01150936A JP62311641A JP31164187A JPH01150936A JP H01150936 A JPH01150936 A JP H01150936A JP 62311641 A JP62311641 A JP 62311641A JP 31164187 A JP31164187 A JP 31164187A JP H01150936 A JPH01150936 A JP H01150936A
Authority
JP
Japan
Prior art keywords
segment
page
segments
program
linker
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
JP62311641A
Other languages
Japanese (ja)
Inventor
Nobuko Miyamoto
宮本 伸子
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
NEC Corp
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 NEC Corp filed Critical NEC Corp
Priority to JP62311641A priority Critical patent/JPH01150936A/en
Publication of JPH01150936A publication Critical patent/JPH01150936A/en
Pending legal-status Critical Current

Links

Abstract

PURPOSE:To make the execution of a program faster by providing a collective segment preparing means in a linker, a batch loading instruction segment preparing means and a page input means in a page loader. CONSTITUTION:A collective segment preparing means 22 in a linker 2 prepares a collective segment which collects related segments, and a batch loading instruction segment preparing means 21 in the linker 2 prepares a segment descriptor related to the collective segment prepared by the collective segment preparing means 22 in batch loading instruction segments 31 and 31'. Further, a page input means 41 in a page loader 4 loads the page corresponding to the collective segment related to the segment descriptor to a real memory 7 based on the segment descriptor in the batch loading instruction segments 31 and 31' prepared by the batch load instruction segment preparing means 21 at the time of the execution of the program. Thus, the generation of a page absence fault decreases, the time of an input/output processing is shortened based on the decrease of the number of page inputs/outputs, and the execution speed of the program is made faster.

Description

【発明の詳細な説明】 〔産業上の利用分野〕 本発明はプログラム実行方式に関し、特にセグメンテー
ションベージング方式と呼ばれる仮想記憶方式を採用す
るコンピュータシステム(仮想空間を固定サイズで分割
するページにプログラムの分割単位であるセグメントが
対応づけられ必要に応じてページが実記憶上にロードさ
れながらプログラムが実行されるコンピュータシステム
)におけるプログラム実行方式に関する。
[Detailed Description of the Invention] [Field of Industrial Application] The present invention relates to a program execution method, and in particular to a computer system that adopts a virtual storage method called a segmentation baging method (a computer system in which a program is divided into pages in which virtual space is divided into fixed size pages). The present invention relates to a program execution method in a computer system in which segments, which are division units, are associated with each other and a program is executed while pages are loaded onto real memory as necessary.

〔従来の技術〕[Conventional technology]

従来、この種のプログラム実行方式では、オブジェクト
モジュールがリンカによりロードモジュールに変換され
る際にオブジェクトモジュール内の情報に基づいてロー
ドモジュール上のセグメントが仮想空間上のページに対
応づけられていく。
Conventionally, in this type of program execution method, when an object module is converted into a load module by a linker, segments on the load module are associated with pages in a virtual space based on information in the object module.

ロードモジュール上のセグメント(ページに対応づけら
れているセグメント)はバンキングストアファイルと呼
ばれるファイル上に実行時に移され、バッキングストア
ファイルと実記憶との間でページ単位による入出力が行
われながらプログラムが実行されていく。
Segments on the load module (segments associated with pages) are moved to a file called a banking store file during execution, and the program is executed while inputting and outputting pages between the backing store file and real memory. It will be executed.

実記憶およびバンキングストアファイルと仮想記憶との
対応は、ページテーブルと呼ばれるテーブルによって管
理されている。
The correspondence between real storage and banking store files and virtual storage is managed by a table called a page table.

ページテーブルは、仮想空間内のページの状態を示して
おり、各ページが実記憶とバンキングストアファイルと
のいずれに存在するか(実記憶やバッキングストアファ
イルに実際に存在するのはページに対応づけられている
セグメントである)を示す情報を有し、ページが実記憶
上に存在している場合には実記憶上のそのページの位置
を示しページがバッキングストアファイル上に存在して
いる場合にはバッキングストアファイル上のそのページ
の位置を示す情報を有している。
The page table shows the status of pages in the virtual space, and indicates whether each page exists in real memory or in the banking store file (the page actually exists in the real memory or backing store file). If the page exists in real memory, it indicates the location of the page in real memory. If the page exists in the backing store file, it contains information indicating the location of the page in real memory. contains information indicating the location of that page on the backing store file.

プログラム実行中に参照すべきロケーションを含むペー
ジが実記憶上に存在しない場合には、ページ不在フォル
トが発生しページローダが起動される。
If a page containing a location to be referenced does not exist in real storage during program execution, a page-absence fault occurs and a page loader is activated.

ページローダでは、バッキングストアファイルから必要
なページ(実際にはページに対応するセグメント)が実
記憶上にロードされ、ロードされたページに対応するペ
ージテーブル上のページポインタに実記憶上にページが
ロードされたことを示す情報がセットされ、ロードモジ
ュールにより実現されるプログラムに制御が渡される。
In the page loader, the required page (actually a segment corresponding to the page) is loaded from the backing store file onto real memory, and the page is loaded onto real memory at the page pointer on the page table corresponding to the loaded page. information indicating that the load module has been executed is set, and control is passed to the program implemented by the load module.

第2図は上述のような従来のプログラム実行方式の一例
の構成を示すブロック図であるが、次にこのように構成
されたプログラム実行方式の動作について説明する。
FIG. 2 is a block diagram showing the configuration of an example of the conventional program execution system as described above. Next, the operation of the program execution system configured as described above will be explained.

リンカ20では、オブジェクトファイルlOからオブジ
ェクトモジュールが入力され、各セグメントが仮想空間
60上のページP1.P2.・・・、Pn(nは正整数
)に対応づけられて仮想空間60上のページテーブル6
01が作成されながらロートモ、ジュール30が作成さ
れて出力される。
In the linker 20, object modules are input from the object file IO, and each segment is assigned to a page P1. P2. ..., the page table 6 on the virtual space 60 in association with Pn (n is a positive integer)
While 01 is being created, the rotor module 30 is created and output.

リンカ20によって作成されたロードモジュール30(
セグメント5EGI、5EG2.・・・、SEGm(m
は正整数)により構成されている)は、図示しない移送
手段によりバフキングストアファイル50(バッキング
ストアファイル50上のセグメント5RCI ’、5E
G2 ’、−、SEGm’はセグメント5EGI、5E
G2.  ・=、SEGmと等価である)にプログラム
の実行時に移される。
The load module 30 created by the linker 20 (
Segments 5EGI, 5EG2. ..., SEGm(m
is a positive integer)) are transferred to the buffing store file 50 (segments 5RCI', 5E on the backing store file 50) by a transfer means (not shown).
G2', -, SEGm' are segments 5EGI, 5E
G2.・=, which is equivalent to SEGm) at program execution time.

このようなロードモジュール30により実現されるプロ
グラムが実行される場合に(セグメント5EGIおよび
5EG2 (セグメント5EGI’および5EG2’)
がそれぞれページP1およびP2に割り付けられている
ものとする)、セグメント5RGI  (SEGI ’
)内のロケーションに対する参照が行われたとすると、
ページテーブル601上のページPIの状態を示すペー
ジポインタに基づいてページPI(実際にはページPI
に対応するセグメントSP:G1’)がバフ・キングス
トアファイル50と実記憶70とのいずれに存在するか
がページローダ40により判定される。
When a program realized by such a load module 30 is executed (segments 5EGI and 5EG2 (segments 5EGI' and 5EG2')
are allocated to pages P1 and P2, respectively), segment 5RGI (SEGI '
), if a reference is made to a location within
The page PI (actually, the page PI
The page loader 40 determines whether the segment SP:G1′) corresponding to .

この判定でページP1がバッキングストアファイル50
上に存在し実記憶70上には存在しない場合(ページ不
在フォルトが発生した場合)には、ページPI(ページ
P1に対応するバッキングストアファイル50上のセグ
メント5EGI’)がページローダ40により実記憶7
0上にロードされ、ページテーブル601上のページP
1の状態を示すページポインタに「ロード済み」を示す
情報がページローダ40によりセットされ、ロードモジ
ュール30により実現されるプログラムに制御が渡され
る(ページ不在フォルトが発生しない場合には直ちにプ
ログラムに制御が渡される)。
With this determination, page P1 is the backing store file 50.
If the page PI (segment 5EGI' on the backing store file 50 corresponding to page P1) is stored in the real memory 70 by the page loader 40 (if a page fault occurs) 7
0 and page P on page table 601
The page loader 40 sets information indicating "loaded" to the page pointer indicating the state 1, and control is passed to the program implemented by the load module 30 (if no page fault occurs, control is immediately passed to the program). is passed).

プログラムの実行が進みセグメンl−3EG2 (SE
G2’)内のロケーションに対する参照が行われた場合
も同様に、ページ不在フォルトが発生するとページロー
ダ40によりページP2の実記憶70上へのロードが行
われる。
As the program progresses, segment l-3EG2 (SE
Similarly, when a reference is made to a location in G2'), when a page fault occurs, page loader 40 loads page P2 onto real storage 70.

以上説明したように、従来のプログラム実行方式では、
ページ不在フォルトが発生する毎に必要なページが1つ
ずつ実記憶上にロードされてプログラムの実行が行われ
ていた。
As explained above, in the conventional program execution method,
Each time a page fault occurs, the necessary pages are loaded one by one onto real memory and the program is executed.

〔発明が解決しようとする問題点〕[Problem that the invention seeks to solve]

上述した従来のプログラム実行方式では、1回のローデ
ィングで1つのページしか実記憶上にロードすることが
できないので、特にプログラムが大規模になりセグメン
トの数が増加し1つのセグメントから他のセグメント内
のロケーションへの参照が増加すると、ページ不在フォ
ルトが多発しページの入出力回数の増加に基づき入出力
処理の時間が長大になりプログラムの実行速度が低下す
るという欠点がある。
In the conventional program execution method described above, only one page can be loaded into real memory at one loading time, so when the program becomes large-scale and the number of segments increases, When the number of references to the location increases, page faults occur frequently, and the increase in the number of page input/outputs increases the time required for input/output processing, resulting in a decrease in program execution speed.

本発明の目的は、上述の点に鑑み、1回のローディング
で複数の必要なページを実記憶上にロードすることによ
り、ページ不在フォルトの発生が減少しページの入出力
回数の減少に基づき入出力処理の時間が短縮されプログ
ラムの実行速度が高速化されるプログラム実行方式を提
供することにある。
In view of the above-mentioned points, an object of the present invention is to load a plurality of necessary pages onto real memory in one loading operation, thereby reducing the occurrence of page faults and reducing the number of page input/outputs. An object of the present invention is to provide a program execution method that reduces output processing time and increases program execution speed.

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

本発明のプログラム実行方式は、関連あるセグメントが
一括された集合セグメントを作成するリンカ内の集合セ
グメント作成手段と、この集合セグメント作成手段によ
り作成された集合セグメントに係るセグメント記述子を
一括ロード指示セグメント内に作成するリンカ内の一括
ロード指示セグメント作成手段と、プログラムの実行時
に前記一括ロード指示セグメント作成手段により作成さ
れた一括ロード指示セグメント内のセグメント記−迷子
に基づいてそのセグメント記述子に係る集合セグメント
に対応するページを実記憶にロードするページローダ内
のページ入力手段とを有する。
The program execution method of the present invention includes a set segment creation means in a linker that creates a set segment in which related segments are grouped together, and a segment descriptor for collectively loading segment descriptors related to the set segments created by this set segment creation means. a set of segment descriptors based on the segment descriptors in the batch load instruction segment created by the batch load instruction segment creation means in the linker when the program is executed; and page input means in a page loader for loading a page corresponding to a segment into real memory.

〔作用〕[Effect]

本発明のプログラム実行方式では、リンカ内の集合セグ
メント作成手段が関連あるセグメントを一括した集合セ
グメントを作成し、リンカ内の一括ロード指示セグメン
ト作成手段が集合セグメント作成手段により作成された
集合セグメントに係るセグメント記述子を一括ロード指
示セグメント内に作成し、ページローダ内のページ入力
手段がプログラムの実行時に一括ロード指示セグメント
作成手段により作成された一括ロード指示セグメント内
のセグメント記述子に基づいてそのセグメント記述子に
係る集合セグメントに対応するページを実記憶にロード
する。
In the program execution method of the present invention, the set segment creation means in the linker creates a set segment that collectively includes related segments, and the batch load instruction segment creation means in the linker creates a set segment related to the set segment created by the set segment creation means. A segment descriptor is created in the bulk load instruction segment, and the page input means in the page loader writes the segment description based on the segment descriptor in the bulk load instruction segment created by the bulk load instruction segment creation means when the program is executed. Load the page corresponding to the child aggregate segment into real memory.

〔実施例〕〔Example〕

次に、本発明について図面を参照して説明する。 Next, the present invention will be explained with reference to the drawings.

第1図は、本発明のプログラム実行方式の一実施例の構
成を示すプロンク図である0本実施例のプログラム実行
方式は、オブジェクトファイル1と、リンカ2と、ロー
ドモジエール3と、ページローダ4と、バッキングスト
アファイル5と、仮想空間6と、実記憶7とから構成さ
れている。
FIG. 1 is a diagram showing the configuration of an embodiment of the program execution method of the present invention. The program execution method of this embodiment includes an object file 1, a linker 2, a load module 3, and a page loader. 4, a backing store file 5, a virtual space 6, and a real memory 7.

オブジェクトファイル1は、オブジェクトモジュールM
l(セグメント5RGIIおよび5EG12により構成
されている)、M2(セグメント5EG21および5E
G22により構成されている)、・・・。
Object file 1 is object module M
l (consisted of segments 5RGII and 5EG12), M2 (segments 5EG21 and 5E
G22),...

Mj! (Jは正整数)を有している(オブジェクトモ
ジエールM2はオブジェクトモジュールMlから呼ばれ
るという関係にある)。
Mj! (J is a positive integer) (object module M2 is called from object module M1).

リンカ2は、一括ロード指示セグメント作成手段21と
、集合セグメント作成手段22とを含んで構成されてい
る。
The linker 2 includes a bulk load instruction segment creation means 21 and a set segment creation means 22.

ロードモジエール3は、一括ロード指示セグメント31
と、集合セグメント31(セグメント5EG11.5B
G12.5EG21および5BG22により構成されて
いる)、S2.・・・、Sk (kは正整数)とを含ん
で構成されている。
Load module 3 is batch load instruction segment 31
and set segment 31 (segment 5EG11.5B
G12.5EG21 and 5BG22), S2. ..., Sk (k is a positive integer).

ベージローダ4は、ページ入力手段41を含んで構成さ
れている。
The page loader 4 includes page input means 41.

バッキングストアファイル5は、一括ロード指示セグメ
ント31′と、集合セグメント81′ (セグメント5
EGI1.5EG12.5EG21および5EG22に
より構成されている)、S2’、・・・、Sk′とを含
んで構成されている。
The backing store file 5 includes a bulk load instruction segment 31' and a collection segment 81' (segment 5
EGI1.5EG12.5EG21 and 5EG22), S2', . . . , Sk'.

仮想空間6は、ページテーブル61(実際には実記憶7
等のメモリ上に存在する)と、ページP1゜P2.・・
・、Pj  (jは正整数)とを含んで構成されている
The virtual space 6 has a page table 61 (actually the real memory 7
etc.) and pages P1゜P2.・・・
, Pj (j is a positive integer).

次に、このように構成された本実施例のプログラム実行
方式の動作について説明する。
Next, the operation of the program execution method of this embodiment configured as described above will be explained.

リンカ2内の集合セグメント作成手段22では、図示し
ない入力手段によりオブジェクトファイル1から入力さ
れた情報(セグメント5EGI1. 5EG12,5E
G21および5EG22等の間の「コール関係(あるも
のが他のものに呼ばれる関係)」や「定義・参照関係(
あるものの中で他のものの中で使用される変数等が定義
されている関係)」等に基づきセグメント5EGI1.
5EG12,5EG21および5EG22等の間の関連
性を示す情@)に基づいて、セグメント5EGII、5
EG12,5EG21および5EG22が一括された集
合セグメン)Slを含む集合セグメント31.S2.・
・・、Skがロードモジュール3上に作成される。
The set segment creation means 22 in the linker 2 receives information (segments 5EGI1, 5EG12, 5E) input from the object file 1 by an input means (not shown).
"Call relationship (relationship in which something is called by something else)" and "definition/reference relationship (relationship where something is called by something else)" between G21 and 5EG22, etc.
Segment 5EGI1.
Based on the information showing the relationship between 5EG12, 5EG21 and 5EG22 etc., segments 5EGII, 5
EG12, 5EG21 and 5EG22 are grouped together) Set segment 31 containing Sl. S2.・
..., Sk is created on the load module 3.

さらに、集合セグメント作成手段22では、集合セグメ
ン)31.32.・・・、Skが仮想空間6上のページ
PI、P2.・・・、Pjに対応づけられてその対応づ
けに基づいてページテーブル61が作成され、集合セグ
メントSl、32.・・・、Skの大きさ(サイズ)お
よび属性ならびに集合セグメン)Sl、32.・・・、
Skに対応するページP1゜P2.・・・、Pjの仮想
空間6における位置の情報がリンカ2内の一括ロード指
示セグメント作成手段21に渡される。
Furthermore, the set segment creation means 22 generates set segments) 31, 32. . . , Sk is the page PI on the virtual space 6, P2 . . . , Pj, a page table 61 is created based on the association, and the set segments Sl, 32 . ..., the size and attributes of Sk and the set segment) Sl, 32. ...,
Pages P1゜P2.corresponding to Sk. ..., information on the position of Pj in the virtual space 6 is passed to the batch load instruction segment creation means 21 in the linker 2.

一括ロード指示セグメント作成手段21では、集合セグ
メント作成手段22から渡された上述の情報に基づき集
合セグメント31,32.・・・、Skに係るセグメン
ト記述子(上述の情報に基づく集合セグメントSl、3
2.・・・、Skの大きさおよび属性ならびに集合セグ
メント31.32.・・・、Skに対応するページP1
.P2.・・・、Pjの仮想空間6における位置等の集
合セグメントSl、S2、・・・、Skの内容を記述す
る情報)が一括ロード指示セグメント31内に作成され
てロードモジュール3上に出力される。
The batch load instruction segment creation means 21 generates the set segments 31, 32, etc. based on the above information passed from the set segment creation means 22. ..., segment descriptor for Sk (set segment Sl, 3 based on the above information)
2. ..., the size and attributes of Sk and the set segments 31.32. ..., page P1 corresponding to Sk
.. P2. ..., information describing the contents of the set segments Sl, S2, ..., Sk, such as the position of Pj in the virtual space 6) is created in the bulk load instruction segment 31 and output to the load module 3. .

このようにしてリンカ2によって作成されたロードモジ
エール3は、プログラムの実行時に図示しない移送手段
によりバッキングストアファイル5に移される(ロード
モジュール3上の一括ロード指示セグメント31は移送
先のバッキングストアファイル5上で一括ロード指示セ
グメント31′となり、ロードモジュール3上の集合セ
グメントS1、 S2.・・・、Skは移送先のバッキ
ングストアファイル5上で集合セグメントSl’、S2
’。
The load module 3 created by the linker 2 in this way is transferred to the backing store file 5 by a transfer means (not shown) when the program is executed. The set segments S1, S2..., Sk on the load module 3 become the batch load instruction segment 31' on the backing store file 5 of the transfer destination.
'.

・・・、Sk’となる)。..., Sk').

上述のようにして作成されたロードモジュール3により
実現されるプログラムの実行中にセグメント5EG11
内のロケーションに対する参照が行われた場合には(集
合セグメントS1はページP1の先頭からページP2に
渡って割り付けられているものとする)、セグメントS
゛EG11を有する集合セグメントS1に対応するペー
ジテーブル61上のページPIおよびP2の状態を示す
ページポインタに基づいてページP1およびP2(実際
にはページP1およびP2に対応する集合セグメン)S
l’)がバッキングストアファイル5と実記憶7とのい
ずれに存在するかがページローダ4により判定される。
During the execution of the program realized by the load module 3 created as described above, segment 5EG11
If a reference is made to a location in segment S (assuming that set segment S1 is allocated from the beginning of page P1 to page P2), segment S
Pages P1 and P2 (actually the set segment corresponding to pages P1 and P2) S based on the page pointers indicating the states of pages PI and P2 on the page table 61 corresponding to the set segment S1 having EG11
The page loader 4 determines whether the file ``l''' exists in the backing store file 5 or the real storage 7.

この判定でページP1およびP2が実記憶7上には存在
しないことが判明した場合(ページ不在フォルトが発生
した場合)には、ページローダ4内のページ入力手段4
1により一括ロード指示セグメント31′内の集合セグ
メントSl’に係るセグメント記述子に基づいて集合セ
グメントSl′の割り付けられているページP1および
P2(実際にはバッキングストアファイル5上の集合セ
グメント31’そのもの)が実記憶7上にロードされ、
ページテーブル61上のページPiおよびP2の状態を
示すページポインタに「ロード済み」を示す情報がセッ
トされ、ロードモジュール3により実現されるプログラ
ムに制御が渡される(ページ不在フォルトが発生しない
場合には直ちにプログラムに制御が渡される)。
If this judgment reveals that pages P1 and P2 do not exist on the real memory 7 (if a page absent fault occurs), the page input means 4 in the page loader 4
1, the pages P1 and P2 to which the set segment Sl' is allocated based on the segment descriptor related to the set segment Sl' in the bulk load instruction segment 31' (actually, the set segment 31' itself on the backing store file 5 ) is loaded onto the real memory 7,
Information indicating "loaded" is set to the page pointer indicating the status of pages Pi and P2 on the page table 61, and control is passed to the program realized by the load module 3 (if no page fault occurs, control is passed to the program immediately).

さらに、プログラムの実行が進みオブジェクトモジュー
ルMlによりオブジェクトモジュールM2が呼び出され
た場合には、オブジェクトモジュールM2の構成要素で
あるセグメント5EG21および5EG22を含むペー
ジP1およびP2はセグメント5EGIIに対応するペ
ージ不在フォルトの発生時にすでに実記憶7上にロード
されているので、ページ不在フォルトが発生することな
く、すなわち実記憶7に対するページの入出力が行われ
ることなくプログラムが続行されることになる。
Furthermore, when the program execution progresses and object module M2 is called by object module Ml, pages P1 and P2 containing segments 5EG21 and 5EG22, which are components of object module M2, will receive a page fault fault corresponding to segment 5EGII. Since it has already been loaded onto the real memory 7 at the time of occurrence, the program continues without a page fault occurring, that is, without page input/output to/from the real memory 7.

〔発明の効果〕〔Effect of the invention〕

以上説明したように本発明は、リンカ内の集合セグメン
ト作成手段および一括ロード指示セグメント作成手段と
ページローダ内のページ入力手段とを設けることにより
、ページ不在フォルトの発生が凍少しページの入出力回
数の減少に基づき入出力処理の時間が短縮されプログラ
ムの実行速度が裔速化されるという効果がある。
As explained above, the present invention provides a set segment creation means and a batch load instruction segment creation means in the linker, and a page input means in the page loader, thereby preventing the occurrence of a page fault and reducing the number of page input/outputs. This has the effect of shortening input/output processing time and speeding up program execution.

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

第1図は本発明の一実施例の構成を示すブロック図、 第2図は従来のプログラム実行方式の一例の構成を示す
ブロック図である。 図において、 1・・・オブジェクトファイル、 2・・・リンカ、 3・・・ロードモジュール、 4・・・ページローダ、 5・・・バッキングストアファイル、 6・・・仮想空間、 7・・・実記憶、 21・・・一括ロード指示セグメント作成手段、22・
・・集合セグメント作成手段、 31.31’ ・・・一括ロード指示セグメント、41
・・・ページ入力手段、 61・・・ページテーブル、。 M1〜M1・・・オブジェクトモジュール、P1〜Pj
・・・ページ、 81〜Sk、St’〜Sk’ ・・・集合セグメント、 5RGI1.5EG12.5EG21,5EG22・・
・セグメントである。
FIG. 1 is a block diagram showing the configuration of an embodiment of the present invention, and FIG. 2 is a block diagram showing the configuration of an example of a conventional program execution method. In the figure, 1... Object file, 2... Linker, 3... Load module, 4... Page loader, 5... Backing store file, 6... Virtual space, 7... Real Memory, 21... Batch load instruction segment creation means, 22.
...Collection segment creation means, 31.31' ...Batch load instruction segment, 41
...Page input means, 61...Page table. M1-M1...object module, P1-Pj
...Page, 81~Sk, St'~Sk'... Set segment, 5RGI1.5EG12.5EG21, 5EG22...
・It is a segment.

Claims (1)

【特許請求の範囲】 関連あるセグメントが一括された集合セグメントを作成
するリンカ内の集合セグメント作成手段と、 この集合セグメント作成手段により作成された集合セグ
メントに係るセグメント記述子を一括ロード指示セグメ
ント内に作成するリンカ内の一括ロード指示セグメント
作成手段と、 プログラムの実行時に前記一括ロード指示セグメント作
成手段により作成された一括ロード指示セグメント内の
セグメント記述子に基づいてそのセグメント記述子に係
る集合セグメントに対応するページを実記憶にロードす
るページローダ内のページ入力手段と、 を有することを特徴とするプログラム実行方式。
[Claims] A set segment creation means in a linker that creates a set segment in which related segments are grouped together, and a segment descriptor related to the set segment created by this set segment creation means in a batch load instruction segment. Based on the bulk load instruction segment creation means in the linker to be created and the segment descriptor in the bulk load instruction segment created by the bulk load instruction segment creation means during program execution, it corresponds to a set segment related to the segment descriptor. A program execution method comprising: page input means in a page loader for loading a page to be stored into real memory;
JP62311641A 1987-12-08 1987-12-08 Program executing system Pending JPH01150936A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP62311641A JPH01150936A (en) 1987-12-08 1987-12-08 Program executing system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP62311641A JPH01150936A (en) 1987-12-08 1987-12-08 Program executing system

Publications (1)

Publication Number Publication Date
JPH01150936A true JPH01150936A (en) 1989-06-13

Family

ID=18019716

Family Applications (1)

Application Number Title Priority Date Filing Date
JP62311641A Pending JPH01150936A (en) 1987-12-08 1987-12-08 Program executing system

Country Status (1)

Country Link
JP (1) JPH01150936A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH0377135A (en) * 1989-08-20 1991-04-02 Pfu Ltd Function rearranging system
JPH04188225A (en) * 1990-11-21 1992-07-06 Matsushita Electric Ind Co Ltd Cooperative editing device

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS60153552A (en) * 1984-01-24 1985-08-13 Nec Corp Collective loading system of segment

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPS60153552A (en) * 1984-01-24 1985-08-13 Nec Corp Collective loading system of segment

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH0377135A (en) * 1989-08-20 1991-04-02 Pfu Ltd Function rearranging system
JPH04188225A (en) * 1990-11-21 1992-07-06 Matsushita Electric Ind Co Ltd Cooperative editing device

Similar Documents

Publication Publication Date Title
EP0144792B1 (en) Method for dynamic invocation of a utility computer program from an application program
CN101730881B (en) System comprising a plurality of processors and methods of operating the same
JP2770603B2 (en) Parallel computer
JPS6258341A (en) Input and output interruption processing system
GB1441816A (en) Electronic digital data processing systems
EP0387871B1 (en) Extended memory address control system
EP1429246A1 (en) Apparatus and method for switching mode in a computer system
JPH01150936A (en) Program executing system
JP2001014139A (en) Multi-thread sort processing system and method using work file
JPH0754467B2 (en) Data processing device
JPS61184643A (en) Starting control system for virtual computer
KR920008959B1 (en) Method of transferring information for virtual computer system
JPS6223895B2 (en)
JP2663600B2 (en) Control table relocation processing method
JPH04181454A (en) Data access controller
McParland Data acquisition at the Bevalac, an example: The HISS facility
JPS63201730A (en) Software stack control method
JPS6128137A (en) Simultaneous loading processing system
Jackson An experimental multi-processor architecture for small business applications
Gilmore IMP as a tool for small operating systems implementation
JPH0793199A (en) Storage system
Soma et al. A priority interrupt oriented hybrid executive
JPH02270034A (en) Module in-line evolving device
JPS6159550A (en) Method for control and conversion between programs
JPS62221040A (en) Stack control system