123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613 |
- {
- $Id$
- Copyright (c) 1998-2000 by Florian Klaempfl
- Generate assembler for nodes that influence the flow which are
- the same for all (most?) processors
- 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 ncgflw;
- {$i defines.inc}
- interface
- uses
- node,nflw;
- type
- tcgwhilerepeatnode = class(twhilerepeatnode)
- procedure pass_2;override;
- end;
- tcgifnode = class(tifnode)
- procedure pass_2;override;
- end;
- tcgfornode = class(tfornode)
- procedure pass_2;override;
- end;
- tcgexitnode = class(texitnode)
- procedure pass_2;override;
- end;
- tcgbreaknode = class(tbreaknode)
- procedure pass_2;override;
- end;
- tcgcontinuenode = class(tcontinuenode)
- procedure pass_2;override;
- end;
- tcggotonode = class(tgotonode)
- procedure pass_2;override;
- end;
- tcglabelnode = class(tlabelnode)
- procedure pass_2;override;
- end;
- implementation
- uses
- verbose,globtype,globals,systems,
- symconst,symdef,symsym,aasm,types,
- cgbase,temp_gen,pass_2,
- cpubase,cpuasm,
- pass_1,nld,ncon,
- cga,tgcpu,
- {$ifdef i386}
- n386util,
- {$endif}
- regvars,cgobj,cgcpu;
- {*****************************************************************************
- Second_While_RepeatN
- *****************************************************************************}
- procedure tcgwhilerepeatnode.pass_2;
- var
- lcont,lbreak,lloop,
- oldclabel,oldblabel : tasmlabel;
- otlabel,oflabel : tasmlabel;
- begin
- getlabel(lloop);
- getlabel(lcont);
- getlabel(lbreak);
- { arrange continue and breaklabels: }
- oldclabel:=aktcontinuelabel;
- oldblabel:=aktbreaklabel;
- load_all_regvars(exprasmlist);
- { 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 nodetype=whilen then
- cg.a_jmp_cond(exprasmlist,OC_None,lcont);
- { align loop target }
- exprasmList.concat(Tai_align.Create(aktalignment.loopalign));
- cg.a_label(exprasmlist,lloop);
- aktcontinuelabel:=lcont;
- aktbreaklabel:=lbreak;
- cleartempgen;
- if assigned(right) then
- secondpass(right);
- load_all_regvars(exprasmlist);
- cg.a_label(exprasmlist,lcont);
- otlabel:=truelabel;
- oflabel:=falselabel;
- if nodetype=whilen then
- begin
- truelabel:=lloop;
- falselabel:=lbreak;
- end
- { repeatn }
- else
- begin
- truelabel:=lbreak;
- falselabel:=lloop;
- end;
- cleartempgen;
- secondpass(left);
- load_all_regvars(exprasmlist);
- maketojumpbool(left);
- cg.a_label(exprasmlist,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;
- {*****************************************************************************
- tcgIFNODE
- *****************************************************************************}
- procedure tcgifnode.pass_2;
- var
- hl,otlabel,oflabel : tasmlabel;
- begin
- otlabel:=truelabel;
- oflabel:=falselabel;
- getlabel(truelabel);
- getlabel(falselabel);
- cleartempgen;
- secondpass(left);
- load_all_regvars(exprasmlist);
- maketojumpbool(left);
- if assigned(right) then
- begin
- cg.a_label(exprasmlist,truelabel);
- cleartempgen;
- secondpass(right);
- { automatically done for blocks, but not for statements (JM) }
- load_all_regvars(exprasmlist);
- end;
- if assigned(t1) then
- begin
- if assigned(right) then
- begin
- getlabel(hl);
- { do go back to if line !! }
- aktfilepos:=exprasmList.getlasttaifilepos^;
- cg.a_jmp_cond(exprasmlist,OC_None,hl);
- end;
- cg.a_label(exprasmlist,falselabel);
- cleartempgen;
- secondpass(t1);
- load_all_regvars(exprasmlist);
- if assigned(right) then
- cg.a_label(exprasmlist,hl);
- end
- else
- begin
- cg.a_label(exprasmlist,falselabel);
- end;
- if not(assigned(right)) then
- begin
- cg.a_label(exprasmlist,truelabel);
- end;
- truelabel:=otlabel;
- falselabel:=oflabel;
- end;
- {*****************************************************************************
- SecondFor
- *****************************************************************************}
- procedure tcgfornode.pass_2;
- var
- l3,oldclabel,oldblabel : tasmlabel;
- omitfirstcomp,temptovalue : boolean;
- hs : byte;
- temp1 : treference;
- hop : topcg;
- hcond : topcmp;
- opsize : tcgsize;
- 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 right.nodetype=ordconstn then
- if tassignmentnode(left).right.nodetype=ordconstn then
- omitfirstcomp:=((nf_backward in flags) and
- (tordconstnode(tassignmentnode(left).right).value>=tordconstnode(right).value))
- or (not(nf_backward in flags) and
- (tordconstnode(tassignmentnode(left).right).value<=tordconstnode(right).value));
- { only calculate reference }
- cleartempgen;
- secondpass(t2);
- hs := t2.resulttype.def.size;
- opsize := def_cgsize(t2.resulttype.def);
- { first set the to value
- because the count var can be in the expression !! }
- cleartempgen;
- secondpass(right);
- { calculate pointer value and check if changeable and if so }
- { load into temporary variable }
- if right.nodetype<>ordconstn then
- begin
- temp1.symbol:=nil;
- gettempofsizereference(hs,temp1);
- temptovalue:=true;
- if (right.location.loc=LOC_REGISTER) or
- (right.location.loc=LOC_CREGISTER) then
- begin
- cg.a_load_reg_ref(exprasmlist,opsize,
- right.location.register,temp1);
- ungetregister(right.location.register);
- end
- else
- cg.g_concatcopy(exprasmlist,right.location.reference,temp1,
- hs,true,false);
- end
- else
- temptovalue:=false;
- { produce start assignment }
- cleartempgen;
- secondpass(left);
- count_var_is_signed:=is_signed(torddef(t2.resulttype.def));
- if nf_backward in flags then
- if count_var_is_signed then
- hcond:=OC_LT
- else
- hcond:=OC_B
- else
- if count_var_is_signed then
- hcond:=OC_GT
- else
- hcond:=OC_A;
- load_all_regvars(exprasmlist);
- if temptovalue then
- begin
- cg.a_cmp_ref_loc_label(exprasmlist,opsize,hcond,
- temp1,t2.location,aktbreaklabel);
- end
- else
- begin
- if not(omitfirstcomp) then
- begin
- cg.a_cmp_const_loc_label(exprasmlist,opsize,hcond,
- tordconstnode(right).value,t2.location,aktbreaklabel);
- end;
- end;
- { align loop target }
- exprasmList.concat(Tai_align.Create(aktalignment.loopalign));
- cg.a_label(exprasmlist,l3);
- { help register must not be in instruction block }
- cleartempgen;
- if assigned(t1) then
- begin
- secondpass(t1);
- load_all_regvars(exprasmlist);
- end;
- cg.a_label(exprasmlist,aktcontinuelabel);
- { makes no problems there }
- cleartempgen;
- if nf_backward in flags then
- if count_var_is_signed then
- hcond:=OC_LTE
- else
- hcond:=OC_BE
- else
- if count_var_is_signed then
- hcond:=OC_GTE
- else
- hcond:=OC_AE;
- load_all_regvars(exprasmlist);
- { produce comparison and the corresponding }
- { jump }
- if temptovalue then
- begin
- cg.a_cmp_ref_loc_label(exprasmlist,opsize,hcond,temp1,
- t2.location,aktbreaklabel);
- end
- else
- begin
- cg.a_cmp_const_loc_label(exprasmlist,opsize,hcond,
- tordconstnode(right).value,t2.location,aktbreaklabel);
- end;
- { according to count direction DEC or INC... }
- { must be after the test because of 0 to 255 for bytes !! }
- if nf_backward in flags then
- hop:=OP_SUB
- else
- hop:=OP_ADD;
- cg.a_op_const_loc(exprasmlist,hop,opsize,1,t2.location);
- cg.a_jmp_cond(exprasmlist,OC_None,l3);
- if temptovalue then
- ungetiftemp(temp1);
- { this is the break label: }
- cg.a_label(exprasmlist,aktbreaklabel);
- 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 tcgexitnode.pass_2;
- var
- {op : tasmop;
- s : topsize;}
- otlabel,oflabel : tasmlabel;
- r : treference;
- is_mem,
- allocated_acc,
- allocated_acchigh: boolean;
- procedure cleanleft;
- begin
- if is_mem then
- begin
- del_reference(left.location.reference);
- ungetiftemp(left.location.reference);
- end
- else
- begin
- ungetregister(left.location.register);
- if left.location.registerhigh <> R_NO then
- ungetregister(left.location.registerhigh);
- end;
- end;
- label
- do_jmp;
- begin
- load_all_regvars(exprasmlist);
- include(flowcontrol,fc_exit);
- if assigned(left) then
- if left.nodetype=assignn then
- begin
- { just do a normal assignment followed by exit }
- secondpass(left);
- cg.a_jmp_cond(exprasmlist,OC_NONE,aktexitlabel);
- end
- else
- begin
- allocated_acc := false;
- allocated_acchigh := false;
- otlabel:=truelabel;
- oflabel:=falselabel;
- getlabel(truelabel);
- getlabel(falselabel);
- secondpass(left);
- case 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
- cg.a_reg_alloc(exprasmlist,accumulator);
- allocated_acc := true;
- cg.g_flags2reg(exprasmlist,left.location.resflags,accumulator);
- goto do_jmp;
- end;
- LOC_JUMP : begin
- exprasmlist.concat(tairegalloc.alloc(accumulator));
- allocated_acc := true;
- cg.a_label(exprasmlist,truelabel);
- cg.a_load_const_reg(exprasmlist,OS_8,1,
- makereg8(accumulator));
- cg.a_jmp_cond(exprasmlist,OC_NONE,aktexit2label);
- cg.a_label(exprasmlist,falselabel);
- cg.a_load_const_reg(exprasmlist,OS_8,0,
- makereg8(accumulator));
- goto do_jmp;
- end;
- else
- internalerror(2001);
- end;
- case aktprocsym.definition.rettype.def.deftype of
- pointerdef,
- procvardef : begin
- cleanleft;
- cg.a_reg_alloc(exprasmlist,accumulator);
- allocated_acc := true;
- if is_mem then
- cg.a_load_ref_reg(exprasmlist,OS_ADDR,
- left.location.reference,accumulator)
- else
- cg.a_load_reg_reg(exprasmlist,OS_ADDR,
- left.location.register,accumulator);
- end;
- floatdef : begin
- cleanleft;
- if is_mem then
- floatload(tfloatdef(aktprocsym.definition.rettype.def).typ,left.location.reference);
- end;
- { orddef,
- enumdef : }
- else
- { it can be anything shorter than 4 bytes PM
- this caused form bug 711 }
- begin
- cleanleft;
- cg.a_reg_alloc(exprasmlist,accumulator);
- allocated_acc := true;
- case aktprocsym.definition.rettype.def.size of
- { it can be a qword/int64 too ... }
- 8 :
- if is_mem then
- begin
- cg.a_load_ref_reg(exprasmlist,OS_32,
- left.location.reference,accumulator);
- r:=left.location.reference;
- inc(r.offset,4);
- cg.a_reg_alloc(exprasmlist,accumulatorhigh);
- allocated_acchigh := true;
- cg.a_load_ref_reg(exprasmlist,OS_32,r,accumulatorhigh);
- end
- else
- begin
- cg.a_load_reg_reg(exprasmlist,OS_32,left.location.registerlow,accumulator);
- cg.a_reg_alloc(exprasmlist,accumulatorhigh);
- allocated_acchigh := true;
- cg.a_load_reg_reg(exprasmlist,OS_32,left.location.registerhigh,accumulatorhigh);
- end;
- { if its 3 bytes only we can still
- copy one of garbage ! PM }
- 4,3 :
- cg.a_load_loc_reg(exprasmlist,OS_32,left.location,
- accumulator);
- 2 :
- cg.a_load_loc_reg(exprasmlist,OS_16,left.location,
- makereg16(accumulator));
- 1 :
- cg.a_load_loc_reg(exprasmlist,OS_8,left.location,
- makereg8(accumulator));
- else internalerror(605001);
- end;
- end;
- end;
- do_jmp:
- truelabel:=otlabel;
- falselabel:=oflabel;
- cg.a_jmp_cond(exprasmlist,OC_None,aktexit2label);
- if allocated_acc then
- cg.a_reg_dealloc(exprasmlist,accumulator);
- if allocated_acchigh then
- cg.a_reg_dealloc(exprasmlist,accumulator);
- end
- else
- cg.a_jmp_cond(exprasmlist,OC_None,aktexitlabel);
- end;
- {*****************************************************************************
- SecondBreakN
- *****************************************************************************}
- procedure tcgbreaknode.pass_2;
- begin
- include(flowcontrol,fc_break);
- if aktbreaklabel<>nil then
- begin
- load_all_regvars(exprasmlist);
- cg.a_jmp_cond(exprasmlist,OC_None,aktbreaklabel)
- end
- else
- CGMessage(cg_e_break_not_allowed);
- end;
- {*****************************************************************************
- SecondContinueN
- *****************************************************************************}
- procedure tcgcontinuenode.pass_2;
- begin
- include(flowcontrol,fc_continue);
- if aktcontinuelabel<>nil then
- begin
- load_all_regvars(exprasmlist);
- cg.a_jmp_cond(exprasmlist,OC_None,aktcontinuelabel)
- end
- else
- CGMessage(cg_e_continue_not_allowed);
- end;
- {*****************************************************************************
- SecondGoto
- *****************************************************************************}
- procedure tcggotonode.pass_2;
- begin
- load_all_regvars(exprasmlist);
- cg.a_jmp_cond(exprasmlist,OC_None,labelnr)
- end;
- {*****************************************************************************
- SecondLabel
- *****************************************************************************}
- procedure tcglabelnode.pass_2;
- begin
- load_all_regvars(exprasmlist);
- cg.a_label(exprasmlist,labelnr);
- cleartempgen;
- secondpass(left);
- end;
- begin
- cwhilerepeatnode:=tcgwhilerepeatnode;
- cifnode:=tcgifnode;
- cfornode:=tcgfornode;
- cexitnode:=tcgexitnode;
- cbreaknode:=tcgbreaknode;
- ccontinuenode:=tcgcontinuenode;
- cgotonode:=tcggotonode;
- clabelnode:=tcglabelnode;
- end.
- {
- $Log$
- Revision 1.1 2001-09-28 20:39:33 jonas
- * changed all flow control structures (except for exception handling
- related things) to processor independent code (in new ncgflw unit)
- + generic cgobj unit which contains lots of code generator helpers with
- global "cg" class instance variable
- + cgcpu unit for i386 (implements processor specific routines of the above
- unit)
- * updated cgbase and cpubase for the new code generator units
- * include ncgflw unit in cpunode unit
- Revision 1.4 2001/09/09 17:10:25 jonas
- * some more things implemented
- Revision 1.3 2001/09/06 15:25:55 jonas
- * changed type of tcg from object to class -> abstract methods are now
- a lot cleaner :)
- + more updates: load_*_loc methods, op_*_* methods, g_flags2reg method
- (if possible with geenric implementation and necessary ppc
- implementations)
- * worked a bit further on cgflw, now working on exitnode
- Revision 1.2 2001/09/05 20:21:03 jonas
- * new cgflow based on n386flw with all nodes until forn "translated"
- + a_cmp_*_loc_label methods for tcg
- + base implementatino for a_cmp_ref_*_label methods
- * small bugfixes to powerpc cg
- }
|