Have you ever implemented a programming language, either your own or an existing language and why did you decide to do it?
|
|
I once wrote a mini-language by accident. It started out as a simple state machine (in C) for driving a keyboard controller chip (HP-HIL if anyone cares). By the end of it I'd effectively turned that state machine table into a really bad programming language (having only one data type and having a fixed number of variables, if you will) for controlling the chip. I was too inexperienced at the time to realize what I was doing, or I'd have made my life easier by making a real mini-language out of it. As it was, you had a VERY wide table with columns for all the possible things you might do (branch, jump, etc). It was actually quite readable, except that you had to keep track of which column was which command. |
|||
|
|
|
|
I wrote a domain specific (compiled) language for a game because it was the best way of building the product. It's was similar in nature to UnrealScript. Why? Because it was the best solution to the problem of building stable core code that could be used by lesser skilled programmers (such as designers and artists) to promote stability and rapid iteration. I.e. a bug in the "bullet" code would just cause the bullet to freeze in mid-air before being reaped by the VM rather than causing the game to lockup/crash. I've also built various other languages for fun (e.g. a Common Lisp interpreter in javascript) because, well, building languages is fun! |
|||
|
|
|
|
Quite some, over the many years,
Hard to tell which was most fun to do - maybe the forth system for the 6809, as it was created on the naked hardware; not even an assembler avail.; entered hexcode of the first words via the hex-rom-debug-monitor... Now mentally returning back to becoming a lisp lover again: pure semantics; no syntactic sugar-shit to fight against, the full power of though at your hands... |
|||
|
|
|
|
As a regular follower of the Ruby Quizes, I've implemented compilers/interpreters/VM's for
|
|||
|
|
|
|
I'm working on a language that I call the Simple Parrot Test Language, or SPTL (pronounced "spittle"). My goal is to understand the Parrot VM and PIR bytecode. I'm blogging about it here. |
|||
|
|
|
|
Yes. I wrote a compiler for a course in college and after that, I wrote: A subroutine threaded FORTH compiler/interpreter (that line is blurry) for an independent study course. An implementation of a lazy Scheme in C which included bit fiddling extensions for a seminar course in lazy evaluation. A 6502 emulator. The VM for a Prolog compiler. A PostScript interpreter in C for fun. A 6800 interpreter to emulate the sound boards in Williams Electronics video games. I had it running in 2x slower than real time on a slowish Macintosh and was intending to rewrite key instructions in assembly to speed it up, but then the PowerPC was released and after recompiling it ran better than real time, so I declared that I was done. An interpreter with JIT hooks for javascript/VRMLScript for a VRML browser. A compiler for a non-turing complete predicate language for browser scraping/form filling that compiled into a nice little VM machine (the non-turing completeness guaranteed that all programs would halt!) A PostScript interpreter in Java which was used as a teaching tool for some high school honors students who were prepping for the AP computer science test - I handed them the module definitions and let them try do the implementation and glue code. If they couldn't work out bugs, I gave them the reference implementation. |
|||
|
|
|
|
I implemented a BrainFuck interpreter, but that's really easy. Really, really easy. The code could fit on one screen. |
|||
|
|
I've lost count of the number of languages I've implemented. Some are
Nowadays I usually implement a new language by translating it into an existing compiler language. For lexers and parsers, I know all about lex and yacc, but personally I prefer to roll my own. I've come to see that whenever you're programming you're building a language, in a sense, so knowing how to design and build languages is an invaluable skill for any programmer. [Added] This ties into discussions of code generation and its alter-ego, partial evaluation. I've found that some problems, such as flexible report generation, can be simplified enormously by splitting them into two phases, a code generation phase and an execution phase, even if the code is only a simple interpreted byte code. |
|||
|
|
I'm currently working on a Pascal compiler |
|||
|
|
|
|
Over the years, I've designed and implemented a couple of Business Rules Engines for use in the public sector that had their own programming languages. The first used a functional language and compiled down to a byte-code with a VM engine that ran on both PCs and ICL mainframes. The second was somewhat grander in terms of scope and functionality (and succeeded the first). It fully supported two languages; the first being the functional language from the previous engine and the second was a Java-derivative. I also did some significant work on three other languages, COBOL (to allow legacy mainframe business rules to run directly in the rules engine), a graphical modelling language and Structured English. None of which found it into the final product, though. A feature of this engine is that the different languages could be combined in a rules set. Ultimately, they were used to derive a single abstract syntax tree and compiled down to IL to run under the .NET Framework. |
|||
|
|
|
|
Two: One made up by my teacher for a university compiler design course. This one wasn't that interesting, it was c++ style with classes supporting fields and methods, but not inheritance. The only data types were integer and float (which was actually implemented as fixed point XD) One for a video game project (also for school). I was writing a bullet-curtain shoot-em-up and wanted a simple language to use to define bullet patterns. I wasn't interested in BulletML because it is very limiting and has a bulky xml syntax, and I didn't want to embed something with a garbage collector for the pauses it would introduce. I ended up implementing a tiny language, which lets me write:
and get a level like this:
It's still kinda hacky (note the (- 0 1), since I don't have negative integer literals >_>), but it's a lot of fun. The reason I couldn't just code it in raw C++ is the (wait n) command, which tells the behavior to stop running for n seconds and continue back from the same spot later. In Scheme I could do this with continuations, but there doesn't seem to be a good way to do it in C++ without hand-coding a state machine for every behavior. |
|||
|
|
|
|
It's not a language nor a compiler; I tried to write a code analyzer for the D language, but that project died! I wrote a lexer and a parser, after that .. I wasn't sure how can I make use of the AST for further processing. |
|||
|
|
|
|
An unreasonable number. Here are some, more recent first. In general most of these larger projects were for fun and learning more than use. Squerm: An experimental Lisp dialect that's a kind of portmanteau of Scheme and Erlang. Meant to play with those ideas and grow into an image-based environment influenced by Squeak, but that part hasn't happened so far. Wren: Meant to run interactively on small embedded systems with around 4k of RAM available. A friend had asked me if I could recommend a language for that to short-circuit the compile-and-download cycle, and I decided to hack up a new one. ichbins: A self-hosting compiler from a Lisp dialect to C, in about 6 pages of non-obfuscated code. Written to learn the practicalities of bootstrapping and evolving a self-hosting system. Consp: A toy Scheme dialect oriented around capability security. I wanted to test my understanding of the subject in a simpler context than E (see below). Hypercode: A pretty weird system to try out some ideas about hypertext as source code and a live environment where the full representation of an executing program is there to edit/interact with as it runs. Written in Hypercard. Hmph: Some related ideas, this time in a web context. Really hacky, but pointing in a direction I'd like to see worked out better. Tusl: A small stack language for embedding in C programs to add runtime programmability to them and keep from having to write another config-file parser, etc. Sort of like Color Forth minus the colors. It's come in handy in several projects, though I guess it'll never replace Lua. :-) Scheme wiki: an underpowered Scheme interpreter in Python as part of a wiki that ran literate Scheme code that anyone could edit. The general idea was to make a wiki with live programs instead of dead code snippets; I ran out of steam before making it really usable. E: Allen Short greatly extended my early draft of a C-based implementation of the E programming language, itself starting from Mark Miller's work. I like E and would like to use it in anger. 'mlisp': Never-released systems-programming dialect of Lisp, compiling to the bare metal. For Brian Spilsbury's Vapour OS, which never got released either. We did write a few device drivers... UTS: Bytecode interpreter for R4RS Scheme. I used it a lot for about 5 years for my personal programming, but it breaks when compiled with any modern release of gcc, and I'm too lazy to figure out why. (These days I mostly use Python instead.) Plonk: Java port of UTS. This seems to have been the first reasonably-complete-and-standard Java implementation of Scheme. It was too slow and inconvenient for me to want to take it further, but it taught me Java. MIXAL: I wrote this intending to use it while studying Knuth, which, well, still hasn't happened. Jose Ortega turned it into GNU MDK. Awklisp: At work I had to use a horrible Basic implementation called MapBasic. It was so slow I bet you could write a faster interpreter in Awk. Yes. yawk: A parser generator in and for Awk. Fun, but unreleasable since I wrote it at work. req: My college data-structures class was taught by Dave Gillespie, who wrote GNU Calc; he organized the material around building a similar kind of little symbolic-math system using term rewriting. I rewrote it later, dropping the algebraic simplification part; I still use it regularly for random calculations. They're on GitHub or my my old home page. |
|||
|
|
I wrote a byte-code compiler and a virtual machine for a language used in a game, where each game level was stored as a script along with any media used in that level (graphics+sound). The game was entirely written in java, including the virtual machine, so the efficiency was horrible of course (virtual machine inside a virtual machine), but it was a simple game with mostly static graphics. The flexibility it gave the designers when they created the levels was very much appreciated. Addendum: I was actually rather surprised at how not-horrible the efficiency was, but I wouldn't recommend it for a real project... |
|||
|
|
|
|
For my job I recently designed and implemented a simple extensible DSL so users can write short expressions to calculate text, numeric or boolean values, to control the appearance of business documents. If building a system from scratch I would probably have let the user choose any .NET language to do this in, eliminating a lot of work for me. But the requirement is to provide a convenient way of configuring a pre-existing runtime (not .NET), and also to mimic the simplicity of another pre-existing product, which created an opportunity to do a lot of interesting things. Interesting things about it are:
... along with a list that gives the types allowed for sub-expressions in a given overload, of which there can be several. It's possible to indicate that sub-expressions are of an unknown type. All subexpressions in a pattern with unknown type must be of the same type in any instance of the pattern. It's like generics but only allowing a single type parameter. This is what 'if' does - its 1st argument must be boolean and its return type and the types of the 2nd and 3rd arguments must all be the same as each other, but are otherwise unconstrained.
And I threw in a syntax-highlighting editor as well. It was a lot of fun! |
|||
|
|
|
|
As an undergrad in the early 1970s, I had to write a compiler for a subset of the PL/I language (which was enjoying some measure of popularity at the time, at least within academic circles). During the course, our professor spent almost an entire week teaching us about recursion, demonstrating how recursive techniques could be used in compilers for parsing, etc. For some strange reason, I assumed that he expected us to actually make use of those things which he emphasized during class. Well, after many long and sleepless nights at the computer center, the day finally arrived for us to submit our final projects. After I proudly showed him the results of my operable, yet somewhat sluggish compiler, he remarked -- "Fine, but why did you decide to use recursion?" (!) I didn't get quite the grade I had hoped for, either. But hey, at least my compiler WORKED. |
|||
|
|
|
|
Yes, I designed and implemented a couple of small languages. One was the Imagine Staging Language (ISL), which was a narrowly focused commercial project for a few years. I reverse engineered the file format of Imagine staging files, designed a language that described the possible contents of such files, and implemented it using yacc and lex (well, bison and flex, technically). Imagine was a GUI-based 3D renderer for the Amiga and PC with no scripting capability. People used ISL for things like generating scenes using physics-based motion. I decided to do it because I wanted to use it myself - there was no other product at the time with similar capabilities. The others were mini-languages for various jobs. Generally, I used yacc and lex and designed well-formed grammars intended to make it easy to write code for domain-specific problems in an error-resistant manner. The most elaborate was a major subset of C intended to allow for arbitrary scientific calculations, triggered by the receipt of telemetry data, in realtime. The runtime for this one had symbol tables and stack bounds checking and such and was fairly full-featured. The major driving force behind these mini-languages was that it was the best way available at the time to solve custom problems in narrow problem domains. With the modern widespread availability of options such as TCL and LUA, I would look closely at using one of those before rolling my own again. |
|||
|
|
|
|
No. Next question ? :-) |
|||
|
|
|
|
Not a programming language, but I implemented a small SQL interpreter some time ago, and a little database whose data all disappeared when the program terminated :) |
|||
|
|
|
|
I implemented PostScript for use as a scripting language for a debugger written in Modula-3. This was in 1990 or thereabouts. Tcl was not expressive enough to be useful, and Lua hadn't been invented yet. PostScript was designed to run on printers which at the time were only slightly more powerful than a typical PC and a good deal less powerful than a departmental minicomputer. So the language was practically tailor-made to be implemented by a simple interpreter, and because Modula-3 provided the garbage collection, the first version only took a week to build. The embedded interpreter proved to be a very powerful tool; it was one of the best decisions we made on the project. I have since implemented a compiler-target language called C-- for research, plus I have implemented a half a dozen "micro languages" (micro-Scheme, micro-ML, micro-Smalltalk, micro-Prolog, ...) to use in teaching classes on programming languages. I've also worked on other people's compilers for C and Haskell. It's a good exercise for any programmer to design and implement a simple language. You will learn a lot. Unfortunately there are a lot of bad books out there and not many good ones. Of those now in print, perhaps the one by Dan Friedman and Mitch Wand is the best, but it's rather formal. |
|||
|
|
Yes, I am currently busy with IronScheme. |
|||
|
|
|
|
I've written a compiler for a subset of C as a class project. I've also designed and implemented small scripting/querying languages for personal projects I've worked on - mainly for fun. I find desiging and implementing languages one of the most interesting programming experiences I've had. |
|||
|
|
|
|
Yes, three of them:
In all 3 cases I needed the language to vastly simplify the development process. For example:
|
|||
|
|
|
|
I wrote a functional, interpreted language in Oz as a school project. I learned a lot about abstract syntax trees. The language was quite useless, but I still have the small programs I wrote in it lying around:
That calculates Fibonacci number 12. If I remember correctly, the language only supports two types; positive integers and boolean values, and there is no possibility of strings. Also, any program written in it will only ever print one number. A few of these programs were part of the specification we worked from, and because of the requirement of positive integers, subtraction had frequent underflows. The professor for this course had not taken this into consideration, and as such, one of the specified programs had a bug where it would not run if you programmed your interpreter properly. |
|||
|
|
I wrote the rule scripting language for a system at work. I came up with the syntax, runtime, function library, etc. out of whole cloth, and implemented the language in Java. It's primary benefit was that it nicely exposed our data model to developers of the rule sets. This was all in Java. If I were to do it again, I'm not sure that I would, but to be honest I'm not sure that I wouldn't either. The data model in this case was rather tricky, and the language offered good value in cleanly manipulating that model. If I could duplicate that readily in another language through it's normal extensibility, I'd do that. But frankly I can't think of a language extensible enough to let me really do it save for Lisp, and there's no way I'd be crafting a Lisp for the rule developers. But I certainly would make an effort to try and leverage an existing language first (but I doubt I'd go as far as hacking an existing languages grammar/runtime). I'd want to work within the language itself. |
|||
|
|
|
|
Yes - back in the 80s. It was an assignment at University, as part of the compiler course - and was a minimal C language. Oh - the joys of working with Lex and Yacc. If you ever find yourself in this situation, either invest time in learning something like Antlr or GOLD, or get yourself a copy of Lex and Yacc. |
|||
|
|
|
|
I invented a language and wrote a full compiler for it (from parsing source to generating X86 code). This was for a research project as an undergraduate. It took me about a year, working a few hours a week. My main goal was really to learn how compilers are implemented. I really think the best way to learn about something is by doing it. My architecture wasn't the best, and I've since worked on a couple different compilers, so I know what to do better next time. My second goal was just to explore programming language ideas. After I got the basic architecture, I spent most of my time playing with language features. I combined first class functions and classes in one language, and I added generics (both for functions and classes) and type inference. The project is defunct now since I've moved onto other things, but it was definitely worthwhile. I learned a lot. |
|||
|
|
I've nearly done it, twice:
EDIT: I can't believe I forgot to include Logo. When I was a boy I owned a Sinclair ZX Spectrum, but the schools all had BBC Micros. We had Logo at school, and I liked it - so I learned trigonometry from the Spectrum manual (which was wonderful) and wrote a Logo interpreter. I should have been overwhelmed by the idea of doing it, and rejected it as beyond my capabilities. Back then I didn't stop to think whether or not I would really be able to do something before I tried it. It worked, although it was obviously clunky (I was about 10 or 12). I even remember that line 7000 started the routine to draw the turtle (in an XOR fashion). Good old GOSUB 7000 - if the turtle isn't showing, just add another call... |
|||
|
|
|
|
I wrote a C++ compiler. As to why... because it was a homework assignment in college. :) |
|||
|
|
Yep, a simply basic interpreter, written in c, sometime in the 80s. I did it for the educational aspects. I learned about parsing, and expression evaluation, and debugging. It was a special project my senior year at college. I learned more doing that one project than the rest of my classes together. |
|||
|
|

