Tagged Questions

A virtual-machine is software emulating complete computer hardware. There are various applications that supply this functionality.

learn more… | top users | synonyms

26
votes
10answers
2k views

Why are so many new languages written for the Java VM?

There are more and more programming languages (Scala, Clojure,...) coming out that are made for the Java VM and are therefore compatible with the Java Byte-Code. I'm beginning to ask myself: Why the ...
23
votes
11answers
2k views

How to get a CS paper published when not in academia?

I've implemented a newer GC algorithm and thought my findings could help. What should I do? Publish a blog? Do my best to write a paper and/or just start submitting abstracts to journals? I don't ...
18
votes
20answers
2k views

Are you using Virtual Machine as your primary development enviroment?

Recently I have purchased a notebook that cames with Windows Home Basic (that don't have with ASP.Net/IIS. I thought in upgrade the Windows version to one with ASP.Net/IIS, but I thought in another ...
17
votes
10answers
1k views

Why are Virtual Machines necessary?

I was reading this question to find out the differences between the Java Virtual Machine and the .NET CLR and Benji's answer got me wondering why Virtual Machines are necessary in the first place. ...
16
votes
4answers
182 views

C++: doubles, precision, virtual machines and GCC

I have the following piece of code: #include <cstdio> int main() { if ((1.0 + 0.1) != (1.0 + 0.1)) printf("not equal\n"); else printf("equal\n"); return 0; } When ...
16
votes
4answers
2k views

How does Parrot compare to other virtual machines?

Parrot is the virtual machine originally designed for Perl 6. What technical capabilities does the Parrot VM offer that competing virtual machines such as the Java Virtual Machine (JVM)/Hotspot VM ...
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 ...
14
votes
5answers
2k views

How does a virtual machine work?

I've been looking into how programming languages work, and some of them have a so-called virtual machines. I understand that this is some form of emulation of the programming language within another ...
13
votes
2answers
2k views

Why is the JVM stack-based and the Dalvik VM register-based?

I'm curious, why did Sun decide to make the JVM stack-based and Google decide to make the DalvikVM register-based? I suppose the JVM can't really assume that a certain number of registers are ...
13
votes
5answers
792 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
5answers
2k views

Java's Virtual Machine and CLR

As a sort of follow up to the question called Differences between MSIL and Java bytecode?, what is the (major) differences or similarity in how the Java Virtual Machine works versus how the .NET ...
12
votes
8answers
616 views

What exactly is Java?

The question may at first sound silly, but maybe it isn't at all. Java is not the Java language, most people know that, since you can program Java with lots of other langauges like Scala or Groovy ...
12
votes
4answers
6k views

Addressing localhost from a virtualbox virtual machine

I have a local test/development server (http, of course), listening to port 8000, I'm working on Linux, so to test the page on IE6/7/8 etc I run a virtual machine using virtual box; I also need to ...
11
votes
2answers
189 views

how does PHP opcode relate to the actually executed binary code?

test.php as plain text: <?php $x = "a"; echo $x; test.php as opcode: debian:~ php -d vld.active=1 -d vld.execute=0 -f test.php Finding entry points Branch analysis from position: 0 Return ...
10
votes
4answers
1k views

How to write self-modifying code in x86 assembly

I'm looking at writing a JIT compiler for a hobby virtual machine I've been working on recently. I know a bit of assembly, (I'm mainly a C programmer. I can read most assembly with reference for ...
10
votes
9answers
3k views

registers vs stacks

What exactly are the advantages and disadvantages to using a register-based virtual machine versus using a stack-based virtual machine? To me, it would seem as though a register based machine would ...
9
votes
1answer
407 views

EC2 instance image on VirtualBOX?

Is there any way of getting the saved EC2 instance image and running it on virtualbox on my personal computer?
9
votes
1answer
262 views

CPU Identification on Virtual Machine

I use following c# code to get processor information. The Management class is null if I run my application on a virtual machine. I use Oracle VM VirtualBox as my virtual pc (Windows XP SP3) ...
9
votes
3answers
432 views

Clean, self-contained VM implemented in C and under 100-200K compiled code size?

I'm looking for a VM with the following features: Small compiled code footprint (under 200K). No external dependencies. Unicode (or raw) string support. Clean code/well organized. C(99) code, NOT ...
9
votes
7answers
1k views

Is the CLR a virtual machine?

I read a book which referred .net CLR as virtual machine ? Can anyone justify this ? What is the reason we need the concept of virtual machines on some development platforms ? Isn't it possible to ...
8
votes
3answers
131 views

Interested in VM for lisp-like languages on 8-bit system

I'm looking for recommended virtual machines that can run on a 8-bit microprocessor AND support dynamic languages. I'd like a VM solution because I perceive benefits in terms of code density, ...
8
votes
5answers
113 views

How does PHP know what type of variables it uses (or does it)?

I haven't done much programing in many languages, but I know in C(++), you have to declare a variable type (int,char,etc). In PHP you, of course, don't have to do that. You can start with $str = ...
8
votes
4answers
240 views

How to find out what optimizations the JVM applied to my code?

The JVM (especially the HotSpot VM) is famous for having a huge number of optimizations it can apply at runtime. Is there a way to look at a certain piece of code and see what the JVM has actually ...
8
votes
5answers
399 views

Automatic parallelization

What is your opinion regarding a project that will try to take a code and split it to threads automatically(maybe compile time, probably in runtime). Take a look at the code below: for(int ...
8
votes
5answers
726 views

Developing kernels and testing them in virtual machines

I like programming challenges, and writing a kernel seems a programming challenge. Unfortunately, kernels are particularly hard to test because they are basically the core of operating systems and so ...
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 ...
8
votes
8answers
1k views

How to protect application against duplication of a virtual machine

We are using standard items such as Hard Disk and CPU ID to lock our software licenses to physical hardware. How can we reduce the risk of customers installing onto a virtual machine and then cloning ...
7
votes
3answers
336 views

Duplicate GUID on Virtual Machine

I've managed to successfully reproduce the same GUID (yes, you read that correctly) using a simple C#.NET scratch program when reverting snapshots inside VMWare. The client virtual machine is Windows ...
7
votes
3answers
147 views

copy objects between different Virtual-Machines efficiently

I have a feeling that I am going to ask a "stupid" question, yet I must ask ... I have 2 virtual machines. I would like to copy an instance of an object from one to another, Is it possible to copy ...
7
votes
6answers
420 views

Writing a VM - well formed bytecode?

I'm writing a virtual machine in C just for fun. Lame, I know, but luckily I'm on SO so hopefully no one will make fun :) I wrote a really quick'n'dirty VM that reads lines of (my own) ASM and does ...
7
votes
12answers
3k views

Emulate old PC?

I'm writing a Flash game, pretty intensive on CPU. Besides optimizing it a lot, I would like to be able to play it as players on slow PC's will, because I have a good CPU and I would like to make it ...
6
votes
1answer
179 views

Why is it hard to beat AOT compiler with a JIT compiler (in terms of app. performance)?

I was thinking that JIT compilers will eventually beat AOT compilers in terms of the performance of the compiled code, due to the inherent advantage of JIT (can use information available only at ...
6
votes
2answers
193 views

Virtual environment for Linux Kernel hacking [closed]

This question is to practicing Linux kernel hackers: Generally, it is best to test/play with linux kernel changes/hacks in a virtualized enviroment. What virtual environment do you use for testing ...
6
votes
1answer
272 views

Double checked locking in Android

According to many, the somewhat common Double-Checked Locking idiom is broken for java unless you're running 1.5 or later and use the volatile keyword. A broken double-checked lock sample: // Broken ...
6
votes
4answers
197 views

Which classes are absolutely necessary to get a Java VM running?

What is the smallest subset of classes with which a Java VM is able to start up? I guess things like Object, String and the primitves are absolutely required because they are hard-wired in many parts ...
6
votes
3answers
2k views

Java's Virtual Machine's Endianness

What endianness does Java use in its virtual machine? I remember reading somewhere that it depends on the physical machine it's running on, and then other places I have read that it is always, I ...
6
votes
3answers
860 views

VM Design: More opcodes or less opcodes? What is better?

Don't be shocked. This is a lot of text but I'm afraid without giving some detailed information I cannot really show what this is all about (and might get a lot of answers that don't really address my ...
6
votes
6answers
446 views

What does it mean that Squeak runs “bit-identically” across platforms, in a way Java doesn't?

Alan Kay points out that "Unlike Java, [Squeak] runs bit-identical on every machine -- we invented this 20 years ago". The wikipedia page mentions this also: Squeak is available for many ...
6
votes
11answers
8k views

Easiest way to create a virtual LAMP machine on Windows XP?

I need to set up a test environment on my XPSP3 machine that runs Apache, MySQL, and PHP. My original test environment was an old box that ran those three under Win2k. That box died. Running on ...
5
votes
1answer
73 views

Why are register-based virtual machines better than stack-based ones?

Why are register-based virtual machines better than stack-based ones? Specifically, in the Parrot VM's document, the designer explains the benefits of register machines: [...] many programs in ...
5
votes
0answers
121 views

Why does a WPF app in a VM perform better than one running direct in the OS?

Ok Stackies... got a tough one for ya, or at least one that has us stumped for over a month now. We have a higher-end Win7-64 Dell precision workstation notebook with an i7, 8 gigs of ram, tons of hd ...
5
votes
3answers
58 views

Test VM in GIT repository

I have a project which uses TCP/IP communication to communicate with a server. For my project, i have setup a server in a VM which i use for my tests. When i run my tests, the VM starts, my tests run, ...
5
votes
1answer
107 views

How can a JVM decide if a class “belongs” (e.g. inner or nested classes) to another class?

I want to understand class files and inner/nested classes a bit better and I'm wondering about the following things: Is the InnerClasses attribute used to store the contained inner/nested classes in ...
5
votes
1answer
75 views

How can I expose C functions to a custom virtual machine?

I'm working on a virtual machine which I would like to be able to interface with C. Going the other way and exposing virtual machine functions to C code is fairly easy, what I can't wrap my head ...
5
votes
1answer
157 views

What are the specific differences between an “emulator” and a “virtual machine”?

I see that they are different things but I really can't tell why. Some people say: "emulators are for games; virtual machines are for operating systems" I don't agree with this answers because there ...
5
votes
2answers
214 views

When does an Android applications VM exit?

I was wondering when does an applications VM exit for an Android application? The reason I am asking I is that I was thinking about when any stray threads or un-nullified singleton references would ...
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
3answers
331 views

Multiple users on Amazon EC2

Is it possible to have multiple users to manage an Amazon EC2 environment? I want to give access to several additional people to create machines on my existing billing account.
5
votes
2answers
224 views

What are alternatives to the Java VM?

As Oracle sues Google over the Dalvik VM it becomes clear, that you cannot implement a Java VM without license from Oracle (EDIT: Matthew Flaschen points out, that the claims of Oracle may not be ...
5
votes
7answers
391 views

How does one use dynamic recompilation?

It came to my attention some emulators and virtual machines use dynamic recompilation. How do they do that? In C i know how to call a function in ram using typecasting (although i never tried) but how ...

1 2 3 4 5 10