Posts tagged programming languages

Graal & Truffle

Medium, truffle, graal, PLT, programming, programming languages, language design

Truffle is a framework for writing interpreters with annotations and small bits of extra code in them which, when Truffle is paired with its sister project Graal, allow those interpreters to be converted into JIT compiling VMs … automatically. The resulting runtimes have peak performance competitive with the best hand-tuned language-specific compilers on the market. For example, the TruffleJS engine which implements JavaScript is competitive with V8 in benchmarks. The RubyTruffle engine is faster than all other Ruby implementations by far. The TruffleC engine is roughly competitive with GCC. There are Truffle implementations in various stages of completeness

via https://medium.com/@octskyward/graal-truffle–134d8f28fb69

Crash Course on Notation in Programming Language Theory

programming, PLT, theory, notation, programming languages, computing, mathematics

This post is a crash course on the notation used in programming language theory (“PL theory” for short). For a much more thorough introduction, I recommend Types and Programming Languages by Benjamin C. Pierce and Semantic Engineering with PLT Redex by Felleisen, Findler, and Flatt. I’ll assume the reader is an experienced programmer but not an experienced mathematician or PL theorist. I’ll start with the most basic definitions and try to build up quickly.

http://siek.blogspot.be/2012/07/crash-course-on-notation-in-programming.html