* do_optconstpropagate and do_optdeadstoreelim now set their

"changed" parameter properly and is now an out type.
  * Optimisations on calls to said functions
This commit is contained in:
J. Gareth "Curious Kit" Moreton 2024-04-27 22:04:50 +01:00 committed by FPK
parent eb440e0ff1
commit ffe97bb7d9
3 changed files with 31 additions and 27 deletions

View File

@ -50,7 +50,7 @@ unit optconstprop;
will not result in any constant propagation. will not result in any constant propagation.
} }
function do_optconstpropagate(var rootnode : tnode;var changed: boolean) : tnode; function do_optconstpropagate(var rootnode : tnode;out changed: boolean) : tnode;
implementation implementation
@ -395,23 +395,27 @@ unit optconstprop;
end; end;
function do_optconstpropagate(var rootnode: tnode;var changed: boolean): tnode; function do_optconstpropagate(var rootnode: tnode;out changed: boolean): tnode;
var
iteration_changed: Boolean;
begin begin
changed:=false;
repeat repeat
iteration_changed:=false;
{$ifdef DEBUG_CONSTPROP} {$ifdef DEBUG_CONSTPROP}
writeln('************************ before constant propagation ***************************'); writeln('************************ before constant propagation ***************************');
printnode(rootnode); printnode(rootnode);
{$endif DEBUG_CONSTPROP} {$endif DEBUG_CONSTPROP}
changed:=false; foreachnodestatic(pm_postandagain, rootnode, @propagate, @iteration_changed);
foreachnodestatic(pm_postandagain, rootnode, @propagate, @changed); changed:=changed or iteration_changed;
if changed then if iteration_changed then
doinlinesimplify(rootnode); doinlinesimplify(rootnode);
{$ifdef DEBUG_CONSTPROP} {$ifdef DEBUG_CONSTPROP}
writeln('************************ after constant propagation ***************************'); writeln('************************ after constant propagation ***************************');
printnode(rootnode); printnode(rootnode);
writeln('*******************************************************************************'); writeln('*******************************************************************************');
{$endif DEBUG_CONSTPROP} {$endif DEBUG_CONSTPROP}
until not(cs_opt_level3 in current_settings.optimizerswitches) or not(changed); until not(cs_opt_level3 in current_settings.optimizerswitches) or not(iteration_changed);
result:=rootnode; result:=rootnode;
end; end;

View File

@ -31,7 +31,7 @@ unit optdeadstore;
uses uses
node; node;
function do_optdeadstoreelim(var rootnode : tnode;var changed: boolean) : tnode; function do_optdeadstoreelim(var rootnode : tnode;out changed: boolean) : tnode;
implementation implementation
@ -105,8 +105,9 @@ unit optdeadstore;
end; end;
function do_optdeadstoreelim(var rootnode: tnode;var changed: boolean): tnode; function do_optdeadstoreelim(var rootnode: tnode;out changed: boolean): tnode;
begin begin
changed:=false;
{$ifdef EXTDEBUG_DEADSTORE} {$ifdef EXTDEBUG_DEADSTORE}
writeln('******************* Tree before deadstore elimination **********************'); writeln('******************* Tree before deadstore elimination **********************');
printnode(rootnode); printnode(rootnode);
@ -114,7 +115,6 @@ unit optdeadstore;
{$endif EXTDEBUG_DEADSTORE} {$endif EXTDEBUG_DEADSTORE}
if not(pi_dfaavailable in current_procinfo.flags) then if not(pi_dfaavailable in current_procinfo.flags) then
internalerror(2013110201); internalerror(2013110201);
changed:=false;
if not current_procinfo.has_nestedprocs then if not current_procinfo.has_nestedprocs then
foreachnodestatic(pm_postprocess, rootnode, @deadstoreelim, @changed); foreachnodestatic(pm_postprocess, rootnode, @deadstoreelim, @changed);
{$ifdef DEBUG_DEADSTORE} {$ifdef DEBUG_DEADSTORE}

View File

@ -1179,8 +1179,7 @@ implementation
var var
i : integer; i : integer;
UserCode : TNode; UserCode : TNode;
RedoDFA, changed : Boolean; RedoDFA : boolean;
{RedoDFA : boolean;}
begin begin
{ do this before adding the entry code else the tail recursion recognition won't work, { do this before adding the entry code else the tail recursion recognition won't work,
if this causes troubles, it must be if'ed if this causes troubles, it must be if'ed
@ -1191,10 +1190,9 @@ implementation
if cs_opt_constant_propagate in current_settings.optimizerswitches then if cs_opt_constant_propagate in current_settings.optimizerswitches then
begin begin
changed:=false; do_optconstpropagate(code,RedoDFA);
repeat { RedoDFA value not used here }
do_optconstpropagate(code,changed); RedoDFA:=false;
until not(changed);
end; end;
if (cs_opt_nodedfa in current_settings.optimizerswitches) and if (cs_opt_nodedfa in current_settings.optimizerswitches) and
@ -1208,12 +1206,14 @@ implementation
if cs_opt_constant_propagate in current_settings.optimizerswitches then if cs_opt_constant_propagate in current_settings.optimizerswitches then
begin begin
changed:=false; do_optconstpropagate(code,RedoDFA);
repeat if RedoDFA then
do_optconstpropagate(code,changed); begin
if changed then
dfabuilder.redodfainfo(code); dfabuilder.redodfainfo(code);
until not(changed); RedoDFA:=false; { Don't redo it again unless necessary }
end;
{ Don't re-run constant propagation as redoing DFA info didn't
actually change any nodes }
end; end;
if (cs_opt_loopstrength in current_settings.optimizerswitches) if (cs_opt_loopstrength in current_settings.optimizerswitches)
@ -1225,7 +1225,10 @@ implementation
end; end;
if RedoDFA then if RedoDFA then
begin
dfabuilder.redodfainfo(code); dfabuilder.redodfainfo(code);
RedoDFA:=false; { Don't redo it again unless necessary }
end;
if cs_opt_forloop in current_settings.optimizerswitches then if cs_opt_forloop in current_settings.optimizerswitches then
RedoDFA:=OptimizeForLoop(code); RedoDFA:=OptimizeForLoop(code);
@ -1266,12 +1269,9 @@ implementation
if cs_opt_dead_store_eliminate in current_settings.optimizerswitches then if cs_opt_dead_store_eliminate in current_settings.optimizerswitches then
begin begin
changed:=false; do_optdeadstoreelim(code,RedoDFA);
repeat if RedoDFA then
do_optdeadstoreelim(code,changed);
if changed then
dfabuilder.redodfainfo(code); dfabuilder.redodfainfo(code);
until not(changed);
end; end;
end end
else else