Tagged Questions

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
412 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
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 ...
12
votes
8answers
614 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 ...
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 ...
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
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 ...
3
votes
2answers
65 views

How does the Dalvik VM save and restore its registers between method calls?

Semantically, the Dalvik VM has a fresh set of registers for each method, and does not have instructions to access the call stack. But in terms of its implementation, the registers should be saved ...
3
votes
5answers
364 views

Memory usage in the Java Virtual Machine and optimisation

I have been developing a small Java utility that uses two frameworks: Encog and Jetty to provide neural network functionality for a website. The code is 'finished' in that it does everything it needs ...
2
votes
1answer
59 views

Can value types be implemented by inlining?

When I first saw the value types in C#, the first thing I thought was "wow, what a great optimization", the second thing is, "do we really need a new language construct? can't we do that with ...
2
votes
3answers
119 views

How does the JVM and CLR know when to kick in

Just wondering if someone would be kind enough to explain to me how the JVM, CLR and other "Virtual Machines" know when to "kick in"? By this I mean, you double click on your executable and your ...
0
votes
1answer
62 views

Java Where do Local variables,Object references,instance variables

I am currently learning the memory concepts of java, the stack and the heap, I know that local variables and method calls lived in a place called stack. and objects lived inside a heap. but what if ...
0
votes
1answer
43 views

Is it theoretically possible for V8 to catch up with JVM's speed [closed]

Is it theoretically possible for the V8 to catch up with the JVM in terms of speed and performance? I am asking this question because I am curious to find out about the difference in the approached ...
0
votes
0answers
30 views

Are there features or functionality in JavaFX which will benefit by the language/VM improvements of later Java versions?

I wonder whether JavaFX will keep using the "main" JVM shipped by JavaSE and therefore receiving all improvements to the VM or if they will use their own spin-off of the Hotspot VM specially optimized ...
0
votes
4answers
844 views

Every Java program crashes with: Failed to create the java virtual machine

From yesterday I receive the message: "Failed to create the java virtual machine" in all Java applications in my Windows machine. Maybe I had a virus or something similar. The only advice I found on ...
0
votes
1answer
124 views

Opt-in tail call support in the JVM on a per-language base?

While it doesn't look like that tail call optimization will ever be added as a common optimization technique, especially after Sun was bought, wouldn't it be technically possible to let languages ...
0
votes
1answer
66 views

Shuffling variables between a vector and the variable's original alignement

in the following paragraph: "The instruction set requires that loads and stores from local memory are 128bit aligned. The registers are 128 bits wide, with instructions treating these 128 bits as a ...