Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I saw this question asking about whether globals are bad.

As I thought about the ramifications of it, the only argument I could come up with that they're necessary in some cases might be for performance reasons.

But, I'm not really sure about that. So my question is, would using a global be faster than using a get/set method call?

share|improve this question

5 Answers

up vote 3 down vote accepted

A more appropriate comparison would be between accessing a global (a static) and a local.

Indeed a global is faster because accessing a local requires the variable offset to be added to the value of the stack pointer.

However, you will never, ever need to worry about this. Try concentrating on things that matter, such as making your code be readable, writable, and working.

share|improve this answer
Never say never... – bmatthews68 Jan 27 '09 at 22:36
It really, really, matters in embedded and operating system code where if the code doesn't perform, it doesn't work. And accessing a global is usually slower than accessing a local because you need to go through the GOT. Of course, that depends on the ABI and architecture. – benno Jan 28 '09 at 1:46
Locals will usually be faster because they can be allocated in registers (sometimes) and will often have better locality of reference. – Greg Rogers Jan 28 '09 at 14:29
Even if a local is not in a register, whether or not there's a penalty for accessing memory in a stack frame vs an absolute address is quite architecture dependent (especially since the stack frame pointer is generally always already in a register). – Michael Burr Jan 28 '09 at 17:36
Good to know guys! I have always assumed that the actual ESP+offset addition is unavoidable. Also I must read about the GOT – Iraimbilanja Jan 28 '09 at 18:18
show 1 more comment

A good modern compiler should inline the get/set method calls such that there's probably no real difference.

In almost any case it's much more important to worry about whether statics/globals are going to cause you a headache than the performance implications, which are going to be nearly undetectable anyway.

share|improve this answer
1  
Compilers inlining getters and setters may be true for C/C++, but readers shouldn't generalize this to other languages as you won't always see this in Java. – Fostah Jan 27 '09 at 20:54
1  
i guess in Java it doesn't matter much anyway. – Johannes Schaub - litb Jan 27 '09 at 20:56
litb: Are you mocking Java's performance or do you refer to the non-obvious fact that Java doesnt' allow globals? ;-) – Konrad Rudolph Jan 27 '09 at 21:13
You could still have public class member variables and avoid setters and getters. – Fostah Jan 27 '09 at 22:26
All the above comments (unlike the answer) is nonsense, sorry to say. You won't see inlining in bytecode, it'll be done by the JIT, and unlike C++ even virtual functions can be inlined. And depending on the benchmark, Java can beat (or be on par with) C, and garbage collection beat malloc/free. Actually, it's easier to inline in Java: in C you must move the function to the header (and when you strive for ABI compatibility, you can't), in Java you have a whole-program profile-guided optimizer for free. How often can you use that in C? And how often the profiling is tied to your input? Never! – Blaisorblade May 5 '10 at 16:16

You could gain more performance yet by writing in assembler. And also lose more time in debugging your code.

It's exactly the same type of trade.

share|improve this answer
Good point, but irrelevant here. Optimizers for high level languages are there to remove the need for such stupid tradeoff. They'll probably never allow you to avoid writing a smart algorithm instead of a poor one, but the function call overhead for small functions is history nowadays (if you declare the function in the header). – Blaisorblade May 5 '10 at 16:14
That was essentially my point. Write good code, that's what the compiler writers care about when they write optimizers anyway. – Darron May 12 '10 at 21:16

It might be slightly faster, but not a huge increase in speed. Globals over having getter and setter functions for everything does keep application size down though. Whether this type of size savings is beneficial to your application is relevant to the platform you are targeting. For instance, when developing embedded applications, platforms with limited memory, it can be a viable solution.

share|improve this answer

It depends on the CPU and compiler. On at least one popular PPC chipset, loading a global variable requires extra instructions because it cannot be encoded in a 16-bit relative offset.

Plus, it can take a giant crap on cache locality and/or destroy any optimizations that assume no aliasing. Assuming that globals can increase performance is somewhat naive.

share|improve this answer
On other CPUs like MIPS, there is a register specifically for global variables, so a global access is as fast as a stack access (assuming all your globals fit in 64K. The compiler will usually put small globals there automatically. – Mark James Jan 28 '09 at 1:16
And on ARM you generally need to read the address out of the literal pool, which is not only slow but helps pollute your caches. – benno Jan 28 '09 at 1:47
@Mark James, I think that also brings up another issue: polluting the global variable space can make that sort of optimization even harder as well. – MSN Jan 28 '09 at 17:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.