12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040 |
- {
- Copyright (c) 2000-2005 by Florian Klaempfl
- Type checking and register allocation for math nodes
- 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 nmat;
- {$i fpcdefs.inc}
- interface
- uses
- node;
- type
- tmoddivnode = class(tbinopnode)
- function pass_1 : tnode;override;
- function pass_typecheck:tnode;override;
- function simplify(forinline : boolean) : tnode;override;
- protected
- {$ifndef cpu64bitalu}
- { override the following if you want to implement }
- { parts explicitely in the code generator (JM) }
- function first_moddiv64bitint: tnode; virtual;
- {$endif not cpu64bitalu}
- function firstoptimize: tnode; virtual;
- function first_moddivint: tnode; virtual;
- end;
- tmoddivnodeclass = class of tmoddivnode;
- tshlshrnode = class(tbinopnode)
- function pass_1 : tnode;override;
- function pass_typecheck:tnode;override;
- function simplify(forinline : boolean) : tnode;override;
- {$ifndef cpu64bitalu}
- { override the following if you want to implement }
- { parts explicitely in the code generator (CEC)
- Should return nil, if everything will be handled
- in the code generator
- }
- function first_shlshr64bitint: tnode; virtual;
- {$endif not cpu64bitalu}
- end;
- tshlshrnodeclass = class of tshlshrnode;
- tunaryminusnode = class(tunarynode)
- constructor create(expr : tnode);virtual;
- function pass_1 : tnode;override;
- function pass_typecheck:tnode;override;
- function simplify(forinline : boolean) : tnode;override;
- end;
- tunaryminusnodeclass = class of tunaryminusnode;
- tunaryplusnode = class(tunarynode)
- constructor create(expr : tnode);virtual;
- function pass_1 : tnode;override;
- function pass_typecheck:tnode;override;
- end;
- tunaryplusnodeclass = class of tunaryplusnode;
- tnotnode = class(tunarynode)
- constructor create(expr : tnode);virtual;
- function pass_1 : tnode;override;
- function pass_typecheck:tnode;override;
- function simplify(forinline : boolean) : tnode;override;
- {$ifdef state_tracking}
- function track_state_pass(exec_known:boolean):boolean;override;
- {$endif}
- end;
- tnotnodeclass = class of tnotnode;
- var
- cmoddivnode : tmoddivnodeclass = tmoddivnode;
- cshlshrnode : tshlshrnodeclass = tshlshrnode;
- cunaryminusnode : tunaryminusnodeclass = tunaryminusnode;
- cunaryplusnode : tunaryplusnodeclass = tunaryplusnode;
- cnotnode : tnotnodeclass = tnotnode;
- implementation
- uses
- systems,
- verbose,globals,cutils,
- globtype,constexp,
- symconst,symtype,symdef,symtable,
- defutil,
- htypechk,pass_1,
- cgbase,
- ncon,ncnv,ncal,nadd,
- nutils;
- {****************************************************************************
- TMODDIVNODE
- ****************************************************************************}
- function tmoddivnode.simplify(forinline : boolean):tnode;
- var
- t : tnode;
- rv,lv : tconstexprint;
- begin
- result:=nil;
- if is_constintnode(right) then
- begin
- if tordconstnode(right).value = 1 then
- begin
- case nodetype of
- modn:
- result := cordconstnode.create(0,left.resultdef,true);
- divn:
- result := left.getcopy;
- end;
- exit;
- end;
- if tordconstnode(right).value = 0 then
- begin
- Message(parser_e_division_by_zero);
- { recover }
- tordconstnode(right).value := 1;
- end;
- end;
- if is_constintnode(right) and is_constintnode(left) then
- begin
- rv:=tordconstnode(right).value;
- lv:=tordconstnode(left).value;
- case nodetype of
- modn:
- t:=create_simplified_ord_const(lv mod rv,resultdef,forinline);
- divn:
- t:=create_simplified_ord_const(lv div rv,resultdef,forinline);
- end;
- result:=t;
- exit;
- end;
- end;
- function tmoddivnode.pass_typecheck:tnode;
- var
- hp,t : tnode;
- rd,ld : torddef;
- begin
- result:=nil;
- typecheckpass(left);
- typecheckpass(right);
- set_varstate(left,vs_read,[vsf_must_be_valid]);
- set_varstate(right,vs_read,[vsf_must_be_valid]);
- if codegenerror then
- exit;
- { tp procvar support }
- maybe_call_procvar(left,true);
- maybe_call_procvar(right,true);
- result:=simplify(false);
- if assigned(result) then
- exit;
- { allow operator overloading }
- t:=self;
- if isbinaryoverloaded(t) then
- begin
- result:=t;
- exit;
- end;
- { we need 2 orddefs always }
- if (left.resultdef.typ<>orddef) then
- inserttypeconv(right,sinttype);
- if (right.resultdef.typ<>orddef) then
- inserttypeconv(right,sinttype);
- if codegenerror then
- exit;
- rd:=torddef(right.resultdef);
- ld:=torddef(left.resultdef);
- { if one operand is a cardinal and the other is a positive constant, convert the }
- { constant to a cardinal as well so we don't have to do a 64bit division (JM) }
- { Do the same for qwords and positive constants as well, otherwise things like }
- { "qword mod 10" are evaluated with int64 as result, which is wrong if the }
- { "qword" was > high(int64) (JM) }
- { Additionally, do the same for cardinal/qwords and other positive types, but }
- { always in a way that a smaller type is converted to a bigger type }
- { (webtbs/tw8870) }
- if (rd.ordtype in [u32bit,u64bit]) and
- ((is_constintnode(left) and
- (tordconstnode(left).value >= 0)) or
- (not is_signed(ld) and
- (rd.size >= ld.size))) then
- begin
- inserttypeconv(left,right.resultdef);
- ld:=torddef(left.resultdef);
- end;
- if (ld.ordtype in [u32bit,u64bit]) and
- ((is_constintnode(right) and
- (tordconstnode(right).value >= 0)) or
- (not is_signed(rd) and
- (ld.size >= rd.size))) then
- begin
- inserttypeconv(right,left.resultdef);
- rd:=torddef(right.resultdef);
- end;
- { when there is one currency value, everything is done
- using currency }
- if (ld.ordtype=scurrency) or
- (rd.ordtype=scurrency) then
- begin
- if (ld.ordtype<>scurrency) then
- inserttypeconv(left,s64currencytype);
- if (rd.ordtype<>scurrency) then
- inserttypeconv(right,s64currencytype);
- resultdef:=left.resultdef;
- end
- else
- {$ifndef cpu64bitaddr}
- { when there is one 64bit value, everything is done
- in 64bit }
- if (is_64bitint(left.resultdef) or
- is_64bitint(right.resultdef)) then
- begin
- if is_signed(rd) or is_signed(ld) then
- begin
- if (ld.ordtype<>s64bit) then
- inserttypeconv(left,s64inttype);
- if (rd.ordtype<>s64bit) then
- inserttypeconv(right,s64inttype);
- end
- else
- begin
- if (ld.ordtype<>u64bit) then
- inserttypeconv(left,u64inttype);
- if (rd.ordtype<>u64bit) then
- inserttypeconv(right,u64inttype);
- end;
- resultdef:=left.resultdef;
- end
- else
- { when mixing cardinals and signed numbers, convert everythign to 64bit (JM) }
- if ((rd.ordtype = u32bit) and
- is_signed(ld)) or
- ((ld.ordtype = u32bit) and
- is_signed(rd)) then
- begin
- CGMessage(type_h_mixed_signed_unsigned);
- if (ld.ordtype<>s64bit) then
- inserttypeconv(left,s64inttype);
- if (rd.ordtype<>s64bit) then
- inserttypeconv(right,s64inttype);
- resultdef:=left.resultdef;
- end
- else
- {$endif not cpu64bitaddr}
- begin
- { Make everything always default singed int }
- if not(rd.ordtype in [torddef(sinttype).ordtype,torddef(uinttype).ordtype]) then
- inserttypeconv(right,sinttype);
- if not(ld.ordtype in [torddef(sinttype).ordtype,torddef(uinttype).ordtype]) then
- inserttypeconv(left,sinttype);
- resultdef:=right.resultdef;
- end;
- { when the result is currency we need some extra code for
- division. this should not be done when the divn node is
- created internally }
- if (nodetype=divn) and
- not(nf_is_currency in flags) and
- is_currency(resultdef) then
- begin
- hp:=caddnode.create(muln,getcopy,cordconstnode.create(10000,s64currencytype,false));
- include(hp.flags,nf_is_currency);
- result:=hp;
- end;
- end;
- function tmoddivnode.first_moddivint: tnode;
- {$ifdef cpuneedsdiv32helper}
- var
- procname: string[31];
- begin
- result := nil;
- { otherwise create a call to a helper }
- if nodetype = divn then
- procname := 'fpc_div_'
- else
- procname := 'fpc_mod_';
- { only qword needs the unsigned code, the
- signed code is also used for currency }
- if is_signed(resultdef) then
- procname := procname + 'longint'
- else
- procname := procname + 'dword';
- result := ccallnode.createintern(procname,ccallparanode.create(left,
- ccallparanode.create(right,nil)));
- left := nil;
- right := nil;
- firstpass(result);
- end;
- {$else cpuneedsdiv32helper}
- begin
- result:=nil;
- end;
- {$endif cpuneedsdiv32helper}
- {$ifndef cpu64bitalu}
- function tmoddivnode.first_moddiv64bitint: tnode;
- var
- procname: string[31];
- begin
- result := nil;
- { when currency is used set the result of the
- parameters to s64bit, so they are not converted }
- if is_currency(resultdef) then
- begin
- left.resultdef:=s64inttype;
- right.resultdef:=s64inttype;
- end;
- { otherwise create a call to a helper }
- if nodetype = divn then
- procname := 'fpc_div_'
- else
- procname := 'fpc_mod_';
- { only qword needs the unsigned code, the
- signed code is also used for currency }
- if is_signed(resultdef) then
- procname := procname + 'int64'
- else
- procname := procname + 'qword';
- result := ccallnode.createintern(procname,ccallparanode.create(left,
- ccallparanode.create(right,nil)));
- left := nil;
- right := nil;
- firstpass(result);
- end;
- {$endif not cpu64bitalu}
- function tmoddivnode.firstoptimize: tnode;
- var
- power{,shiftval} : longint;
- newtype: tnodetype;
- begin
- result := nil;
- { divide/mod a number by a constant which is a power of 2? }
- if (cs_opt_peephole in current_settings.optimizerswitches) and
- (right.nodetype = ordconstn) and
- { ((nodetype = divn) or
- not is_signed(resultdef)) and}
- (not is_signed(resultdef)) and
- ispowerof2(tordconstnode(right).value,power) then
- begin
- if nodetype = divn then
- begin
- (*
- if is_signed(resultdef) then
- begin
- if is_64bitint(left.resultdef) then
- if not (cs_opt_size in current_settings.optimizerswitches) then
- shiftval := 63
- else
- { the shift code is a lot bigger than the call to }
- { the divide helper }
- exit
- else
- shiftval := 31;
- { we reuse left twice, so create once a copy of it }
- { !!! if left is a call is -> call gets executed twice }
- left := caddnode.create(addn,left,
- caddnode.create(andn,
- cshlshrnode.create(sarn,left.getcopy,
- cordconstnode.create(shiftval,sinttype,false)),
- cordconstnode.create(tordconstnode(right).value-1,
- right.resultdef,false)));
- newtype := sarn;
- end
- else
- *)
- newtype := shrn;
- tordconstnode(right).value := power;
- result := cshlshrnode.create(newtype,left,right)
- end
- else
- begin
- dec(tordconstnode(right).value.uvalue);
- result := caddnode.create(andn,left,right);
- end;
- { left and right are reused }
- left := nil;
- right := nil;
- firstpass(result);
- exit;
- end;
- end;
- function tmoddivnode.pass_1 : tnode;
- begin
- result:=nil;
- firstpass(left);
- firstpass(right);
- if codegenerror then
- exit;
- { Try to optimize mod/div }
- result := firstoptimize;
- if assigned(result) then
- exit;
- {$ifndef cpu64bitalu}
- { 64bit }
- if (left.resultdef.typ=orddef) and
- (right.resultdef.typ=orddef) and
- (is_64bitint(left.resultdef) or is_64bitint(right.resultdef)) then
- begin
- result := first_moddiv64bitint;
- if assigned(result) then
- exit;
- expectloc:=LOC_REGISTER;
- end
- else
- {$endif not cpu64bitalu}
- begin
- result := first_moddivint;
- if assigned(result) then
- exit;
- end;
- expectloc:=LOC_REGISTER;
- end;
- {****************************************************************************
- TSHLSHRNODE
- ****************************************************************************}
- function tshlshrnode.simplify(forinline : boolean):tnode;
- var
- t : tnode;
- begin
- result:=nil;
- { constant folding }
- if is_constintnode(left) and is_constintnode(right) then
- begin
- case nodetype of
- shrn:
- t:=create_simplified_ord_const(tordconstnode(left).value shr tordconstnode(right).value,resultdef,forinline);
- shln:
- t:=create_simplified_ord_const(tordconstnode(left).value shl tordconstnode(right).value,resultdef,forinline);
- end;
- result:=t;
- exit;
- end;
- end;
- function tshlshrnode.pass_typecheck:tnode;
- var
- t : tnode;
- nd : tdef;
- begin
- result:=nil;
- typecheckpass(left);
- typecheckpass(right);
- set_varstate(right,vs_read,[vsf_must_be_valid]);
- set_varstate(left,vs_read,[vsf_must_be_valid]);
- if codegenerror then
- exit;
- { tp procvar support }
- maybe_call_procvar(left,true);
- maybe_call_procvar(right,true);
- result:=simplify(false);
- if assigned(result) then
- exit;
- { allow operator overloading }
- t:=self;
- if isbinaryoverloaded(t) then
- begin
- result:=t;
- exit;
- end;
- {$ifdef cpunodefaultint}
- { for small cpus we use the smallest common type }
- if (left.resultdef.typ=orddef) and (right.resultdef.typ=orddef) then
- nd:=get_common_intdef(torddef(left.resultdef),torddef(right.resultdef),false)
- else
- nd:=s32inttype;
- {$endif cpunodefaultint}
- { calculations for ordinals < 32 bit have to be done in
- 32 bit for backwards compatibility. That way 'shl 33' is
- the same as 'shl 1'. It's ugly but compatible with delphi/tp/gcc }
- if (not is_64bit(left.resultdef)) and
- (torddef(left.resultdef).ordtype<>u32bit) then
- begin
- { keep singness of orignal type }
- if is_signed(left.resultdef) then
- {$ifdef cpunodefaultint}
- inserttypeconv(left,nd)
- {$else cpunodefaultint}
- inserttypeconv(left,s32inttype)
- {$endif cpunodefaultint}
- else
- begin
- {$ifdef cpunodefaultint}
- inserttypeconv(left,nd)
- {$else cpunodefaultint}
- inserttypeconv(left,u32inttype);
- {$endif cpunodefaultint}
- end
- end;
- {$ifdef cpunodefaultint}
- inserttypeconv(right,nd);
- {$else cpunodefaultint}
- inserttypeconv(right,sinttype);
- {$endif cpunodefaultint}
- resultdef:=left.resultdef;
- end;
- {$ifndef cpu64bitalu}
- function tshlshrnode.first_shlshr64bitint: tnode;
- var
- procname: string[31];
- begin
- result := nil;
- { otherwise create a call to a helper }
- if nodetype = shln then
- procname := 'fpc_shl_int64'
- else
- procname := 'fpc_shr_int64';
- { this order of parameters works at least for the arm,
- however it should work for any calling conventions (FK) }
- result := ccallnode.createintern(procname,ccallparanode.create(right,
- ccallparanode.create(left,nil)));
- left := nil;
- right := nil;
- firstpass(result);
- end;
- {$endif not cpu64bitalu}
- function tshlshrnode.pass_1 : tnode;
- var
- regs : longint;
- begin
- result:=nil;
- firstpass(left);
- firstpass(right);
- if codegenerror then
- exit;
- {$ifndef cpu64bitalu}
- { 64 bit ints have their own shift handling }
- if is_64bit(left.resultdef) then
- begin
- result := first_shlshr64bitint;
- if assigned(result) then
- exit;
- regs:=2;
- end
- else
- {$endif not cpu64bitalu}
- begin
- regs:=1
- end;
- if (right.nodetype<>ordconstn) then
- inc(regs);
- expectloc:=LOC_REGISTER;
- end;
- {****************************************************************************
- TUNARYMINUSNODE
- ****************************************************************************}
- constructor tunaryminusnode.create(expr : tnode);
- begin
- inherited create(unaryminusn,expr);
- end;
- function tunaryminusnode.simplify(forinline : boolean):tnode;
- begin
- result:=nil;
- { constant folding }
- if is_constintnode(left) then
- begin
- result:=create_simplified_ord_const(-tordconstnode(left).value,resultdef,forinline);
- exit;
- end;
- if is_constrealnode(left) then
- begin
- trealconstnode(left).value_real:=-trealconstnode(left).value_real;
- trealconstnode(left).value_currency:=-trealconstnode(left).value_currency;
- result:=left;
- left:=nil;
- exit;
- end;
- end;
- function tunaryminusnode.pass_typecheck : tnode;
- var
- t : tnode;
- begin
- result:=nil;
- typecheckpass(left);
- set_varstate(left,vs_read,[vsf_must_be_valid]);
- if codegenerror then
- exit;
- result:=simplify(false);
- if assigned(result) then
- exit;
- resultdef:=left.resultdef;
- if (left.resultdef.typ=floatdef) or
- is_currency(left.resultdef) then
- begin
- end
- {$ifdef SUPPORT_MMX}
- else if (cs_mmx in current_settings.localswitches) and
- is_mmx_able_array(left.resultdef) then
- begin
- { if saturation is on, left.resultdef isn't
- "mmx able" (FK)
- if (cs_mmx_saturation in current_settings.localswitches^) and
- (torddef(tarraydef(resultdef).definition).typ in
- [s32bit,u32bit]) then
- CGMessage(type_e_mismatch);
- }
- end
- {$endif SUPPORT_MMX}
- {$ifndef cpu64bitaddr}
- else if is_64bit(left.resultdef) then
- begin
- inserttypeconv(left,s64inttype);
- resultdef:=left.resultdef
- end
- {$endif not cpu64bitaddr}
- else if (left.resultdef.typ=orddef) then
- begin
- inserttypeconv(left,sinttype);
- resultdef:=left.resultdef
- end
- else
- begin
- { allow operator overloading }
- t:=self;
- if isunaryoverloaded(t) then
- begin
- result:=t;
- exit;
- end;
- CGMessage(type_e_mismatch);
- end;
- end;
- { generic code }
- { overridden by: }
- { i386 }
- function tunaryminusnode.pass_1 : tnode;
- var
- procname: string[31];
- fdef : tdef;
- begin
- result:=nil;
- firstpass(left);
- if codegenerror then
- exit;
- if (cs_fp_emulation in current_settings.moduleswitches) and (left.resultdef.typ=floatdef) then
- begin
- if not(target_info.system in systems_wince) then
- begin
- case tfloatdef(resultdef).floattype of
- s32real:
- begin
- procname:='float32_sub';
- fdef:=search_system_type('FLOAT32REC').typedef;
- end;
- s64real:
- begin
- procname:='float64_sub';
- fdef:=search_system_type('FLOAT64').typedef;
- end;
- {!!! not yet implemented
- s128real:
- }
- else
- internalerror(2005082801);
- end;
- result:=ctypeconvnode.create_internal(ccallnode.createintern(procname,ccallparanode.create(
- ctypeconvnode.create_internal(left,fDef),
- ccallparanode.create(ctypeconvnode.create_internal(crealconstnode.create(0,resultdef),fdef),nil))),resultdef);
- end
- else
- begin
- case tfloatdef(resultdef).floattype of
- s32real:
- procname:='NEGS';
- s64real:
- procname:='NEGD';
- {!!! not yet implemented
- s128real:
- }
- else
- internalerror(2005082802);
- end;
- result:=ccallnode.createintern(procname,ccallparanode.create(left,nil));
- end;
- left:=nil;
- end
- else
- begin
- if (left.resultdef.typ=floatdef) then
- expectloc:=LOC_FPUREGISTER
- {$ifdef SUPPORT_MMX}
- else if (cs_mmx in current_settings.localswitches) and
- is_mmx_able_array(left.resultdef) then
- expectloc:=LOC_MMXREGISTER
- {$endif SUPPORT_MMX}
- else if (left.resultdef.typ=orddef) then
- expectloc:=LOC_REGISTER;
- end;
- end;
- {****************************************************************************
- TUNARYPLUSNODE
- ****************************************************************************}
- constructor tunaryplusnode.create(expr: tnode);
- begin
- inherited create(unaryplusn,expr);
- end;
- function tunaryplusnode.pass_1: tnode;
- begin
- result:=nil;
- { can never happen because all the conversions happen
- in pass_typecheck }
- internalerror(201012250);
- end;
- function tunaryplusnode.pass_typecheck: tnode;
- var
- t:tnode;
- begin
- result:=nil;
- typecheckpass(left);
- set_varstate(left,vs_read,[vsf_must_be_valid]);
- if codegenerror then
- exit;
- if is_constintnode(left) or
- is_constrealnode(left) or
- (left.resultdef.typ=floatdef) or
- is_currency(left.resultdef)
- {$ifdef SUPPORT_MMX}
- or ((cs_mmx in current_settings.localswitches) and
- is_mmx_able_array(left.resultdef))
- {$endif SUPPORT_MMX}
- then
- begin
- result:=left;
- left:=nil;
- end
- {$ifndef cpu64bitaddr}
- else if is_64bit(left.resultdef) then
- begin
- inserttypeconv(left,s64inttype);
- result:=left;
- left:=nil;
- end
- {$endif not cpu64bitaddr}
- else if (left.resultdef.typ=orddef) then
- begin
- inserttypeconv(left,sinttype);
- result:=left;
- left:=nil;
- end
- else
- begin
- { allow operator overloading }
- t:=self;
- if isunaryoverloaded(t) then
- begin
- result:=t;
- exit;
- end;
- CGMessage(type_e_mismatch);
- end;
- end;
- {****************************************************************************
- TNOTNODE
- ****************************************************************************}
- const
- boolean_reverse:array[ltn..unequaln] of Tnodetype=(
- gten,gtn,lten,ltn,unequaln,equaln
- );
- constructor tnotnode.create(expr : tnode);
- begin
- inherited create(notn,expr);
- end;
- function tnotnode.simplify(forinline : boolean):tnode;
- var
- v : tconstexprint;
- t : tnode;
- def : tdef;
- begin
- result:=nil;
- { Try optmimizing ourself away }
- if left.nodetype=notn then
- begin
- { Double not. Remove both }
- result:=Tnotnode(left).left;
- tnotnode(left).left:=nil;
- exit;
- end;
- if (left.nodetype in [ltn,lten,equaln,unequaln,gtn,gten]) then
- begin
- { Not of boolean expression. Turn around the operator and remove
- the not. This is not allowed for sets with the gten/lten,
- because there is no ltn/gtn support }
- if (taddnode(left).left.resultdef.typ<>setdef) or
- (left.nodetype in [equaln,unequaln]) then
- begin
- result:=left;
- left.nodetype:=boolean_reverse[left.nodetype];
- left:=nil;
- exit;
- end;
- end;
- { constant folding }
- if (left.nodetype=ordconstn) then
- begin
- v:=tordconstnode(left).value;
- def:=left.resultdef;
- case torddef(left.resultdef).ordtype of
- pasbool,
- bool8bit,
- bool16bit,
- bool32bit,
- bool64bit:
- begin
- v:=byte(not(boolean(int64(v))));
- if (torddef(left.resultdef).ordtype<>pasbool) then
- v:=-v;
- end;
- uchar,
- uwidechar,
- u8bit,
- s8bit,
- u16bit,
- s16bit,
- s32bit,
- {$ifdef cpu64bitaddr}
- u32bit,
- {$endif cpu64bitaddr}
- s64bit:
- begin
- v:=int64(not int64(v));
- if (torddef(left.resultdef).ordtype<>s64bit) then
- def:=sinttype
- else
- def:=s64inttype;
- end;
- {$ifndef cpu64bitaddr}
- u32bit,
- {$endif not cpu64bitaddr}
- u64bit :
- begin
- { Delphi-compatible: not dword = dword (not word = longint) }
- { Extension: not qword = qword }
- v:=qword(not qword(v));
- { will be truncated by the ordconstnode for u32bit }
- end;
- else
- CGMessage(type_e_mismatch);
- end;
- if not forinline then
- t:=cordconstnode.create(v,def,false)
- else
- t:=create_simplified_ord_const(v,resultdef,true);
- result:=t;
- exit;
- end;
- end;
- function tnotnode.pass_typecheck : tnode;
- var
- t : tnode;
- begin
- result:=nil;
- typecheckpass(left);
- set_varstate(left,vs_read,[vsf_must_be_valid]);
- if codegenerror then
- exit;
- { tp procvar support }
- maybe_call_procvar(left,true);
- resultdef:=left.resultdef;
- result:=simplify(false);
- if assigned(result) then
- exit;
- if is_boolean(resultdef) then
- begin
- end
- else
- {$ifdef SUPPORT_MMX}
- if (cs_mmx in current_settings.localswitches) and
- is_mmx_able_array(left.resultdef) then
- begin
- end
- else
- {$endif SUPPORT_MMX}
- {$ifndef cpu64bitaddr}
- if is_64bitint(left.resultdef) then
- begin
- end
- else
- {$endif not cpu64bitaddr}
- if is_integer(left.resultdef) then
- begin
- end
- else
- begin
- { allow operator overloading }
- t:=self;
- if isunaryoverloaded(t) then
- begin
- result:=t;
- exit;
- end;
- CGMessage(type_e_mismatch);
- end;
- end;
- function tnotnode.pass_1 : tnode;
- begin
- result:=nil;
- firstpass(left);
- if codegenerror then
- exit;
- expectloc:=left.expectloc;
- if is_boolean(resultdef) then
- begin
- if (expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
- expectloc:=LOC_REGISTER;
- { before loading it into flags we need to load it into
- a register thus 1 register is need PM }
- {$ifdef cpuflags}
- if left.expectloc<>LOC_JUMP then
- expectloc:=LOC_FLAGS;
- {$endif def cpuflags}
- end
- else
- {$ifdef SUPPORT_MMX}
- if (cs_mmx in current_settings.localswitches) and
- is_mmx_able_array(left.resultdef) then
- expectloc:=LOC_MMXREGISTER
- else
- {$endif SUPPORT_MMX}
- {$ifndef cpu64bitalu}
- if is_64bit(left.resultdef) then
- begin
- if (expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
- expectloc:=LOC_REGISTER;
- end
- else
- {$endif not cpu64bitalu}
- if is_integer(left.resultdef) then
- expectloc:=LOC_REGISTER;
- end;
- {$ifdef state_tracking}
- function Tnotnode.track_state_pass(exec_known:boolean):boolean;
- begin
- track_state_pass:=true;
- if left.track_state_pass(exec_known) then
- begin
- left.resultdef:=nil;
- do_typecheckpass(left);
- end;
- end;
- {$endif}
- end.
|