Tagged Questions
5
votes
1answer
129 views
static final field, static field and performances
Even thought it's not its main purpose, I've always thought that the final keyword (in some situations and VM implementations) could help the JIT.
It might be an urban legend but I've never imagined ...
3
votes
1answer
234 views
Performance improvement strategies for VM / interpreter?
I have written a simple VM in C, using a simple switch of instructions, without any instruction decoding whatsoever, but performance is terrible.
For simple aritmetic operations the VM is about 4000 ...
0
votes
1answer
54 views
Elimination of run time variation over repeated executions of the same program
I am trying to design an Online Programming Contest Judge, and one of the things that I need to ensure is that when the same code is compiled (assuming the requirement),
given the same input, it ...
7
votes
1answer
703 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 ...
-3
votes
1answer
67 views
Development on a super fast machine… Pros/Cons, Testing for slower systems [closed]
I am sick of working on a computer that does not always bring me Intellisense on time, that takes a long time to switch between open windows (like to check e-mail, or sneak into facebook for a second, ...
2
votes
3answers
70 views
Overwriting vs. Lookup
I was reading through the SparseArray class in android, and came across the following method:
public void removeAt(int index) {
if (mValues[index] != DELETED) {
mValues[index] = DELETED;
...
1
vote
1answer
94 views
Method for determining relative measure of (virtual) machine performance
I am looking to develop a method for determining a relative measure of the instantaneous performance of a machine. I realise this is not terribly scientific, but I work with a lot of virtual machines ...
5
votes
6answers
554 views
Implementing registers in a C virtual machine
I've written a virtual machine in C as a hobby project. This virtual machine executes code that's very similar to Intel syntax x86 assembly. The problem is that the registers this virtual machine uses ...
4
votes
2answers
281 views
Function calls in virtual machine killing performance
I wrote a virtual machine in C, which has a call table populated by pointers to functions that provide the functionality of the VM's opcodes. When the virtual machine is run, it first interprets a ...
6
votes
2answers
813 views
How do I figure out whether my process is CPU bound, I/O bound, Memory bound or
I'm trying to speed up the time taken to compile my application and one thing I'm investigating is to check what resources, if any, I can add to the build machine to speed things up. To this end, how ...
1
vote
2answers
297 views
Sandbox Virtual Machine for an Application (C++ vs. C#)
I'd like to write a sandbox virtual machine for executing a compiled program. How do you think: which of these two languages would be better to use if we consider performance? Or maybe you suggest ...
4
votes
1answer
411 views
How do polymorphic inline caches work with mutable types?
A polymorphic inline cache works by caching the actual method by the type of the object, in order to avoid the expensive lookup procedures (usually a hashtable lookup). How does one handle the type ...
7
votes
3answers
1k 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 ...
2
votes
15answers
9k views
Running many virtual machines on a single host
I have a need to run a relatively large number of virtual machines on a relatively small number of physical hosts. Each virtual machine isn't doing to much - each only needs to run essentially one ...