It surprises me that the compiler would produce such a bad output for the 2nd example. They are effectively the same, and in fact it should have been more obvious for the compiler than the 1st (which could have made the mistake to put i in bx and increase it separately and then add it to si,di, if it didn't cleverly deduce both brackets …
It surprises me that the compiler would produce such a bad output for the 2nd example. They are effectively the same, and in fact it should have been more obvious for the compiler than the 1st (which could have made the mistake to put i in bx and increase it separately and then add it to si,di, if it didn't cleverly deduce both brackets are pointers that can be increased individually). I am surprised it failed in the 2nd code but did cleverly the 1st.
That's why I am not bothered as much with gimmicky optimizations like pre-increment instead of post-increment, do while instead of for loop, bracket index or pointers increment, and others as many times the results are unpredictable and also depend per compiler or CPU architecture. Or at least I test variations before making conclusions sometimes when I need to get that extra for a specific compiler-architecture. Many have told me "you should use this instead of that because it's faster for the compiler", but later when I check things like that, the results are unpredictable, in one tight loop I am writing it's better, in another it's worse, or the same. Compilers really are like chat-gpt, people put too much faith in them to automatically optimize things, but you also have to try various things to get that little bit extra, with varying results.
That is my opinion as well (assuming I understand you correctly). In my experience you have to check the compiled code if you care. You can never assume that there is a "correct way to write this in C" otherwise, because it can change between compilers, and even between two versions of the same compiler.
I would like to know how Microsoft's compiler handled these, and also how Borland's does if we switch to 80386 codegen, etc. So if I have time this weekend, I'm going to try to get a better emulation setup together so I can run more tests and get more ASM dumps!
It surprises me that the compiler would produce such a bad output for the 2nd example. They are effectively the same, and in fact it should have been more obvious for the compiler than the 1st (which could have made the mistake to put i in bx and increase it separately and then add it to si,di, if it didn't cleverly deduce both brackets are pointers that can be increased individually). I am surprised it failed in the 2nd code but did cleverly the 1st.
That's why I am not bothered as much with gimmicky optimizations like pre-increment instead of post-increment, do while instead of for loop, bracket index or pointers increment, and others as many times the results are unpredictable and also depend per compiler or CPU architecture. Or at least I test variations before making conclusions sometimes when I need to get that extra for a specific compiler-architecture. Many have told me "you should use this instead of that because it's faster for the compiler", but later when I check things like that, the results are unpredictable, in one tight loop I am writing it's better, in another it's worse, or the same. Compilers really are like chat-gpt, people put too much faith in them to automatically optimize things, but you also have to try various things to get that little bit extra, with varying results.
That is my opinion as well (assuming I understand you correctly). In my experience you have to check the compiled code if you care. You can never assume that there is a "correct way to write this in C" otherwise, because it can change between compilers, and even between two versions of the same compiler.
I would like to know how Microsoft's compiler handled these, and also how Borland's does if we switch to 80386 codegen, etc. So if I have time this weekend, I'm going to try to get a better emulation setup together so I can run more tests and get more ASM dumps!
- Casey