# HG changeset patch # User Kaito Tokumori # Date 1455444430 -32400 # Node ID 57b390dce7df3cc12861e2557ffad5e47048d92b # Parent 995f2db46e5229a177e31c6b2af6dda1c0e68ede add css diff -r 995f2db46e52 -r 57b390dce7df paper/comp.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/comp.txt Sun Feb 14 19:07:10 2016 +0900 @@ -0,0 +1,3 @@ +C 4.85 +CbC 3.10 +Scheme 39.24 diff -r 995f2db46e52 -r 57b390dce7df paper/envdata.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/envdata.txt Sun Feb 14 19:07:10 2016 +0900 @@ -0,0 +1,6 @@ +LLVM/clang 3.35 +"LLVM/clang -O2" 1.30 +"LLVM/clang (old)" 23.30 +Micro-C 1.29 +GCC 14.73 +"GCC -O2" 12.96 diff -r 995f2db46e52 -r 57b390dce7df paper/judge.tex --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/judge.tex Sun Feb 14 19:07:10 2016 +0900 @@ -0,0 +1,33 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%論文審査会委員署名用ページ%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +\pagestyle{empty} +\vspace*{5cm} +本論文は、修士(工学)の学位論文として適切であると認める。 +\vspace*{2cm} +\begin{flushright} +%¥makebox[10cm][l]{ +\begin{minipage}[t]{7cm} +\begin{center} +{\bf 論 文 審 査 会} +\end{center} + +\vspace{1cm} +\underline{\hspace{6cm}印}\\ +(主\hspace{0.5em}査)\hspace{0.5em}和田 知久 氏 + +\vspace{1cm} +\underline{\hspace{6cm}印}\\ +(副\hspace{1em}査)\hspace{1em}岡崎 威生 氏 + +\vspace{1cm} +\underline{\hspace{6cm}印}\\ +(副\hspace{1em}査)\hspace{1em}姜 東植 氏 + +\vspace{1cm} +\underline{\hspace{6cm}印}\\ +(副\hspace{1em}査)\hspace{1em}河野 真治 氏 + +\end{minipage} +\end{flushright} +\newpage diff -r 995f2db46e52 -r 57b390dce7df paper/master_paper.idx diff -r 995f2db46e52 -r 57b390dce7df paper/sample.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/sample.c Sun Feb 14 19:07:10 2016 +0900 @@ -0,0 +1,9 @@ +int add(int a, int b){ + return a + b; +} + +int main(){ + int res; + res = add(1,1); + return res; +} diff -r 995f2db46e52 -r 57b390dce7df paper/sample.ll --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/sample.ll Sun Feb 14 19:07:10 2016 +0900 @@ -0,0 +1,25 @@ +; ModuleID = 'sample.c' +target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-apple-macosx10.11.0" + +; Function Attrs: nounwind ssp uwtable +define i32 @add(i32 %a, i32 %b) #0 { +entry: + %add = add nsw i32 %a, %b + ret i32 %add +} + +; Function Attrs: nounwind ssp uwtable +define i32 @main() #0 { +entry: + %call = tail call i32 @add(i32 1, i32 1) + ret i32 %call +} + +attributes #0 = { nounwind ssp uwtable "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="core2" "target-features"="+cx16,+fxsr,+mmx,+sse,+sse2,+sse3,+ssse3" "unsafe-fp-math"="false" "use-soft-float"="false" } + +!llvm.module.flags = !{!0} +!llvm.ident = !{!1} + +!0 = !{i32 1, !"PIC Level", i32 2} +!1 = !{!"clang version 3.9.0 "} diff -r 995f2db46e52 -r 57b390dce7df paper/sample.pdf Binary file paper/sample.pdf has changed diff -r 995f2db46e52 -r 57b390dce7df paper/sample.s --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/sample.s Sun Feb 14 19:07:10 2016 +0900 @@ -0,0 +1,43 @@ + .section __TEXT,__text,regular,pure_instructions + .macosx_version_min 10, 11 + .globl _add + .align 4, 0x90 +_add: ## @add + .cfi_startproc +## BB#0: + movl %edi, -4(%rsp) + movl %esi, -8(%rsp) + movl -4(%rsp), %esi + addl -8(%rsp), %esi + movl %esi, %eax + retq + .cfi_endproc + + .globl _main + .align 4, 0x90 +_main: ## @main + .cfi_startproc +## BB#0: + pushq %rbp +Ltmp0: + .cfi_def_cfa_offset 16 +Ltmp1: + .cfi_offset %rbp, -16 + movq %rsp, %rbp +Ltmp2: + .cfi_def_cfa_register %rbp + subq $16, %rsp + movl $1, %eax + movl $0, -4(%rbp) + movl %eax, %edi + movl %eax, %esi + callq _add + movl %eax, -8(%rbp) + movl -8(%rbp), %eax + addq $16, %rsp + popq %rbp + retq + .cfi_endproc + + +.subsections_via_symbols diff -r 995f2db46e52 -r 57b390dce7df paper/sample0.s --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/sample0.s Sun Feb 14 19:07:10 2016 +0900 @@ -0,0 +1,52 @@ + .section __TEXT,__text,regular,pure_instructions + .macosx_version_min 10, 11 + .globl _add + .align 4, 0x90 +_add: ## @add + .cfi_startproc +## BB#0: + pushq %rbp +Ltmp0: + .cfi_def_cfa_offset 16 +Ltmp1: + .cfi_offset %rbp, -16 + movq %rsp, %rbp +Ltmp2: + .cfi_def_cfa_register %rbp + movl %edi, -4(%rbp) + movl %esi, -8(%rbp) + movl -4(%rbp), %esi + addl -8(%rbp), %esi + movl %esi, %eax + popq %rbp + retq + .cfi_endproc + + .globl _main + .align 4, 0x90 +_main: ## @main + .cfi_startproc +## BB#0: + pushq %rbp +Ltmp3: + .cfi_def_cfa_offset 16 +Ltmp4: + .cfi_offset %rbp, -16 + movq %rsp, %rbp +Ltmp5: + .cfi_def_cfa_register %rbp + subq $16, %rsp + movl $1, %eax + movl $0, -4(%rbp) + movl %eax, %edi + movl %eax, %esi + callq _add + movl %eax, -8(%rbp) + movl -8(%rbp), %eax + addq $16, %rsp + popq %rbp + retq + .cfi_endproc + + +.subsections_via_symbols diff -r 995f2db46e52 -r 57b390dce7df paper/sample2.pdf Binary file paper/sample2.pdf has changed diff -r 995f2db46e52 -r 57b390dce7df slide/blank.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/slide/blank.css Sun Feb 14 19:07:10 2016 +0900 @@ -0,0 +1,130 @@ +body { + font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; +} +a:link, +a:visited { + color: #000000; +} +.slide { + color: #000000; +} +.slide h1 { + font-size: 200%; + color: black; + text-align: center; +} +.slide h1.fullscreen { + position: absolute; + top: 40%; + width: 100%; +} +.slide h1.hidden { + display: none; +} +.slide hX { + font-size: 250%; + color: white; + text-align: center; + font-weight: bold; +} +.slide hX.fullscreen { + position: absolute; + top: 40%; + width: 100%; +} +.slide hX.hidden { + display: none; +} +.slide h2 { + font-size: 220%; + background-color: #808db5; + color: white; + padding: 5px; +} +.slide h3 { + font-size: 180%; +} +.slide name { + font-size: 180%; + background-color: #ffcc00; +} +.slide name.fullscreen { + position: absolute; + top: 40%; + width: 100%; +} +.slide .stepcurrent { + color: #dd0000; +} +.slide .step { + color: #c0c0c0; +} +div.highlight { + background-color: #ffffa9; + display: inline-block; + _display: inline; +} +div > ul { + list-style-type: square; + font-size: 160%; +} +div > ol { + font-size: 160%; +} +li { + margin-bottom: 15px; +} +p, +dt, +dd, +td { + font-size: 150%; +} +th { + font-size: 90%; +} +p.emphasize { + font-size: 180%; +} +pre { + font-size: 100%; +} +.code { + background-color: #ffffa9; + padding: 5px; +} +.small_code { + font-size: 90%; + padding: 2px; +} +.smaller_code { + font-size: 80%; + padding: 2px; +} +code { + font-size: 100%; + background-color: #ffffa9; + padding: 5px; +} +.footnote a:first-of-type { + text-decoration: none; +} +p.footnote { + font-size: 88%; +} +.help p, +.help td { + font-size: 88%; +} +/******** + * example gradient background using css3 + */ +.slide { + background-image: -webkit-linear-gradient(top, #ffffff, #ffffff, #ffffff, #ffffff); + background-image: -moz-linear-gradient(top, #ffffff, #ffffff, #ffffff, #ffffff); +} +.slide.cover, +.slide.title { + background-image: -webkit-linear-gradient(top, #ffffff, #ffffff, #ffffff, #ffffff); + background-image: -moz-linear-gradient(top, #ffffff, #ffffff, #ffffff, #ffffff); +} diff -r 995f2db46e52 -r 57b390dce7df slide/blank.html --- a/slide/blank.html Sun Feb 14 18:58:04 2016 +0900 +++ b/slide/blank.html Sun Feb 14 19:07:10 2016 +0900 @@ -18,11 +18,11 @@ --> - - - + + + - +