mzsk / pascal.js

Pascal compiler implemented in JavaScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pascal.js

Description

Pascal.js is a Pascal compiler (Turbo Pascal 1.0-ish) implemented in JavaScript that outputs LLVM IR (intermediate representation). The IR can then compiled to native machine code (using LLVM as a backend), or compiled to JavaScript (via LLVM.js) so that it can run as a Node.js script or can run in a browser.

Pascal.js uses an LALR(1) (bottom-up lookahead left-to-right) parser generated using Jison.

Pascal.js is written in JavaScript and outputs JavaScript. This means you can write, compile and execute Pascal programs entirely in your browser. Try out the obligatory online demo of Pascal.js (supports at least Chrome and Firefox).

Why?

Take your pick:

  • It has been said: "Great programmers don't program in Pascal but they have built a compiler for it." Turbo Pascal was the first programming language and now I have built a compiler for it. I'm not sure where that leaves me ...

OR

  • Pascal and JavaScript exist. Sooner or later somebody was going to think of putting them together ...

OR

  • In the Spring of 2013 I took a compiler class as part of my graduate studies. The class project was to build a compiler in Java for a simplified Pascal variant (PCAT). For many years I have been wanting to ressurect some old Turbo Pascal programs I created in grade school. There were two obvious paths available to me: get the original Turbo Pascal compiler running using DOSBox, or create a Turbo Pascal compiler from scratch (inspired by my class work). I took both paths (of course!). This is the result of that second path.

Language Features Supported

The following features of Turbo Pascal 1.0 are supported:

  • Procedures and functions with nested lexical scope
  • Scalar Types: Integer, Real, Character, Byte, Boolean, Enumeration, Subrange
  • Structured Types: String, Array (multidimensional), Record, Enumeration
  • User defined types
  • Automatic and explicit type transfer (coercion): Integer(), Char()
  • Forward references (for corecursion)
  • Control statements: if/else, for, while, repeat, case
  • Standard routines: Concat, Chr, Halt, Odd, Ord, Random, Read, ReadLn, Write, WriteLn
  • Crt routine (native and Node.js only): ClrScr, Delay, GotoXY, KeyPressed, ReadKey

Missing Language Features / Caveats

The following features of Turbo Pascal 1.0 are not yet supported:

  • Pointer type
  • Set type
  • With statement
  • Typed constants
  • File types / file routines
  • Untyped variable parameters
  • Additional standard/crt routines

Some other differences from Turbo Pascal 1.0:

  • Crt unit must be explicityly specified
  • Default case branch is specified with "otherwise" rather than "else" (to address a parsing ambiguity with if/else).
  • Strings are current C-style (null terminated). Also, string assignment and concatentation leaks memory.

Intentionally Omitted Language Features

  • Labels / Goto
  • Compiler directives
  • Mem and Port built-in arrays
  • Variant Records

About

Pascal compiler implemented in JavaScript


Languages

Language:JavaScript 73.7%Language:Pascal 17.5%Language:HTML 2.9%Language:Makefile 2.9%Language:C 2.8%Language:Shell 0.1%