1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393 |
- {
- $Id$
- Copyright (c) 1998-2000 by Florian Klaempfl
- Type checking and register allocation for inline 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 tcinl;
- {$i defines.inc}
- interface
- uses
- tree;
- procedure firstinline(var p : ptree);
- implementation
- uses
- cobjects,verbose,globals,systems,
- globtype,
- symconst,symtable,aasm,types,
- htypechk,pass_1,
- tccal,cpubase
- {$ifdef newcg}
- ,cgbase
- ,tgobj
- ,tgcpu
- {$else newcg}
- ,hcodegen
- {$ifdef i386}
- ,tgeni386
- {$endif}
- {$endif newcg}
- ;
- {*****************************************************************************
- FirstInLine
- *****************************************************************************}
- {$ifdef fpc}
- {$maxfpuregisters 0}
- {$endif fpc}
- procedure firstinline(var p : ptree);
- var
- vl,vl2 : longint;
- vr : bestreal;
- p1,hp,hpp : ptree;
- {$ifndef NOCOLONCHECK}
- frac_para,length_para : ptree;
- {$endif ndef NOCOLONCHECK}
- extra_register,
- isreal,
- dowrite,
- file_is_typed : boolean;
- procedure do_lowhigh(adef : pdef);
- var
- v : longint;
- enum : penumsym;
- begin
- case Adef^.deftype of
- orddef:
- begin
- if p^.inlinenumber=in_low_x then
- v:=porddef(adef)^.low
- else
- v:=porddef(adef)^.high;
- hp:=genordinalconstnode(v,adef);
- firstpass(hp);
- disposetree(p);
- p:=hp;
- end;
- enumdef:
- begin
- enum:=Penumdef(Adef)^.firstenum;
- if p^.inlinenumber=in_high_x then
- while enum^.nextenum<>nil do
- enum:=enum^.nextenum;
- hp:=genenumnode(enum);
- disposetree(p);
- p:=hp;
- end;
- else
- internalerror(87);
- end;
- end;
- function getconstrealvalue : bestreal;
- begin
- case p^.left^.treetype of
- ordconstn:
- getconstrealvalue:=p^.left^.value;
- realconstn:
- getconstrealvalue:=p^.left^.value_real;
- else
- internalerror(309992);
- end;
- end;
- procedure setconstrealvalue(r : bestreal);
- var
- hp : ptree;
- begin
- hp:=genrealconstnode(r,bestrealdef^);
- disposetree(p);
- p:=hp;
- firstpass(p);
- end;
- procedure handleextendedfunction;
- begin
- p^.location.loc:=LOC_FPU;
- p^.resulttype:=s80floatdef;
- { redo firstpass for varstate status PM }
- set_varstate(p^.left,true);
- if (p^.left^.resulttype^.deftype<>floatdef) or
- (pfloatdef(p^.left^.resulttype)^.typ<>s80real) then
- begin
- p^.left:=gentypeconvnode(p^.left,s80floatdef);
- firstpass(p^.left);
- end;
- p^.registers32:=p^.left^.registers32;
- p^.registersfpu:=p^.left^.registersfpu;
- {$ifdef SUPPORT_MMX}
- p^.registersmmx:=p^.left^.registersmmx;
- {$endif SUPPORT_MMX}
- end;
- begin
- { if we handle writeln; p^.left contains no valid address }
- if assigned(p^.left) then
- begin
- if p^.left^.treetype=callparan then
- firstcallparan(p^.left,nil,false)
- else
- firstpass(p^.left);
- left_right_max(p);
- set_location(p^.location,p^.left^.location);
- end;
- inc(parsing_para_level);
- { handle intern constant functions in separate case }
- if p^.inlineconst then
- begin
- hp:=nil;
- { no parameters? }
- if not assigned(p^.left) then
- begin
- case p^.inlinenumber of
- in_const_pi :
- hp:=genrealconstnode(pi,bestrealdef^);
- else
- internalerror(89);
- end;
- end
- else
- { process constant expression with parameter }
- begin
- vl:=0;
- vl2:=0; { second parameter Ex: ptr(vl,vl2) }
- vr:=0;
- isreal:=false;
- case p^.left^.treetype of
- realconstn :
- begin
- isreal:=true;
- vr:=p^.left^.value_real;
- end;
- ordconstn :
- vl:=p^.left^.value;
- callparan :
- begin
- { both exists, else it was not generated }
- vl:=p^.left^.left^.value;
- vl2:=p^.left^.right^.left^.value;
- end;
- else
- CGMessage(cg_e_illegal_expression);
- end;
- case p^.inlinenumber of
- in_const_trunc :
- begin
- if isreal then
- begin
- if (vr>=2147483648.0) or (vr<=-2147483649.0) then
- begin
- CGMessage(parser_e_range_check_error);
- hp:=genordinalconstnode(1,s32bitdef)
- end
- else
- hp:=genordinalconstnode(trunc(vr),s32bitdef)
- end
- else
- hp:=genordinalconstnode(trunc(vl),s32bitdef);
- end;
- in_const_round :
- begin
- if isreal then
- begin
- if (vr>=2147483647.5) or (vr<=-2147483648.5) then
- begin
- CGMessage(parser_e_range_check_error);
- hp:=genordinalconstnode(1,s32bitdef)
- end
- else
- hp:=genordinalconstnode(round(vr),s32bitdef)
- end
- else
- hp:=genordinalconstnode(round(vl),s32bitdef);
- end;
- in_const_frac :
- begin
- if isreal then
- hp:=genrealconstnode(frac(vr),bestrealdef^)
- else
- hp:=genrealconstnode(frac(vl),bestrealdef^);
- end;
- in_const_int :
- begin
- if isreal then
- hp:=genrealconstnode(int(vr),bestrealdef^)
- else
- hp:=genrealconstnode(int(vl),bestrealdef^);
- end;
- in_const_abs :
- begin
- if isreal then
- hp:=genrealconstnode(abs(vr),bestrealdef^)
- else
- hp:=genordinalconstnode(abs(vl),p^.left^.resulttype);
- end;
- in_const_sqr :
- begin
- if isreal then
- hp:=genrealconstnode(sqr(vr),bestrealdef^)
- else
- hp:=genordinalconstnode(sqr(vl),p^.left^.resulttype);
- end;
- in_const_odd :
- begin
- if isreal then
- CGMessage1(type_e_integer_expr_expected,p^.left^.resulttype^.typename)
- else
- hp:=genordinalconstnode(byte(odd(vl)),booldef);
- end;
- in_const_swap_word :
- begin
- if isreal then
- CGMessage1(type_e_integer_expr_expected,p^.left^.resulttype^.typename)
- else
- hp:=genordinalconstnode((vl and $ff) shl 8+(vl shr 8),p^.left^.resulttype);
- end;
- in_const_swap_long :
- begin
- if isreal then
- CGMessage(type_e_mismatch)
- else
- hp:=genordinalconstnode((vl and $ffff) shl 16+(vl shr 16),p^.left^.resulttype);
- end;
- in_const_ptr :
- begin
- if isreal then
- CGMessage(type_e_mismatch)
- else
- hp:=genordinalconstnode((vl2 shl 16) or vl,voidpointerdef);
- end;
- in_const_sqrt :
- begin
- if isreal then
- begin
- if vr<0.0 then
- CGMessage(type_e_wrong_math_argument)
- else
- hp:=genrealconstnode(sqrt(vr),bestrealdef^)
- end
- else
- begin
- if vl<0 then
- CGMessage(type_e_wrong_math_argument)
- else
- hp:=genrealconstnode(sqrt(vl),bestrealdef^);
- end;
- end;
- in_const_arctan :
- begin
- if isreal then
- hp:=genrealconstnode(arctan(vr),bestrealdef^)
- else
- hp:=genrealconstnode(arctan(vl),bestrealdef^);
- end;
- in_const_cos :
- begin
- if isreal then
- hp:=genrealconstnode(cos(vr),bestrealdef^)
- else
- hp:=genrealconstnode(cos(vl),bestrealdef^);
- end;
- in_const_sin :
- begin
- if isreal then
- hp:=genrealconstnode(sin(vr),bestrealdef^)
- else
- hp:=genrealconstnode(sin(vl),bestrealdef^);
- end;
- in_const_exp :
- begin
- if isreal then
- hp:=genrealconstnode(exp(vr),bestrealdef^)
- else
- hp:=genrealconstnode(exp(vl),bestrealdef^);
- end;
- in_const_ln :
- begin
- if isreal then
- begin
- if vr<=0.0 then
- CGMessage(type_e_wrong_math_argument)
- else
- hp:=genrealconstnode(ln(vr),bestrealdef^)
- end
- else
- begin
- if vl<=0 then
- CGMessage(type_e_wrong_math_argument)
- else
- hp:=genrealconstnode(ln(vl),bestrealdef^);
- end;
- end;
- else
- internalerror(88);
- end;
- end;
- disposetree(p);
- if hp=nil then
- hp:=genzeronode(errorn);
- firstpass(hp);
- p:=hp;
- end
- else
- begin
- case p^.inlinenumber of
- in_lo_qword,
- in_hi_qword,
- in_lo_long,
- in_hi_long,
- in_lo_word,
- in_hi_word:
- begin
- set_varstate(p^.left,true);
- if p^.registers32<1 then
- p^.registers32:=1;
- if p^.inlinenumber in [in_lo_word,in_hi_word] then
- p^.resulttype:=u8bitdef
- else if p^.inlinenumber in [in_lo_qword,in_hi_qword] then
- begin
- p^.resulttype:=u32bitdef;
- if (m_tp in aktmodeswitches) or
- (m_delphi in aktmodeswitches) then
- CGMessage(type_w_maybe_wrong_hi_lo);
- end
- else
- begin
- p^.resulttype:=u16bitdef;
- if (m_tp in aktmodeswitches) or
- (m_delphi in aktmodeswitches) then
- CGMessage(type_w_maybe_wrong_hi_lo);
- end;
- p^.location.loc:=LOC_REGISTER;
- if not is_integer(p^.left^.resulttype) then
- CGMessage(type_e_mismatch)
- else
- begin
- if p^.left^.treetype=ordconstn then
- begin
- case p^.inlinenumber of
- in_lo_word : hp:=genordinalconstnode(p^.left^.value and $ff,p^.left^.resulttype);
- in_hi_word : hp:=genordinalconstnode(p^.left^.value shr 8,p^.left^.resulttype);
- in_lo_long : hp:=genordinalconstnode(p^.left^.value and $ffff,p^.left^.resulttype);
- in_hi_long : hp:=genordinalconstnode(p^.left^.value shr 16,p^.left^.resulttype);
- in_lo_qword : hp:=genordinalconstnode(p^.left^.value and $ffffffff,p^.left^.resulttype);
- in_hi_qword : hp:=genordinalconstnode(p^.left^.value shr 32,p^.left^.resulttype);
- end;
- disposetree(p);
- firstpass(hp);
- p:=hp;
- end;
- end;
- end;
- in_sizeof_x:
- begin
- set_varstate(p^.left,false);
- if push_high_param(p^.left^.resulttype) then
- begin
- getsymonlyin(p^.left^.symtable,'high'+pvarsym(p^.left^.symtableentry)^.name);
- hp:=gennode(addn,genloadnode(pvarsym(srsym),p^.left^.symtable),
- genordinalconstnode(1,s32bitdef));
- if (p^.left^.resulttype^.deftype=arraydef) and
- (parraydef(p^.left^.resulttype)^.elesize<>1) then
- hp:=gennode(muln,hp,genordinalconstnode(parraydef(p^.left^.resulttype)^.elesize,s32bitdef));
- disposetree(p);
- p:=hp;
- firstpass(p);
- end;
- if p^.registers32<1 then
- p^.registers32:=1;
- p^.resulttype:=s32bitdef;
- p^.location.loc:=LOC_REGISTER;
- end;
- in_typeof_x:
- begin
- set_varstate(p^.left,false);
- if p^.registers32<1 then
- p^.registers32:=1;
- p^.location.loc:=LOC_REGISTER;
- p^.resulttype:=voidpointerdef;
- end;
- in_ord_x:
- begin
- set_varstate(p^.left,true);
- if (p^.left^.treetype=ordconstn) then
- begin
- hp:=genordinalconstnode(p^.left^.value,s32bitdef);
- disposetree(p);
- p:=hp;
- firstpass(p);
- end
- else
- begin
- { otherwise you get a crash if you try ord on an expression containing }
- { an undeclared variable (JM) }
- if not assigned(p^.left^.resulttype) then
- exit;
- if (p^.left^.resulttype^.deftype=orddef) then
- if (porddef(p^.left^.resulttype)^.typ in [uchar,uwidechar,bool8bit]) then
- case porddef(p^.left^.resulttype)^.typ of
- uchar:
- begin
- hp:=gentypeconvnode(p^.left,u8bitdef);
- putnode(p);
- p:=hp;
- p^.explizit:=true;
- firstpass(p);
- end;
- uwidechar:
- begin
- hp:=gentypeconvnode(p^.left,u16bitdef);
- putnode(p);
- p:=hp;
- p^.explizit:=true;
- firstpass(p);
- end;
- bool8bit:
- begin
- hp:=gentypeconvnode(p^.left,u8bitdef);
- putnode(p);
- p:=hp;
- p^.convtyp:=tc_bool_2_int;
- p^.explizit:=true;
- firstpass(p);
- end
- end
- { can this happen ? }
- else if (porddef(p^.left^.resulttype)^.typ=uvoid) then
- CGMessage(type_e_mismatch)
- else
- { all other orddef need no transformation }
- begin
- hp:=p^.left;
- putnode(p);
- p:=hp;
- end
- else if (p^.left^.resulttype^.deftype=enumdef) then
- begin
- hp:=gentypeconvnode(p^.left,s32bitdef);
- putnode(p);
- p:=hp;
- p^.explizit:=true;
- firstpass(p);
- end
- else
- begin
- { can anything else be ord() ?}
- CGMessage(type_e_mismatch);
- end;
- end;
- end;
- in_chr_byte:
- begin
- set_varstate(p^.left,true);
- hp:=gentypeconvnode(p^.left,cchardef);
- putnode(p);
- p:=hp;
- p^.explizit:=true;
- firstpass(p);
- end;
- in_length_string:
- begin
- set_varstate(p^.left,true);
- if is_ansistring(p^.left^.resulttype) then
- p^.resulttype:=s32bitdef
- else
- p^.resulttype:=u8bitdef;
- { we don't need string conversations here }
- if (p^.left^.treetype=typeconvn) and
- (p^.left^.left^.resulttype^.deftype=stringdef) then
- begin
- hp:=p^.left^.left;
- putnode(p^.left);
- p^.left:=hp;
- end;
- { check the type, must be string or char }
- if (p^.left^.resulttype^.deftype<>stringdef) and
- (not is_char(p^.left^.resulttype)) then
- CGMessage(type_e_mismatch);
- { evaluates length of constant strings direct }
- if (p^.left^.treetype=stringconstn) then
- begin
- hp:=genordinalconstnode(p^.left^.length,s32bitdef);
- disposetree(p);
- firstpass(hp);
- p:=hp;
- end
- { length of char is one allways }
- else if is_constcharnode(p^.left) then
- begin
- hp:=genordinalconstnode(1,s32bitdef);
- disposetree(p);
- firstpass(hp);
- p:=hp;
- end;
- end;
- in_typeinfo_x:
- begin
- p^.resulttype:=voidpointerdef;
- p^.location.loc:=LOC_REGISTER;
- p^.registers32:=1;
- end;
- in_assigned_x:
- begin
- set_varstate(p^.left,true);
- p^.resulttype:=booldef;
- p^.location.loc:=LOC_FLAGS;
- end;
- in_ofs_x,
- in_seg_x :
- set_varstate(p^.left,false);
- in_pred_x,
- in_succ_x:
- begin
- p^.resulttype:=p^.left^.resulttype;
- if is_64bitint(p^.resulttype) then
- begin
- if (p^.registers32<2) then
- p^.registers32:=2
- end
- else
- begin
- if (p^.registers32<1) then
- p^.registers32:=1;
- end;
- p^.location.loc:=LOC_REGISTER;
- set_varstate(p^.left,true);
- if not is_ordinal(p^.resulttype) then
- CGMessage(type_e_ordinal_expr_expected)
- else
- begin
- if (p^.resulttype^.deftype=enumdef) and
- (penumdef(p^.resulttype)^.has_jumps) then
- CGMessage(type_e_succ_and_pred_enums_with_assign_not_possible)
- else
- if p^.left^.treetype=ordconstn then
- begin
- if p^.inlinenumber=in_succ_x then
- hp:=genordinalconstnode(p^.left^.value+1,p^.left^.resulttype)
- else
- hp:=genordinalconstnode(p^.left^.value-1,p^.left^.resulttype);
- disposetree(p);
- firstpass(hp);
- p:=hp;
- end;
- end;
- end;
- in_inc_x,
- in_dec_x:
- begin
- p^.resulttype:=voiddef;
- if assigned(p^.left) then
- begin
- firstcallparan(p^.left,nil,true);
- set_varstate(p^.left,true);
- if codegenerror then
- exit;
- { first param must be var }
- valid_for_assign(p^.left^.left,false);
- { check type }
- if is_64bitint(p^.left^.resulttype) then
- { convert to simple add (JM) }
- begin
- hp := getnode;
- hp^.treetype := assignn;
- hp^.left := getcopy(p^.left^.left);
- hpp := getnode;
- hp^.right := hpp;
- if p^.inlinenumber = in_inc_x then
- hpp^.treetype := addn
- else hpp^.treetype := subn;
- hpp^.left := p^.left^.left;
- p^.left^.left := nil;
- if assigned(p^.left^.right) then
- begin
- hpp^.right := p^.left^.right^.left;
- p^.left^.right^.left := nil;
- if assigned(p^.left^.right^.right) then
- CGMessage(cg_e_illegal_expression);
- end
- else
- hpp^.right := genordinalconstnode(1,s32bitdef);
- disposetree(p);
- p := hp;
- dec(parsing_para_level);
- firstpass(p);
- exit;
- end;
- if (p^.left^.resulttype^.deftype in [enumdef,pointerdef]) or
- is_ordinal(p^.left^.resulttype) then
- begin
- { two paras ? }
- if assigned(p^.left^.right) then
- begin
- { insert a type conversion }
- { the second param is always longint }
- p^.left^.right^.left:=gentypeconvnode(p^.left^.right^.left,s32bitdef);
- { check the type conversion }
- firstpass(p^.left^.right^.left);
- { need we an additional register ? }
- if not(is_constintnode(p^.left^.right^.left)) and
- (p^.left^.right^.left^.location.loc in [LOC_MEM,LOC_REFERENCE]) and
- (p^.left^.right^.left^.registers32<=1) then
- inc(p^.registers32);
- { do we need an additional register to restore the first parameter? }
- if p^.left^.right^.left^.registers32>=p^.registers32 then
- inc(p^.registers32);
- if assigned(p^.left^.right^.right) then
- CGMessage(cg_e_illegal_expression);
- end;
- end
- else
- CGMessage(type_e_ordinal_expr_expected);
- end
- else
- CGMessage(type_e_mismatch);
- end;
- in_read_x,
- in_readln_x,
- in_write_x,
- in_writeln_x :
- begin
- { needs a call }
- procinfo^.flags:=procinfo^.flags or pi_do_call;
- p^.resulttype:=voiddef;
- { true, if readln needs an extra register }
- extra_register:=false;
- { we must know if it is a typed file or not }
- { but we must first do the firstpass for it }
- file_is_typed:=false;
- if assigned(p^.left) then
- begin
- dowrite:=(p^.inlinenumber in [in_write_x,in_writeln_x]);
- firstcallparan(p^.left,nil,true);
- set_varstate(p^.left,dowrite);
- { now we can check }
- hp:=p^.left;
- while assigned(hp^.right) do
- hp:=hp^.right;
- { if resulttype is not assigned, then automatically }
- { file is not typed. }
- if assigned(hp) and assigned(hp^.resulttype) then
- Begin
- if (hp^.resulttype^.deftype=filedef) then
- if (pfiledef(hp^.resulttype)^.filetyp=ft_untyped) then
- begin
- if (p^.inlinenumber in [in_readln_x,in_writeln_x]) then
- CGMessage(type_e_no_readln_writeln_for_typed_file)
- else
- CGMessage(type_e_no_read_write_for_untyped_file);
- end
- else if (pfiledef(hp^.resulttype)^.filetyp=ft_typed) then
- begin
- file_is_typed:=true;
- { test the type }
- if (p^.inlinenumber in [in_readln_x,in_writeln_x]) then
- CGMessage(type_e_no_readln_writeln_for_typed_file);
- hpp:=p^.left;
- while (hpp<>hp) do
- begin
- if (hpp^.left^.treetype=typen) then
- CGMessage(type_e_cant_read_write_type);
- if not is_equal(hpp^.resulttype,pfiledef(hp^.resulttype)^.typedfiletype.def) then
- CGMessage(type_e_mismatch);
- { generate the high() value for the shortstring }
- if ((not dowrite) and is_shortstring(hpp^.left^.resulttype)) or
- (is_chararray(hpp^.left^.resulttype)) then
- gen_high_tree(hpp,true);
- { read(ln) is call by reference (JM) }
- if not dowrite then
- make_not_regable(hpp^.left);
- hpp:=hpp^.right;
- end;
- end;
- end; { endif assigned(hp) }
- { insert type conversions for write(ln) }
- if (not file_is_typed) then
- begin
- hp:=p^.left;
- while assigned(hp) do
- begin
- incrementregisterpushed($ff);
- if (hp^.left^.treetype=typen) then
- CGMessage(type_e_cant_read_write_type);
- if assigned(hp^.left^.resulttype) then
- begin
- isreal:=false;
- { support writeln(procvar) }
- if (hp^.left^.resulttype^.deftype=procvardef) then
- begin
- p1:=gencallnode(nil,nil);
- p1^.right:=hp^.left;
- p1^.resulttype:=pprocvardef(hp^.left^.resulttype)^.rettype.def;
- firstpass(p1);
- hp^.left:=p1;
- end;
- case hp^.left^.resulttype^.deftype of
- filedef :
- begin
- { only allowed as first parameter }
- if assigned(hp^.right) then
- CGMessage(type_e_cant_read_write_type);
- end;
- stringdef :
- begin
- { generate the high() value for the shortstring }
- if (not dowrite) and
- is_shortstring(hp^.left^.resulttype) then
- gen_high_tree(hp,true);
- end;
- pointerdef :
- begin
- if not is_pchar(hp^.left^.resulttype) then
- CGMessage(type_e_cant_read_write_type);
- end;
- floatdef :
- begin
- isreal:=true;
- end;
- orddef :
- begin
- case porddef(hp^.left^.resulttype)^.typ of
- uchar,
- u32bit,s32bit,
- u64bit,s64bit:
- ;
- u8bit,s8bit,
- u16bit,s16bit :
- if dowrite then
- hp^.left:=gentypeconvnode(hp^.left,s32bitdef);
- bool8bit,
- bool16bit,
- bool32bit :
- if dowrite then
- hp^.left:=gentypeconvnode(hp^.left,booldef)
- else
- CGMessage(type_e_cant_read_write_type);
- else
- CGMessage(type_e_cant_read_write_type);
- end;
- if not(dowrite) and
- not(is_64bitint(hp^.left^.resulttype)) then
- extra_register:=true;
- end;
- arraydef :
- begin
- if is_chararray(hp^.left^.resulttype) then
- gen_high_tree(hp,true)
- else
- CGMessage(type_e_cant_read_write_type);
- end;
- else
- CGMessage(type_e_cant_read_write_type);
- end;
- { some format options ? }
- if hp^.is_colon_para then
- begin
- if hp^.right^.is_colon_para then
- begin
- frac_para:=hp;
- length_para:=hp^.right;
- hp:=hp^.right;
- hpp:=hp^.right;
- end
- else
- begin
- length_para:=hp;
- frac_para:=nil;
- hpp:=hp^.right;
- end;
- { can be nil if you use "write(e:0:6)" while e is undeclared (JM) }
- if assigned(hpp^.left^.resulttype) then
- isreal:=(hpp^.left^.resulttype^.deftype=floatdef)
- else exit;
- if (not is_integer(length_para^.left^.resulttype)) then
- CGMessage1(type_e_integer_expr_expected,length_para^.left^.resulttype^.typename)
- else
- length_para^.left:=gentypeconvnode(length_para^.left,s32bitdef);
- if assigned(frac_para) then
- begin
- if isreal then
- begin
- if (not is_integer(frac_para^.left^.resulttype)) then
- CGMessage1(type_e_integer_expr_expected,frac_para^.left^.resulttype^.typename)
- else
- frac_para^.left:=gentypeconvnode(frac_para^.left,s32bitdef);
- end
- else
- CGMessage(parser_e_illegal_colon_qualifier);
- end;
- { do the checking for the colon'd arg }
- hp:=length_para;
- end;
- end;
- hp:=hp^.right;
- end;
- end;
- { pass all parameters again for the typeconversions }
- if codegenerror then
- exit;
- firstcallparan(p^.left,nil,true);
- set_varstate(p^.left,true);
- { calc registers }
- left_right_max(p);
- if extra_register then
- inc(p^.registers32);
- end;
- end;
- in_settextbuf_file_x :
- begin
- { warning here p^.left is the callparannode
- not the argument directly }
- { p^.left^.left is text var }
- { p^.left^.right^.left is the buffer var }
- { firstcallparan(p^.left,nil);
- already done in firstcalln }
- { now we know the type of buffer }
- getsymonlyin(systemunit,'SETTEXTBUF');
- hp:=gencallnode(pprocsym(srsym),systemunit);
- hp^.left:=gencallparanode(
- genordinalconstnode(p^.left^.left^.resulttype^.size,s32bitdef),p^.left);
- putnode(p);
- p:=hp;
- firstpass(p);
- end;
- { the firstpass of the arg has been done in firstcalln ? }
- in_reset_typedfile,
- in_rewrite_typedfile :
- begin
- procinfo^.flags:=procinfo^.flags or pi_do_call;
- firstpass(p^.left);
- set_varstate(p^.left,true);
- p^.resulttype:=voiddef;
- end;
- in_str_x_string :
- begin
- procinfo^.flags:=procinfo^.flags or pi_do_call;
- p^.resulttype:=voiddef;
- { check the amount of parameters }
- if not(assigned(p^.left)) or
- not(assigned(p^.left^.right)) then
- begin
- CGMessage(parser_e_wrong_parameter_size);
- exit;
- end;
- { first pass just the string for first local use }
- hp:=p^.left^.right;
- p^.left^.right:=nil;
- firstcallparan(p^.left,nil,true);
- set_varstate(p^.left,false);
- { remove warning when result is passed }
- set_funcret_is_valid(p^.left^.left);
- p^.left^.right:=hp;
- firstcallparan(p^.left^.right,nil,true);
- set_varstate(p^.left^.right,true);
- hp:=p^.left;
- { valid string ? }
- if not assigned(hp) or
- (hp^.left^.resulttype^.deftype<>stringdef) or
- (hp^.right=nil) then
- CGMessage(cg_e_illegal_expression);
- { we need a var parameter }
- valid_for_assign(hp^.left,false);
- { generate the high() value for the shortstring }
- if is_shortstring(hp^.left^.resulttype) then
- gen_high_tree(hp,true);
- { !!!! check length of string }
- while assigned(hp^.right) do
- hp:=hp^.right;
- if not assigned(hp^.resulttype) then
- exit;
- { check and convert the first param }
- if (hp^.is_colon_para) or
- not assigned(hp^.resulttype) then
- CGMessage(cg_e_illegal_expression);
- isreal:=false;
- case hp^.resulttype^.deftype of
- orddef :
- begin
- case porddef(hp^.left^.resulttype)^.typ of
- u32bit,s32bit,
- s64bit,u64bit:
- ;
- u8bit,s8bit,
- u16bit,s16bit:
- hp^.left:=gentypeconvnode(hp^.left,s32bitdef);
- else
- CGMessage(type_e_integer_or_real_expr_expected);
- end;
- end;
- floatdef :
- begin
- isreal:=true;
- end;
- else
- CGMessage(type_e_integer_or_real_expr_expected);
- end;
- { some format options ? }
- hpp:=p^.left^.right;
- if assigned(hpp) and hpp^.is_colon_para then
- begin
- firstpass(hpp^.left);
- set_varstate(hpp^.left,true);
- if (not is_integer(hpp^.left^.resulttype)) then
- CGMessage1(type_e_integer_expr_expected,hpp^.left^.resulttype^.typename)
- else
- hpp^.left:=gentypeconvnode(hpp^.left,s32bitdef);
- hpp:=hpp^.right;
- if assigned(hpp) and hpp^.is_colon_para then
- begin
- if isreal then
- begin
- if (not is_integer(hpp^.left^.resulttype)) then
- CGMessage1(type_e_integer_expr_expected,hpp^.left^.resulttype^.typename)
- else
- begin
- firstpass(hpp^.left);
- set_varstate(hpp^.left,true);
- hpp^.left:=gentypeconvnode(hpp^.left,s32bitdef);
- end;
- end
- else
- CGMessage(parser_e_illegal_colon_qualifier);
- end;
- end;
- { pass all parameters again for the typeconversions }
- if codegenerror then
- exit;
- firstcallparan(p^.left,nil,true);
- { calc registers }
- left_right_max(p);
- end;
- in_val_x :
- begin
- procinfo^.flags:=procinfo^.flags or pi_do_call;
- p^.resulttype:=voiddef;
- { check the amount of parameters }
- if not(assigned(p^.left)) or
- not(assigned(p^.left^.right)) then
- begin
- CGMessage(parser_e_wrong_parameter_size);
- exit;
- end;
- If Assigned(p^.left^.right^.right) Then
- {there is a "code" parameter}
- Begin
- { first pass just the code parameter for first local use}
- hp := p^.left^.right;
- p^.left^.right := nil;
- make_not_regable(p^.left^.left);
- firstcallparan(p^.left, nil,true);
- set_varstate(p^.left,false);
- if codegenerror then exit;
- p^.left^.right := hp;
- {code has to be a var parameter}
- if valid_for_assign(p^.left^.left,false) then
- begin
- if (p^.left^.left^.resulttype^.deftype <> orddef) or
- not(porddef(p^.left^.left^.resulttype)^.typ in
- [u16bit,s16bit,u32bit,s32bit]) then
- CGMessage(type_e_mismatch);
- end;
- hpp := p^.left^.right
- End
- Else hpp := p^.left;
- {now hpp = the destination value tree}
- { first pass just the destination parameter for first local use}
- hp:=hpp^.right;
- hpp^.right:=nil;
- {hpp = destination}
- make_not_regable(hpp^.left);
- firstcallparan(hpp,nil,true);
- set_varstate(hpp,false);
- if codegenerror then
- exit;
- { remove warning when result is passed }
- set_funcret_is_valid(hpp^.left);
- hpp^.right := hp;
- if valid_for_assign(hpp^.left,false) then
- begin
- If Not((hpp^.left^.resulttype^.deftype = floatdef) or
- ((hpp^.left^.resulttype^.deftype = orddef) And
- (POrdDef(hpp^.left^.resulttype)^.typ in
- [u32bit,s32bit,
- u8bit,s8bit,u16bit,s16bit,s64bit,u64bit]))) Then
- CGMessage(type_e_mismatch);
- end;
- {hp = source (String)}
- { count_ref := false; WHY ?? }
- firstcallparan(hp,nil,true);
- set_varstate(hp,true);
- if codegenerror then
- exit;
- { if not a stringdef then insert a type conv which
- does the other type checking }
- If (hp^.left^.resulttype^.deftype<>stringdef) then
- begin
- hp^.left:=gentypeconvnode(hp^.left,cshortstringdef);
- firstpass(hp);
- end;
- { calc registers }
- left_right_max(p);
- { val doesn't calculate the registers really }
- { correct, we need one register extra (FK) }
- if is_64bitint(hpp^.left^.resulttype) then
- inc(p^.registers32,2)
- else
- inc(p^.registers32,1);
- end;
- in_include_x_y,
- in_exclude_x_y:
- begin
- p^.resulttype:=voiddef;
- if assigned(p^.left) then
- begin
- firstcallparan(p^.left,nil,true);
- set_varstate(p^.left,true);
- p^.registers32:=p^.left^.registers32;
- p^.registersfpu:=p^.left^.registersfpu;
- {$ifdef SUPPORT_MMX}
- p^.registersmmx:=p^.left^.registersmmx;
- {$endif SUPPORT_MMX}
- { remove warning when result is passed }
- set_funcret_is_valid(p^.left^.left);
- { first param must be var }
- valid_for_assign(p^.left^.left,false);
- { check type }
- if assigned(p^.left^.resulttype) and
- (p^.left^.resulttype^.deftype=setdef) then
- begin
- { two paras ? }
- if assigned(p^.left^.right) then
- begin
- { insert a type conversion }
- { to the type of the set elements }
- p^.left^.right^.left:=gentypeconvnode(
- p^.left^.right^.left,
- psetdef(p^.left^.resulttype)^.elementtype.def);
- { check the type conversion }
- firstpass(p^.left^.right^.left);
- { only three parameters are allowed }
- if assigned(p^.left^.right^.right) then
- CGMessage(cg_e_illegal_expression);
- end;
- end
- else
- CGMessage(type_e_mismatch);
- end
- else
- CGMessage(type_e_mismatch);
- end;
- in_low_x,
- in_high_x:
- begin
- set_varstate(p^.left,false);
- { this fixes tests\webtbs\tbug879.pp (FK)
- if p^.left^.treetype in [typen,loadn,subscriptn] then
- begin
- }
- case p^.left^.resulttype^.deftype of
- orddef,enumdef:
- begin
- do_lowhigh(p^.left^.resulttype);
- firstpass(p);
- end;
- setdef:
- begin
- do_lowhigh(Psetdef(p^.left^.resulttype)^.elementtype.def);
- firstpass(p);
- end;
- arraydef:
- begin
- if p^.inlinenumber=in_low_x then
- begin
- hp:=genordinalconstnode(Parraydef(p^.left^.resulttype)^.lowrange,
- Parraydef(p^.left^.resulttype)^.rangetype.def);
- disposetree(p);
- p:=hp;
- firstpass(p);
- end
- else
- begin
- if is_open_array(p^.left^.resulttype) or
- is_array_of_const(p^.left^.resulttype) then
- begin
- getsymonlyin(p^.left^.symtable,'high'+pvarsym(p^.left^.symtableentry)^.name);
- hp:=genloadnode(pvarsym(srsym),p^.left^.symtable);
- disposetree(p);
- p:=hp;
- firstpass(p);
- end
- else
- begin
- hp:=genordinalconstnode(Parraydef(p^.left^.resulttype)^.highrange,
- Parraydef(p^.left^.resulttype)^.rangetype.def);
- disposetree(p);
- p:=hp;
- firstpass(p);
- end;
- end;
- end;
- stringdef:
- begin
- if p^.inlinenumber=in_low_x then
- begin
- hp:=genordinalconstnode(0,u8bitdef);
- disposetree(p);
- p:=hp;
- firstpass(p);
- end
- else
- begin
- if is_open_string(p^.left^.resulttype) then
- begin
- getsymonlyin(p^.left^.symtable,'high'+pvarsym(p^.left^.symtableentry)^.name);
- hp:=genloadnode(pvarsym(srsym),p^.left^.symtable);
- disposetree(p);
- p:=hp;
- firstpass(p);
- end
- else
- begin
- hp:=genordinalconstnode(Pstringdef(p^.left^.resulttype)^.len,u8bitdef);
- disposetree(p);
- p:=hp;
- firstpass(p);
- end;
- end;
- end;
- else
- CGMessage(type_e_mismatch);
- end;
- {
- end
- else
- CGMessage(type_e_varid_or_typeid_expected);
- }
- end;
- in_cos_extended:
- begin
- if p^.left^.treetype in [ordconstn,realconstn] then
- setconstrealvalue(cos(getconstrealvalue))
- else
- handleextendedfunction;
- end;
- in_sin_extended:
- begin
- if p^.left^.treetype in [ordconstn,realconstn] then
- setconstrealvalue(sin(getconstrealvalue))
- else
- handleextendedfunction;
- end;
- in_arctan_extended:
- begin
- if p^.left^.treetype in [ordconstn,realconstn] then
- setconstrealvalue(arctan(getconstrealvalue))
- else
- handleextendedfunction;
- end;
- in_pi:
- if block_type=bt_const then
- setconstrealvalue(pi)
- else
- begin
- p^.location.loc:=LOC_FPU;
- p^.resulttype:=s80floatdef;
- end;
- in_abs_extended:
- begin
- if p^.left^.treetype in [ordconstn,realconstn] then
- setconstrealvalue(abs(getconstrealvalue))
- else
- handleextendedfunction;
- end;
- in_sqr_extended:
- begin
- if p^.left^.treetype in [ordconstn,realconstn] then
- setconstrealvalue(sqr(getconstrealvalue))
- else
- handleextendedfunction;
- end;
- in_sqrt_extended:
- begin
- if p^.left^.treetype in [ordconstn,realconstn] then
- begin
- vr:=getconstrealvalue;
- if vr<0.0 then
- begin
- CGMessage(type_e_wrong_math_argument);
- setconstrealvalue(0);
- end
- else
- setconstrealvalue(sqrt(vr));
- end
- else
- handleextendedfunction;
- end;
- in_ln_extended:
- begin
- if p^.left^.treetype in [ordconstn,realconstn] then
- begin
- vr:=getconstrealvalue;
- if vr<=0.0 then
- begin
- CGMessage(type_e_wrong_math_argument);
- setconstrealvalue(0);
- end
- else
- setconstrealvalue(ln(vr));
- end
- else
- handleextendedfunction;
- end;
- {$ifdef SUPPORT_MMX}
- in_mmx_pcmpeqb..in_mmx_pcmpgtw:
- begin
- end;
- {$endif SUPPORT_MMX}
- in_assert_x_y :
- begin
- p^.resulttype:=voiddef;
- if assigned(p^.left) then
- begin
- firstcallparan(p^.left,nil,true);
- set_varstate(p^.left,true);
- p^.registers32:=p^.left^.registers32;
- p^.registersfpu:=p^.left^.registersfpu;
- {$ifdef SUPPORT_MMX}
- p^.registersmmx:=p^.left^.registersmmx;
- {$endif SUPPORT_MMX}
- { check type }
- if is_boolean(p^.left^.resulttype) then
- begin
- { must always be a string }
- p^.left^.right^.left:=gentypeconvnode(p^.left^.right^.left,cshortstringdef);
- firstpass(p^.left^.right^.left);
- end
- else
- CGMessage(type_e_mismatch);
- end
- else
- CGMessage(type_e_mismatch);
- { We've checked the whole statement for correctness, now we
- can remove it if assertions are off }
- if not(cs_do_assertion in aktlocalswitches) then
- begin
- disposetree(p^.left);
- putnode(p);
- { we need a valid node, so insert a nothingn }
- p:=genzeronode(nothingn);
- end;
- end;
- else
- internalerror(8);
- end;
- end;
- { generate an error if no resulttype is set }
- if not assigned(p^.resulttype) then
- p^.resulttype:=generrordef;
- dec(parsing_para_level);
- end;
- {$ifdef fpc}
- {$maxfpuregisters default}
- {$endif fpc}
- end.
- {
- $Log$
- Revision 1.8 2000-10-05 14:42:31 jonas
- * fixed inc/dec with a 64bit type (merged from fixes branch)
- Revision 1.7 2000/09/24 21:19:53 peter
- * delphi compile fixes
- Revision 1.6 2000/08/24 13:12:38 jonas
- * fixed crash when using include/exclude with undeclared variable as
- first parameter (merged from fixes branch)
- Revision 1.5 2000/08/16 13:06:07 florian
- + support of 64 bit integer constants
- Revision 1.4 2000/08/01 14:07:49 jonas
- * fixed crash when passing undeclared identifiers to str() (merged from
- fixes branch)
- Revision 1.3 2000/07/22 11:53:26 sg
- * Added WideChar support to inlined 'ord' function
- Revision 1.2 2000/07/13 11:32:52 michael
- + removed logs
- }
|