123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290 |
- {
- $Id$
- Copyright (c) 1998-2000 by Florian Klaempfl
- Generate i386 assembler for nodes that influence the flow
- 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 cg386flw;
- interface
- uses
- tree;
- procedure second_while_repeatn(var p : ptree);
- procedure secondifn(var p : ptree);
- procedure secondfor(var p : ptree);
- procedure secondexitn(var p : ptree);
- procedure secondbreakn(var p : ptree);
- procedure secondcontinuen(var p : ptree);
- procedure secondgoto(var p : ptree);
- procedure secondlabel(var p : ptree);
- procedure secondraise(var p : ptree);
- procedure secondtryexcept(var p : ptree);
- procedure secondtryfinally(var p : ptree);
- procedure secondon(var p : ptree);
- procedure secondfail(var p : ptree);
- type
- tenumflowcontrol = (fc_exit,fc_break,fc_continue);
- tflowcontrol = set of tenumflowcontrol;
- var
- flowcontrol : tflowcontrol;
- implementation
- uses
- cobjects,verbose,globtype,globals,systems,
- symconst,symtable,aasm,types,
- hcodegen,temp_gen,pass_2,
- cpubase,cpuasm,
- cgai386,tgeni386,tcflw;
- {*****************************************************************************
- Second_While_RepeatN
- *****************************************************************************}
- procedure second_while_repeatn(var p : ptree);
- var
- lcont,lbreak,lloop,
- oldclabel,oldblabel : pasmlabel;
- otlabel,oflabel : pasmlabel;
- begin
- getlabel(lloop);
- getlabel(lcont);
- getlabel(lbreak);
- { arrange continue and breaklabels: }
- oldclabel:=aktcontinuelabel;
- oldblabel:=aktbreaklabel;
- { handling code at the end as it is much more efficient, and makes
- while equal to repeat loop, only the end true/false is swapped (PFV) }
- if p^.treetype=whilen then
- emitjmp(C_None,lcont);
- emitlab(lloop);
- aktcontinuelabel:=lcont;
- aktbreaklabel:=lbreak;
- cleartempgen;
- if assigned(p^.right) then
- secondpass(p^.right);
- emitlab(lcont);
- otlabel:=truelabel;
- oflabel:=falselabel;
- if p^.treetype=whilen then
- begin
- truelabel:=lloop;
- falselabel:=lbreak;
- end
- { repeatn }
- else
- begin
- truelabel:=lbreak;
- falselabel:=lloop;
- end;
- cleartempgen;
- secondpass(p^.left);
- maketojumpbool(p^.left);
- emitlab(lbreak);
- truelabel:=otlabel;
- falselabel:=oflabel;
- aktcontinuelabel:=oldclabel;
- aktbreaklabel:=oldblabel;
- { a break/continue in a while/repeat block can't be seen outside }
- flowcontrol:=flowcontrol-[fc_break,fc_continue];
- end;
- {*****************************************************************************
- SecondIfN
- *****************************************************************************}
- procedure secondifn(var p : ptree);
- var
- hl,otlabel,oflabel : pasmlabel;
- begin
- otlabel:=truelabel;
- oflabel:=falselabel;
- getlabel(truelabel);
- getlabel(falselabel);
- cleartempgen;
- secondpass(p^.left);
- maketojumpbool(p^.left);
- if assigned(p^.right) then
- begin
- emitlab(truelabel);
- cleartempgen;
- secondpass(p^.right);
- end;
- if assigned(p^.t1) then
- begin
- if assigned(p^.right) then
- begin
- getlabel(hl);
- { do go back to if line !! }
- aktfilepos:=exprasmlist^.getlasttaifilepos^;
- emitjmp(C_None,hl);
- end;
- emitlab(falselabel);
- cleartempgen;
- secondpass(p^.t1);
- if assigned(p^.right) then
- emitlab(hl);
- end
- else
- begin
- emitlab(falselabel);
- end;
- if not(assigned(p^.right)) then
- begin
- emitlab(truelabel);
- end;
- truelabel:=otlabel;
- falselabel:=oflabel;
- end;
- {*****************************************************************************
- SecondFor
- *****************************************************************************}
- procedure secondfor(var p : ptree);
- var
- l3,oldclabel,oldblabel : pasmlabel;
- omitfirstcomp,temptovalue : boolean;
- hs : byte;
- temp1 : treference;
- hop : tasmop;
- hcond : tasmcond;
- cmpreg,cmp32 : tregister;
- opsize : topsize;
- count_var_is_signed : boolean;
- begin
- oldclabel:=aktcontinuelabel;
- oldblabel:=aktbreaklabel;
- getlabel(aktcontinuelabel);
- getlabel(aktbreaklabel);
- getlabel(l3);
- { could we spare the first comparison ? }
- omitfirstcomp:=false;
- if p^.right^.treetype=ordconstn then
- if p^.left^.right^.treetype=ordconstn then
- omitfirstcomp:=(p^.backward and (p^.left^.right^.value>=p^.right^.value))
- or (not(p^.backward) and (p^.left^.right^.value<=p^.right^.value));
- { only calculate reference }
- cleartempgen;
- secondpass(p^.t2);
- hs:=p^.t2^.resulttype^.size;
- cmp32:=getregister32;
- case hs of
- 1 : begin
- opsize:=S_B;
- cmpreg:=reg32toreg8(cmp32);
- end;
- 2 : begin
- opsize:=S_W;
- cmpreg:=reg32toreg16(cmp32);
- end;
- 4 : begin
- opsize:=S_L;
- cmpreg:=cmp32;
- end;
- end;
- { first set the to value
- because the count var can be in the expression !! }
- cleartempgen;
- secondpass(p^.right);
- { calculate pointer value and check if changeable and if so }
- { load into temporary variable }
- if p^.right^.treetype<>ordconstn then
- begin
- temp1.symbol:=nil;
- gettempofsizereference(hs,temp1);
- temptovalue:=true;
- if (p^.right^.location.loc=LOC_REGISTER) or
- (p^.right^.location.loc=LOC_CREGISTER) then
- begin
- emit_reg_ref(A_MOV,opsize,p^.right^.location.register,
- newreference(temp1));
- end
- else
- concatcopy(p^.right^.location.reference,temp1,hs,false,false);
- end
- else
- temptovalue:=false;
- { produce start assignment }
- cleartempgen;
- secondpass(p^.left);
- count_var_is_signed:=is_signed(porddef(p^.t2^.resulttype));
- if temptovalue then
- begin
- if p^.t2^.location.loc=LOC_CREGISTER then
- begin
- emit_ref_reg(A_CMP,opsize,newreference(temp1),
- p^.t2^.location.register);
- end
- else
- begin
- emit_ref_reg(A_MOV,opsize,newreference(p^.t2^.location.reference),
- cmpreg);
- emit_ref_reg(A_CMP,opsize,newreference(temp1),
- cmpreg);
- end;
- end
- else
- begin
- if not(omitfirstcomp) then
- begin
- if p^.t2^.location.loc=LOC_CREGISTER then
- emit_const_reg(A_CMP,opsize,p^.right^.value,
- p^.t2^.location.register)
- else
- emit_const_ref(A_CMP,opsize,p^.right^.value,
- newreference(p^.t2^.location.reference));
- end;
- end;
- if p^.backward then
- if count_var_is_signed then
- hcond:=C_L
- else
- hcond:=C_B
- else
- if count_var_is_signed then
- hcond:=C_G
- else
- hcond:=C_A;
- if not(omitfirstcomp) or temptovalue then
- emitjmp(hcond,aktbreaklabel);
- { align loop target }
- if not(cs_littlesize in aktglobalswitches) then
- exprasmlist^.concat(new(pai_align,init_op(4,$90)));
- emitlab(l3);
- { help register must not be in instruction block }
- cleartempgen;
- if assigned(p^.t1) then
- secondpass(p^.t1);
- emitlab(aktcontinuelabel);
- { makes no problems there }
- cleartempgen;
- { demand help register again }
- cmp32:=getregister32;
- case hs of
- 1 : begin
- opsize:=S_B;
- cmpreg:=reg32toreg8(cmp32);
- end;
- 2 : begin
- opsize:=S_W;
- cmpreg:=reg32toreg16(cmp32);
- end;
- 4 : opsize:=S_L;
- end;
- { produce comparison and the corresponding }
- { jump }
- if temptovalue then
- begin
- if p^.t2^.location.loc=LOC_CREGISTER then
- begin
- emit_ref_reg(A_CMP,opsize,newreference(temp1),
- p^.t2^.location.register);
- end
- else
- begin
- emit_ref_reg(A_MOV,opsize,newreference(p^.t2^.location.reference),
- cmpreg);
- emit_ref_reg(A_CMP,opsize,newreference(temp1),
- cmpreg);
- end;
- end
- else
- begin
- if p^.t2^.location.loc=LOC_CREGISTER then
- emit_const_reg(A_CMP,opsize,p^.right^.value,
- p^.t2^.location.register)
- else
- emit_const_ref(A_CMP,opsize,p^.right^.value,
- newreference(p^.t2^.location.reference));
- end;
- if p^.backward then
- if count_var_is_signed then
- hcond:=C_LE
- else
- hcond:=C_BE
- else
- if count_var_is_signed then
- hcond:=C_GE
- else
- hcond:=C_AE;
- emitjmp(hcond,aktbreaklabel);
- { according to count direction DEC or INC... }
- { must be after the test because of 0to 255 for bytes !! }
- if p^.backward then
- hop:=A_DEC
- else
- hop:=A_INC;
- if p^.t2^.location.loc=LOC_CREGISTER then
- emit_reg(hop,opsize,p^.t2^.location.register)
- else
- emit_ref(hop,opsize,newreference(p^.t2^.location.reference));
- emitjmp(C_None,l3);
- { this is the break label: }
- emitlab(aktbreaklabel);
- ungetregister32(cmp32);
- if temptovalue then
- ungetiftemp(temp1);
- aktcontinuelabel:=oldclabel;
- aktbreaklabel:=oldblabel;
- { a break/continue in a for block can't be seen outside }
- flowcontrol:=flowcontrol-[fc_break,fc_continue];
- end;
- {*****************************************************************************
- SecondExitN
- *****************************************************************************}
- procedure secondexitn(var p : ptree);
- var
- is_mem : boolean;
- {op : tasmop;
- s : topsize;}
- otlabel,oflabel : pasmlabel;
- label
- do_jmp;
- begin
- include(flowcontrol,fc_exit);
- if assigned(p^.left) then
- if p^.left^.treetype=assignn then
- begin
- { just do a normal assignment followed by exit }
- secondpass(p^.left);
- emitjmp(C_None,aktexitlabel);
- end
- else
- begin
- otlabel:=truelabel;
- oflabel:=falselabel;
- getlabel(truelabel);
- getlabel(falselabel);
- secondpass(p^.left);
- case p^.left^.location.loc of
- LOC_FPU : goto do_jmp;
- LOC_MEM,
- LOC_REFERENCE : is_mem:=true;
- LOC_CREGISTER,
- LOC_REGISTER : is_mem:=false;
- LOC_FLAGS : begin
- emit_flag2reg(p^.left^.location.resflags,R_AL);
- goto do_jmp;
- end;
- LOC_JUMP : begin
- emitlab(truelabel);
- emit_const_reg(A_MOV,S_B,1,R_AL);
- emitjmp(C_None,aktexit2label);
- emitlab(falselabel);
- emit_reg_reg(A_XOR,S_B,R_AL,R_AL);
- goto do_jmp;
- end;
- else
- internalerror(2001);
- end;
- case procinfo^.returntype.def^.deftype of
- pointerdef,
- procvardef : begin
- if is_mem then
- emit_ref_reg(A_MOV,S_L,
- newreference(p^.left^.location.reference),R_EAX)
- else
- emit_reg_reg(A_MOV,S_L,
- p^.left^.location.register,R_EAX);
- end;
- floatdef : begin
- if pfloatdef(procinfo^.returntype.def)^.typ=f32bit then
- begin
- if is_mem then
- emit_ref_reg(A_MOV,S_L,
- newreference(p^.left^.location.reference),R_EAX)
- else
- emit_reg_reg(A_MOV,S_L,p^.left^.location.register,R_EAX);
- end
- else
- if is_mem then
- floatload(pfloatdef(procinfo^.returntype.def)^.typ,p^.left^.location.reference);
- end;
- { orddef,
- enumdef : }
- else
- { it can be anything shorter than 4 bytes PM
- this caused form bug 711 }
- begin
- case procinfo^.returntype.def^.size of
- { if its 3 bytes only we can still
- copy one of garbage ! PM }
- 4,3 : if is_mem then
- emit_ref_reg(A_MOV,S_L,
- newreference(p^.left^.location.reference),R_EAX)
- else
- emit_reg_reg(A_MOV,S_L,p^.left^.location.register,R_EAX);
- 2 : if is_mem then
- emit_ref_reg(A_MOV,S_W,
- newreference(p^.left^.location.reference),R_AX)
- else
- emit_reg_reg(A_MOV,S_W,makereg16(p^.left^.location.register),R_AX);
- 1 : if is_mem then
- emit_ref_reg(A_MOV,S_B,
- newreference(p^.left^.location.reference),R_AL)
- else
- emit_reg_reg(A_MOV,S_B,makereg8(p^.left^.location.register),R_AL);
- end;
- end;
- end;
- do_jmp:
- truelabel:=otlabel;
- falselabel:=oflabel;
- emitjmp(C_None,aktexit2label);
- end
- else
- begin
- emitjmp(C_None,aktexitlabel);
- end;
- end;
- {*****************************************************************************
- SecondBreakN
- *****************************************************************************}
- procedure secondbreakn(var p : ptree);
- begin
- include(flowcontrol,fc_break);
- if aktbreaklabel<>nil then
- emitjmp(C_None,aktbreaklabel)
- else
- CGMessage(cg_e_break_not_allowed);
- end;
- {*****************************************************************************
- SecondContinueN
- *****************************************************************************}
- procedure secondcontinuen(var p : ptree);
- begin
- include(flowcontrol,fc_continue);
- if aktcontinuelabel<>nil then
- emitjmp(C_None,aktcontinuelabel)
- else
- CGMessage(cg_e_continue_not_allowed);
- end;
- {*****************************************************************************
- SecondGoto
- *****************************************************************************}
- procedure secondgoto(var p : ptree);
- begin
- emitjmp(C_None,p^.labelnr);
- { the assigned avoids only crashes if the label isn't defined }
- if assigned(p^.labsym) and
- assigned(p^.labsym^.code) and
- (aktexceptblock<>ptree(p^.labsym^.code)^.exceptionblock) then
- CGMessage(cg_e_goto_inout_of_exception_block);
- end;
- {*****************************************************************************
- SecondLabel
- *****************************************************************************}
- procedure secondlabel(var p : ptree);
- begin
- emitlab(p^.labelnr);
- cleartempgen;
- secondpass(p^.left);
- end;
- {*****************************************************************************
- SecondRaise
- *****************************************************************************}
- procedure secondraise(var p : ptree);
- var
- a : pasmlabel;
- begin
- if assigned(p^.left) then
- begin
- { generate the address }
- if assigned(p^.right) then
- begin
- secondpass(p^.right);
- if codegenerror then
- exit;
- emit_push_loc(p^.right^.location);
- end
- else
- begin
- getlabel(a);
- emitlab(a);
- emit_sym(A_PUSH,S_L,a);
- end;
- secondpass(p^.left);
- if codegenerror then
- exit;
- case p^.left^.location.loc of
- LOC_MEM,LOC_REFERENCE:
- emit_ref(A_PUSH,S_L,
- newreference(p^.left^.location.reference));
- LOC_CREGISTER,LOC_REGISTER : emit_reg(A_PUSH,S_L,
- p^.left^.location.register);
- else CGMessage(type_e_mismatch);
- end;
- emitcall('FPC_RAISEEXCEPTION');
- end
- else
- begin
- emitcall('FPC_POPADDRSTACK');
- emitcall('FPC_RERAISE');
- end;
- end;
- {*****************************************************************************
- SecondTryExcept
- *****************************************************************************}
- var
- endexceptlabel : pasmlabel;
- { does the necessary things to clean up the object stack }
- { in the except block }
- procedure cleanupobjectstack;
- begin
- emitcall('FPC_POPOBJECTSTACK');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_PUSH,S_L,R_EAX);
- emitcall('FPC_DESTROYEXCEPTION');
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- maybe_loadesi;
- end;
- { pops one element from the exception address stack }
- { and removes the flag }
- procedure cleanupaddrstack;
- begin
- emitcall('FPC_POPADDRSTACK');
- { allocate eax }
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_POP,S_L,R_EAX);
- { deallocate eax }
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- end;
- procedure secondtryexcept(var p : ptree);
- var
- exceptlabel,doexceptlabel,oldendexceptlabel,
- lastonlabel,
- exitexceptlabel,
- continueexceptlabel,
- breakexceptlabel,
- exittrylabel,
- continuetrylabel,
- breaktrylabel,
- doobjectdestroy,
- doobjectdestroyandreraise,
- oldaktexitlabel,
- oldaktexit2label,
- oldaktcontinuelabel,
- oldaktbreaklabel : pasmlabel;
- oldexceptblock : ptree;
- oldflowcontrol,tryflowcontrol,
- exceptflowcontrol : tflowcontrol;
- begin
- oldflowcontrol:=flowcontrol;
- flowcontrol:=[];
- { this can be called recursivly }
- oldendexceptlabel:=endexceptlabel;
- { we modify EAX }
- usedinproc:=usedinproc or ($80 shr byte(R_EAX));
- { save the old labels for control flow statements }
- oldaktexitlabel:=aktexitlabel;
- oldaktexit2label:=aktexit2label;
- if assigned(aktbreaklabel) then
- begin
- oldaktcontinuelabel:=aktcontinuelabel;
- oldaktbreaklabel:=aktbreaklabel;
- end;
- { get new labels for the control flow statements }
- getlabel(exittrylabel);
- getlabel(exitexceptlabel);
- if assigned(aktbreaklabel) then
- begin
- getlabel(breaktrylabel);
- getlabel(continuetrylabel);
- getlabel(breakexceptlabel);
- getlabel(continueexceptlabel);
- end;
- getlabel(exceptlabel);
- getlabel(doexceptlabel);
- getlabel(endexceptlabel);
- getlabel(lastonlabel);
- push_int (1); { push type of exceptionframe }
- emitcall('FPC_PUSHEXCEPTADDR');
- { allocate eax }
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_PUSH,S_L,R_EAX);
- emitcall('FPC_SETJMP');
- emit_reg(A_PUSH,S_L,R_EAX);
- emit_reg_reg(A_TEST,S_L,R_EAX,R_EAX);
- { deallocate eax }
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitjmp(C_NE,exceptlabel);
- { try block }
- { set control flow labels for the try block }
- aktexitlabel:=exittrylabel;
- aktexit2label:=exittrylabel;
- if assigned(oldaktbreaklabel) then
- begin
- aktcontinuelabel:=continuetrylabel;
- aktbreaklabel:=breaktrylabel;
- end;
- oldexceptblock:=aktexceptblock;
- aktexceptblock:=p^.left;
- flowcontrol:=[];
- secondpass(p^.left);
- tryflowcontrol:=flowcontrol;
- aktexceptblock:=oldexceptblock;
- if codegenerror then
- exit;
- emitlab(exceptlabel);
- emitcall('FPC_POPADDRSTACK');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_POP,S_L,R_EAX);
- emit_reg_reg(A_TEST,S_L,R_EAX,R_EAX);
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitjmp(C_E,endexceptlabel);
- emitlab(doexceptlabel);
- { set control flow labels for the except block }
- { and the on statements }
- aktexitlabel:=exitexceptlabel;
- aktexit2label:=exitexceptlabel;
- if assigned(oldaktbreaklabel) then
- begin
- aktcontinuelabel:=continueexceptlabel;
- aktbreaklabel:=breakexceptlabel;
- end;
- flowcontrol:=[];
- { on statements }
- if assigned(p^.right) then
- begin
- oldexceptblock:=aktexceptblock;
- aktexceptblock:=p^.right;
- secondpass(p^.right);
- aktexceptblock:=oldexceptblock;
- end;
- emitlab(lastonlabel);
- { default handling except handling }
- if assigned(p^.t1) then
- begin
- { FPC_CATCHES must be called with
- 'default handler' flag (=-1)
- }
- push_int (-1);
- emitcall('FPC_CATCHES');
- maybe_loadesi;
- { the destruction of the exception object must be also }
- { guarded by an exception frame }
- getlabel(doobjectdestroy);
- getlabel(doobjectdestroyandreraise);
- exprasmlist^.concat(new(paicpu,op_const(A_PUSH,S_L,1)));
- emitcall('FPC_PUSHEXCEPTADDR');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg(A_PUSH,S_L,R_EAX)));
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitcall('FPC_SETJMP');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg(A_PUSH,S_L,R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg_reg(A_TEST,S_L,R_EAX,R_EAX)));
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitjmp(C_NE,doobjectdestroyandreraise);
- oldexceptblock:=aktexceptblock;
- aktexceptblock:=p^.t1;
- { here we don't have to reset flowcontrol }
- { the default and on flowcontrols are handled equal }
- secondpass(p^.t1);
- exceptflowcontrol:=flowcontrol;
- aktexceptblock:=oldexceptblock;
- emitlab(doobjectdestroyandreraise);
- emitcall('FPC_POPADDRSTACK');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg(A_POP,S_L,R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg_reg(A_TEST,S_L,R_EAX,R_EAX)));
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitjmp(C_E,doobjectdestroy);
- emitcall('FPC_POPSECONDOBJECTSTACK');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_PUSH,S_L,R_EAX);
- emitcall('FPC_DESTROYEXCEPTION');
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- { we don't need to restore esi here because reraise never }
- { returns }
- emitcall('FPC_RERAISE');
- emitlab(doobjectdestroy);
- cleanupobjectstack;
- emitjmp(C_None,endexceptlabel);
- end
- else
- begin
- emitcall('FPC_RERAISE');
- exceptflowcontrol:=flowcontrol;
- end;
- if fc_exit in exceptflowcontrol then
- begin
- { do some magic for exit in the try block }
- emitlab(exitexceptlabel);
- { we must also destroy the address frame which guards }
- { exception object }
- cleanupaddrstack;
- cleanupobjectstack;
- emitjmp(C_None,oldaktexitlabel);
- end;
- if fc_break in exceptflowcontrol then
- begin
- emitlab(breakexceptlabel);
- { we must also destroy the address frame which guards }
- { exception object }
- cleanupaddrstack;
- cleanupobjectstack;
- emitjmp(C_None,oldaktbreaklabel);
- end;
- if fc_continue in exceptflowcontrol then
- begin
- emitlab(continueexceptlabel);
- { we must also destroy the address frame which guards }
- { exception object }
- cleanupaddrstack;
- cleanupobjectstack;
- emitjmp(C_None,oldaktcontinuelabel);
- end;
- if fc_exit in tryflowcontrol then
- begin
- { do some magic for exit in the try block }
- emitlab(exittrylabel);
- cleanupaddrstack;
- emitjmp(C_None,oldaktexitlabel);
- end;
- if fc_break in tryflowcontrol then
- begin
- emitlab(breaktrylabel);
- cleanupaddrstack;
- emitjmp(C_None,oldaktbreaklabel);
- end;
- if fc_continue in tryflowcontrol then
- begin
- emitlab(continuetrylabel);
- cleanupaddrstack;
- emitjmp(C_None,oldaktcontinuelabel);
- end;
- emitlab(endexceptlabel);
- endexceptlabel:=oldendexceptlabel;
- { restore the control flow labels }
- aktexitlabel:=oldaktexitlabel;
- aktexit2label:=oldaktexit2label;
- if assigned(oldaktbreaklabel) then
- begin
- aktcontinuelabel:=oldaktcontinuelabel;
- aktbreaklabel:=oldaktbreaklabel;
- end;
- { return all used control flow statements }
- flowcontrol:=oldflowcontrol+exceptflowcontrol+
- tryflowcontrol;
- end;
- procedure secondon(var p : ptree);
- var
- nextonlabel,
- exitonlabel,
- continueonlabel,
- breakonlabel,
- oldaktexitlabel,
- oldaktexit2label,
- oldaktcontinuelabel,
- doobjectdestroyandreraise,
- doobjectdestroy,
- oldaktbreaklabel : pasmlabel;
- ref : treference;
- oldexceptblock : ptree;
- oldflowcontrol : tflowcontrol;
- begin
- oldflowcontrol:=flowcontrol;
- flowcontrol:=[];
- getlabel(nextonlabel);
- { push the vmt }
- emit_sym(A_PUSH,S_L,
- newasmsymbol(p^.excepttype^.vmt_mangledname));
- emitcall('FPC_CATCHES');
- { allocate eax }
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg_reg(A_TEST,S_L,R_EAX,R_EAX);
- emitjmp(C_E,nextonlabel);
- ref.symbol:=nil;
- gettempofsizereference(4,ref);
- { what a hack ! }
- if assigned(p^.exceptsymtable) then
- pvarsym(p^.exceptsymtable^.symindex^.first)^.address:=ref.offset;
- emit_reg_ref(A_MOV,S_L,
- R_EAX,newreference(ref));
- { deallocate eax }
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- { in the case that another exception is risen }
- { we've to destroy the old one }
- getlabel(doobjectdestroyandreraise);
- exprasmlist^.concat(new(paicpu,op_const(A_PUSH,S_L,1)));
- emitcall('FPC_PUSHEXCEPTADDR');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg(A_PUSH,S_L,R_EAX)));
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitcall('FPC_SETJMP');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg(A_PUSH,S_L,R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg_reg(A_TEST,S_L,R_EAX,R_EAX)));
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitjmp(C_NE,doobjectdestroyandreraise);
- if assigned(p^.right) then
- begin
- oldaktexitlabel:=aktexitlabel;
- oldaktexit2label:=aktexit2label;
- getlabel(exitonlabel);
- aktexitlabel:=exitonlabel;
- aktexit2label:=exitonlabel;
- if assigned(aktbreaklabel) then
- begin
- oldaktcontinuelabel:=aktcontinuelabel;
- oldaktbreaklabel:=aktbreaklabel;
- getlabel(breakonlabel);
- getlabel(continueonlabel);
- aktcontinuelabel:=continueonlabel;
- aktbreaklabel:=breakonlabel;
- end;
- { esi is destroyed by FPC_CATCHES }
- maybe_loadesi;
- oldexceptblock:=aktexceptblock;
- aktexceptblock:=p^.right;
- secondpass(p^.right);
- aktexceptblock:=oldexceptblock;
- end;
- getlabel(doobjectdestroy);
- emitlab(doobjectdestroyandreraise);
- emitcall('FPC_POPADDRSTACK');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg(A_POP,S_L,R_EAX)));
- exprasmlist^.concat(new(paicpu,
- op_reg_reg(A_TEST,S_L,R_EAX,R_EAX)));
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitjmp(C_E,doobjectdestroy);
- emitcall('FPC_POPSECONDOBJECTSTACK');
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_PUSH,S_L,R_EAX);
- emitcall('FPC_DESTROYEXCEPTION');
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- { we don't need to restore esi here because reraise never }
- { returns }
- emitcall('FPC_RERAISE');
- emitlab(doobjectdestroy);
- cleanupobjectstack;
- { clear some stuff }
- ungetiftemp(ref);
- emitjmp(C_None,endexceptlabel);
- if assigned(p^.right) then
- begin
- { special handling for control flow instructions }
- if fc_exit in flowcontrol then
- begin
- { the address and object pop does secondtryexcept }
- emitlab(exitonlabel);
- emitjmp(C_None,oldaktexitlabel);
- end;
- if fc_break in flowcontrol then
- begin
- { the address and object pop does secondtryexcept }
- emitlab(breakonlabel);
- emitjmp(C_None,oldaktbreaklabel);
- end;
- if fc_continue in flowcontrol then
- begin
- { the address and object pop does secondtryexcept }
- emitlab(continueonlabel);
- emitjmp(C_None,oldaktcontinuelabel);
- end;
- aktexitlabel:=oldaktexitlabel;
- aktexit2label:=oldaktexit2label;
- if assigned(oldaktbreaklabel) then
- begin
- aktcontinuelabel:=oldaktcontinuelabel;
- aktbreaklabel:=oldaktbreaklabel;
- end;
- end;
- emitlab(nextonlabel);
- flowcontrol:=oldflowcontrol+flowcontrol;
- { next on node }
- if assigned(p^.left) then
- secondpass(p^.left);
- end;
- {*****************************************************************************
- SecondTryFinally
- *****************************************************************************}
- procedure secondtryfinally(var p : ptree);
- var
- reraiselabel,
- finallylabel,
- endfinallylabel,
- exitfinallylabel,
- continuefinallylabel,
- breakfinallylabel,
- oldaktexitlabel,
- oldaktexit2label,
- oldaktcontinuelabel,
- oldaktbreaklabel : pasmlabel;
- oldexceptblock : ptree;
- oldflowcontrol,tryflowcontrol : tflowcontrol;
- decconst : longint;
- begin
- { check if child nodes do a break/continue/exit }
- oldflowcontrol:=flowcontrol;
- flowcontrol:=[];
- { we modify EAX }
- usedinproc:=usedinproc or ($80 shr byte(R_EAX));
- getlabel(finallylabel);
- getlabel(endfinallylabel);
- getlabel(reraiselabel);
- { the finally block must catch break, continue and exit }
- { statements }
- oldaktexitlabel:=aktexitlabel;
- oldaktexit2label:=aktexit2label;
- getlabel(exitfinallylabel);
- aktexitlabel:=exitfinallylabel;
- aktexit2label:=exitfinallylabel;
- if assigned(aktbreaklabel) then
- begin
- oldaktcontinuelabel:=aktcontinuelabel;
- oldaktbreaklabel:=aktbreaklabel;
- getlabel(breakfinallylabel);
- getlabel(continuefinallylabel);
- aktcontinuelabel:=continuefinallylabel;
- aktbreaklabel:=breakfinallylabel;
- end;
- push_int(1); { Type of stack-frame must be pushed}
- emitcall('FPC_PUSHEXCEPTADDR');
- { allocate eax }
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_PUSH,S_L,R_EAX);
- emitcall('FPC_SETJMP');
- emit_reg(A_PUSH,S_L,R_EAX);
- emit_reg_reg(A_TEST,S_L,R_EAX,R_EAX);
- { deallocate eax }
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitjmp(C_NE,finallylabel);
- { try code }
- if assigned(p^.left) then
- begin
- oldexceptblock:=aktexceptblock;
- aktexceptblock:=p^.left;
- secondpass(p^.left);
- tryflowcontrol:=flowcontrol;
- if codegenerror then
- exit;
- aktexceptblock:=oldexceptblock;
- end;
- emitlab(finallylabel);
- emitcall('FPC_POPADDRSTACK');
- { finally code }
- oldexceptblock:=aktexceptblock;
- aktexceptblock:=p^.right;
- flowcontrol:=[];
- secondpass(p^.right);
- if flowcontrol<>[] then
- CGMessage(cg_e_control_flow_outside_finally);
- aktexceptblock:=oldexceptblock;
- if codegenerror then
- exit;
- { allocate eax }
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_POP,S_L,R_EAX);
- emit_reg_reg(A_TEST,S_L,R_EAX,R_EAX);
- emitjmp(C_E,endfinallylabel);
- emit_reg(A_DEC,S_L,R_EAX);
- emitjmp(C_Z,reraiselabel);
- if fc_exit in tryflowcontrol then
- begin
- emit_reg(A_DEC,S_L,R_EAX);
- emitjmp(C_Z,oldaktexitlabel);
- decconst:=1;
- end
- else
- decconst:=2;
- if fc_break in tryflowcontrol then
- begin
- emit_const_reg(A_SUB,S_L,decconst,R_EAX);
- emitjmp(C_Z,oldaktbreaklabel);
- decconst:=1;
- end
- else
- inc(decconst);
- if fc_continue in tryflowcontrol then
- begin
- emit_const_reg(A_SUB,S_L,decconst,R_EAX);
- emitjmp(C_Z,oldaktcontinuelabel);
- end;
- { deallocate eax }
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emitlab(reraiselabel);
- emitcall('FPC_RERAISE');
- { do some magic for exit,break,continue in the try block }
- if fc_exit in tryflowcontrol then
- begin
- emitlab(exitfinallylabel);
- { allocate eax }
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_POP,S_L,R_EAX);
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_const(A_PUSH,S_L,2);
- emitjmp(C_NONE,finallylabel);
- end;
- if fc_break in tryflowcontrol then
- begin
- emitlab(breakfinallylabel);
- { allocate eax }
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_POP,S_L,R_EAX);
- { deallocate eax }
- exprasmlist^.concat(new(pairegalloc,dealloc(R_EAX)));
- emit_const(A_PUSH,S_L,3);
- emitjmp(C_NONE,finallylabel);
- end;
- if fc_continue in tryflowcontrol then
- begin
- emitlab(continuefinallylabel);
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_reg(A_POP,S_L,R_EAX);
- exprasmlist^.concat(new(pairegalloc,alloc(R_EAX)));
- emit_const(A_PUSH,S_L,4);
- emitjmp(C_NONE,finallylabel);
- end;
- emitlab(endfinallylabel);
- aktexitlabel:=oldaktexitlabel;
- aktexit2label:=oldaktexit2label;
- if assigned(aktbreaklabel) then
- begin
- aktcontinuelabel:=oldaktcontinuelabel;
- aktbreaklabel:=oldaktbreaklabel;
- end;
- flowcontrol:=oldflowcontrol+tryflowcontrol;
- end;
- {*****************************************************************************
- SecondFail
- *****************************************************************************}
- procedure secondfail(var p : ptree);
- begin
- emitjmp(C_None,faillabel);
- end;
- end.
- {
- $Log$
- Revision 1.69 2000-02-10 23:44:42 florian
- * big update for exception handling code generation: possible mem holes
- fixed, break/continue/exit should work always now as expected
- Revision 1.68 2000/02/09 13:22:47 peter
- * log truncated
- Revision 1.67 2000/01/21 12:17:42 jonas
- * regallocation fixes
- Revision 1.66 2000/01/07 01:14:20 peter
- * updated copyright to 2000
- Revision 1.65 1999/12/22 23:30:06 peter
- * nested try blocks work again
- Revision 1.64 1999/12/22 01:01:46 peter
- - removed freelabel()
- * added undefined label detection in internal assembler, this prevents
- a lot of ld crashes and wrong .o files
- * .o files aren't written anymore if errors have occured
- * inlining of assembler labels is now correct
- Revision 1.63 1999/12/19 17:02:45 peter
- * support exit,break,continue in try...except
- * support break,continue in try...finally
- Revision 1.62 1999/12/17 11:20:06 florian
- * made the goto checking for excpetions more fool proof against errors
- Revision 1.61 1999/12/14 09:58:41 florian
- + compiler checks now if a goto leaves an exception block
- Revision 1.60 1999/12/01 12:36:23 peter
- * fixed selfpointer after destroyexception
- Revision 1.59 1999/11/30 10:40:42 peter
- + ttype, tsymlist
- Revision 1.58 1999/11/28 23:15:23 pierre
- * fix for form bug 721
- Revision 1.57 1999/11/15 21:49:09 peter
- * push address also for raise at
- Revision 1.56 1999/11/06 14:34:17 peter
- * truncated log to 20 revs
- Revision 1.55 1999/10/30 17:35:26 peter
- * fpc_freemem fpc_getmem new callings updated
- Revision 1.54 1999/10/21 16:41:37 florian
- * problems with readln fixed: esi wasn't restored correctly when
- reading ordinal fields of objects futher the register allocation
- didn't take care of the extra register when reading ordinal values
- * enumerations can now be used in constant indexes of properties
- Revision 1.53 1999/10/05 22:01:52 pierre
- * bug exit('test') + fail for classes
- Revision 1.52 1999/09/27 23:44:46 peter
- * procinfo is now a pointer
- * support for result setting in sub procedure
- Revision 1.51 1999/09/26 13:26:05 florian
- * exception patch of Romio nevertheless the excpetion handling
- needs some corections regarding register saving
- * gettempansistring is again a procedure
- Revision 1.50 1999/09/20 16:35:43 peter
- * restored old alignment, saves 40k on ppc386
- Revision 1.49 1999/09/15 20:35:37 florian
- * small fix to operator overloading when in MMX mode
- + the compiler uses now fldz and fld1 if possible
- + some fixes to floating point registers
- + some math. functions (arctan, ln, sin, cos, sqrt, sqr, pi) are now inlined
- * .... ???
- Revision 1.48 1999/09/07 07:56:37 peter
- * reload esi in except block to allow virtual methods
- Revision 1.47 1999/08/25 11:59:42 jonas
- * changed pai386, paippc and paiapha (same for tai*) to paicpu (taicpu)
- }
|