mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-14 18:26:21 +02:00
* reduce redundant temporary interfaces variables, resolves #14092
git-svn-id: trunk@15880 -
This commit is contained in:
parent
7a55db3397
commit
3a07adf27e
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -10475,6 +10475,7 @@ tests/webtbs/tw14067.pp svneol=native#text/plain
|
|||||||
tests/webtbs/tw1407.pp svneol=native#text/plain
|
tests/webtbs/tw1407.pp svneol=native#text/plain
|
||||||
tests/webtbs/tw1408.pp svneol=native#text/plain
|
tests/webtbs/tw1408.pp svneol=native#text/plain
|
||||||
tests/webtbs/tw1409.pp svneol=native#text/plain
|
tests/webtbs/tw1409.pp svneol=native#text/plain
|
||||||
|
tests/webtbs/tw14092.pp svneol=native#text/pascal
|
||||||
tests/webtbs/tw1412.pp svneol=native#text/plain
|
tests/webtbs/tw1412.pp svneol=native#text/plain
|
||||||
tests/webtbs/tw14124.pp svneol=native#text/plain
|
tests/webtbs/tw14124.pp svneol=native#text/plain
|
||||||
tests/webtbs/tw14134.pp svneol=native#text/plain
|
tests/webtbs/tw14134.pp svneol=native#text/plain
|
||||||
|
@ -1360,6 +1360,17 @@ implementation
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function look_for_call(var n: tnode; arg: pointer): foreachnoderesult;
|
||||||
|
begin
|
||||||
|
case n.nodetype of
|
||||||
|
calln:
|
||||||
|
result := fen_norecurse_true;
|
||||||
|
typen,loadvmtaddrn,loadn,temprefn,arrayconstructorn:
|
||||||
|
result := fen_norecurse_false;
|
||||||
|
else
|
||||||
|
result := fen_false;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure tcallnode.maybe_load_in_temp(var p:tnode);
|
procedure tcallnode.maybe_load_in_temp(var p:tnode);
|
||||||
var
|
var
|
||||||
@ -1372,7 +1383,7 @@ implementation
|
|||||||
{ Load all complex loads into a temp to prevent
|
{ Load all complex loads into a temp to prevent
|
||||||
double calls to a function. We can't simply check for a hp.nodetype=calln }
|
double calls to a function. We can't simply check for a hp.nodetype=calln }
|
||||||
if assigned(p) and
|
if assigned(p) and
|
||||||
not is_simple_para_load(p,true) then
|
foreachnodestatic(p,@look_for_call,nil) then
|
||||||
begin
|
begin
|
||||||
{ temp create }
|
{ temp create }
|
||||||
usederef:=(p.resultdef.typ in [arraydef,recorddef]) or
|
usederef:=(p.resultdef.typ in [arraydef,recorddef]) or
|
||||||
|
@ -695,6 +695,9 @@ implementation
|
|||||||
if (right.nodetype<>stringconstn) or
|
if (right.nodetype<>stringconstn) or
|
||||||
(tstringconstnode(right).len<>0) then
|
(tstringconstnode(right).len<>0) then
|
||||||
begin
|
begin
|
||||||
|
{ remove property flag to avoid errors, see comments for }
|
||||||
|
{ tf_winlikewidestring assignments below }
|
||||||
|
exclude(left.flags, nf_isproperty);
|
||||||
hp:=ccallparanode.create
|
hp:=ccallparanode.create
|
||||||
(right,
|
(right,
|
||||||
ccallparanode.create(left,nil));
|
ccallparanode.create(left,nil));
|
||||||
|
58
tests/webtbs/tw14092.pp
Normal file
58
tests/webtbs/tw14092.pp
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
program FPTest;
|
||||||
|
{$mode delphi}
|
||||||
|
|
||||||
|
type
|
||||||
|
iintf = interface(IUnknown)
|
||||||
|
function GetIntf :iintf;
|
||||||
|
procedure DoSomething;
|
||||||
|
end;
|
||||||
|
|
||||||
|
tobj = class(TObject)
|
||||||
|
fintf: iintf;
|
||||||
|
procedure test1;
|
||||||
|
procedure test2;
|
||||||
|
end;
|
||||||
|
|
||||||
|
tintf = class(TInterfacedObject,iintf)
|
||||||
|
function GetIntf : iintf;
|
||||||
|
procedure DoSomething;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure tobj.test1;
|
||||||
|
begin
|
||||||
|
fintf.DoSomething;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure tobj.test2;
|
||||||
|
begin
|
||||||
|
fintf.GetIntf.GetIntf.DoSomething;
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
function tintf.GetIntf : iintf;
|
||||||
|
begin
|
||||||
|
result:=self;
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
refs : Integer;
|
||||||
|
|
||||||
|
procedure tintf.DoSomething;
|
||||||
|
begin
|
||||||
|
if RefCount<>refs then
|
||||||
|
halt(1);
|
||||||
|
writeln(RefCount);
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
obj : tobj;
|
||||||
|
begin
|
||||||
|
obj:=tobj.create;
|
||||||
|
obj.fintf:=tintf.create;
|
||||||
|
refs:=1;
|
||||||
|
obj.test1;
|
||||||
|
refs:=3;
|
||||||
|
obj.test2;
|
||||||
|
obj.free;
|
||||||
|
writeln('ok');
|
||||||
|
end.
|
Loading…
Reference in New Issue
Block a user