... working on one piece of data but with two functions can sometimes make it so that code to act on that data doesn't fit in the processor's low level caches.
for(i=0, i<10, i++ ) {
myObject object = array[i];
myObject.functionreallybig1(); // pushes functionreallybig2 out of cache
myObject.functionreallybig2(); // pushes fucntion1 out of cache
}
vs
for(i=0, i<10, i++ ) {
myObject object = array[i];
myObject.functionreallybig1(); // this
}
for(i=0, i<10, i++ ) {
myObject object = array[i];
myObject.functionreallybig2();
}
But it was probably a mistake (usually this type of trick is commented)
This is called cache thrashing, btw.