Tagged Questions

35
votes
4answers
5k views

Implementing C# for the JVM

Is anyone attempting to implement C# for the JVM? As a Java developer, I've been eyeing C# with envy, but am unwilling to give up the portability and maturity of the JVM, not to mention the diverse ...
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 ...
13
votes
6answers
1k views

jvm design decision

Why does the jvm require around 10 MB of memory for a simple hello world but the clr doesn't. What is the trade-off here, i.e. what does the jvm gain by doing this? Let me clarify a bit because I'm ...
12
votes
8answers
2k views

What's the difference between the inner workings of Java's JVM and .NET's CLR?

What's the difference between the inner workings of Java's JVM and .NET's CLR? Perhaps a starting point would be, are they basically the same thing in their respective environments (Java > JVM > ...
10
votes
4answers
452 views

Is GPU and SIMD likely to be implemented in .NET / Java VMs?

For some time now, mainstream compute hardware has sported SIMD instructions (MMX, SSE, 3D-Now, etc) and more recently we're seeing AMD bringing 480-stream GPUs into the same die as the CPU. ...
9
votes
3answers
164 views

How is Object.GetHashCode() implemented in CLR & JVM?

I've been musing about this for some time: how exactly is Object.GetHashCode implemented in the CLR or Java? The contract for this method is that if it is called on the same object instance, it should ...
7
votes
3answers
92 views

Java/C# method representation in memory

While thinking a little bit about programming in Java/C# I wondered about how methods which belong to objects are represented in memory and how this fact does concern multi threading. Is a method ...
6
votes
8answers
2k views

Erlang on a JVM/CLR

I've just started reading Joe Armstrongs book on Erlang and listened to his excellent talk on Software Engineering Radio. Its an interesting language/system and one whose time seems to have come ...
5
votes
2answers
190 views

Set references to null in an object to be GC'ed?

// in a garbage collected VM, destroy someObject: someObject.a = null; someObject.b = null; someObject = null; I have heard that in a good VM like Java's or C#'s, you shouldn't do this. Setting ...
5
votes
1answer
115 views

Why does the CLR overflow an Int32.MaxValue -> Single -> Int32, where the JVM does not?

I ran into an unexpected result in round-tripping Int32.MaxValue into a System.Single: Int32 i = Int32.MaxValue; Single s = i; Int32 c = (Int32)s; Debug.WriteLine(i); // 2147483647 ...
4
votes
1answer
208 views

Javascript engine with good interoperability with JVM and CLR

Due to the huge resources behind it, Javascript seems to rapidly becoming the scripting language of choice for applications, particularly those with a web front end. I have an application that ...
4
votes
3answers
527 views

Native code execution by JVM/CLR

How does JVM/CLR execute JIT compiled native code? Is it by some code injection or by copying code to executable memory? What are the system calls that allows dynamic code execution?
3
votes
3answers
150 views

What are the roots?

What are the roots in garbage collection? I have read the definition of root as "any reference that you program can access to" and definition of live is that an object that is being used, which can ...
3
votes
1answer
129 views

Different approaches to dynamic typing in the CLR and JVM

.NET 4.0 introduces new support for dispatching invocations on dynamically typed objects. As far as I can make out, this involves: no change to the CLR new types in the BCL new compilers that ...
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 ...
2
votes
2answers
322 views

Is there a Java Descriptor like thing in .Net?

I'm working on a static analysis tool for .NET assembly. In Java, there is a Descriptor which can be used to represent method or field in a string with specified grammar. for field: double ...
1
vote
2answers
232 views

C++ to bytecode compiler for CLR?

I'd like to be able to compile a C/C++ library so that it runs within a managed runtime in the CLR. There are several tools for doing this with the JVM (NestedVM, LLJVM, etc) but I can't seem to find ...
1
vote
3answers
423 views

Code generation for Java JVM / .NET CLR

I am doing a compilers discipline at college and we must generate code for our invented language to any platform we want to. I think the simplest case is generating code for the Java JVM or .NET CLR. ...
0
votes
1answer
43 views

can you run multiple clr instances on a windows server?

I hear that on the other side, java folks run multiple jvm instances on thier servers and load balance not just the servers but also intances. How is this possible in asp.net? pools?
0
votes
2answers
203 views

What exactly is meant by Platform? How many versions of CLR & JVM are available?

Does platform mean the OS or the CLR,JVM & like that?? I heard that CLR & JVM differs from OS to OS.. So what different versions of JVM & also of CLR is availabe right now in market? (I ...