Virtual machines of the future - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:49:22Z http://stackoverflow.com/feeds/question/316146 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316146/virtual-machines-of-the-future 3 Virtual machines of the future Pop Catalin 2008-11-25T02:08:41Z 2008-12-09T15:48:11Z <p>I'm looking for some resources regarding the <strong>virtual machines of the future</strong> (Like jvm or clr)</p> <p>What are they going to look like? Will they provide a concurrent runtime, more powerfull metaprograming models?</p> <p>I'm looking for articles, research projects, or pure speculation, anything that is going to be an interesting read.</p> <p>So if you have any links or opinions please do share.</p> http://stackoverflow.com/questions/316146/virtual-machines-of-the-future/316154#316154 1 Answer by Uri for Virtual machines of the future Uri 2008-11-25T02:15:25Z 2008-11-25T02:15:25Z <p>There's some academic work on new security ideas for VMs: <a href="http://csis.gmu.edu/VMSec/" rel="nofollow">http://csis.gmu.edu/VMSec/</a></p> http://stackoverflow.com/questions/316146/virtual-machines-of-the-future/316195#316195 6 Answer by coobird for Virtual machines of the future coobird 2008-11-25T02:35:50Z 2008-11-25T02:35:50Z <p>The <a href="http://www.parrotcode.org/" rel="nofollow">Parrot</a> is an upcoming virtual machine that will be used for Perl 6 along with other dynamic languages such as Ruby, PHP, Python, to name a few.</p> <p>Parrot is a little different from the Java Virtual Machine and Common Language Runtime as it is a register-based VM rather than stack-based like the JVM and CLR. Here's a bit from the <a href="http://en.wikipedia.org/wiki/Parrot_virtual_machine" rel="nofollow">Wikipedia entry on the Parrot virtual machine</a>:</p> <blockquote> <p>Virtual machines such as the Java virtual machine and the current Perl 5 virtual machine are also stack based. Parrot developers see it as an advantage of the Parrot machine that it has registers, and therefore more closely resembles an actual hardware design, allowing the vast literature on compiler optimization to be used generating code for the Parrot virtual machine so that it will run bytecode at speeds closer to machine code.</p> </blockquote> <p>Although it may not be exactly what you're looking for, there was news of an interesting use of the <a href="http://llvm.org/" rel="nofollow">Low Level Virtual Machine (LLVM)</a>. Adobe has a project called <a href="http://labs.adobe.com/technologies/alchemy/" rel="nofollow">Alchemy</a>, a C/C++ to Flash bytecode compiler, which utilizes the LLVM's optimization facilities to produce well-optimized Flash bytecode, according to <a href="http://developers.slashdot.org/article.pl?sid=08/11/19/2321230&amp;from=rss" rel="nofollow">this Slashdot article</a>.</p> <p>I think we're going to see more interesting uses for virtual machines, and increased adoption with better optimization and on-the-fly compilation techniques, along with the increased amount of computing power which is becoming available with newer, faster processors.</p> http://stackoverflow.com/questions/316146/virtual-machines-of-the-future/316208#316208 1 Answer by Piotr Lesnicki for Virtual machines of the future Piotr Lesnicki 2008-11-25T02:40:52Z 2008-11-25T02:40:52Z <p>Not knowing what would attract you the most (compilation, garbage collection, security, etc...), my advice would be to do some "depth first search" in webpages/papers/conferences/blog posts/etc related to people working on different virtual machines for java, clr, python, javascript etc.</p> <p>First starters that come to my mind are Micheal Hind (behind IBM VM for java - JikesRVM), Ben Zorn (Mircosoft), Pypy's blog... But just from those webpages you should find lots of links I think...</p> http://stackoverflow.com/questions/316146/virtual-machines-of-the-future/338126#338126 1 Answer by aardvark for Virtual machines of the future aardvark 2008-12-03T18:03:02Z 2008-12-03T18:03:02Z <p>One thing we're almost certain to see in VMs of the future is that they will be built from the ground up to handle multiple programming languages.</p> http://stackoverflow.com/questions/316146/virtual-machines-of-the-future/340486#340486 2 Answer by plan9assembler for Virtual machines of the future plan9assembler 2008-12-04T12:55:20Z 2008-12-04T12:55:20Z <p><a href="http://openjdk.java.net/projects/mlvm/" rel="nofollow">http://openjdk.java.net/projects/mlvm/</a></p> <p>HTH</p> http://stackoverflow.com/questions/316146/virtual-machines-of-the-future/340488#340488 2 Answer by George Jempty for Virtual machines of the future George Jempty 2008-12-04T12:55:40Z 2008-12-09T15:47:41Z <p>Like Parrot, the Lua VM is register-based; here's a link to a PDF by the language's creator:</p> <p><a href="http://www.inf.puc-rio.br/~roberto/talks/lua-ll3.pdf" rel="nofollow">http://www.inf.puc-rio.br/~roberto/talks/lua-ll3.pdf</a></p>