1 / 8

言語プロセッサ 2013 No.11

ネットワークの準備お願いします!. 言語プロセッサ 2013 No.11. 東京工科大学 コンピュータサイエンス学部 亀田 弘之. 今日から演習. ソース言語. #include &lt; stdio.h &gt; main(){ float kingaku = 0, teika = 100; float shouhizei = 0.10; kingaku = teika + teika * shouhizei ; printf (&quot; kingaku =%f<br>&quot;, kingaku ); }. 読み込み.

ita
Download Presentation

言語プロセッサ 2013 No.11

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ネットワークの準備お願いします! 言語プロセッサ2013No.11 東京工科大学 コンピュータサイエンス学部 亀田弘之

  2. 今日から演習

  3. ソース言語 #include <stdio.h> main(){ float kingaku = 0, teika = 100; float shouhizei = 0.10; kingaku = teika + teika*shouhizei; printf("kingaku=%f\n", kingaku); } 読み込み 字句解析 分析 構文解析 .file "test2.c" .def ___main; .scl 2; .type 32; .endef .section .rdata,"dr"LC3: .ascii "kingaku=%f\12\0" .text.globl _main .def _main; .scl 2; .type 32; .endef_main: pushl %ebpmovl %esp, %ebpandl $-16, %esp subl $32, %esp call ___main movl $0x00000000, %eax movl %eax, 28(%esp) movl $0x42c80000, %eaxmovl %eax, 24(%esp) movl $0x3dcccccd, %eax movl %eax, 20(%esp) flds 24(%esp) fmuls 20(%esp) fadds 24(%esp) fstps 28(%esp) flds 28(%esp) fstpl 4(%esp) movl $LC3, (%esp) call _printf leave ret .def _printf; .scl 2; .type 32; .endef 中間語生成 合成 コード生成 目的言語

  4. 字句解析 • メールアドレスを切り出す

  5. メールアドレスを取り出す処理 • 仕様 • 入力: ホームページ • 出力: メールアドレス(標準出力へ) • ツール: Flexを使用

  6. メールアドレスを取り出す処理 • 仕様 • 入力: ホームページ • 出力: メールアドレス(標準出力へ) • ツール: Flexを使用 • 設計 • パターンを正規表現で記述

  7. 数式を中間言語へ変換するプログラム (配布資料を参照のこと)

  8. 補講のお知らせ 平成25年12月21日(土) 3限 ・掲示板等で確認してください。 ・他の補講と時間帯が重複している人は,事前に連絡お願いします。 ・補講の時間も,演習をします。 ・FlexとBisonを使って,簡単な電卓ソフトウェアを作成します。 (よく本に載っているものです。)

More Related