123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- {****************************************************************}
- { 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}
- bb1 : bytebool;
- wb1 : wordbool;
- lb1 : longbool;
- bb2 : bytebool;
- wb2 : wordbool;
- lb2 : longbool;
- begin
- { left : LOC_REGISTER }
- { from : LOC_REFERENCE/LOC_REGISTER }
- WriteLn('Testing LOC_REFERENCE...');
- bb1 := TRUE;
- tobyte := byte(bb1);
- WriteLn('boolean->byte : value should be 1...',tobyte);
- bb1 := FALSE;
- tobyte := byte(bb1);
- WriteLn('boolean->byte : value should be 0...',tobyte);
- bb1 := TRUE;
- toword := word(bb1);
- WriteLn('boolean->word : value should be 1...',toword);
- bb1 := FALSE;
- toword := word(bb1);
- WriteLn('boolean->word : value should be 0...',toword);
- bb1 := TRUE;
- tolong := longint(bb1);
- WriteLn('boolean->longint : value should be 1...',tolong);
- bb1 := FALSE;
- tolong := longint(bb1);
- WriteLn('boolean->longint : value should be 0...',tolong);
- wb1 := TRUE;
- tobyte := byte(wb1);
- WriteLn('wordbool->byte : value should be 1...',tobyte);
- wb1 := FALSE;
- tobyte := byte(wb1);
- WriteLn('wordbool->byte : value should be 0...',tobyte);
- wb1 := TRUE;
- toword := word(wb1);
- WriteLn('wordbool->word : value should be 1...',toword);
- wb1 := FALSE;
- toword := word(wb1);
- WriteLn('wordbool->word : value should be 0...',toword);
- wb1 := TRUE;
- tolong := longint(wb1);
- WriteLn('wordbool->longint : value should be 1...',tolong);
- wb1 := FALSE;
- tolong := longint(wb1);
- WriteLn('wordbool->longint : value should be 0...',tolong);
- {$ifndef tp}
- bb1 := TRUE;
- toint64 :=int64(bb1);
- WriteLn('boolean->int64 : value should be 1...',toint64);
- bb1 := FALSE;
- toint64 :=int64(bb1);
- WriteLn('boolean->int64 : value should be 0...',toint64);
- wb1 := TRUE;
- toint64 :=int64(wb1);
- WriteLn('wordbool->int64 : value should be 1...',toint64);
- wb1 := FALSE;
- toint64 :=int64(wb1);
- WriteLn('wordbool->int64 : value should be 0...',toint64);
- {$endif}
- lb1 := TRUE;
- tobyte := byte(lb1);
- WriteLn('longbool->byte : value should be 1...',tobyte);
- lb1 := FALSE;
- tobyte := byte(lb1);
- WriteLn('longbool->byte : value should be 0...',tobyte);
- lb1 := TRUE;
- toword := word(lb1);
- WriteLn('longbool->word : value should be 1...',toword);
- lb1 := FALSE;
- toword := word(lb1);
- WriteLn('longbool->word : value should be 0...',toword);
- lb1 := TRUE;
- tolong := longint(lb1);
- WriteLn('longbool->longint : value should be 1...',tolong);
- lb1 := FALSE;
- tolong := longint(lb1);
- WriteLn('longbool->longint : value should be 0...',tolong);
- { left : LOC_REGISTER }
- { from : LOC_REFERENCE }
- wb1 := TRUE;
- bb2 := wb1;
- WriteLn('wordbool->boolean : value should be TRUE...',bb2);
- wb1 := FALSE;
- bb2 := wb1;
- WriteLn('wordbool->boolean : value should be FALSE...',bb2);
- lb1 := TRUE;
- bb2 := lb1;
- WriteLn('longbool->boolean : value should be TRUE...',bb2);
- lb1 := FALSE;
- bb2 := lb1;
- WriteLn('longbool->boolean : value should be FALSE...',bb2);
- bb1 := TRUE;
- lb2 := bb1;
- WriteLn('boolean->longbool : value should be TRUE...',lb2);
- bb1 := FALSE;
- lb2 := bb1;
- WriteLn('boolean->longbool : value should be FALSE...',lb2);
- { left : LOC_REGISTER }
- { from : LOC_JUMP }
- WriteLn('Testing LOC_JUMP...');
- toword := 0;
- tobyte := 1;
- tobyte:=byte(toword > tobyte);
- WriteLn('value should be 0...',tobyte);
- toword := 2;
- tobyte := 1;
- tobyte:=byte(toword > tobyte);
- WriteLn('value should be 1...',tobyte);
- toword := 0;
- tobyte := 1;
- toword:=word(toword > tobyte);
- WriteLn('value should be 0...',toword);
- toword := 2;
- tobyte := 1;
- toword:=word(toword > tobyte);
- WriteLn('value should be 1...',toword);
- toword := 0;
- tobyte := 1;
- tolong:=longint(toword > tobyte);
- WriteLn('value should be 0...',tolong);
- toword := 2;
- tobyte := 1;
- tolong:=longint(toword > tobyte);
- WriteLn('value should be 1...',tolong);
- {$ifndef tp}
- toword := 0;
- tobyte := 1;
- toint64:=int64(toword > tobyte);
- WriteLn('value should be 0...',toint64);
- toword := 2;
- tobyte := 1;
- toint64:=int64(toword > tobyte);
- WriteLn('value should be 1...',toint64);
- {$endif}
- { left : LOC_REGISTER }
- { from : LOC_FLAGS }
- WriteLn('Testing LOC_FLAGS...');
- wb1 := TRUE;
- bb1 := FALSE;
- bb1 := (wb1 > bb1);
- WriteLn('Value should be TRUE...',bb1);
- wb1 := FALSE;
- bb1 := FALSE;
- bb1 := (wb1 > bb1);
- WriteLn('Value should be FALSE...',bb1);
- lb1 := TRUE;
- bb1 := FALSE;
- bb1 := (bb1 > lb1);
- WriteLn('Value should be FALSE...',bb1);
- lb1 := FALSE;
- bb1 := TRUE;
- bb1 := (bb1 > lb1);
- WriteLn('Value should be TRUE...',bb1);
- lb1 := TRUE;
- bb1 := FALSE;
- wb1 := (bb1 > lb1);
- WriteLn('Value should be FALSE...',wb1);
- lb1 := FALSE;
- bb1 := TRUE;
- wb1 := (bb1 > lb1);
- WriteLn('Value should be TRUE...',wb1);
- lb1 := TRUE;
- bb1 := FALSE;
- lb1 := (bb1 > lb1);
- WriteLn('Value should be FALSE...',lb1);
- lb1 := FALSE;
- bb1 := TRUE;
- lb1 := (bb1 > lb1);
- WriteLn('Value should be TRUE...',lb1);
- bb1 := TRUE;
- bb2 := FALSE;
- lb1 := (bb1 > bb2);
- WriteLn('Value should be TRUE...',lb1);
- bb1 := FALSE;
- bb2 := TRUE;
- lb1 := (bb1 > bb2);
- WriteLn('Value should be FALSE...',lb1);
- end.
- {
- $Log$
- Revision 1.4 2002-09-07 15:40:55 peter
- * old logs removed and tabs fixed
- Revision 1.3 2002/05/13 13:45:38 peter
- * updated to compile tests with kylix
- }
|