view paper/abstract.tex @ 42:75efd3df0c7e

update
author mir3636
date Fri, 08 Feb 2019 17:23:51 +0900
parents 11ddab4e5b07
children 675cd2c69450
line wrap: on
line source

%OS研究会のまま、要相談
\chapter*{要旨}
現代の OS では拡張性と信頼性を両立させることが要求されている。
信頼性をノーマルレベルの計算に対して保証し、拡張性をメタレベルの計算で実現することを目標に Gears OS を設計中である。

Gears OS は Continuation based C (CbC) によってアプリケーションと OS そのものを記述する。
OS の下ではプログラムの記述は通常の処理の他に、メモリ管理、スレッドの待ち合わせやネットワークの管理、
エラーハンドリング等の記述しなければならない処理が存在する。
これらの計算をメタ計算と呼ぶ。
メタ計算を通常の計算から切り離して記述するために、Code Gear、Data Gear という単位を提案している。
CbC はこの Code Gear と Data Gear の単位でプログラムを記述する。

システムやアプリケーションを記述するためにCode Gear と Data Gear を柔軟に再利用する必要がある。
このときに機能を接続するAPIと実装の分離が可能であることが望ましい。
Gears OS の信頼性を保証するために、形式化されたモジュールシステムを提供する必要がある。

本論文では、Interface を用いたモジュールシステムの説明と、
ハードウェア上でメタレベルの処理、および並列実行を可能とするために、
Raspberry Pi 上での Gears OS の実装についての考察も行う。

ハードウェア上でのメタレベルの計算や並列実行を行うために、基本的な OS の機能を揃えたうえ、
シンプルである xv6 を Gears OS に置き換えることによって実現させる。

\chapter*{Abstract}
%英語論文
Contemporary OS is required to achieve both scalability and reliability.
We are designing Gears OS with the goal of guaranteeing reliability for normal level computation and realizing extensibility with meta level computation.

Gears OS describes applications and OS themselves with Continuation based C (CbC).
In addition to normal processing, the description of the program under the OS includes memory management, queuing of threads, management of the network,
There is a process that must be described such as error handling.
These computation are called meta computation.
In order to describe the meta computation separately from normal computation, we propose a unit called Code Gear, Data Gear.
CbC describes the program in units of Code Gear and Data Gear.

It is necessary to flexibly reuse Code Gear and Data Gear to describe systems and applications.
At this time it is desirable that it is possible to separate API and implementation connecting functions.
In order to guarantee the reliability of the Gears OS, it is necessary to provide a formatted module system.

In this paper, we describe the module system using Interface,
In order to enable meta computation and parallel execution on hardware,
We also consider the implementation of Gears OS on Raspberry Pi.

In order to meta computation on hardware and execute it in parallel, basic OS functions are aligned,
It is realized by replacing simple xv 6 with Gears OS.