# HG changeset patch # User Jaroslav Tulach # Date 1449679446 -3600 # Node ID 55f59502cf317b832bd40e94c0712f9aa9a48b54 # Parent 50baaa7da8e81caff71b23d4c07364dfc236f923 Links to Add Graal JIT Compilation to Your JVM Language tutorial diff -r 50baaa7da8e8 -r 55f59502cf31 truffle/overview.html --- a/truffle/overview.html Fri Dec 04 14:32:24 2015 +0100 +++ b/truffle/overview.html Wed Dec 09 17:44:06 2015 +0100 @@ -41,11 +41,42 @@ on top of Graal virtual machine. + +

Learning Truffle

+

-Our typicial sample language is called the SimpleLanguage. +Our typical sample language is called the SimpleLanguage. A good entry point for exploring SimpleLanguage is the SLLanguage class. +

+ +

+ There is an excellent tutorial Add Graal JIT Compilation to Your JVM Language + written by Stefan Marr which gives real example of turning an existing language + into Truffle based one: +

+ +

+ The posts cover not only basics, and API usage, but also description + of available tools for analyzing the performance and optimizing it. +

Other References