Tagged Questions
1
vote
1answer
60 views
.NET CLR and CPU architecture dependency [closed]
Why there are seperate versions of Windows(Windows 8 and RT) for different CPU architectures(x86 and ARM) when the code is executed on a virtual machine that could translate the bytecode into ...
0
votes
2answers
28 views
Role of the JVM
Would the JVM (and probably also the CLI) be considered a virtual machine (the equivalent of the x86 in a "normal" program stack) or a virtual OS (the equivalent of Windows)?
0
votes
0answers
15 views
log4j implementation in chaivm
Please explain me how to implement log4j in ChaiVM. In case of JVM, is there any classes which primarily supports log4j implementation. I heard from my colleague that the log4j implementations are not ...
1
vote
1answer
146 views
How to devise instruction set of a stack based machine?
Stack based virtual machines like CLR and JVM has different set of instructions. Is there any theory behind devising the instruction set while creating a virtual machine? e.g. there are JVM ...
0
votes
0answers
58 views
What is Microsoft Virtual Machine? [closed]
I know there was once Microsoft Java Virtual Machine which they made, but i cant find any sources and help on what is 'Mircorsoft Virtual Machine'
http://support.microsoft.com/kb/299672
Is it the ...
13
votes
3answers
425 views
Matching a virtual machine design with its primary programming language
As background for a side project, I've been reading about different virtual machine designs, with the JVM of course getting the most press. I've also looked at BEAM (Erlang), GHC's RTS (kind of but ...
6
votes
4answers
197 views
abstract machine concept of jvm
I am trying to understand the real advantage of implementing java as an abstract or virtual machine or in other words the advantage of compiling a language into a language for an abstract machine. As ...
2
votes
3answers
467 views
Java method table
I learned a lot about how C++ manages its virtual tables in the presence of inheritance (multiple, virtual etc.) and how it lays the objects in memory.
Now, Java only has to worry about single line ...
0
votes
1answer
71 views
java virtual machine: type information
I recently read about JVM specification according to Artima Inside the JVM 2-nd Ed. One of the chapters mentioned type storing in the Java runtime and it said that:
An instance of class ...
19
votes
5answers
1k views
What prevents an efficient Haskell virtual machine (like JVM)?
I have been wondering, what prevents the development of an efficient virtual machine like JVM or PyPy for Haskell (except maybe development effort)? Is it the language structure? I think languages, ...
5
votes
2answers
522 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 ...
2
votes
2answers
1k 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
122 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 ...
2
votes
1answer
75 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 ...
0
votes
1answer
85 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 ...
3
votes
3answers
174 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 ...
1
vote
7answers
6k 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 ...
2
votes
1answer
317 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
99 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 ...
13
votes
8answers
911 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
...
6
votes
4answers
229 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 ...
8
votes
4answers
321 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 ...
3
votes
5answers
638 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 ...
26
votes
2answers
6k 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 ...
20
votes
4answers
3k 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 ...
7
votes
6answers
516 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
...
