Tamarin:Tracing: Difference between revisions
Jump to navigation
Jump to search
(New page: Tamarin-tracing is an experimental branch of the Tamarin virtual machine. This branch modifies tamarin to use a trace-based optimizer rather than a conventional just-in-time compiler. ...) |
m (→Background Information: Fix link to HotpathVM paper.) |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 6: | Line 6: | ||
The new branch can be found in http://hg.mozilla.org/tamarin-tracing/. | The new branch can be found in http://hg.mozilla.org/tamarin-tracing/. | ||
== Tamarin Tracing Features == | |||
* [[Using the Trace Tree Visualizer]] | |||
== External References == | |||
* [http://www.bluishcoder.co.nz/2008/02/quick-introduction-to-tamarin-tracing.html A Quick Introduction to Tamarin Tracing] | |||
* [http://www.bluishcoder.co.nz/2008/02/implementing-native-methods-in-tamarin.html Implementing Native Methods in Tamarin Tracing] | |||
* [http://www.bluishcoder.co.nz/2008/05/extending-tamarin-tracing-with-forth.html Extending Tamarin Tracing with Forth] | |||
* [http://blog.mozilla.com/dmandelin/2008/05/16/tamarin-tracing-internals-part-i/ Tamarin Tracing internals part I] | |||
* [http://blog.mozilla.com/dmandelin/2008/05/21/tamarin-tracing-interals-part-ii-forth/ Tamarin Tracing Interals, Part II: Forth] | |||
* [http://blog.mozilla.com/dmandelin/2008/05/23/tamarin-tracing-internals-iii-lir/ Tamarin Tracing Internals III: LIR] | |||
* [http://blog.mozilla.com/dmandelin/2008/05/28/tamarin-tracing-internals-iv-trace-optimization/ Tamarin Tracing Internals IV: Trace Optimization] | |||
* [http://blog.mozilla.com/dmandelin/2008/05/28/tamarin-tracing-internals-v-running-compiled-traces/ Tamarin Tracing Internals V: Running Compiled Traces] | |||
== Background Information == | == Background Information == | ||
Line 11: | Line 25: | ||
* [http://www.ics.uci.edu/%7Efranz/Site/pubs-pdf/ICS-TR-06-16.pdf Incremental Dynamic Code Generation with Trace Trees] | * [http://www.ics.uci.edu/%7Efranz/Site/pubs-pdf/ICS-TR-06-16.pdf Incremental Dynamic Code Generation with Trace Trees] | ||
* [http://www.ics.uci.edu/%7Efranz/Site/pubs-pdf/ICS-TR-07-12.pdf Making the Compilation Pipeline Explicit: Dynamic Compilation Using Trace Tree Serialization] | * [http://www.ics.uci.edu/%7Efranz/Site/pubs-pdf/ICS-TR-07-12.pdf Making the Compilation Pipeline Explicit: Dynamic Compilation Using Trace Tree Serialization] | ||
* [ | * [www.usenix.org/events/vee06/full_papers/p144-gal.pdf HotpathVM: An Effective JIT Compiler for Resource-constrained Devices] | ||
* [http://www.ics.uci.edu/%7Efranz/Site/pubs-pdf/ICS-TR-07-10.pdf Efficient Just-In-Time Execution of Dynamically Typed Languages Via Code Specialization Using Precise Runtime Type Inference] |
Latest revision as of 20:39, 3 March 2009
Tamarin-tracing is an experimental branch of the Tamarin virtual machine. This branch modifies tamarin to use a trace-based optimizer rather than a conventional just-in-time compiler. Trace optimization is a technique which holds promise for optimizing untyped javascript code, and doing so with a small memory footprint.
The new branch can be found in http://hg.mozilla.org/tamarin-tracing/.
Tamarin Tracing Features
External References
- A Quick Introduction to Tamarin Tracing
- Implementing Native Methods in Tamarin Tracing
- Extending Tamarin Tracing with Forth
- Tamarin Tracing internals part I
- Tamarin Tracing Interals, Part II: Forth
- Tamarin Tracing Internals III: LIR
- Tamarin Tracing Internals IV: Trace Optimization
- Tamarin Tracing Internals V: Running Compiled Traces
Background Information
- Incremental Dynamic Code Generation with Trace Trees
- Making the Compilation Pipeline Explicit: Dynamic Compilation Using Trace Tree Serialization
- [www.usenix.org/events/vee06/full_papers/p144-gal.pdf HotpathVM: An Effective JIT Compiler for Resource-constrained Devices]
- Efficient Just-In-Time Execution of Dynamically Typed Languages Via Code Specialization Using Precise Runtime Type Inference