Given the following code:
const int constA = 10;
const int constB = 10;
function GetX(int input) {
int x = constA * constB * input;
...
return x;
}
Will the .Net compiler 'replace' the expression and put 1000 so the calculation won't be repeated over and over?
In what siutation will the code run fastest:
int x = constA * constB * input;int x = 10 * 10 * input;int x = 100 * input;
I guess option 3 will be the faster then 2 but sometimes not the most readable option. Does the compiler recognize patterns like this and optimize it accordingly?

input, which will be the bottleneck. So why bother? – BoltClock♦ Feb 7 at 13:45GetXmethod, you could improve it's performance by getting rid of thexvariable and usereturn constA * constB * input;instead ofreturn x;. – Alex Filipovici Feb 7 at 14:06...does (including, any accesses tox), and that we don't know what the JIT would necessarily do if those were the only parts of theGetXfunction. Asserting that eliminating a local variable would (without any qualification) improve performance is unwarranted. – Damien_The_Unbeliever Feb 7 at 20:30