Tagged Questions
The vm tag has no wiki summary.
30
votes
7answers
15k views
Lua vs. Other scripting languages
I wonder why a lot of programmers claim that Lua is faster then any other scripting language?
What did they do that is more efficient then other languages?
Is there something completely different in ...
17
votes
6answers
2k views
What are the primitive Forth operators?
I'm interested in implementing a Forth system, just so I can get some experience building a simple VM and runtime.
When starting in Forth, one typically learns about the stack and its operators ...
16
votes
7answers
1k views
What exactly is Parrot?
I understand that Parrot is a virtual machine, but I feel like I'm not completely grasping the idea behind it.
As I understand, it's a virtual machine that's being made to handle multiple languages. ...
15
votes
8answers
834 views
What is a VM and why do dynamic languages need one?
So, for example, Python and Java have a VM, C and Haskell do not. (Correct me if I'm wrong)
Thinking about what languages on both sides of the line have, I can't find the reason. Java is static in a ...
14
votes
9answers
413 views
Book Recommendation to learn more about Application Virtual Machines [closed]
I have always been intrigued and mystified by Virtual Machines and how they operate. I want to learn more about the inner workings of a virtual machine.
Are there any good books on Virtual ...
13
votes
5answers
408 views
Algorithms for modern hardware?
Once again, I find myself with a set of broken assumptions. The article itself is about a 10x performance gain by modifying a proven-optimal algorithm to account for virtual memory:
On a modern ...
13
votes
5answers
791 views
Tutorial/resource for implementing VM
I want self-education purpose implement a simple virtual machine for a dynamic language, prefer in C language. Something like the Lua VM, or Parrot, or Python VM, but simpler. Are there any good ...
13
votes
17answers
2k views
Why do we need other JVM languages
I see here that there are a load of languages aside from Java that run on the JVM. I'm a bit confused about the whole concept of other languages running in the JVM. So:
What is the advantage in ...
12
votes
6answers
378 views
Is there a JavaScript (ECMAScript) implementation written in Python?
Are there any JavaScript (ECMAScript) implementations written in pure Python? It is okay even if its implementation is very slow.
11
votes
8answers
910 views
Scripting language for trading strategy development
I'm currently working on a component of a trading product that will allow a quant or strategy developer to write their own custom strategies. I obviously can't have them write these strategies in ...
11
votes
2answers
353 views
Is .NET memory management faster in managed code than in native code?
I would have thought that it would be clear cut whether memory allocation is faster in managed code than in native code - but there seems to be some controversy. Perhaps memory management under a ...
9
votes
3answers
1k views
Is there Dart VM available?
Just read news that Google had announced an early preview of the new web programming language Dart. The documentation on the dartlang.org states:
You will be able to run Dart code in several ways: ...
9
votes
1answer
274 views
What are some fundamental Feature/Architectural difference between the BEAM and JVM?
What are some fundamental Feature/Architectural difference between the BEAM and JVM?
Yes I know: one was originally built around java and the other built around erlang
I understand the JVM ...
9
votes
4answers
6k views
How would you improve Dalvik? Android's Virtual Machine
I am currently writing a paper on the Android platform. After some research, it's clear that Dalvik has room for improvement. I was wondering, what do you think would be the best use of a developer's ...
8
votes
14answers
2k views
Pros and Cons of Developing on a VM on a PC
I recently build myself a semi beef up PC (Q9450, 8GB DDR2 1066, 1TB HDD, Dual 8600GT, Vista Ultimate and Dual 22' Monitors) and I'm evaluating whether i should develop on a VPC/VMWare session on top ...
7
votes
3answers
113 views
How to implement (char-ready?) in C
I'm currently implementing Scheme R5RS in C, and I am stuck trying to implement the (char-ready?) function.
I have the specs for the function quoted below. The function is guaranteed not to block. ...
7
votes
2answers
1k views
Android - Memory leak when dynamically building UI with image resource backgrounds
I have an Activity that I swear is leaking memory. The app I'm working on does a lot with images, so I've had to be pretty stingy with memory when working directly with Bitmaps. I added an Activity, ...
7
votes
2answers
449 views
Implementing a stack based virtual machine for a subset of C
Hello everyone I'm currently implementing a simple programming language for learning experience but I'm in need of some advice. Currently I'm designing my Interpreter and I've come into a problem.
My ...
7
votes
3answers
443 views
What is a good VM for developing a hobby language?
I'm thinking about writing my own little language.
I found a few options, but feel free to suggest more.
JVM
Parrot
OSA
A lot of languages are using the JVM, but unless you write a Java-ish ...
7
votes
8answers
13k views
OutofMemoryError: bitmap size exceeds VM budget (Android)
Getting an Exception in the BitmapFactory. Not sure what is the issue. (Well I can guess the issue, but not sure why its happening)
ERROR/AndroidRuntime(7906): java.lang.OutOfMemoryError: bitmap size ...
7
votes
2answers
404 views
What C-integration problems arise with stackless VM implementations?
By stackless VM I mean implementation which maintains its own stack on the heap instead of using system "C-stack". This has a lot of advantages like continuations and serializable state, but also has ...
7
votes
8answers
2k views
Running JIRA on a VM
Anyone have any success or failure running Jira on a VM?
I am setting up a new source control and defect tracking server. My server room is near full and my services group suggested a VM. I saw ...
6
votes
1answer
124 views
Using a virtual machine inside of a game?
I am in the design stage of making a 3d "robot programming" game. Inspired by games such as Colobot, Robot Odyssey, Cholo, etc.
I want every robot in the game to have it's own isolated ...
6
votes
3answers
682 views
List of Lua derived VMs and Languages
Is there a compendium of virtual machines and languages derived or inspired by Lua? By derived, I mean usage beyond embedding and extending with modules. I'm wanting to research the Lua technology ...
6
votes
1answer
606 views
64-bit Java VM runs app 10x slower
I have a Java app which is packaged up using JarBundler. The app is fairly CPU intensive (lots of big Collection.sort() calls).
On Mac OS, the app runs slow and sluggish when using the 64-bit ...
6
votes
3answers
444 views
How to write a linker
I have written a compiler for C that outputs byte code. The reason for this was to be able to write applications for an embedded platform that runs on multiple platforms.
I have the compiler and the ...
6
votes
3answers
492 views
Whats the best way to learn about VM implementation besides actually hacking code?
I'd like to learn more about VM implementation and optimization. Right now I'm contributing (in a small way) with JRuby and am also playing/writing with my own lisp-like language implementation that ...
6
votes
11answers
1k views
Are there any Java VMs which can save their state to a file and then reload that state?
Are there any Java VMs which can save their state to a file and then reload that state?
If so, which ones?
6
votes
3answers
4k views
Test a site in Mac Firefox
I need to test a site with a dynamic menu in Mac Firefox, but I'm running in Windows. A simple browsershot.com test won't help; I need to actually use the site.
How can I acquire a method of doing ...
5
votes
3answers
87 views
Java's return value in try-catch-finally mechanism
I have just encountered this following code:
public class TestFinally {
public static void main(String[] args) {
int returnValue = function();
System.out.println("Return value: " ...
5
votes
2answers
165 views
Using virtual machines for development
I've recently been given the role of managing or development environment which includes:
Managing the version control system (subversion) in which we typically have one major branch which is ...
5
votes
2answers
445 views
programatically setting max java heap size
Is there a way to set the max java heap size programatically instead of as a vm argument?
Something like:
System.getProperties().put("<heap variable>", "1000m");
5
votes
4answers
855 views
What is Azul “Zing”? [closed]
What is Azul "Zing" platform?
Visiting Azul site (link) turned into a marketing horror - and after wading through every little bit of it, I still don't have a clue.
Does anyone have any experience ...
5
votes
2answers
451 views
Python multiprocessing process vs. standalone Python VM
Aside from the ease of use of the multiprocessing module when it comes to hooking up processes with communication resources, are there any other differences between spawning multiple processes using ...
5
votes
3answers
291 views
Running multiple Erlang applications. One or many VMs?
I want to run multiple Erlang applications, one being Riak and another being a web server. Should I run them in the same of separate Erlang VMs and why?
5
votes
6answers
585 views
Is There Any Way To Develop in Smalltalk Without Using a VM?
I'm really begining to learn Smalltalk. Now I'm using Squeak, but there is any way to develop in Smalltalk without using VMs, but something like an IDE?
5
votes
8answers
544 views
Secure Python intepreter?
Is there a secure Python intepreter?
Imagine a Python VM you can run on your machine, that restricts the operations.
No files can be opened, no system calls, etc.
It just transforms stdin to stdout, ...
5
votes
2answers
905 views
Do VMs like LLVM or PARROT allow usage of the same library from multiple languages?
Is it possible to use one framework written in one Parrot (LLVM) language in any other Parrot (LLVM) language?
(Like usage of .NET Framework from any CLR language)...
4
votes
2answers
135 views
possibilities for fast dynamic code execution in Python
I have some code available in some form of AST and I would like to execute it.
I can think of several ways to do this, e.g.:
Just straight-forwardly interpret it.
Translate it into a Python AST ...
4
votes
3answers
131 views
Can I make multiple Lua VM in single thread?
As I know, I can make a Lua VM for each thread. But I'm not sure about multiple instances in a thread. Is this possible?
4
votes
1answer
2k views
How to SSH to a virtualbox ubuntu guest externally through a windows host?
I have an Ubuntu VM running on my windows 7 machine. Could someone help me with setting it up so that I can access ssh an the webserver externally? I found steps ...
4
votes
3answers
442 views
How to choose optimum image size to not exceed VM budget?
In my app users choose images and program lets users to make changes on images. Since there are a lot of different android devices out there my program crashes on some of devices which less heap size. ...
4
votes
2answers
310 views
Does a Lua 5.1 Assembler Exist?
I've been studying the Lua 5.1 VM opcodes for some time now, out of boredom.
And I want to try coding something!
So is there any existing way to assemble Lua Assembly into Bytecode ?
4
votes
2answers
131 views
VMware event hooks in .NET
I'm developing an in-house .NET application that will be run on a VM (with VMware), and want to know if there's a way to get notifications from VM system events (like suspending, resumed, etc.)
...
4
votes
2answers
3k views
Weblogic is slow to start (11mins) under VM (VirtualBox and VMware)
(SOLVED! BY FAKING SYSTEM RANDOM GENERATOR, SEE BELOW)
I'm setting up a VM image for my dev/build team. Inside that VM a Weblogic domain should be running. I use Ububtu server distro, WLS 9.2MP3 + ...
4
votes
3answers
1k views
Limit Python VM memory
I'm trying to find a way to limit the memory available for the Python VM, as the option "-Xmx" in the Java VM does. (The idea is to be able to play with the MemoryError exception)
I'm not sure this ...
4
votes
4answers
891 views
Bytecode Design?
I'm designing a programming language which compiles to an intermediary bytecode. However, I'm having a lot of trouble designing the bytecode structure. Does anybody have any pointers on how to ...
4
votes
9answers
659 views
Why are many VMs written in C when they look like they have C++ features?
I noticed some not so old VM languages like Lua, NekoVM, and Potion written in C.
It looked like they were reimplementing many C++ features.
Is there a benefit to writing them in C rather than C++?
4
votes
1answer
561 views
Python Virtual Machines architecture diagrams/references
Someone could point out sites/books where I can find introductory documentation about the architecture of the Python VM?
I'm interested in the C version, but if there are easy-to-follow references ...
4
votes
2answers
2k views
MAMP/LAMP native or virtual (Virtualbox/VMware)?
What is your preferred development environment ?
Native
WAMP/MAMP/LAMP (Apache, MySQL, PHP) on Windows/MacOS/Linux
Working copy local, SVN/CVS on server
IDE/Editor on the same system (Eclipse, ...