1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120 |
- {
- $Id$
- Copyright (c) 2000-2002 by Florian Klaempfl
- Basic node handling
- 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.
- ****************************************************************************
- }
- unit node;
- {$i fpcdefs.inc}
- interface
- uses
- cclasses,
- globtype,globals,
- cpubase,
- aasmbase,
- symtype,symppu;
- type
- pconstset = ^tconstset;
- {$ifdef oldset}
- tconstset = array[0..31] of byte;
- pconst32bitset = ^tconst32bitset;
- tconst32bitset = array[0..7] of longint;
- {$else}
- tconstset = set of 0..255;
- {$endif}
- tnodetype = (
- emptynode, {No node (returns nil when loading from ppu)}
- addn, {Represents the + operator}
- muln, {Represents the * operator}
- subn, {Represents the - operator}
- divn, {Represents the div operator}
- symdifn, {Represents the >< operator}
- modn, {Represents the mod operator}
- assignn, {Represents an assignment}
- loadn, {Represents the use of a variabele}
- rangen, {Represents a range (i.e. 0..9)}
- ltn, {Represents the < operator}
- lten, {Represents the <= operator}
- gtn, {Represents the > operator}
- gten, {Represents the >= operator}
- equaln, {Represents the = operator}
- unequaln, {Represents the <> operator}
- inn, {Represents the in operator}
- orn, {Represents the or operator}
- xorn, {Represents the xor operator}
- shrn, {Represents the shr operator}
- shln, {Represents the shl operator}
- slashn, {Represents the / operator}
- andn, {Represents the and operator}
- subscriptn, {Field in a record/object}
- derefn, {Dereferences a pointer}
- addrn, {Represents the @ operator}
- doubleaddrn, {Represents the @@ operator}
- ordconstn, {Represents an ordinal value}
- typeconvn, {Represents type-conversion/typecast}
- calln, {Represents a call node}
- callparan, {Represents a parameter}
- realconstn, {Represents a real value}
- unaryminusn, {Represents a sign change (i.e. -2)}
- asmn, {Represents an assembler node }
- vecn, {Represents array indexing}
- pointerconstn, {Represents a pointer constant}
- stringconstn, {Represents a string constant}
- funcretn, {Represents the function result var}
- selfn, {Represents the self parameter}
- notn, {Represents the not operator}
- inlinen, {Internal procedures (i.e. writeln)}
- niln, {Represents the nil pointer}
- errorn, {This part of the tree could not be
- parsed because of a compiler error}
- typen, {A type name. Used for i.e. typeof(obj)}
- hnewn, {The new operation, constructor call}
- hdisposen, {The dispose operation with destructor call}
- setelementn, {A set element(s) (i.e. [a,b] and also [a..b])}
- setconstn, {A set constant (i.e. [1,2])}
- blockn, {A block of statements}
- statementn, {One statement in a block of nodes}
- ifn, {An if statement}
- breakn, {A break statement}
- continuen, {A continue statement}
- whilerepeatn, {A while or repeat statement}
- forn, {A for loop}
- exitn, {An exit statement}
- withn, {A with statement}
- casen, {A case statement}
- labeln, {A label}
- goton, {A goto statement}
- tryexceptn, {A try except block}
- raisen, {A raise statement}
- tryfinallyn, {A try finally statement}
- onn, {For an on statement in exception code}
- isn, {Represents the is operator}
- asn, {Represents the as typecast}
- caretn, {Represents the ^ operator}
- failn, {Represents the fail statement}
- starstarn, {Represents the ** operator exponentiation }
- procinlinen, {Procedures that can be inlined }
- arrayconstructorn, {Construction node for [...] parsing}
- arrayconstructorrangen, {Range element to allow sets in array construction tree}
- tempcreaten, { for temps in the result/firstpass }
- temprefn, { references to temps }
- tempdeleten, { for temps in the result/firstpass }
- addoptn, { added for optimizations where we cannot suppress }
- nothingn, {NOP, Do nothing}
- loadvmtn, {Load the address of the VMT of a class/object}
- guidconstn, {A GUID COM Interface constant }
- rttin {Rtti information so they can be accessed in result/firstpass}
- );
- const
- nodetype2str : array[tnodetype] of string[20] = (
- '<emptynode>',
- 'addn',
- 'muln',
- 'subn',
- 'divn',
- 'symdifn',
- 'modn',
- 'assignn',
- 'loadn',
- 'rangen',
- 'ltn',
- 'lten',
- 'gtn',
- 'gten',
- 'equaln',
- 'unequaln',
- 'inn',
- 'orn',
- 'xorn',
- 'shrn',
- 'shln',
- 'slashn',
- 'andn',
- 'subscriptn',
- 'derefn',
- 'addrn',
- 'doubleaddrn',
- 'ordconstn',
- 'typeconvn',
- 'calln',
- 'callparan',
- 'realconstn',
- 'unaryminusn',
- 'asmn',
- 'vecn',
- 'pointerconstn',
- 'stringconstn',
- 'funcretn',
- 'selfn',
- 'notn',
- 'inlinen',
- 'niln',
- 'errorn',
- 'typen',
- 'hnewn',
- 'hdisposen',
- 'setelementn',
- 'setconstn',
- 'blockn',
- 'statementn',
- 'ifn',
- 'breakn',
- 'continuen',
- 'whilerepeatn',
- 'forn',
- 'exitn',
- 'withn',
- 'casen',
- 'labeln',
- 'goton',
- 'tryexceptn',
- 'raisen',
- 'tryfinallyn',
- 'onn',
- 'isn',
- 'asn',
- 'caretn',
- 'failn',
- 'starstarn',
- 'procinlinen',
- 'arrayconstructn',
- 'arrayconstructrangen',
- 'tempcreaten',
- 'temprefn',
- 'tempdeleten',
- 'addoptn',
- 'nothingn',
- 'loadvmtn',
- 'guidconstn',
- 'rttin');
- type
- { all boolean field of ttree are now collected in flags }
- tnodeflags = (
- nf_needs_truefalselabel,
- nf_swapable, { tbinop operands can be swaped }
- nf_swaped, { tbinop operands are swaped }
- nf_error,
- nf_write, { Node is written to }
- { flags used by tcallnode }
- nf_return_value_used,
- nf_static_call,
- nf_anon_inherited,
- { flags used by tcallparanode }
- nf_varargs_para, { belongs this para to varargs }
- { taddrnode }
- nf_procvarload,
- { tvecnode }
- nf_memindex,
- nf_memseg,
- nf_callunique,
- { twithnode }
- nf_islocal,
- { tloadnode }
- nf_absolute,
- nf_first,
- { tassignmentnode }
- nf_concat_string,
- { tfuncretnode }
- nf_is_first_funcret,
- { tarrayconstructnode }
- nf_cargs, { 20th }
- nf_cargswap,
- nf_forcevaria,
- nf_novariaallowed,
- { ttypeconvnode }
- nf_explizit,
- { tinlinenode }
- nf_inlineconst,
- { general }
- nf_isproperty,
- nf_varstateset,
- { taddnode }
- nf_use_strconcat
- );
- tnodeflagset = set of tnodeflags;
- const
- { contains the flags which must be equal for the equality }
- { of nodes }
- flagsequal : tnodeflagset = [nf_error,nf_static_call];
- type
- tnodelist = class
- end;
- { later (for the newcg) tnode will inherit from tlinkedlist_item }
- tnode = class
- public
- { type of this node }
- nodetype : tnodetype;
- { type of the current code block, general/const/type }
- blocktype : tblock_type;
- { the location of the result of this node }
- location : tlocation;
- { the parent node of this is node }
- { this field is set by concattolist }
- parent : tnode;
- { there are some properties about the node stored }
- flags : tnodeflagset;
- { the number of registers needed to evalute the node }
- registers32,registersfpu : longint; { must be longint !!!! }
- {$ifdef SUPPORT_MMX}
- registersmmx,registerskni : longint;
- {$endif SUPPORT_MMX}
- resulttype : ttype;
- fileinfo : tfileposinfo;
- localswitches : tlocalswitches;
- {$ifdef extdebug}
- maxfirstpasscount,
- firstpasscount : longint;
- {$endif extdebug}
- constructor create(t:tnodetype);
- { this constructor is only for creating copies of class }
- { the fields are copied by getcopy }
- constructor createforcopy;
- constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);virtual;
- destructor destroy;override;
- procedure ppuwrite(ppufile:tcompilerppufile);virtual;
- procedure derefimpl;virtual;
- { toggles the flag }
- procedure toggleflag(f : tnodeflags);
- { the 1.1 code generator may override pass_1 }
- { and it need not to implement det_* then }
- { 1.1: pass_1 returns a value<>0 if the node has been transformed }
- { 2.0: runs det_resulttype and det_temp }
- function pass_1 : tnode;virtual;abstract;
- { dermines the resulttype of the node }
- function det_resulttype : tnode;virtual;abstract;
- { dermines the number of necessary temp. locations to evaluate
- the node }
- {$ifdef state_tracking}
- { Does optimizations by keeping track of the variable states
- in a procedure }
- function track_state_pass(exec_known:boolean):boolean;virtual;
- {$endif}
- { For a t1:=t2 tree, mark the part of the tree t1 that gets
- written to (normally the loadnode) as write access. }
- procedure mark_write;virtual;abstract;
- procedure det_temp;virtual;abstract;
- procedure pass_2;virtual;abstract;
- { comparing of nodes }
- function isequal(p : tnode) : boolean;
- { to implement comparisation, override this method }
- function docompare(p : tnode) : boolean;virtual;
- { gets a copy of the node }
- function getcopy : tnode;virtual;
- procedure insertintolist(l : tnodelist);virtual;
- {$ifdef EXTDEBUG}
- { writes a node for debugging purpose, shouldn't be called }
- { direct, because there is no test for nil, use writenode }
- { to write a complete tree }
- procedure dowrite;
- procedure dowritenodetype;virtual;
- procedure _dowrite;virtual;
- {$endif EXTDEBUG}
- procedure concattolist(l : tlinkedlist);virtual;
- function ischild(p : tnode) : boolean;virtual;
- procedure set_file_line(from : tnode);
- procedure set_tree_filepos(const filepos : tfileposinfo);
- end;
- tnodeclass = class of tnode;
- tnodeclassarray = array[tnodetype] of tnodeclass;
- { this node is the anchestor for all nodes with at least }
- { one child, you have to use it if you want to use }
- { true- and falselabel }
- punarynode = ^tunarynode;
- tunarynode = class(tnode)
- left : tnode;
- constructor create(t:tnodetype;l : tnode);
- constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
- destructor destroy;override;
- procedure ppuwrite(ppufile:tcompilerppufile);override;
- procedure derefimpl;override;
- procedure concattolist(l : tlinkedlist);override;
- function ischild(p : tnode) : boolean;override;
- function docompare(p : tnode) : boolean;override;
- function getcopy : tnode;override;
- procedure insertintolist(l : tnodelist);override;
- procedure left_max;
- {$ifdef extdebug}
- procedure _dowrite;override;
- {$endif extdebug}
- end;
- pbinarynode = ^tbinarynode;
- tbinarynode = class(tunarynode)
- right : tnode;
- constructor create(t:tnodetype;l,r : tnode);
- constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
- destructor destroy;override;
- procedure ppuwrite(ppufile:tcompilerppufile);override;
- procedure derefimpl;override;
- procedure concattolist(l : tlinkedlist);override;
- function ischild(p : tnode) : boolean;override;
- function docompare(p : tnode) : boolean;override;
- procedure swapleftright;
- function getcopy : tnode;override;
- procedure insertintolist(l : tnodelist);override;
- procedure left_right_max;
- {$ifdef extdebug}
- procedure _dowrite;override;
- {$endif extdebug}
- end;
- tbinopnode = class(tbinarynode)
- constructor create(t:tnodetype;l,r : tnode);virtual;
- function docompare(p : tnode) : boolean;override;
- end;
- {$ifdef tempregdebug}
- type
- pptree = ^tnode;
- var
- curptree: pptree;
- {$endif tempregdebug}
- var
- { array with all class types for tnodes }
- nodeclass : tnodeclassarray;
- {$ifdef EXTDEBUG}
- { indention used when writing the tree to the screen }
- writenodeindention : string;
- {$endif EXTDEBUG}
- function ppuloadnode(ppufile:tcompilerppufile):tnode;
- procedure ppuwritenode(ppufile:tcompilerppufile;n:tnode);
- {$ifdef EXTDEBUG}
- procedure writenode(t:tnode);
- {$endif EXTDEBUG}
- implementation
- uses
- cutils,verbose;
- const
- ppunodemarker = 255;
- {****************************************************************************
- Helpers
- ****************************************************************************}
- function ppuloadnode(ppufile:tcompilerppufile):tnode;
- var
- b : byte;
- t : tnodetype;
- begin
- { marker }
- b:=ppufile.getbyte;
- if b<>ppunodemarker then
- internalerror(200208151);
- { load nodetype }
- t:=tnodetype(ppufile.getbyte);
- if t>high(tnodetype) then
- internalerror(200208152);
- if t<>emptynode then
- begin
- if not assigned(nodeclass[t]) then
- internalerror(200208153);
- //writeln('load: ',nodetype2str[t]);
- { generate node of the correct class }
- ppuloadnode:=nodeclass[t].ppuload(t,ppufile);
- end
- else
- ppuloadnode:=nil;
- end;
- procedure ppuwritenode(ppufile:tcompilerppufile;n:tnode);
- begin
- { marker, read by ppuloadnode }
- ppufile.putbyte(ppunodemarker);
- { type, read by ppuloadnode }
- if assigned(n) then
- begin
- ppufile.putbyte(byte(n.nodetype));
- //writeln('write: ',nodetype2str[n.nodetype]);
- n.ppuwrite(ppufile);
- end
- else
- ppufile.putbyte(byte(emptynode));
- end;
- {$ifdef EXTDEBUG}
- procedure writenode(t:tnode);
- begin
- if assigned(t) then
- t.dowrite
- else
- write(writenodeindention,'nil');
- if writenodeindention='' then
- writeln;
- end;
- {$endif EXTDEBUG}
- {****************************************************************************
- TNODE
- ****************************************************************************}
- constructor tnode.create(t:tnodetype);
- begin
- inherited create;
- nodetype:=t;
- blocktype:=block_type;
- { this allows easier error tracing }
- location.loc:=LOC_INVALID;
- { save local info }
- fileinfo:=aktfilepos;
- localswitches:=aktlocalswitches;
- resulttype.reset;
- registers32:=0;
- registersfpu:=0;
- {$ifdef SUPPORT_MMX}
- registersmmx:=0;
- {$endif SUPPORT_MMX}
- {$ifdef EXTDEBUG}
- maxfirstpasscount:=0;
- firstpasscount:=0;
- {$endif EXTDEBUG}
- flags:=[];
- end;
- constructor tnode.createforcopy;
- begin
- end;
- constructor tnode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
- begin
- nodetype:=t;
- { tnode fields }
- blocktype:=tblock_type(ppufile.getbyte);
- ppufile.getposinfo(fileinfo);
- ppufile.getsmallset(localswitches);
- ppufile.gettype(resulttype);
- ppufile.getsmallset(flags);
- { updated by firstpass }
- location.loc:=LOC_INVALID;
- registers32:=0;
- registersfpu:=0;
- {$ifdef SUPPORT_MMX}
- registersmmx:=0;
- {$endif SUPPORT_MMX}
- {$ifdef EXTDEBUG}
- maxfirstpasscount:=0;
- firstpasscount:=0;
- {$endif EXTDEBUG}
- end;
- procedure tnode.ppuwrite(ppufile:tcompilerppufile);
- begin
- ppufile.putbyte(byte(block_type));
- ppufile.putposinfo(fileinfo);
- ppufile.putsmallset(localswitches);
- ppufile.puttype(resulttype);
- ppufile.putsmallset(flags);
- end;
- procedure tnode.derefimpl;
- begin
- resulttype.resolve;
- end;
- procedure tnode.toggleflag(f : tnodeflags);
- begin
- if f in flags then
- exclude(flags,f)
- else
- include(flags,f);
- end;
- destructor tnode.destroy;
- begin
- {$ifdef EXTDEBUG}
- if firstpasscount>maxfirstpasscount then
- maxfirstpasscount:=firstpasscount;
- {$endif EXTDEBUG}
- end;
- procedure tnode.concattolist(l : tlinkedlist);
- begin
- end;
- function tnode.ischild(p : tnode) : boolean;
- begin
- ischild:=false;
- end;
- {$ifdef EXTDEBUG}
- procedure tnode._dowrite;
- begin
- dowritenodetype;
- if assigned(resulttype.def) then
- write(',resulttype = "',resulttype.def.gettypename,'"')
- else
- write(',resulttype = <nil>');
- write(',location.loc = ',ord(location.loc));
- write(',registersint = ',registers32);
- write(',registersfpu = ',registersfpu);
- end;
- procedure tnode.dowritenodetype;
- begin
- write(nodetype2str[nodetype]);
- end;
- procedure tnode.dowrite;
- begin
- write(writenodeindention,'(');
- writenodeindention:=writenodeindention+' ';
- _dowrite;
- writeln;
- delete(writenodeindention,1,4);
- write(writenodeindention,')');
- end;
- {$endif EXTDEBUG}
- function tnode.isequal(p : tnode) : boolean;
- begin
- isequal:=
- (not assigned(self) and not assigned(p)) or
- (assigned(self) and assigned(p) and
- { optimized subclasses have the same nodetype as their }
- { superclass (for compatibility), so also check the classtype (JM) }
- (p.classtype=classtype) and
- (p.nodetype=nodetype) and
- (flags*flagsequal=p.flags*flagsequal) and
- docompare(p));
- end;
- {$ifdef state_tracking}
- function Tnode.track_state_pass(exec_known:boolean):boolean;
- begin
- track_state_pass:=false;
- end;
- {$endif state_tracking}
- function tnode.docompare(p : tnode) : boolean;
- begin
- docompare:=true;
- end;
- function tnode.getcopy : tnode;
- var
- p : tnode;
- begin
- { this is quite tricky because we need a node of the current }
- { node type and not one of tnode! }
- p:=tnodeclass(classtype).createforcopy;
- p.nodetype:=nodetype;
- p.location:=location;
- p.parent:=parent;
- p.flags:=flags;
- p.registers32:=registers32;
- p.registersfpu:=registersfpu;
- {$ifdef SUPPORT_MMX}
- p.registersmmx:=registersmmx;
- p.registerskni:=registerskni;
- {$endif SUPPORT_MMX}
- p.resulttype:=resulttype;
- p.fileinfo:=fileinfo;
- p.localswitches:=localswitches;
- {$ifdef extdebug}
- p.firstpasscount:=firstpasscount;
- {$endif extdebug}
- { p.list:=list; }
- getcopy:=p;
- end;
- { procedure tnode.mark_write;
- begin
- end;}
- procedure tnode.insertintolist(l : tnodelist);
- begin
- end;
- procedure tnode.set_file_line(from : tnode);
- begin
- if assigned(from) then
- fileinfo:=from.fileinfo;
- end;
- procedure tnode.set_tree_filepos(const filepos : tfileposinfo);
- begin
- fileinfo:=filepos;
- end;
- {****************************************************************************
- TUNARYNODE
- ****************************************************************************}
- constructor tunarynode.create(t:tnodetype;l : tnode);
- begin
- inherited create(t);
- left:=l;
- end;
- constructor tunarynode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
- begin
- inherited ppuload(t,ppufile);
- left:=ppuloadnode(ppufile);
- end;
- destructor tunarynode.destroy;
- begin
- left.free;
- inherited destroy;
- end;
- procedure tunarynode.ppuwrite(ppufile:tcompilerppufile);
- begin
- inherited ppuwrite(ppufile);
- ppuwritenode(ppufile,left);
- end;
- procedure tunarynode.derefimpl;
- begin
- inherited derefimpl;
- if assigned(left) then
- left.derefimpl;
- end;
- function tunarynode.docompare(p : tnode) : boolean;
- begin
- docompare:=(inherited docompare(p) and
- ((left=nil) or left.isequal(tunarynode(p).left))
- );
- end;
- function tunarynode.getcopy : tnode;
- var
- p : tunarynode;
- begin
- p:=tunarynode(inherited getcopy);
- if assigned(left) then
- p.left:=left.getcopy
- else
- p.left:=nil;
- getcopy:=p;
- end;
- procedure tunarynode.insertintolist(l : tnodelist);
- begin
- end;
- {$ifdef extdebug}
- procedure tunarynode._dowrite;
- begin
- inherited _dowrite;
- writeln(',');
- writenode(left);
- end;
- {$endif}
- procedure tunarynode.left_max;
- begin
- registers32:=left.registers32;
- registersfpu:=left.registersfpu;
- {$ifdef SUPPORT_MMX}
- registersmmx:=left.registersmmx;
- {$endif SUPPORT_MMX}
- end;
- procedure tunarynode.concattolist(l : tlinkedlist);
- begin
- left.parent:=self;
- left.concattolist(l);
- inherited concattolist(l);
- end;
- function tunarynode.ischild(p : tnode) : boolean;
- begin
- ischild:=p=left;
- end;
- {****************************************************************************
- TBINARYNODE
- ****************************************************************************}
- constructor tbinarynode.create(t:tnodetype;l,r : tnode);
- begin
- inherited create(t,l);
- right:=r
- end;
- constructor tbinarynode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
- begin
- inherited ppuload(t,ppufile);
- right:=ppuloadnode(ppufile);
- end;
- destructor tbinarynode.destroy;
- begin
- right.free;
- inherited destroy;
- end;
- procedure tbinarynode.ppuwrite(ppufile:tcompilerppufile);
- begin
- inherited ppuwrite(ppufile);
- ppuwritenode(ppufile,right);
- end;
- procedure tbinarynode.derefimpl;
- begin
- inherited derefimpl;
- if assigned(right) then
- right.derefimpl;
- end;
- procedure tbinarynode.concattolist(l : tlinkedlist);
- begin
- { we could change that depending on the number of }
- { required registers }
- left.parent:=self;
- left.concattolist(l);
- left.parent:=self;
- left.concattolist(l);
- inherited concattolist(l);
- end;
- function tbinarynode.ischild(p : tnode) : boolean;
- begin
- ischild:=(p=right);
- end;
- function tbinarynode.docompare(p : tnode) : boolean;
- begin
- docompare:=(inherited docompare(p) and
- ((right=nil) or right.isequal(tbinarynode(p).right))
- );
- end;
- function tbinarynode.getcopy : tnode;
- var
- p : tbinarynode;
- begin
- p:=tbinarynode(inherited getcopy);
- if assigned(right) then
- p.right:=right.getcopy
- else
- p.right:=nil;
- getcopy:=p;
- end;
- procedure tbinarynode.insertintolist(l : tnodelist);
- begin
- end;
- procedure tbinarynode.swapleftright;
- var
- swapp : tnode;
- begin
- swapp:=right;
- right:=left;
- left:=swapp;
- if nf_swaped in flags then
- exclude(flags,nf_swaped)
- else
- include(flags,nf_swaped);
- end;
- procedure tbinarynode.left_right_max;
- begin
- if assigned(left) then
- begin
- if assigned(right) then
- begin
- registers32:=max(left.registers32,right.registers32);
- registersfpu:=max(left.registersfpu,right.registersfpu);
- {$ifdef SUPPORT_MMX}
- registersmmx:=max(left.registersmmx,right.registersmmx);
- {$endif SUPPORT_MMX}
- end
- else
- begin
- registers32:=left.registers32;
- registersfpu:=left.registersfpu;
- {$ifdef SUPPORT_MMX}
- registersmmx:=left.registersmmx;
- {$endif SUPPORT_MMX}
- end;
- end;
- end;
- {$ifdef extdebug}
- procedure tbinarynode._dowrite;
- begin
- inherited _dowrite;
- writeln(',');
- writenode(right);
- end;
- {$endif}
- {****************************************************************************
- TBINOPYNODE
- ****************************************************************************}
- constructor tbinopnode.create(t:tnodetype;l,r : tnode);
- begin
- inherited create(t,l,r);
- end;
- function tbinopnode.docompare(p : tnode) : boolean;
- begin
- docompare:=(inherited docompare(p)) or
- { if that's in the flags, is p then always a tbinopnode (?) (JM) }
- ((nf_swapable in flags) and
- left.isequal(tbinopnode(p).right) and
- right.isequal(tbinopnode(p).left));
- end;
- end.
- {
- $Log$
- Revision 1.52 2003-04-10 17:57:52 peter
- * vs_hidden released
- Revision 1.51 2003/03/28 19:16:56 peter
- * generic constructor working for i386
- * remove fixed self register
- * esi added as address register for i386
- Revision 1.50 2003/03/17 16:54:41 peter
- * support DefaultHandler and anonymous inheritance fixed
- for message methods
- Revision 1.49 2003/01/04 15:54:03 daniel
- * Fixed mark_write for @ operator
- (can happen when compiling @procvar:=nil (Delphi mode construction))
- Revision 1.48 2003/01/03 21:03:02 peter
- * made mark_write dummy instead of abstract
- Revision 1.47 2003/01/03 12:15:56 daniel
- * Removed ifdefs around notifications
- ifdefs around for loop optimizations remain
- Revision 1.46 2002/12/26 18:24:33 jonas
- * fixed check for whether or not a high parameter was already generated
- * no type checking/conversions for invisible parameters
- Revision 1.45 2002/11/28 11:17:04 florian
- * loop node flags from node flags splitted
- Revision 1.44 2002/10/05 00:48:57 peter
- * support inherited; support for overload as it is handled by
- delphi. This is only for delphi mode as it is working is
- undocumented and hard to predict what is done
- Revision 1.43 2002/09/07 15:25:03 peter
- * old logs removed and tabs fixed
- Revision 1.42 2002/09/03 16:26:26 daniel
- * Make Tprocdef.defs protected
- Revision 1.41 2002/09/01 13:28:38 daniel
- - write_access fields removed in favor of a flag
- Revision 1.40 2002/09/01 08:01:16 daniel
- * Removed sets from Tcallnode.det_resulttype
- + Added read/write notifications of variables. These will be usefull
- for providing information for several optimizations. For example
- the value of the loop variable of a for loop does matter is the
- variable is read after the for loop, but if it's no longer used
- or written, it doesn't matter and this can be used to optimize
- the loop code generation.
- Revision 1.39 2002/08/22 11:21:45 florian
- + register32 is now written by tnode.dowrite
- * fixed write of value of tconstnode
- Revision 1.38 2002/08/19 19:36:44 peter
- * More fixes for cross unit inlining, all tnodes are now implemented
- * Moved pocall_internconst to po_internconst because it is not a
- calling type at all and it conflicted when inlining of these small
- functions was requested
- Revision 1.37 2002/08/18 20:06:24 peter
- * inlining is now also allowed in interface
- * renamed write/load to ppuwrite/ppuload
- * tnode storing in ppu
- * nld,ncon,nbas are already updated for storing in ppu
- Revision 1.36 2002/08/17 22:09:46 florian
- * result type handling in tcgcal.pass_2 overhauled
- * better tnode.dowrite
- * some ppc stuff fixed
- Revision 1.35 2002/08/15 19:10:35 peter
- * first things tai,tnode storing in ppu
- Revision 1.34 2002/08/09 19:15:41 carl
- - removed newcg define
- Revision 1.33 2002/07/23 12:34:30 daniel
- * Readded old set code. To use it define 'oldset'. Activated by default
- for ppc.
- Revision 1.32 2002/07/22 11:48:04 daniel
- * Sets are now internally sets.
- Revision 1.31 2002/07/21 06:58:49 daniel
- * Changed booleans into flags
- Revision 1.30 2002/07/19 11:41:36 daniel
- * State tracker work
- * The whilen and repeatn are now completely unified into whilerepeatn. This
- allows the state tracker to change while nodes automatically into
- repeat nodes.
- * Resulttypepass improvements to the notn. 'not not a' is optimized away and
- 'not(a>b)' is optimized into 'a<=b'.
- * Resulttypepass improvements to the whilerepeatn. 'while not a' is optimized
- by removing the notn and later switchting the true and falselabels. The
- same is done with 'repeat until not a'.
- Revision 1.29 2002/07/14 18:00:44 daniel
- + Added the beginning of a state tracker. This will track the values of
- variables through procedures and optimize things away.
- Revision 1.28 2002/07/01 18:46:24 peter
- * internal linker
- * reorganized aasm layer
- Revision 1.27 2002/05/18 13:34:10 peter
- * readded missing revisions
- Revision 1.26 2002/05/16 19:46:39 carl
- + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
- + try to fix temp allocation (still in ifdef)
- + generic constructor calls
- + start of tassembler / tmodulebase class cleanup
- Revision 1.24 2002/04/21 19:02:04 peter
- * removed newn and disposen nodes, the code is now directly
- inlined from pexpr
- * -an option that will write the secondpass nodes to the .s file, this
- requires EXTDEBUG define to actually write the info
- * fixed various internal errors and crashes due recent code changes
- Revision 1.23 2002/04/06 18:13:01 jonas
- * several powerpc-related additions and fixes
- Revision 1.22 2002/03/31 20:26:35 jonas
- + a_loadfpu_* and a_loadmm_* methods in tcg
- * register allocation is now handled by a class and is mostly processor
- independent (+rgobj.pas and i386/rgcpu.pas)
- * temp allocation is now handled by a class (+tgobj.pas, -i386\tgcpu.pas)
- * some small improvements and fixes to the optimizer
- * some register allocation fixes
- * some fpuvaroffset fixes in the unary minus node
- * push/popusedregisters is now called rg.save/restoreusedregisters and
- (for i386) uses temps instead of push/pop's when using -Op3 (that code is
- also better optimizable)
- * fixed and optimized register saving/restoring for new/dispose nodes
- * LOC_FPU locations now also require their "register" field to be set to
- R_ST, not R_ST0 (the latter is used for LOC_CFPUREGISTER locations only)
- - list field removed of the tnode class because it's not used currently
- and can cause hard-to-find bugs
- }
|