* check used registers properly for SETcc/TEST/Jcc -> Jcc, resolves #38940

git-svn-id: trunk@49405 -
This commit is contained in:
florian 2021-05-28 21:23:09 +00:00
parent 30df955001
commit f2e0af6d37
3 changed files with 26 additions and 1 deletions

1
.gitattributes vendored
View File

@ -18861,6 +18861,7 @@ tests/webtbs/tw38802.pp svneol=native#text/pascal
tests/webtbs/tw38832.pp svneol=native#text/pascal
tests/webtbs/tw38833.pp svneol=native#text/plain
tests/webtbs/tw3893.pp svneol=native#text/plain
tests/webtbs/tw38940.pp svneol=native#text/pascal
tests/webtbs/tw3898.pp svneol=native#text/plain
tests/webtbs/tw3899.pp svneol=native#text/plain
tests/webtbs/tw3900.pp svneol=native#text/plain

View File

@ -6951,7 +6951,9 @@ unit aoptx86;
taicpu(hp2).SetCondition(SetC);
end;
if not RegUsedAfterInstruction(taicpu(p).oper[0]^.reg, hp2, TmpUsedRegs) then
{ as hp2 is a jump, we cannot use RegUsedAfterInstruction but we have to check if it is included in
TmpUsedRegs }
if not TmpUsedRegs[getregtype(taicpu(p).oper[0]^.reg)].IsUsed(taicpu(p).oper[0]^.reg) then
begin
RemoveCurrentp(p, hp2);
DebugMsg(SPeepholeOptimization + 'SETcc/TEST/Jcc -> Jcc',p);

22
tests/webtbs/tw38940.pp Normal file
View File

@ -0,0 +1,22 @@
{ %OPT=-O3 }
procedure Test;
var b:boolean;
i:longint;
begin
// the following loop should be done 2 time, but it hangs up;
b:=true;
i:=0;
repeat
inc(i);
if i>2 then
halt(1);
b:=not b; // first time b is set to false thats why the loop should be done again
// second time b is set to true thats why the loop should be leave,
// but hangs up
until b;
end;
begin
Test;
writeln('ok');
end.