mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 14:29:34 +02:00

for qwordbool) + test: o assigning true to such a variable now sets them to $ff/$ffff/$ffffffff o these types are now all signed o converting an integer type to a byte/word/long/qwordbool using an explicit type cast keeps the integer's original value stored in the bool, instead of forcing it to ord(true)/ord(false) (mantis #10233 and #10613, implemented for all architectures, testsuite tested for ppc32, sparc and x86) * fixed some places where the rtl depended on longbool(true) having the value 1 * extended several boolean tests (and adapted some to no longer assume that byte/word/long/qwordbool(true)=1) + support for converting to qwordbool in second_int_to_bool for x86, ppc and sparc git-svn-id: trunk@9898 -
372 lines
9.0 KiB
ObjectPascal
372 lines
9.0 KiB
ObjectPascal
{****************************************************************}
|
|
{ CODE GENERATOR TEST PROGRAM }
|
|
{****************************************************************}
|
|
{ NODE TESTED : secondtypeconvert() -> second_bool_to_int }
|
|
{****************************************************************}
|
|
{ PRE-REQUISITES: secondload() }
|
|
{ secondassign() }
|
|
{ secondcalln() }
|
|
{ secondinline() }
|
|
{****************************************************************}
|
|
{ DEFINES: }
|
|
{****************************************************************}
|
|
{ REMARKS: }
|
|
{****************************************************************}
|
|
program tcnvint1;
|
|
|
|
{$ifdef VER70}
|
|
{$define tp}
|
|
{$endif}
|
|
|
|
var
|
|
tobyte : byte;
|
|
toword : word;
|
|
tolong : longint;
|
|
{$ifndef tp}
|
|
toint64 : int64;
|
|
{$endif}
|
|
b1 : boolean;
|
|
bb1 : bytebool;
|
|
wb1 : wordbool;
|
|
lb1 : longbool;
|
|
b2 : boolean;
|
|
bb2 : bytebool;
|
|
wb2 : wordbool;
|
|
lb2 : longbool;
|
|
begin
|
|
{ left : LOC_REGISTER }
|
|
{ from : LOC_REFERENCE/LOC_REGISTER }
|
|
WriteLn('Testing LOC_REFERENCE...');
|
|
b1 := TRUE;
|
|
tobyte := byte(b1);
|
|
WriteLn('boolean->byte : value should be 1...',tobyte);
|
|
if tobyte <> 1 then
|
|
halt(1);
|
|
b1 := FALSE;
|
|
tobyte := byte(b1);
|
|
WriteLn('boolean->byte : value should be 0...',tobyte);
|
|
if tobyte <> 0 then
|
|
halt(1);
|
|
b1 := TRUE;
|
|
toword := word(b1);
|
|
WriteLn('boolean->word : value should be 1...',toword);
|
|
if toword <> 1 then
|
|
halt(1);
|
|
b1 := FALSE;
|
|
toword := word(b1);
|
|
WriteLn('boolean->word : value should be 0...',toword);
|
|
if toword <> 0 then
|
|
halt(1);
|
|
b1 := TRUE;
|
|
tolong := longint(b1);
|
|
WriteLn('boolean->longint : value should be 1...',tolong);
|
|
if tolong <> 1 then
|
|
halt(1);
|
|
b1 := FALSE;
|
|
tolong := longint(b1);
|
|
WriteLn('boolean->longint : value should be 0...',tolong);
|
|
if tolong <> 0 then
|
|
halt(1);
|
|
bb1 := TRUE;
|
|
tobyte := byte(bb1);
|
|
WriteLn('bytebool->byte : value should be 255...',tobyte);
|
|
if tobyte <> 255 then
|
|
halt(1);
|
|
bb1 := FALSE;
|
|
tobyte := byte(bb1);
|
|
WriteLn('bytebool->byte : value should be 0...',tobyte);
|
|
if tobyte <> 0 then
|
|
halt(1);
|
|
bb1 := TRUE;
|
|
toword := word(bb1);
|
|
WriteLn('bytebool->word : value should be 65535...',toword);
|
|
if toword <> 65535 then
|
|
halt(1);
|
|
bb1 := FALSE;
|
|
toword := word(bb1);
|
|
WriteLn('bytebool->word : value should be 0...',toword);
|
|
if toword <> 0 then
|
|
halt(1);
|
|
bb1 := TRUE;
|
|
tolong := longint(bb1);
|
|
WriteLn('bytebool->longint : value should be -1...',tolong);
|
|
if tolong <> -1 then
|
|
halt(1);
|
|
bb1 := FALSE;
|
|
tolong := longint(bb1);
|
|
WriteLn('bytebool->longint : value should be 0...',tolong);
|
|
if tolong <> 0 then
|
|
halt(1);
|
|
wb1 := TRUE;
|
|
tobyte := byte(wb1);
|
|
WriteLn('wordbool->byte : value should be 255...',tobyte);
|
|
if tobyte <> 255 then
|
|
halt(1);
|
|
wb1 := FALSE;
|
|
tobyte := byte(wb1);
|
|
WriteLn('wordbool->byte : value should be 0...',tobyte);
|
|
if tobyte <> 0 then
|
|
halt(1);
|
|
wb1 := TRUE;
|
|
toword := word(wb1);
|
|
WriteLn('wordbool->word : value should be 65535...',toword);
|
|
if toword <> 65535 then
|
|
halt(1);
|
|
wb1 := FALSE;
|
|
toword := word(wb1);
|
|
WriteLn('wordbool->word : value should be 0...',toword);
|
|
if toword <> 0 then
|
|
halt(1);
|
|
wb1 := TRUE;
|
|
tolong := longint(wb1);
|
|
WriteLn('wordbool->longint : value should be -1...',tolong);
|
|
if tolong <> -1 then
|
|
halt(1);
|
|
wb1 := FALSE;
|
|
tolong := longint(wb1);
|
|
WriteLn('wordbool->longint : value should be 0...',tolong);
|
|
if tolong <> 0 then
|
|
halt(1);
|
|
{$ifndef tp}
|
|
b1 := TRUE;
|
|
toint64 :=int64(b1);
|
|
WriteLn('boolean->int64 : value should be 1...',toint64);
|
|
if toint64 <> 1 then
|
|
halt(1);
|
|
b1 := FALSE;
|
|
toint64 :=int64(b1);
|
|
WriteLn('boolean->int64 : value should be 0...',toint64);
|
|
if toint64 <> 0 then
|
|
halt(1);
|
|
bb1 := TRUE;
|
|
toint64 :=int64(bb1);
|
|
WriteLn('bytebool->int64 : value should be -1...',toint64);
|
|
if toint64 <> -1 then
|
|
halt(1);
|
|
bb1 := FALSE;
|
|
toint64 :=int64(bb1);
|
|
WriteLn('bytebool->int64 : value should be 0...',toint64);
|
|
if toint64 <> 0 then
|
|
halt(1);
|
|
wb1 := TRUE;
|
|
toint64 :=int64(wb1);
|
|
WriteLn('wordbool->int64 : value should be -1...',toint64);
|
|
if toint64 <> -1 then
|
|
halt(1);
|
|
wb1 := FALSE;
|
|
toint64 :=int64(wb1);
|
|
WriteLn('wordbool->int64 : value should be 0...',toint64);
|
|
if toint64 <> 0 then
|
|
halt(1);
|
|
{$endif}
|
|
lb1 := TRUE;
|
|
tobyte := byte(lb1);
|
|
WriteLn('longbool->byte : value should be 255...',tobyte);
|
|
if tobyte <> 255 then
|
|
halt(1);
|
|
lb1 := FALSE;
|
|
tobyte := byte(lb1);
|
|
WriteLn('longbool->byte : value should be 0...',tobyte);
|
|
if tobyte <> 0 then
|
|
halt(1);
|
|
lb1 := TRUE;
|
|
toword := word(lb1);
|
|
WriteLn('longbool->word : value should be 65535...',toword);
|
|
if toword <> 65535 then
|
|
halt(1);
|
|
lb1 := FALSE;
|
|
toword := word(lb1);
|
|
WriteLn('longbool->word : value should be 0...',toword);
|
|
if toword <> 0 then
|
|
halt(1);
|
|
lb1 := TRUE;
|
|
tolong := longint(lb1);
|
|
WriteLn('longbool->longint : value should be -1...',tolong);
|
|
if tolong <> -1 then
|
|
halt(1);
|
|
lb1 := FALSE;
|
|
tolong := longint(lb1);
|
|
WriteLn('longbool->longint : value should be 0...',tolong);
|
|
if tolong <> 0 then
|
|
halt(1);
|
|
{ left : LOC_REGISTER }
|
|
{ from : LOC_REFERENCE }
|
|
wb1 := TRUE;
|
|
b2 := wb1;
|
|
WriteLn('wordbool->boolean : value should be TRUE...',b2);
|
|
if not b2 then
|
|
halt(1);
|
|
wb1 := FALSE;
|
|
b2 := wb1;
|
|
WriteLn('wordbool->boolean : value should be FALSE...',b2);
|
|
if b2 then
|
|
halt(1);
|
|
lb1 := TRUE;
|
|
b2 := lb1;
|
|
WriteLn('longbool->boolean : value should be TRUE...',b2);
|
|
if not b2 then
|
|
halt(1);
|
|
lb1 := FALSE;
|
|
b2 := lb1;
|
|
WriteLn('longbool->boolean : value should be FALSE...',b2);
|
|
if b2 then
|
|
halt(1);
|
|
|
|
wb1 := TRUE;
|
|
bb2 := wb1;
|
|
WriteLn('wordbool->bytebool : value should be TRUE...',bb2);
|
|
if not bb2 then
|
|
halt(1);
|
|
wb1 := FALSE;
|
|
bb2 := wb1;
|
|
WriteLn('wordbool->bytebool : value should be FALSE...',bb2);
|
|
if bb2 then
|
|
halt(1);
|
|
lb1 := TRUE;
|
|
bb2 := lb1;
|
|
WriteLn('longbool->bytebool : value should be TRUE...',bb2);
|
|
if not bb2 then
|
|
halt(1);
|
|
lb1 := FALSE;
|
|
bb2 := lb1;
|
|
WriteLn('longbool->bytebool : value should be FALSE...',bb2);
|
|
if bb2 then
|
|
halt(1);
|
|
b1 := TRUE;
|
|
lb2 := b1;
|
|
WriteLn('boolean->longbool : value should be TRUE...',lb2);
|
|
if not lb2 then
|
|
halt(1);
|
|
b1 := FALSE;
|
|
lb2 := b1;
|
|
WriteLn('boolean->longbool : value should be FALSE...',lb2);
|
|
if lb2 then
|
|
halt(1);
|
|
bb1 := TRUE;
|
|
lb2 := bb1;
|
|
WriteLn('bytebool->longbool : value should be TRUE...',lb2);
|
|
if not lb2 then
|
|
halt(1);
|
|
bb1 := FALSE;
|
|
lb2 := bb1;
|
|
WriteLn('bytebool->longbool : value should be FALSE...',lb2);
|
|
if lb2 then
|
|
halt(1);
|
|
{ left : LOC_REGISTER }
|
|
{ from : LOC_JUMP }
|
|
WriteLn('Testing LOC_JUMP...');
|
|
toword := 0;
|
|
tobyte := 1;
|
|
tobyte:=byte(toword > tobyte);
|
|
WriteLn('value should be 0...',tobyte);
|
|
if tobyte <> 0 then
|
|
halt(1);
|
|
toword := 2;
|
|
tobyte := 1;
|
|
tobyte:=byte(toword > tobyte);
|
|
WriteLn('value should be 1...',tobyte);
|
|
if tobyte <> 1 then
|
|
halt(1);
|
|
toword := 0;
|
|
tobyte := 1;
|
|
toword:=word(toword > tobyte);
|
|
WriteLn('value should be 0...',toword);
|
|
if toword <> 0 then
|
|
halt(1);
|
|
toword := 2;
|
|
tobyte := 1;
|
|
toword:=word(toword > tobyte);
|
|
WriteLn('value should be 1...',toword);
|
|
if toword <> 1 then
|
|
halt(1);
|
|
toword := 0;
|
|
tobyte := 1;
|
|
tolong:=longint(toword > tobyte);
|
|
WriteLn('value should be 0...',tolong);
|
|
if tolong <> 0 then
|
|
halt(1);
|
|
toword := 2;
|
|
tobyte := 1;
|
|
tolong:=longint(toword > tobyte);
|
|
WriteLn('value should be 1...',tolong);
|
|
if tolong <> 1 then
|
|
halt(1);
|
|
{$ifndef tp}
|
|
toword := 0;
|
|
tobyte := 1;
|
|
toint64:=int64(toword > tobyte);
|
|
WriteLn('value should be 0...',toint64);
|
|
if toint64 <> 0 then
|
|
halt(1);
|
|
toword := 2;
|
|
tobyte := 1;
|
|
toint64:=int64(toword > tobyte);
|
|
WriteLn('value should be 1...',toint64);
|
|
if toint64 <> 1 then
|
|
halt(1);
|
|
{$endif}
|
|
{ left : LOC_REGISTER }
|
|
{ from : LOC_FLAGS }
|
|
WriteLn('Testing LOC_FLAGS...');
|
|
wb1 := TRUE;
|
|
bb1 := FALSE;
|
|
bb1 := (wb1 <> bb1);
|
|
WriteLn('Value should be TRUE...',bb1);
|
|
if not bb1 then
|
|
halt(1);
|
|
wb1 := FALSE;
|
|
bb1 := FALSE;
|
|
bb1 := (wb1 <> bb1);
|
|
WriteLn('Value should be FALSE...',bb1);
|
|
if bb1 then
|
|
halt(1);
|
|
lb1 := TRUE;
|
|
bb1 := FALSE;
|
|
bb1 := (bb1 = lb1);
|
|
WriteLn('Value should be FALSE...',bb1);
|
|
if bb1 then
|
|
halt(1);
|
|
lb1 := FALSE;
|
|
bb1 := TRUE;
|
|
bb1 := (bb1 <> lb1);
|
|
WriteLn('Value should be TRUE...',bb1);
|
|
if not bb1 then
|
|
halt(1);
|
|
lb1 := TRUE;
|
|
bb1 := FALSE;
|
|
wb1 := (bb1 = lb1);
|
|
WriteLn('Value should be FALSE...',wb1);
|
|
if wb1 then
|
|
halt(1);
|
|
lb1 := TRUE;
|
|
bb1 := TRUE;
|
|
wb1 := (bb1 = lb1);
|
|
WriteLn('Value should be TRUE...',wb1);
|
|
if not wb1 then
|
|
halt(1);
|
|
lb1 := TRUE;
|
|
bb1 := FALSE;
|
|
lb1 := (bb1 = lb1);
|
|
WriteLn('Value should be FALSE...',lb1);
|
|
if lb1 then
|
|
halt(1);
|
|
lb1 := FALSE;
|
|
bb1 := FALSE;
|
|
lb1 := (bb1 = lb1);
|
|
WriteLn('Value should be TRUE...',lb1);
|
|
if not lb1 then
|
|
halt(1);
|
|
bb1 := TRUE;
|
|
bb2 := FALSE;
|
|
lb1 := (bb1 <> bb2);
|
|
WriteLn('Value should be TRUE...',lb1);
|
|
if not lb1 then
|
|
halt(1);
|
|
bb1 := FALSE;
|
|
bb2 := TRUE;
|
|
lb1 := (bb1 = bb2);
|
|
WriteLn('Value should be FALSE...',lb1);
|
|
if lb1 then
|
|
halt(1);
|
|
end.
|