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

I've heard that phrase a lot. What does it mean?

An example would help.

share|improve this question
A context in which you read this would help us understand your question. Could you provide a quote, a link or some hint? – S.Lott Feb 6 '10 at 12:11
I've just heard it being bandied about in office. I didn't quite register the context. I guess I was just a bit irked by that much bandying about going on. – Frederick The Fool Feb 6 '10 at 12:28
1  
Could be the folks in the office are just spewing random buzzwords. Or not. You could ask them what they mean. – S.Lott Feb 7 '10 at 3:43

4 Answers

up vote 13 down vote accepted

From Wiktionary:

  1. (computing) In assembly languages, a loop which contains few instructions and iterates many times.
  2. (computing) Such a loop which heavily uses I/O or processing resources, failing to adequately share them with other programs running in the operating system.

For case 1 it is probably like

for (unsigned int i = 0; i < 0xffffffff; ++ i) {}
share|improve this answer

I think the phrase is generally used to designate a loop which iterates many times, and which can have a serious effect on the program's performance - that is, it can use a lot of CPU cycles. Usually you would hear this phrase in a discussion of optimization.

For examples, I think of gaming, where a loop might need to process every pixel on the screen, or scientific app, where a loop is processing entries in giant arrays of data points.

share|improve this answer
1  
A portion of the code that gets executed often may be a good candidate for optimisation, but it is not a tight loop in general. Even if it gets called often - if the calling happens through several layers of functions and objects, it's not "tight". The loop condition and the loop instructions need to be really tight to each other, code in the same file and same few lines for a "tight loop". – foo Feb 19 '11 at 2:08
I've heard the sort of loop described in the answer called a "hot spot" in a program -- a place where targeted optimization will pay off. For this very reason, Sun named their adaptive profile-driven just-in-time compiling technology "HotSpot". – Jeffrey Hantin Feb 28 '12 at 10:37

There's a good example of a tight loop (~ infinite loop) in the video Jon Skeet and Tony the Pony.

The example is:

while(text.IndexOf("  ") != -1) text = text.Replace("  ", " ");

which produces a tight loop because IndexOf ignores a Unicode zero-width character (thus finds two adjacent spaces) but Replace does not ignore them (thus not replacing any adjacent spaces).

There are already good definitions in the other answers, so I don't mention them again.

share|improve this answer

According to Webster's dictionary, "A loop of code that executes without releasing any resources to other programs or the operating system."

http://www.websters-online-dictionary.org/ti/tight+loop.html

share|improve this answer
I've seen that, but could you illustrate with an example? – Frederick The Fool Feb 6 '10 at 11:54
3  
Actually, I disagree strongly with this definition. as most loops don't release such resources, it implies that most loops are tight loops. – anon Feb 6 '10 at 11:55

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.