I am migrating some parts of old C++ code, originally compiled with CodeGear C++Builder® 2009 Version 12.0.3170.16989
The following code - minimal version of a bigger piece - outputs -34
with any modern compiler. Although, in the original platform it outputs 84
:
char Key[4];
Key[0] = 0x1F;
Key[1] = 0x01;
Key[2] = 0x8B;
Key[3] = 0x55;
for(int i = 0; i < 2; i++) {
Key[i] = Key[2*i] ^ Key[2*i + 1];
}
std::cout << (int) Key[1] << std::endl;
The following code outputs
-34
with both old and new compilers:
for(int i = 0; i < 2; i++) {
char a = Key[2*i];
char b = Key[2*i + 1];
char c = a ^ b;
Key[i] = c;
}
Also, manually unrolling the loop seems to work with both compilers:
Key[0] = Key[0] ^ Key[1];
Key[1] = Key[2] ^ Key[3];
It is important that I match the behavior of the old code. Can anyone please help me understand why the original compiler produces those results?
This seems to be a bug:
The line
generates the following code:
That does not make sense. This is something like:
And that explains how the result came to be:
0x01 ^ 0x55
is indeed0x54
, or84
.It should be something like:
So this is definitely a code generation bug. It seems to persist until now, C++Builder 10.2 Tokyo, for the "classic" (Borland) compiler.
But if I use the "new" (clang) compiler, it produces
222
. The code produced is:That doesn't look optimal to me (I used O2 and O3 with the same result), but it produces the right result.