Tagged Questions

Just-In-Time compilation (JIT) is a technique used to improve the performance of interpreted code by translating it to a machine code.

learn more… | top users | synonyms

198
votes
4answers
3k views

.NET JIT potential error?

The following code gives different output when running the release inside Visual Studio, and running the release outside Visual Studio. I'm using Visual Studio 2008 and targeting .NET 3.5. I've also ...
56
votes
6answers
843 views

Why are operators so much slower than method calls? (structs are slower only on older JITs)

Intro: I write high-performance code in C#. Yes, I know C++ would give me better optimization, but I still choose to use C#. I do not wish to debate that choice. Rather, I'd like to hear from ...
45
votes
5answers
2k views

Why doesn't the JVM cache JIT compiled code?

The canonical JVM implementation from Sun applies some pretty sophisticated optimization to bytecode to obtain near-native execution speeds after the code has been run a few times. The question is, ...
37
votes
4answers
705 views

Do redundant casts get optimized?

I am updating some old code, and have found several instances where the same object is being cast repeatedly each time one of its properties or methods needs to be called. Example: if (recDate != ...
33
votes
5answers
14k views

What does a just-in-time (JIT) compiler do?

What does a JIT compiler specifically do as opposed to a non-JIT compiler? Can someone give a succinct and easy to understand description?
32
votes
7answers
938 views

Does the .NET CLR Really Optimize for the Current Processor

When I read about the performance of JITted languages like C# or Java, authors usually say that they should/could theoretically outperform many native-compiled applications. The theory being that ...
26
votes
1answer
273 views

Potential .NET x86 JIT issue?

The following code behaves differently when built in Release mode (or Debug with optimizations on) and run without the Visual Studio debugger attached. It also only seems to replicate if the x86 ...
22
votes
1answer
496 views

Possible bug in C# JIT optimizer?

Working on a SQLHelper class to automate stored procedures calls in a similar way to what is done in the XmlRpc.Net library, I have hit a very strange problem when running a method generated manually ...
22
votes
5answers
603 views

Can only perl6 parse Perl6?

There's that (relatively) well known Perl axiom, "Only perl can parse Perl." I'm wondering, will that remain true for Perl6? Edit: Expanding the discussion... I thought of this question given the ...
19
votes
3answers
522 views

Does the .NET garbage collector perform predictive analysis of code?

OK, I realize that question might seem weird, but I just noticed something that really puzzled me... Have a look at this code : static void TestGC() { object o1 = new Object(); object ...
18
votes
2answers
543 views

When is a method eligible to be inlined by the CLR?

I've observed a lot of "stack-introspective" code in applications, which often implicitly rely on their containing methods not being inlined for their correctness. Such methods commonly involve calls ...
17
votes
6answers
1k views

Is the .NET JIT-compiled code cached? Where?

A .NET program is first compiled into MSIL code. When it is executed, the JIT compiler will compile it into native machine code. I am wondering: Where is these JIT-compiled machine code stored? Is ...
16
votes
7answers
1k views

What exactly is Parrot?

I understand that Parrot is a virtual machine, but I feel like I'm not completely grasping the idea behind it. As I understand, it's a virtual machine that's being made to handle multiple languages. ...
15
votes
1answer
1k views

Why is LuaJIT so good?

This comparison of programming languages shows that LuaJIT has an over tenfold improvement over the normal Lua implementation. Why is the change so big? Is there something specific about Lua that ...
14
votes
4answers
774 views

.NET runtime vs. Java Hotspot: Is .NET one generation behind?

According to the information I could gather on .NET and Java execution environment, the current state of affairs is follows: Modern Java VM are capable of performing continuous recompilation, which ...
13
votes
2answers
247 views

Disassemble Java JIT compiled native bytecode

Is there any way to do an assembly dump of the native code generated by the Java just-in-time compiler? And a related question: Is there any way to use the JIT compiler without running the JVM to ...
13
votes
6answers
795 views

What does a JIT compiler do?

I was just watching the google IO videos and they talked about the JIT compiler they included in the android and showed a demo about performance improvements thanks to JIT compiler. I wondered what ...
13
votes
5answers
452 views

What is microbenchmarking?

I've heard this term used, but I'm not entirely sure what it means, so: What DOES it mean and what DOESN'T it mean? What are some examples of what IS and ISN'T microbenchmarking? What are the ...
13
votes
2answers
272 views

What optimizations do modern JavaScript engines perform?

By now, most mainstream browsers have started integrating optimizing JIT compilers to their JavaScript interpreters/virtual machines. That's good for everyone. Now, I'd be hard-pressed to know exactly ...
13
votes
8answers
2k views

JIT compiler vs offline compilers

Are there scenarios where JIT compiler is faster than other compilers like C++? Do you think in the future JIT compiler will just see minor optimizations, features but follow a similar performance, ...
12
votes
6answers
493 views

Why are JITted Python implementations still slow?

I understand why interpretation overhead is expensive, but why are JITted Python implementations (Psyco and PyPy) still so much slower than other JITted languages like C# and Java? Edit: I also ...
12
votes
2answers
1k views

java PrintCompilation output: what's the meaning of “made not entrant” and “made zombie”

When running a Java 1.6 (1.6.0_03-b05) app I've added the -XX:+PrintCompilation flag. On the output for some methods, in particular some of those that I know are getting called a lot, I see the text ...
12
votes
3answers
4k views

Is LuaJIT really faster than every other JIT-ed dynamic languages?

According to the computer language benchmark game, the LuaJIT implementation seems to beat every other JIT-ed dynamic language (V8, Tracemonkey, PLT Scheme, Erlang HIPE) by an order of magnitude. I ...
12
votes
4answers
4k views

Does the .Net CLR JIT compile every method, every time?

I know that Java's HotSpot JIT will sometimes skip JIT compiling a method if it expects the overhead of compilation to be lower than the overhead of running the method in interpreted mode. Does the ...
12
votes
3answers
2k views

What kind of optimizations do both the C# compiler and the JIT do?

I'm continuing my work on my C# compiler for my Compilers Class. At the moment I'm nearly finished with the chapters on Compiler Optimizations in my textbook. For the most part, my textbook didn't ...
10
votes
4answers
1k views

How to write self-modifying code in x86 assembly

I'm looking at writing a JIT compiler for a hobby virtual machine I've been working on recently. I know a bit of assembly, (I'm mainly a C programmer. I can read most assembly with reference for ...
10
votes
5answers
775 views

Is there a runtime benefit to using const local variables?

Outside of the ensuring that they cannot be changed (to the tune of a compiler error), does the JIT make any optimisations for const locals? Eg. public static int Main(string[] args) { const int ...
9
votes
3answers
209 views

Why is it slower to compare a nullable value type to null on a generic method with no constraints?

I came across a very funny situation where comparing a nullable type to null inside a generic method is 234x slower than comparing an value type or a reference type. The code is as follows: static ...
9
votes
2answers
270 views

How do generics get compiled by the JIT compiler?

I know that generics are compiled by JIT (like everything else), in contrast to templates that are generated when you compile the code. The thing is that new generic types can be created in runtime by ...
9
votes
2answers
404 views

Can someone provide an easy explanation of how 'Full Fences' are implemented in .Net using Threading.MemoryBarrier?

I'm clear on the usage of MemoryBarrier, but not on what happens behind the scenes in the runtime. Can anyone give a good explanation of what goes on?
9
votes
3answers
252 views

Is there a way to see the native code produced by theJITter for given C# / CIL?

In a comment on this answer (which suggests using bit-shift operators over integer multiplication / division, for performance), I queried whether this would actually be faster. In the back of my mind ...
9
votes
3answers
3k views

Call the LLVM Jit from c program

I am new with LLVM and i just played around with it for a couple of days. I generated a bc file with the online compiler on llvm.org and i would like to know if it was possible to load this bc file ...
9
votes
4answers
6k views

How would you improve Dalvik? Android's Virtual Machine

I am currently writing a paper on the Android platform. After some research, it's clear that Dalvik has room for improvement. I was wondering, what do you think would be the best use of a developer's ...
8
votes
2answers
212 views

Hot recompilation for C++

I was recently amazed to see Java code being automatically recompiled and injected into a running program. Since modern C++ compilers (eg. LLVM-based) start investigating JIT compilation, I am ...
8
votes
3answers
403 views

Making a JIT compiler

I've written a Brainfuck implementation (C++) that works like this: Read input brainfuck file Do trivial optimizations Convert brainfuck to machine code for the VM Execute this machine code in the ...
8
votes
3answers
427 views

C# JIT compiling and .NET

I've become a bit confused about the details of how the JIT compiler works. I know that C# compiles down to IL. The first time it is run it is JIT'd. Does this involve it getting translated into ...
8
votes
6answers
454 views

How to generate and run native code dynamically?

I'd like to write a very small proof-of-concept JIT compiler for a toy language processor I've written (purely academic), but I'm having some trouble in the middle-altitudes of design. Conceptually, ...
8
votes
1answer
223 views

JIT of R code using Ra

I just discovered Ra from Ubuntu repositories. Has anyone used it in actual projects? Have you encountered any problems and are there any trade offs with using Ra instead of R or JIT in general?
8
votes
4answers
279 views

Iteration speed of int vs long

I have the following two programs: long startTime = System.currentTimeMillis(); for (int i = 0; i < N; i++); long endTime = System.currentTimeMillis(); System.out.println("Elapsed time: " + ...
8
votes
2answers
867 views

Building v8 without JIT

I would like to run some tests on v8 with and without JIT to compare performances. I know JIT will improve my average speed performance, but it would be nice for me to have some actual more detailed ...
8
votes
7answers
3k views

Runtime optimization of static languages: JIT for C++?

Is anyone using JIT tricks to improve the runtime performance of statically compiled languages such as C++? It seems like hotspot analysis and branch prediction based on observations made during ...
8
votes
8answers
1k views

My 32 bit headache is now a 64bit migraine?!? (or 64bit .NET CLR Runtime issues)

What unusual, unexpected consequences have occurred in terms of performance, memory, etc when switching from running your .NET applications under the 64 bit JIT vs. the 32 bit JIT? I'm interested in ...
8
votes
5answers
2k views

64bit .NET Performance tuning

I know that .NET is JIT compiled to the architecture you are running on just before the app runs, but does the JIT compiler optimize for 64bit architecture at all? Is there anything that needs to be ...
7
votes
3answers
103 views

Are WeakHashMap cleared during a full GC?

I encountered some troubles with WeakHashMap. Consider this sample code: List<byte[]> list = new ArrayList<byte[]>(); Map<String, Calendar> map = new WeakHashMap<String, ...
7
votes
2answers
90 views

Can a JIT take a benefit from Generics?

It is well known, that generic types don't survive the compiling process. They are replaced by class casts. But nevertheless, the type information is present in the class file and can be seen using ...
7
votes
1answer
585 views

Guidelines to write fast code for PyPy's JIT

PyPy's JIT can make Python code execute much faster than CPython. Are there a set of guidelines for writing code that can be optimised better by the JIT compiler? For example, Cython can compile some ...
7
votes
2answers
670 views

Writing a JIT compiler in assembly

I've written a virtual machine in C which has decent performance for a non-JIT VM, but I want to learn something new, and improve performance. My current implementation simply uses a switch to ...
7
votes
1answer
119 views

Is Richter mistaken when describing the internals of a non-virtual method call?

I would write this question directly to Jeffrey Richter, but last time he didn't answer me :) so I will try to get an answer with your help here, guys :) In the book "CLR via C#", 3rd edition, on ...
7
votes
1answer
220 views

Variable is not incrementing in C# Release x64

Could someone explain to me why this piece of code is doing well when I execute it on a x86 platform and why it fail on x64 ? Results : x86 Debug : 12345678910 x64 Debug : 12345678910 x86 Release : ...
7
votes
3answers
205 views

JIT compilers for math

I am looking for a JIT compiler or a small compiler library that can be embedded in my program. I indent to use it to compile dynamically generated code that perform complex number arithmetics. The ...

1 2 3 4 5 7