Mercurial > hg > Papers > 2020 > tobaru-master
changeset 6:4dd10e3e45d2
chapter exchange
author | tobaru |
---|---|
date | Wed, 29 Jan 2020 19:44:21 +0900 |
parents | 73697739a74d |
children | 6e1a4452265e |
files | paper/GearsOS.tex paper/Paging.tex paper/Xv6.tex paper/master_paper.aux paper/master_paper.log paper/master_paper.lol paper/master_paper.pdf paper/master_paper.synctex.gz paper/master_paper.toc thsis_paging.mm |
diffstat | 10 files changed, 76 insertions(+), 71 deletions(-) [+] |
line wrap: on
line diff
--- a/paper/GearsOS.tex Wed Jan 29 18:31:09 2020 +0900 +++ b/paper/GearsOS.tex Wed Jan 29 19:44:21 2020 +0900 @@ -1,5 +1,6 @@ -\chapter{Geas OS} - 信頼性の保証と並列実行のサポートを目的として、 Gears OS を開発している。 +\chapter{CbC による Geas OS の開発} + 信頼性の保証と並列実行のサポートを目的として、 本研究室では CbC というプログラミング言語を開発してきた。 + さらにその CbC を使って Gears OS を開発している。 従来の OS が行うメモリ管理並列実行は Meta レベル(kernel space)で処理される。 ノーマルレベルからメタレベルの記述ができる GearsOS を開発している。 @@ -60,8 +61,3 @@ ソースコードの説明書く -\section{Interface} - Gears OS では Meta Code Gear で Context から値を取り出し、ノーマルレベルの Code Gear に値を渡す。しかし、メタレベルからノーマルレベルの継続の記述が煩雑になるため、Interface 化をしている。 -Interface は Data Gear に対しての操作を行う Code Gear であり、実装は別で定義する。 -Interface で定義した Code Gear に -
--- a/paper/Paging.tex Wed Jan 29 18:31:09 2020 +0900 +++ b/paper/Paging.tex Wed Jan 29 19:44:21 2020 +0900 @@ -1,9 +1,27 @@ -\chapter{Gears OS での Paging} +\chapter{CbCXv6 での Paging の書き換え} + +\section{Xv6 を元にした Gears OS の実装} +Gears OS ではハードウェア上でメタレベルの計算や並列実行を行いたいので、Raspberry Pi でもバイナリを>出力できる Xv6 を CbC で書き換える。 +ANSI-C で書かれている Xv6 を CbC に書き直し、それを元に Gears OS を実装していく。 + +\section{Xv6 のインターフェース化} +構造図書く(今のcbcxv6と同じか確認してから) +\par + + Gears OS では Meta Code Gear で Context から値を取り出し、ノーマルレベルの Code Gear に値を渡す。 +しかし、メタレベルからノーマルレベルの継続の記述が煩雑になるため、Interface 化をしている。 +Interface は Data Gear に対しての操作を行う Code Gear であり、実装は別で定義する。 +% Interface で定義した Code Gear に + + +% Xv6 の書き換えは Interface を用いてモジュール化する。 +そうすることで Gears OS の機能を置き換えることできるようになる。 + \section{Paging} メモリ管理の手法に、Paging がある。Paging ではメモリを Page と呼ばれる固定長の単位に分割し、メモリとスワップ領域で Page を入れ替えて管理を行う。 -\section{Gears OS での Paging} +\section{User Space で Paging をする利点} Context に必要な Page Tbale を提供する Interface と User Space からアクセスする API が必要である。 Page Table に相当するデータを Input Data Gear で受け取って変更した後、Context にあるメモリコントロールを担当する Meta Data Gear に goto で遷移してアクセスする。 Meta Computation レベルで処理することで Use Spaceでも Page Table を操作することができる。 Meta Computation に戻る際に、Page Table Entry のバリデーションをチェックして反映することで、他のプロセスから Page Table を書き換えられることを防ぐ。また、サンドボックスにしておいて、他のプロセスが書き換えられた時にエクセプションを飛ばすようにすることで信頼性の保証を行う。
--- a/paper/Xv6.tex Wed Jan 29 18:31:09 2020 +0900 +++ b/paper/Xv6.tex Wed Jan 29 19:44:21 2020 +0900 @@ -1,27 +1,15 @@ -\chapter{Xv6 から Gears OS への書き換え} - -\section{Xv6 について} +\chapter{Xv6} Xv6 とは、マサチューセッツ工科大の大学院生向け講義の教材として使うために、UNIX V6 という OS を ANSI-C(規格化されたC言語) に書き換え、x86 に移植した Xv6 OS である。 Xv6 は Arm のバイナリを出力するので、シングルボードコンピュータである Raspberry Pi や携帯電話など様々なハードウェアで動かすことができる。 -\section{Xv6 を元にした Gears OS の実装} -Gears OS ではハードウェア上でメタレベルの計算や並列実行を行いたいので、Raspberry Pi でもバイナリを出力できる Xv6 を CbC で書き換える。 -ANSI-C で書かれている Xv6 を CbC に書き直し、それを元に Gears OS を実装していく。 - -\section{Xv6 のインターフェース化} -構造図書く(今のcbcxv6と同じか確認してから) -\par - Xv6 の書き換えは Interface を用いてモジュール化する。そうすることで Gears OS の機能を置き換えることできるようになる。 - - -\par - +\section{Kernel Space と User Space} Xv6 は Kernel を採用している。 Kernel は OS にとって中核となるプログラムである。 Xv6 では Kernel と User プログラムは分離されており、kernel はプログラムにプロセス管理、メモリ管理、I/O やファイルの管理などのサービスを提供する。 User プログラムは kernel に直接アクセスできない。これは重要なファイルを書き換えられたり、アクセスされるのを防ぐためだと考えられる。 User プログラムが Kernel のサービスを呼び出す場合、system call を用いて User Space から Kernel Space Space へ入り実行される。Kernel は CPU のハードウェア保護機構を使用して、 User Space で実行されているプロセスが自身のメモリのみアクセスできるように保護している。 User プログラムが system call をすると、ハードウェアが一時的に特権レベルを上げ、kernel のプログラムが実行される。この特権レベルを持つプロセッサの状態を kernel モード、特権のない状態を User モードと言う。 + \section{system call} User プログラムが Kernel の処理を行う場合、system call を用いる。 User プログラムが system call を呼び出すと、トラップが発生する。
--- a/paper/master_paper.aux Wed Jan 29 18:31:09 2020 +0900 +++ b/paper/master_paper.aux Wed Jan 29 19:44:21 2020 +0900 @@ -2,7 +2,7 @@ \@writefile{toc}{\contentsline {chapter}{\numberline {第1章}メモリ管理による信頼性の保証}{2}\protected@file@percent } \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {chapter}{\numberline {第2章}Geas OS}{3}\protected@file@percent } +\@writefile{toc}{\contentsline {chapter}{\numberline {第2章}CbC による Geas OS の開発}{3}\protected@file@percent } \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {2.1}Code Gear と Data Gear}{3}\protected@file@percent } @@ -12,22 +12,21 @@ \@writefile{toc}{\contentsline {section}{\numberline {2.3}Context}{4}\protected@file@percent } \newlabel{contexth、 caption}{{2.3}{4}} \@writefile{lol}{\contentsline {lstlisting}{./src/context.h}{4}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2.4}Interface}{6}\protected@file@percent } \@writefile{lof}{\contentsline {figure}{\numberline {2.2}{\ignorespaces ノーマルレベルとメタレベルの継続の見え方}}{7}\protected@file@percent } \newlabel{fig:meta_cg_dg}{{2.2}{7}} -\@writefile{toc}{\contentsline {chapter}{\numberline {第3章}Xv6 から Gears OS への書き換え}{8}\protected@file@percent } +\@writefile{toc}{\contentsline {chapter}{\numberline {第3章}Xv6}{8}\protected@file@percent } \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {3.1}Xv6 について}{8}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {3.2}Xv6 を元にした Gears OS の実装}{8}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {3.3}Xv6 のインターフェース化}{8}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {3.4}system call}{9}\protected@file@percent } -\newlabel{syscall_list}{{3.1}{9}} -\@writefile{lol}{\contentsline {lstlisting}{\numberline {3.1}\footnotesize xv6 のシステムコールのリスト}{9}\protected@file@percent } -\@writefile{toc}{\contentsline {chapter}{\numberline {第4章}Gears OS での Paging}{10}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {3.1}Kernel Space と User Space}{8}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {3.2}system call}{8}\protected@file@percent } +\newlabel{syscall_list}{{3.1}{8}} +\@writefile{lol}{\contentsline {lstlisting}{\numberline {3.1}\footnotesize xv6 のシステムコールのリスト}{8}\protected@file@percent } +\@writefile{toc}{\contentsline {chapter}{\numberline {第4章}CbCXv6 での Paging の書き換え}{10}\protected@file@percent } \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} -\@writefile{toc}{\contentsline {section}{\numberline {4.1}Paging}{10}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {4.2}Gears OS での Paging}{10}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {4.3}Paging の書き換え}{10}\protected@file@percent } -\@writefile{toc}{\contentsline {chapter}{付録}{10}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {4.1}Xv6 を元にした Gears OS の実装}{10}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {4.2}Xv6 のインターフェース化}{10}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {4.3}Paging}{10}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {4.4}Gears OS での Paging}{10}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {4.5}Paging の書き換え}{11}\protected@file@percent } +\@writefile{toc}{\contentsline {chapter}{付録}{11}\protected@file@percent }
--- a/paper/master_paper.log Wed Jan 29 18:31:09 2020 +0900 +++ b/paper/master_paper.log Wed Jan 29 19:44:21 2020 +0900 @@ -1,4 +1,4 @@ -This is e-pTeX, Version 3.14159265-p3.8.2-190131-2.6 (utf8.euc) (TeX Live 2019) (preloaded format=platex 2020.1.16) 29 JAN 2020 18:21 +This is e-pTeX, Version 3.14159265-p3.8.2-190131-2.6 (utf8.euc) (TeX Live 2019) (preloaded format=platex 2020.1.16) 29 JAN 2020 19:13 entering extended mode restricted \write18 enabled. file:line:error style messages enabled. @@ -356,13 +356,13 @@ ] 第 2 章(3ページ) LaTeX Font Info: Font shape `JT1/hmc/m/n' will be -(Font) scaled to size 16.62714pt on input line 6. +(Font) scaled to size 16.62714pt on input line 7. LaTeX Font Info: Font shape `JY1/hmc/m/n' will be -(Font) scaled to size 16.62714pt on input line 6. +(Font) scaled to size 16.62714pt on input line 7. LaTeX Font Info: Font shape `JT1/hmc/bx/n' will be -(Font) scaled to size 16.62714pt on input line 6. +(Font) scaled to size 16.62714pt on input line 7. LaTeX Font Info: Font shape `JY1/hmc/bx/n' will be -(Font) scaled to size 16.62714pt on input line 6. +(Font) scaled to size 16.62714pt on input line 7. File: ./fig/codegear.pdf Graphic file (type pdf) <./fig/codegear.pdf> [3 @@ -372,40 +372,43 @@ <./fig/meta_cg_dg.pdf> -LaTeX Warning: Float too large for page by 43.27322pt on input line 42. +LaTeX Warning: Float too large for page by 43.27322pt on input line 43. (./src/context.h LaTeX Font Info: Font shape `JT1/hmc/m/n' will be (Font) scaled to size 7.69775pt on input line 1. LaTeX Font Info: Font shape `JT1/hmc/m/n' will be -(Font) scaled to size 10.53629pt on input line 12. +(Font) scaled to size 10.53629pt on input line 9. LaTeX Font Info: Font shape `JY1/hmc/m/n' will be -(Font) scaled to size 10.53629pt on input line 12. +(Font) scaled to size 10.53629pt on input line 9. LaTeX Font Info: Font shape `JT1/hmc/bx/n' will be -(Font) scaled to size 10.53629pt on input line 12. +(Font) scaled to size 10.53629pt on input line 9. LaTeX Font Info: Font shape `JY1/hmc/bx/n' will be -(Font) scaled to size 10.53629pt on input line 12. +(Font) scaled to size 10.53629pt on input line 9. [4]) [5]) (./Xv6.tex [6] [7] 第 3 章(8ページ) [8 ]) (./Paging.tex [9] 第 4 章(10ページ) -) [10 +[10 -] (./master_paper.aux) +]) [11] (./master_paper.aux) LaTeX Font Warning: Size substitutions with differences (Font) up to 1.28pt have occurred. + +LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. + ) Here is how much of TeX's memory you used: 6304 strings out of 493985 89327 string characters out of 6166648 - 323120 words of memory out of 5000000 + 330120 words of memory out of 5000000 10626 multiletter control sequences out of 15000+600000 16577 words of font info for 84 fonts, out of 8000000 for 9000 107 hyphenation exceptions out of 8191 - 39i,11n,36p,411b,1817s stack positions out of 5000i,500n,10000p,200000b,80000s + 38i,11n,36p,411b,1817s stack positions out of 5000i,500n,10000p,200000b,80000s -Output written on master_paper.dvi (17 pages, 34624 bytes). +Output written on master_paper.dvi (18 pages, 34848 bytes).
--- a/paper/master_paper.lol Wed Jan 29 18:31:09 2020 +0900 +++ b/paper/master_paper.lol Wed Jan 29 19:44:21 2020 +0900 @@ -1,2 +1,2 @@ \contentsline {lstlisting}{./src/context.h}{4}% -\contentsline {lstlisting}{\numberline {3.1}\footnotesize xv6 のシステムコールのリスト}{9}% +\contentsline {lstlisting}{\numberline {3.1}\footnotesize xv6 のシステムコールのリスト}{8}%
--- a/paper/master_paper.toc Wed Jan 29 18:31:09 2020 +0900 +++ b/paper/master_paper.toc Wed Jan 29 19:44:21 2020 +0900 @@ -1,16 +1,15 @@ \contentsline {chapter}{\numberline {第1章}メモリ管理による信頼性の保証}{2}% -\contentsline {chapter}{\numberline {第2章}Geas OS}{3}% +\contentsline {chapter}{\numberline {第2章}CbC による Geas OS の開発}{3}% \contentsline {section}{\numberline {2.1}Code Gear と Data Gear}{3}% \contentsline {section}{\numberline {2.2}Meta Code Gear と Meta Data Gear}{4}% \contentsline {section}{\numberline {2.3}Context}{4}% -\contentsline {section}{\numberline {2.4}Interface}{6}% -\contentsline {chapter}{\numberline {第3章}Xv6 から Gears OS への書き換え}{8}% -\contentsline {section}{\numberline {3.1}Xv6 について}{8}% -\contentsline {section}{\numberline {3.2}Xv6 を元にした Gears OS の実装}{8}% -\contentsline {section}{\numberline {3.3}Xv6 のインターフェース化}{8}% -\contentsline {section}{\numberline {3.4}system call}{9}% -\contentsline {chapter}{\numberline {第4章}Gears OS での Paging}{10}% -\contentsline {section}{\numberline {4.1}Paging}{10}% -\contentsline {section}{\numberline {4.2}Gears OS での Paging}{10}% -\contentsline {section}{\numberline {4.3}Paging の書き換え}{10}% -\contentsline {chapter}{付録}{10}% +\contentsline {chapter}{\numberline {第3章}Xv6}{8}% +\contentsline {section}{\numberline {3.1}Kernel Space と User Space}{8}% +\contentsline {section}{\numberline {3.2}system call}{8}% +\contentsline {chapter}{\numberline {第4章}CbCXv6 での Paging の書き換え}{10}% +\contentsline {section}{\numberline {4.1}Xv6 を元にした Gears OS の実装}{10}% +\contentsline {section}{\numberline {4.2}Xv6 のインターフェース化}{10}% +\contentsline {section}{\numberline {4.3}Paging}{10}% +\contentsline {section}{\numberline {4.4}Gears OS での Paging}{10}% +\contentsline {section}{\numberline {4.5}Paging の書き換え}{11}% +\contentsline {chapter}{付録}{11}%
--- a/thsis_paging.mm Wed Jan 29 18:31:09 2020 +0900 +++ b/thsis_paging.mm Wed Jan 29 19:44:21 2020 +0900 @@ -5,7 +5,7 @@ <node CREATED="1580207641694" ID="ID_182987953" MODIFIED="1580207649805" TEXT="Rewriting CbCXv6 by CbC interface "/> </node> <node CREATED="1578979732696" ID="ID_457372106" MODIFIED="1580108656805" POSITION="right" TEXT="OS のメモリ管理"/> -<node CREATED="1578979768846" ID="ID_738890313" MODIFIED="1578979773340" POSITION="right" TEXT="Gears OS について"> +<node CREATED="1578979768846" ID="ID_738890313" MODIFIED="1580292293845" POSITION="right" TEXT="CbC を使った Gears OS の開発"> <node CREATED="1580108790756" ID="ID_1503553728" MODIFIED="1580108794363" TEXT="CbC"> <node CREATED="1580112360401" ID="ID_614891804" MODIFIED="1580112368387" TEXT="記述例"/> <node CREATED="1580112406576" ID="ID_174277035" MODIFIED="1580112413544" TEXT="Code Gear の継続遷移図"/> @@ -19,17 +19,19 @@ </node> <node CREATED="1580188243030" ID="ID_1781662530" MODIFIED="1580188249498" TEXT="Meta Computation"/> </node> -<node CREATED="1580107585579" ID="ID_1626415670" MODIFIED="1580107610152" POSITION="right" TEXT="Xv6 から GearsOS への書き換え"> -<node CREATED="1580207017522" ID="ID_151270407" MODIFIED="1580207022173" TEXT="ここを中心に書く"/> +<node CREATED="1580107585579" ID="ID_1626415670" MODIFIED="1580292597646" POSITION="right" TEXT="Xv6"> <node CREATED="1580284555449" ID="ID_1964121459" MODIFIED="1580284568230" TEXT="構造図今とズレあるか確認"> <node CREATED="1580284570046" ID="ID_1019548823" MODIFIED="1580284574054" TEXT="図を乗っける"/> </node> +<node CREATED="1580292692205" ID="ID_943689954" MODIFIED="1580292710340" TEXT="Kernel と User Space"/> +<node CREATED="1580107690139" ID="ID_749171993" MODIFIED="1580107697425" TEXT="System call"/> <node CREATED="1580107648436" ID="ID_422947198" MODIFIED="1580108849848" TEXT="Raspberry Pi は必要ない??"> <node CREATED="1580206122141" ID="ID_263443526" MODIFIED="1580206132135" TEXT="Console 接続書く"/> </node> -<node CREATED="1580107690139" ID="ID_749171993" MODIFIED="1580107697425" TEXT="System call"/> </node> -<node CREATED="1578979785550" ID="ID_1231580257" MODIFIED="1580108902791" POSITION="right" TEXT="Gearsでの Paging"> +<node CREATED="1578979785550" ID="ID_1231580257" MODIFIED="1580292616993" POSITION="right" TEXT="CbCXv6での Pagingの書き換え"> +<node CREATED="1580207017522" ID="ID_151270407" MODIFIED="1580207022173" TEXT="ここを中心に書く"/> +<node CREATED="1580292626674" ID="ID_1799470435" MODIFIED="1580292634582" TEXT="Xv6のインターフェース"/> <node CREATED="1580108224152" ID="ID_1755476855" MODIFIED="1580108236817" TEXT="pagingとは"> <node CREATED="1580125177715" ID="ID_1450928772" MODIFIED="1580125182834" TEXT="図"/> </node>