fpc/tests/webtbs/tw21255.pp
Jonas Maebe d1acb76df8 * don't replace "expr1 or expr1" or "expr1 and expr1" with just "expr1"
if expr1 has sideeffects. This can't be done safely even in case of
    short boolean evaluation, because expr1 may return the inverse the
    second time its called (and "0 or 1" is not the same as "0", and
    neither is "1 and 0"), based on comment by Michael Karcher
  * perform a full string compare when comparing stringconstnodes
    before the string constant labels have been generated (patch by
    Michael Karcher, mantis #21255)

git-svn-id: trunk@20485 -
2012-03-09 20:26:32 +00:00

113 lines
2.3 KiB
ObjectPascal

Program fpcbugcheck;
{$mode macpas} { for | }
Var
FrobCounter : Integer;
const
ok: boolean = true;
Function Frob : Boolean;
begin
Inc(FrobCounter);
Frob := False;
end;
{
This program tests whether "Frob or Frob" is contracted to a single
"Frob" call, in different contexts:
- without shortcut evaluation (no contraction allowed)
- with shortcut evaluation enabled
- using the MacPas "|" instead of "or"
It prints the number of Frob calls for each variant.
}
{
The second test this program does is related to the first one,
it exercises a bug in fpc deeming all compares with string constants
to be equal at the stage of compilation the elision of duplicate expression
in bools is performed.
This bug has been active since the introduction of the boolean shortcut
optimization (r14714), but as that optimization only applies to the
explicit shortcut form (in form of the MacPas operators), that bug
didn't show.
}
{$B+}
Procedure CountFrobsBoolFull;
begin
FrobCounter := 0;
if Frob or Frob then
begin
WriteLn('Complete: Huh');
ok:=false;
end
else
begin
WriteLn('Complete: Frobbed ', FrobCounter, ' times');
if FrobCounter<>2 then
ok:=false;
end;
end;
{$B-}
Procedure CountFrobsBoolShort;
begin
FrobCounter := 0;
if Frob or Frob then
begin
WriteLn('Short: Huh');
ok:=false;
end
else
begin
WriteLn('Short: Frobbed ', FrobCounter, ' times');
if FrobCounter<>2 then
ok:=false;
end;
end;
Procedure CountFrobsMac;
begin
FrobCounter := 0;
if Frob | Frob then
begin
WriteLn('Mac: Huh');
ok:=false;
end
else
begin
WriteLn('Mac: Frobbed ', FrobCounter, ' times');
if FrobCounter<>2 then
ok:=false;
end;
end;
var
test: String;
{$B-}
begin
ok:=true;
{ test conditions for application of boolean contraction }
CountFrobsBoolFull;
CountFrobsBoolShort;
CountFrobsMac;
{ test for faulty boolean contraction }
test:='b';
if (test='a') | (test='b') then
test := 'OK'
else
ok:=false;
if test <> 'OK' then WriteLn('Mac: fpc failed!');
test:='b';
if (test='a') or (test='b') then
test := 'OK'
else
ok:=false;
if test <> 'OK' then WriteLn('Short: fpc failed!');
if not ok then
halt(1);
end.