123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593 |
- {
- DFA
- Copyright (c) 2007 by Florian Klaempfl
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- ****************************************************************************
- }
- { $define DEBUG_DFA}
- { $define EXTDEBUG_DFA}
- { this unit implements routines to perform dfa }
- unit optdfa;
- {$i fpcdefs.inc}
- interface
- uses
- node,optutils;
- type
- TDFABuilder = class
- protected
- procedure CreateLifeInfo(node : tnode;map : TIndexedNodeSet);
- public
- resultnode : tnode;
- nodemap : TIndexedNodeSet;
- { reset all dfa info, this is required before creating dfa info
- if the tree has been changed without updating dfa }
- procedure resetdfainfo(node : tnode);
- procedure createdfainfo(node : tnode);
- destructor destroy;override;
- end;
- implementation
- uses
- globtype,globals,
- verbose,
- cpuinfo,
- symconst,symdef,
- defutil,
- procinfo,
- nutils,
- nbas,nflw,ncon,ninl,ncal,nset,
- optbase;
- (*
- function initnodes(var n:tnode; arg: pointer) : foreachnoderesult;
- begin
- { node worth to add? }
- if (node_complexity(n)>1) and (tstoreddef(n.resultdef).is_intregable or tstoreddef(n.resultdef).is_fpuregable) then
- begin
- plists(arg)^.nodelist.Add(n);
- plists(arg)^.locationlist.Add(@n);
- result:=fen_false;
- end
- else
- result:=fen_norecurse_false;
- end;
- *)
- {
- x:=f; read: [f]
- while x do read: []
- a:=b; read: [a,b,d] def: [a] life: read*def=[a]
- c:=d; read: [a,d] def: [a,c] life: read*def=[a]
- e:=a; read: [a] def: [a,c,e] life: read*def=[a]
- function f(b,d,x : type) : type;
- begin
- while x do alive: b,d,x
- begin
- a:=b; alive: b,d,x
- c:=d; alive: a,d,x
- e:=a+c; alive: a,c,x
- dec(x); alive: c,e,x
- end;
- result:=c+e; alive: c,e
- end; alive: result
- }
- type
- tdfainfo = record
- use : PDFASet;
- def : PDFASet;
- map : TIndexedNodeSet
- end;
- pdfainfo = ^tdfainfo;
- function AddDefUse(var n: tnode; arg: pointer): foreachnoderesult;
- begin
- case n.nodetype of
- loadn:
- begin
- pdfainfo(arg)^.map.Add(n);
- if nf_modify in n.flags then
- begin
- DFASetInclude(pdfainfo(arg)^.use^,n.optinfo^.index);
- DFASetInclude(pdfainfo(arg)^.def^,n.optinfo^.index)
- end
- else if nf_write in n.flags then
- DFASetInclude(pdfainfo(arg)^.def^,n.optinfo^.index)
- else
- DFASetInclude(pdfainfo(arg)^.use^,n.optinfo^.index);
- {
- write('Use Set: ');
- PrintDFASet(output,pdfainfo(arg)^.use^);
- write(' Def Set: ');
- PrintDFASet(output,pdfainfo(arg)^.def^);
- writeln;
- }
- end;
- end;
- result:=fen_false;
- end;
- function ResetProcessing(var n: tnode; arg: pointer): foreachnoderesult;
- begin
- exclude(n.flags,nf_processing);
- result:=fen_false;
- end;
- function ResetDFA(var n: tnode; arg: pointer): foreachnoderesult;
- begin
- if assigned(n.optinfo) then
- begin
- with n.optinfo^ do
- begin
- life:=nil;
- def:=nil;
- use:=nil;
- defsum:=nil;
- end;
- end;
- result:=fen_false;
- end;
- procedure TDFABuilder.CreateLifeInfo(node : tnode;map : TIndexedNodeSet);
- var
- changed : boolean;
- procedure CreateInfo(node : tnode);
- { update life entry of a node with l, set changed if this changes
- life info for the node
- }
- procedure updatelifeinfo(n : tnode;l : TDFASet);
- var
- b : boolean;
- begin
- b:=DFASetNotEqual(l,n.optinfo^.life);
- {
- if b then
- begin
- printnode(output,n);
- printdfaset(output,l);
- writeln;
- printdfaset(output,n.optinfo^.life);
- writeln;
- end;
- }
- {$ifdef DEBUG_DFA}
- if not(changed) and b then
- writeln('Another DFA pass caused by: ',nodetype2str[n.nodetype],'(',n.fileinfo.line,',',n.fileinfo.column,')');
- {$endif DEBUG_DFA}
- changed:=changed or b;
- node.optinfo^.life:=l;
- end;
- procedure calclife(n : tnode);
- var
- l : TDFASet;
- begin
- if assigned(n.successor) then
- begin
- {
- write('Successor Life: ');
- printdfaset(output,n.successor.optinfo^.life);
- writeln;
- write('Def.');
- printdfaset(output,n.optinfo^.def);
- writeln;
- }
- { ensure we can access optinfo }
- DFASetDiff(l,n.successor.optinfo^.life,n.optinfo^.def);
- {
- printdfaset(output,l);
- writeln;
- }
- DFASetIncludeSet(l,n.optinfo^.use);
- DFASetIncludeSet(l,n.optinfo^.life);
- end
- else
- begin
- { last node, not exit or raise node and function? }
- if assigned(resultnode) and
- not(node.nodetype in [raisen,exitn]) then
- begin
- { if yes, result lifes }
- DFASetDiff(l,resultnode.optinfo^.life,n.optinfo^.def);
- DFASetIncludeSet(l,n.optinfo^.use);
- DFASetIncludeSet(l,n.optinfo^.life);
- end
- else
- begin
- l:=n.optinfo^.use;
- DFASetIncludeSet(l,n.optinfo^.life);
- end;
- end;
- updatelifeinfo(n,l);
- end;
- var
- dfainfo : tdfainfo;
- l : TDFASet;
- i : longint;
- begin
- if node=nil then
- exit;
- { ensure we've already optinfo set }
- node.allocoptinfo;
- if nf_processing in node.flags then
- exit;
- include(node.flags,nf_processing);
- if assigned(node.successor) then
- CreateInfo(node.successor);
- {$ifdef EXTDEBUG_DFA}
- writeln('Handling: ',nodetype2str[node.nodetype],'(',node.fileinfo.line,',',node.fileinfo.column,')');
- {$endif EXTDEBUG_DFA}
- { life:=succesorlive-definition+use }
- case node.nodetype of
- whilerepeatn:
- begin
- calclife(node);
- { take care of repeat until! }
- if lnf_testatbegin in twhilerepeatnode(node).loopflags then
- begin
- node.allocoptinfo;
- if not(assigned(node.optinfo^.def)) and
- not(assigned(node.optinfo^.use)) then
- begin
- dfainfo.use:[email protected]^.use;
- dfainfo.def:[email protected]^.def;
- dfainfo.map:=map;
- foreachnodestatic(pm_postprocess,twhilerepeatnode(node).left,@AddDefUse,@dfainfo);
- end;
- calclife(node);
- { now iterate through the loop }
- CreateInfo(twhilerepeatnode(node).right);
- { update while node }
- { life:=life+use+right.life }
- l:=node.optinfo^.life;
- DFASetIncludeSet(l,node.optinfo^.use);
- DFASetIncludeSet(l,twhilerepeatnode(node).right.optinfo^.life);
- UpdateLifeInfo(node,l);
- { ... and a second iteration for fast convergence }
- CreateInfo(twhilerepeatnode(node).right);
- end;
- end;
- forn:
- begin
- {
- left: loopvar
- right: from
- t1: to
- t2: body
- }
- { take care of the sucessor if it's possible that we don't have one execution of the body }
- if not((tfornode(node).right.nodetype=ordconstn) and (tfornode(node).t1.nodetype=ordconstn)) then
- calclife(node);
- node.allocoptinfo;
- if not(assigned(node.optinfo^.def)) and
- not(assigned(node.optinfo^.use)) then
- begin
- dfainfo.use:[email protected]^.use;
- dfainfo.def:[email protected]^.def;
- dfainfo.map:=map;
- foreachnodestatic(pm_postprocess,tfornode(node).left,@AddDefUse,@dfainfo);
- foreachnodestatic(pm_postprocess,tfornode(node).right,@AddDefUse,@dfainfo);
- foreachnodestatic(pm_postprocess,tfornode(node).t1,@AddDefUse,@dfainfo);
- end;
- { take care of the sucessor if it's possible that we don't have one execution of the body }
- if not((tfornode(node).right.nodetype=ordconstn) and (tfornode(node).t1.nodetype=ordconstn)) then
- calclife(node);
- { create life for the body }
- CreateInfo(tfornode(node).t2);
- { update for node }
- { life:=life+use+body }
- l:=node.optinfo^.life;
- DFASetIncludeSet(l,node.optinfo^.use);
- DFASetIncludeSet(l,tfornode(node).t2.optinfo^.life);
- UpdateLifeInfo(node,l);
- { ... and a second iteration for fast convergence }
- CreateInfo(tfornode(node).t2);
- end;
- temprefn,
- loadn,
- typeconvn,
- assignn:
- begin
- if not(assigned(node.optinfo^.def)) and
- not(assigned(node.optinfo^.use)) then
- begin
- dfainfo.use:[email protected]^.use;
- dfainfo.def:[email protected]^.def;
- dfainfo.map:=map;
- foreachnodestatic(pm_postprocess,node,@AddDefUse,@dfainfo);
- end;
- calclife(node);
- end;
- statementn:
- begin
- { nested statement }
- CreateInfo(tstatementnode(node).statement);
- { inherit info }
- node.optinfo^.life:=tstatementnode(node).statement.optinfo^.life;
- end;
- blockn:
- begin
- CreateInfo(tblocknode(node).statements);
- if assigned(tblocknode(node).statements) then
- node.optinfo^.life:=tblocknode(node).statements.optinfo^.life;
- end;
- ifn:
- begin
- { get information from cond. expression }
- if not(assigned(node.optinfo^.def)) and
- not(assigned(node.optinfo^.use)) then
- begin
- dfainfo.use:[email protected]^.use;
- dfainfo.def:[email protected]^.def;
- dfainfo.map:=map;
- foreachnodestatic(pm_postprocess,tifnode(node).left,@AddDefUse,@dfainfo);
- end;
- { create life info for then and else node }
- CreateInfo(tifnode(node).right);
- CreateInfo(tifnode(node).t1);
- { ensure that we don't remove life info }
- l:=node.optinfo^.life;
- { get life info from then branch }
- if assigned(tifnode(node).right) then
- DFASetIncludeSet(l,tifnode(node).right.optinfo^.life);
- { get life info from else branch }
- if assigned(tifnode(node).t1) then
- DFASetIncludeSet(l,tifnode(node).t1.optinfo^.life)
- else
- if assigned(node.successor) then
- DFASetIncludeSet(l,node.successor.optinfo^.life)
- { last node and function? }
- else
- if assigned(resultnode) then
- DFASetIncludeSet(l,resultnode.optinfo^.life);
- { add use info from the cond. expression }
- DFASetIncludeSet(l,tifnode(node).optinfo^.use);
- { finally, update the life info of the node }
- UpdateLifeInfo(node,l);
- end;
- casen:
- begin
- { get information from "case" expression }
- if not(assigned(node.optinfo^.def)) and
- not(assigned(node.optinfo^.use)) then
- begin
- dfainfo.use:[email protected]^.use;
- dfainfo.def:[email protected]^.def;
- dfainfo.map:=map;
- foreachnodestatic(pm_postprocess,tcasenode(node).left,@AddDefUse,@dfainfo);
- end;
- { create life info for block and else nodes }
- for i:=0 to tcasenode(node).blocks.count-1 do
- CreateInfo(pcaseblock(tcasenode(node).blocks[i])^.statement);
- CreateInfo(tcasenode(node).elseblock);
- { ensure that we don't remove life info }
- l:=node.optinfo^.life;
- { get life info from case branches }
- for i:=0 to tcasenode(node).blocks.count-1 do
- DFASetIncludeSet(l,pcaseblock(tcasenode(node).blocks[i])^.statement.optinfo^.life);
- { get life info from else branch or the succesor }
- if assigned(tcasenode(node).elseblock) then
- DFASetIncludeSet(l,tcasenode(node).elseblock.optinfo^.life)
- else
- if assigned(node.successor) then
- DFASetIncludeSet(l,node.successor.optinfo^.life)
- { last node and function? }
- else
- if assigned(resultnode) then
- DFASetIncludeSet(l,resultnode.optinfo^.life);
- { add use info from the "case" expression }
- DFASetIncludeSet(l,tcasenode(node).optinfo^.use);
- { finally, update the life info of the node }
- UpdateLifeInfo(node,l);
- end;
- exitn:
- begin
- if not(is_void(current_procinfo.procdef.returndef)) and
- not(current_procinfo.procdef.proctypeoption=potype_constructor) then
- begin
- if not(assigned(node.optinfo^.def)) and
- not(assigned(node.optinfo^.use)) then
- begin
- if assigned(texitnode(node).left) then
- begin
- node.optinfo^.def:=resultnode.optinfo^.def;
- dfainfo.use:[email protected]^.use;
- dfainfo.def:[email protected]^.def;
- dfainfo.map:=map;
- foreachnodestatic(pm_postprocess,texitnode(node).left,@AddDefUse,@dfainfo);
- calclife(node);
- end
- else
- begin
- { get info from faked resultnode }
- node.optinfo^.use:=resultnode.optinfo^.use;
- node.optinfo^.life:=node.optinfo^.use;
- changed:=true;
- end;
- end;
- end;
- end;
- raisen:
- begin
- if not(assigned(node.optinfo^.life)) then
- begin
- dfainfo.use:[email protected]^.use;
- dfainfo.def:[email protected]^.def;
- dfainfo.map:=map;
- foreachnodestatic(pm_postprocess,traisenode(node).left,@AddDefUse,@dfainfo);
- foreachnodestatic(pm_postprocess,traisenode(node).right,@AddDefUse,@dfainfo);
- foreachnodestatic(pm_postprocess,traisenode(node).third,@AddDefUse,@dfainfo);
- { update node }
- l:=node.optinfo^.life;
- DFASetIncludeSet(l,node.optinfo^.use);
- UpdateLifeInfo(node,l);
- printdfainfo(output,node);
- end;
- end;
- calln:
- begin
- if not(assigned(node.optinfo^.def)) and
- not(assigned(node.optinfo^.use)) then
- begin
- dfainfo.use:[email protected]^.use;
- dfainfo.def:[email protected]^.def;
- dfainfo.map:=map;
- foreachnodestatic(pm_postprocess,node,@AddDefUse,@dfainfo);
- end;
- calclife(node);
- end;
- tempcreaten,
- tempdeleten,
- inlinen,
- nothingn,
- continuen,
- goton,
- breakn,
- labeln:
- begin
- calclife(node);
- end;
- else
- begin
- writeln(nodetype2str[node.nodetype]);
- internalerror(2007050502);
- end;
- end;
- // exclude(node.flags,nf_processing);
- end;
- var
- runs : integer;
- dfarec : tdfainfo;
- begin
- runs:=0;
- if not(is_void(current_procinfo.procdef.returndef)) and
- not(current_procinfo.procdef.proctypeoption=potype_constructor) then
- begin
- { create a fake node using the result }
- resultnode:=load_result_node;
- resultnode.allocoptinfo;
- dfarec.use:[email protected]^.use;
- dfarec.def:[email protected]^.def;
- dfarec.map:=map;
- AddDefUse(resultnode,@dfarec);
- resultnode.optinfo^.life:=resultnode.optinfo^.use;
- end
- else
- resultnode:=nil;
- repeat
- inc(runs);
- changed:=false;
- CreateInfo(node);
- foreachnodestatic(pm_postprocess,node,@ResetProcessing,nil);
- {$ifdef DEBUG_DFA}
- PrintIndexedNodeSet(output,map);
- PrintDFAInfo(output,node);
- {$endif DEBUG_DFA}
- until not(changed);
- {$ifdef DEBUG_DFA}
- writeln('DFA solver iterations: ',runs);
- {$endif DEBUG_DFA}
- end;
- { reset all dfa info, this is required before creating dfa info
- if the tree has been changed without updating dfa }
- procedure TDFABuilder.resetdfainfo(node : tnode);
- begin
- foreachnodestatic(pm_postprocess,node,@ResetDFA,nil);
- end;
- procedure TDFABuilder.createdfainfo(node : tnode);
- begin
- if not(assigned(nodemap)) then
- nodemap:=TIndexedNodeSet.Create;
- { add controll flow information }
- SetNodeSucessors(node);
- { now, collect life information }
- CreateLifeInfo(node,nodemap);
- end;
- destructor TDFABuilder.Destroy;
- begin
- Resultnode.free;
- nodemap.free;
- inherited destroy;
- end;
- end.
|