Tamarin Documentation
There have been some great weblog posts recently about the internals of Tamarin. If you're interested in more details about Tamarin, try the following: more →
Programming Languages, Martials Arts and Computers. The Weblog of Chris Double.
There have been some great weblog posts recently about the internals of Tamarin. If you're interested in more details about Tamarin, try the following: more →
My previous article on extending Tamarin Tracing with native methods described how to implement the native methods in C. It's also possible to implement native methods in Forth. Methods implemented in JavaScript are compiled to ABC bytecode by a compiler (currently the asc.jar provided by the Flex SDK). These are compiled to the basic Forth instructions by the Tamarin Tracing... more →
2008-05-20: Fixed some breakage due to changes to the latest Tamarin Tracing source, and updated more recent timing. I attended the Tamarin Tech summit at Adobe on Friday. My main interest for attending was to learn more about the tamarin-tracing project. The goal of Tamarin is to produce a high performance ECMAScript 4 implementation. 'Tamarin Tracing' is an implementation that... more →
2008-05-20: Minor update to get things working with latest Tamarin Tracing code, and updated times for test runs. Tamarin Tracing can be extended by creating native methods. These are methods of a class where the implementation is in C rather than JavaScript. For this example I'll use a native implementation of the fibonacci function and compare it to the JavaScript... more →
I've made a couple of quick fixes to the SVG Animation patch I mentioned earlier. The fixes are: more →