プログラミング

はじめてのANTLR

昨日、ちょっとふれたANTLRですが、 ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a language tool that provides a framework for constructing recognizers, compilers, and translators from grammatical descriptions containing…

Parser

C#のParserが欲しかったのでantlr2.7.4と文法ファイルをダウンロードしてきてビルドを試みました。 $ cantlr cs.g を実行すると次のファイルが生成されます。 CSharpLexer.cs CSharpParser.cs CSharpTokenTypes.cs これを $ csc /r:antlr.runtime.dll /t:lib…

ソフトウェア開発の方向性

今後のソフトウェア実行環境は仮想マシンが主流になると個人的には思っていますが、進む方向としては大きく分けると、この3つでしょうか? Java/JVMによるプラットフォーム&言語の統一 .NET/Monoによる仮想マシンと共通言語ライブラリ C/C++とスクリプト言…

呼び出し規約

分かっているつもりでも時々間違えてしまう呼び出し規約ですが、面白そうなBlogがあったのでメモ。土日にでも纏めて読もうっと。「The Old New Thing」より The history of calling conventions, part 1 The history of calling conventions, part 2 The his…