The solution is to debug your code. The last time I helped someone find a bug, it was a string overflow (writing too many characters into a fixed size string). Bugs like that will cause all kinds of interesting problems. I'm not saying this is your problem, just giving an example of how one type of bug can lead to issues elsewhere.
J.F. wrote:The solution is to debug your code. The last time I helped someone find a bug, it was a string overflow (writing too many characters into a fixed size string). Bugs like that will cause all kinds of interesting problems. I'm not saying this is your problem, just giving an example of how one type of bug can lead to issues elsewhere.
Oh, someone! I'll do my best in debugging.
Is it recommended that I invalidate Instruction cache every loop?