Relative Content

Tag Archive for jit

What backs up the claim that C++ can be faster than a JVM or CLR with JIT? [closed]

Want to improve this post? Provide detailed answers to this question, including citations and an explanation of why your answer is correct. Answers without enough detail may be edited or deleted. As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, […]

Expensive AOT Optimizations

I’ve seen it stated several times that AOT can run some more expensive optimizations that take too long to be used by a JIT. But I’ve never seen it stated what exactly these optimizations are. So I’m wondering, what are these optimizations?

How can I find the start of a native method?

For a hobby project, I’m writing an x86 GC and JIT. For the GC, I need to maintain information about the stack layout (it’s a precise GC), for which I need to be able to find out which method the IP currently is in (and the complete call chain of course). How can you do this?

How can I find the start of a native method?

For a hobby project, I’m writing an x86 GC and JIT. For the GC, I need to maintain information about the stack layout (it’s a precise GC), for which I need to be able to find out which method the IP currently is in (and the complete call chain of course). How can you do this?