comparison seminar2013/0416.html @ 2:7f4128b2369a

update seminar slides
author taiki <taiki@cr.ie.u-ryukyu.ac.jp>
date Tue, 04 Jun 2013 17:15:27 +0900
parents
children
comparison
equal deleted inserted replaced
1:d3f740120b55 2:7f4128b2369a
1 <!--
2 Google IO 2012 HTML5 Slide Template
3
4 Authors: Eric Bidelman <ebidel@gmail.com>
5 Luke Mahé <lukem@google.com>
6
7 URL: https://code.google.com/p/io-2012-slides
8 -->
9 <!DOCTYPE html>
10 <html>
11 <head>
12 <title>Presentation</title>
13 <meta charset="utf-8">
14 <meta http-equiv="X-UA-Compatible" content="chrome=1">
15 <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">-->
16 <!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
17 <!--This one seems to work all the time, but really small on ipad-->
18 <!--<meta name="viewport" content="initial-scale=0.4">-->
19 <meta name="apple-mobile-web-app-capable" content="yes">
20 <link rel="stylesheet" media="all" href="css/default.css">
21 <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../io2012slides/theme/css/phone.css">
22 <base target="_blank"> <!-- This amazingness opens all links in a new tab. -->
23 <script data-main="../io2012slides/js/slides" src="../io2012slides/js/require-1.0.8.min.js"></script>
24 </head>
25 <body style="opacity: 0">
26
27 <slides class="layout-widescreen">
28
29 <!--
30 <slide class="logoslide nobackground">
31 <article class="flexbox vcenter">
32 <span><img src="../io2012slides/images/google_developers_logo.png"></span>
33 </article>
34 </slide>
35 -->
36
37 <slide class="title-slide segue nobackground">
38 <aside class="gdbar"><img src="../images/concurrent.png"></aside>
39 <!-- The content of this hgroup is replaced programmatically through the slide_config.json. -->
40 <hgroup class="auto-fadein">
41 <h1 data-config-title><!-- populated from slide_config.json --></h1>
42 <h2 data-config-subtitle><!-- populated from slide_config.json --></h2>
43 <p data-config-presenter><!-- populated from slide_config.json --></p>
44 </hgroup>
45 </slide>
46
47 <slide>
48 <hgroup>
49 <h2>研究目的</h2>
50 </hgroup>
51 <article>
52 <ul>
53 <li>動作が軽く、落ちにくいカーネルを実装する</li>
54 <li>ブートが最速で、コンパクトなカーネルを実装する</li>
55 <li>Codesegment と Datasegment をカーネルに実装するにあたって、メモリ管理の役割とどう合致するのかを検証する</li>
56 </ul>
57 </article>
58 </slide>
59
60 <slide>
61 <hgroup>
62 <h2>今週の作業</h2>
63 </hgroup>
64 <article>
65 <ul>
66 <li>Linux 3.7.7 を読む</li>
67 <li>メモリ初期化のデバッグ</li>
68 </ul>
69 </article>
70 </slide>
71
72 <slide>
73 <hgroup>
74 <h2>ELILO</h2>
75 </hgroup>
76 <article>
77 <h3>ELILO の中でのカーネル、という方針</h3>
78 <p>「ELILOアプリケーションの中」だったら ExitBootServices を実行しないで書くべき</p>
79 <ol>
80 <li>1.GDT/LDT を設定</li>
81 <li>2.別セグメントに飛ぶ</li>
82 <li>3.メモリの初期化</li>
83 </ol>
84 </article>
85 </slide>
86
87 <slide>
88 <hgroup>
89 <h2>エラーメッセージ</h2>
90 </hgroup>
91 <article>
92 <h3>cr0 の PE bit を無効にした時</h3>
93 <img src='images/err_message01.png'>
94 <h3>cr3 に値を入れた時</h3>
95 <img src='images/err_message02.png'>
96 </article>
97 </slide>
98
99 <slide>
100 <hgroup>
101 <h2>これからやること</h2>
102 </hgroup>
103 <article>
104 <ul>
105 <li>引き続き Paging の設定</li>
106 <li>うまくいったら User/特権 mode の切り替え</li>
107 </ul>
108 </article>
109 </slide>
110
111 <slide>
112 <hgroup>
113 <h2>Code Slide (with Subtitle Placeholder)</h2>
114 </hgroup>
115 <article>
116 <p>Press 'h' to highlight important sections of code (wrapped in <code>&lt;b&gt;</code>).</p>
117 <pre class="prettyprint" data-lang="javascript">
118 &lt;script type='text/javascript'&gt;
119 // Say hello world until the user starts questioning
120 // the meaningfulness of their existence.
121 function helloWorld(world) {
122 <b>for (var i = 42; --i &gt;= 0;) {
123 alert('Hello ' + String(world));
124 }</b>
125 }
126 &lt;/script&gt;
127 </pre>
128 </article>
129 </slide>
130
131 <slide>
132 <hgroup>
133 <h2>Code Slide (Smaller Font)</h2>
134 </hgroup>
135 <article class="smaller">
136 <pre class="prettyprint" data-lang="javascript">
137 // Say hello world until the user starts questioning
138 // the meaningfulness of their existence.
139 function helloWorld(world) {
140 for (var i = 42; --i &gt;= 0;) {
141 alert('Hello ' + String(world));
142 }
143 }
144 </pre>
145 <pre class="prettyprint" data-lang="css">
146 &lt;style&gt;
147 p { color: pink }
148 b { color: blue }
149 &lt;/style&gt;
150 </pre>
151 <pre class="prettyprint" data-lang="html">
152 &lt;!DOCTYPE html>
153 &lt;html>
154 &lt;head>
155 &lt;title>My Awesome Page&lt;/title>
156 &lt;/head>
157 &lt;body>
158 &lt;p&gt;Hello world&lt;/p&gt;
159 &lt;body>
160 &lt;/html>
161 </pre>
162 </article>
163 </slide>
164
165 <slide>
166 <aside class="note">
167 <section>
168 <ul>
169 <li>Point I wanted to make #1</li>
170 <li>Point I wanted to make #2</li>
171 <li>Point I wanted to make #3</li>
172 <li>Example <a href="#">link</a> in notes.</li>
173 </ul>
174 <p><b>Remember to say this tag line!</b></p>
175 </section>
176 </aside>
177 <hgroup>
178 <h2>Slide with Speaker Notes</h2>
179 </hgroup>
180 <article>
181 <p>Press 'p' to toggle speaker notes.</p>
182 </article>
183 </slide>
184
185 <slide>
186 <aside class="note">
187 <section>
188 <ul>
189 <li>See this amazing link: <a href="http://www.google.com">link</a>.</li>
190 </ul>
191 <p><b>Remember to say this tag line!</b></p>
192 </section>
193 </aside>
194 <hgroup>
195 <h2>Presenter Mode</h2>
196 </hgroup>
197 <article>
198 <p>Add <code><a href="?presentme=true" target="_self">?presentme=true</a></code> to the URL to enabled presenter mode.
199 This setting is sticky, meaning refreshing the page will persist presenter
200 mode.</p>
201 <p>Hit <code><a href="?presentme=false" target="_self">?presentme=false</a></code> to disable presenter mode.</p>
202 </article>
203 </slide>
204
205 <slide>
206 <hgroup>
207 <h2>Slide with Image</h2>
208 </hgroup>
209 <article>
210 <img src="../io2012slides/images/chart.png" class="reflect" alt="Description" title="Description">
211 <footer class="source">source: place source info here</footer>
212 </article>
213 </slide>
214
215 <slide>
216 <hgroup>
217 <h2>Slide with Image (Centered horz/vert)</h2>
218 </hgroup>
219 <article class="flexbox vcenter">
220 <img src="../io2012slides/images/barchart.png" alt="Description" title="Description">
221 <footer class="source">source: place source info here</footer>
222 </article>
223 </slide>
224
225 <slide>
226 <hgroup>
227 <h2>Table Option A</h2>
228 <h3>Subtitle Placeholder</h3>
229 </hgroup>
230 <article>
231 <table>
232 <tr>
233 <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th>
234 </tr>
235 <tr>
236 <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td>
237 </tr>
238 <tr>
239 <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
240 </tr>
241 <tr>
242 <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
243 </tr>
244 <tr>
245 <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
246 </tr>
247 <tr>
248 <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
249 </tr>
250 </table>
251 </article>
252 </slide>
253
254 <slide>
255 <hgroup>
256 <h2>Table Option A (Smaller Text)</h2>
257 <h3>Subtitle Placeholder</h3>
258 </hgroup>
259 <article class="smaller">
260 <table>
261 <tr>
262 <th></th><th>Column 1</th><th>Column 2</th><th>Column 3</th><th>Column 4</th>
263 </tr>
264 <tr>
265 <td>Row 1</td><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td><td>placeholder</td>
266 </tr>
267 <tr>
268 <td>Row 2</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
269 </tr>
270 <tr>
271 <td>Row 3</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
272 </tr>
273 <tr>
274 <td>Row 4</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
275 </tr>
276 <tr>
277 <td>Row 5</td><td>placeholder</td><td>placeholder</td><td>placeholder</td><td>placeholder</td>
278 </tr>
279 </table>
280 </article>
281 </slide>
282
283 <slide>
284 <hgroup>
285 <h2>Table Option B</h2>
286 <h3>Subtitle Placeholder</h3>
287 </hgroup>
288 <article>
289 <table class="rows">
290 <tr>
291 <th>Header 1</th><td>placeholder</td><td class="highlight">placeholder</td><td>placeholder</td>
292 </tr>
293 <tr>
294 <th>Header 2</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
295 </tr>
296 <tr>
297 <th>Header 3</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
298 </tr>
299 <tr>
300 <th>Header 4</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
301 </tr>
302 <tr>
303 <th>Header 5</th><td>placeholder</td><td>placeholder</td><td>placeholder</td>
304 </tr>
305 </table>
306 </article>
307 </slide>
308
309 <slide>
310 <hgroup>
311 <h2>Slide Styles</h2>
312 </hgroup>
313 <article class="smaller">
314 <div class="columns-2">
315 <ul>
316 <li class="red">class="red"</li>
317 <li class="red2">class="red2"</li>
318 <li class="red3">class="red3"</li>
319 <li class="blue">class="blue"</li>
320 <li class="blue2">class="blue2"</li>
321 <li class="blue3">class="blue3"</li>
322 <li class="green">class="green"</li>
323 <li class="green2">class="green2"</li>
324 </ul>
325 <ul>
326 <li class="green3">class="green3"</li>
327 <li class="yellow">class="yellow"</li>
328 <li class="yellow2">class="yellow2"</li>
329 <li class="yellow3">class="yellow3"</li>
330 <li class="gray">class="gray"</li>
331 <li class="gray2">class="gray2"</li>
332 <li class="gray3">class="gray3"</li>
333 <li class="gray4">class="gray4"</li>
334 </ul>
335 </div>
336 <div class="centered" style="margin-top:2em">
337 I am centered text with a <button>Button</button> and <button disabled>Disabled</button> button.
338 </div>
339 </article>
340 </slide>
341
342 <slide class="segue dark nobackground">
343 <aside class="gdbar"><img src="../io2012slides/images/google_developers_icon_128.png"></aside>
344 <hgroup class="auto-fadein">
345 <h2>Segue Slide</h2>
346 <h3>Subtitle Placeholder</h3>
347 </hgroup>
348 </slide>
349
350 <slide class="fill nobackground" style="background-image: url(images/sky.jpg)">
351 <hgroup>
352 <h2 class="white">Full Image (with Optional Header)</h2>
353 </hgroup>
354 <footer class="source white">www.flickr.com/photos/25797459@N06/5438799763/</footer>
355 </slide>
356
357 <slide class="segue dark quote nobackground">
358 <aside class="gdbar right bottom"><img src="../io2012slides/images/google_developers_icon_128.png"></aside>
359 <article class="flexbox vleft auto-fadein">
360 <q>
361 This is an example of quote text.
362 </q>
363 <div class="author">
364 Name<br>
365 Company
366 </div>
367 </article>
368 </slide>
369
370 <slide>
371 <hgroup>
372 <h2>Slide with Iframe</h2>
373 </hgroup>
374 <article>
375 <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe>
376 </article>
377 </slide>
378
379 <slide>
380 <article>
381 <iframe data-src="http://www.google.com/doodle4google/history.html"></iframe>
382 </article>
383 </slide>
384
385 <slide class="thank-you-slide segue nobackground">
386 <aside class="gdbar right"><img src="../io2012slides/images/google_developers_icon_128.png"></aside>
387 <article class="flexbox vleft auto-fadein">
388 <h2>&lt;Thank You!&gt;</h2>
389 <p>Important contact information goes here.</p>
390 </article>
391 <p class="auto-fadein" data-config-contact>
392 <!-- populated from slide_config.json -->
393 </p>
394 </slide>
395
396 <slide class="logoslide dark nobackground">
397 <article class="flexbox vcenter">
398 <span><img src="../io2012slides/images/google_developers_logo_white.png"></span>
399 </article>
400 </slide>
401
402 <slide class="backdrop"></slide>
403
404 </slides>
405
406 <script>
407 var _gaq = _gaq || [];
408 _gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
409 _gaq.push(['_trackPageview']);
410
411 (function() {
412 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
413 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
414 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
415 })();
416 </script>
417
418 <!--[if IE]>
419 <script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
420 <script>CFInstall.check({mode: 'overlay'});</script>
421 <![endif]-->
422 </body>
423 </html>