123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- {
- $Id$
- Copyright (c) 1998-2000 by Florian Klaempfl
- Helper routines for all code generators
- 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 ncgutil;
- {$i defines.inc}
- interface
- uses
- node;
- type
- tloadregvars = (lr_dont_load_regvars, lr_load_regvars);
- {$ifdef TEMPS_NOT_PUSH}
- function maybe_savetotemp(needed : byte;p : tnode;isint64 : boolean) : boolean;
- procedure restorefromtemp(p : tnode;isint64 : boolean);
- {$endif TEMPS_NOT_PUSH}
- procedure maketojumpbool(p : tnode; loadregvars: tloadregvars);
- implementation
- uses
- globals,systems,verbose,
- types,
- aasm,cgbase,regvars,
- ncon,
- cpubase,tgobj,cpuinfo,cginfo,cgobj,cgcpu,rgobj,cg64f32;
- {$ifdef TEMPS_NOT_PUSH}
- function maybe_savetotemp(needed : byte;p : tnode;isint64 : boolean) : boolean;
- var
- href : treference;
- scratchreg : tregister;
- saved : boolean;
- begin
- if needed>rg.countunusedregsint then
- begin
- if (p.location.loc=LOC_REGISTER) then
- begin
- if isint64 then
- begin
- tg.gettempofsizereference(exprasmlist,8,href);
- p.temp_offset:=href.offset;
- { do we have a 64bit processor? }
- if sizeof(aword) < 8 then
- begin
- tcg64f32(cg).a_load64_reg_ref(exprasmlist,
- p.location.registerlow,p.location.registerhigh,
- href);
- rg.ungetregister(exprasmlist,p.location.registerhigh);
- rg.ungetregister(exprasmlist,p.location.registerlow);
- end
- else
- begin
- cg.a_load_reg_ref(exprasmlist,OS_64,
- p.location.register,href);
- rg.ungetregister(exprasmlist,p.location.register);
- end;
- end
- else
- begin
- tg.gettempofsizereference(exprasmlist,4,href);
- p.temp_offset:=href.offset;
- cg.a_load_reg_ref(exprasmlist,OS_32,
- p.location.register,href);
- rg.ungetregister(exprasmlist,p.location.register);
- end;
- saved:=true;
- end
- else if (p.location.loc in [LOC_CREFERENCE,LOC_REFERENCE]) and
- ((p.location.reference.base<>R_NO) or
- (p.location.reference.index<>R_NO)
- ) then
- begin
- scratchreg := cg.get_scratch_reg(exprasmlist);
- cg.a_loadaddr_ref_reg(exprasmlist,p.location.reference,
- scratchreg);
- reference_release(exprasmlist,p.location.reference);
- tg.gettempofsizereference(exprasmlist,pointer_size,href);
- cg.a_load_reg_ref(exprasmlist,OS_ADDR,scratchreg,href);
- cg.free_scratch_reg(exprasmlist,scratchreg);
- p.temp_offset:=href.offset;
- saved:=true;
- end
- else saved:=false;
- end
- else saved:=false;
- maybe_savetotemp:=saved;
- end;
- procedure restorefromtemp(p : tnode;isint64 : boolean);
- var
- hregister : tregister;
- href : treference;
- begin
- hregister:=rg.getregisterint(exprasmlist);
- reset_reference(href);
- href.base:=procinfo^.framepointer;
- href.offset:=p.temp_offset;
- if (p.location.loc in [LOC_REGISTER,LOC_CREGISTER]) then
- begin
- p.location.registerlow:=hregister;
- if isint64 then
- begin
- if sizeof(aword) < 8 then
- begin
- p.location.registerhigh:=rg.getregisterint(exprasmlist);
- tcg64f32(cg).a_load64_ref_reg(exprasmlist,
- href,p.location.registerlow,p.location.registerhigh);
- end
- else
- cg.a_load_ref_reg(exprasmlist,OS_64,href,
- p.location.register);
- end
- else
- cg.a_load_ref_reg(exprasmlist,OS_32,href,p.location.register);
- end
- else
- begin
- reset_reference(p.location.reference);
- p.location.reference.base:=hregister;
- { Why is this done? We can never be sure about p^.left
- because otherwise secondload fails PM
- set_location(p^.left^.location,p^.location);}
- end;
- tg.ungetiftemp(exprasmlist,href);
- end;
- {$endif TEMPS_NOT_PUSH}
- procedure maketojumpbool(p : tnode; loadregvars: tloadregvars);
- {
- produces jumps to true respectively false labels using boolean expressions
- depending on whether the loading of regvars is currently being
- synchronized manually (such as in an if-node) or automatically (most of
- the other cases where this procedure is called), loadregvars can be
- "lr_load_regvars" or "lr_dont_load_regvars"
- }
- var
- opsize : tcgsize;
- storepos : tfileposinfo;
- begin
- if nf_error in p.flags then
- exit;
- storepos:=aktfilepos;
- aktfilepos:=p.fileinfo;
- if is_boolean(p.resulttype.def) then
- begin
- if loadregvars = lr_load_regvars then
- load_all_regvars(exprasmlist);
- if is_constboolnode(p) then
- begin
- if tordconstnode(p).value<>0 then
- cg.a_jmp_cond(exprasmlist,OC_NONE,truelabel)
- else
- cg.a_jmp_cond(exprasmlist,OC_NONE,falselabel)
- end
- else
- begin
- opsize:=def_cgsize(p.resulttype.def);
- case p.location.loc of
- LOC_CREGISTER,LOC_REGISTER,LOC_CREFERENCE,LOC_REFERENCE :
- begin
- if (p.location.loc = LOC_CREGISTER) then
- load_regvar_reg(exprasmlist,p.location.register);
- cg.a_cmp_const_loc_label(exprasmlist,opsize,OC_NE,
- 0,p.location,truelabel);
- { !!! should happen right after cmp (JM) }
- location_release(exprasmlist,p.location);
- cg.a_jmp_cond(exprasmlist,OC_NONE,falselabel);
- end;
- LOC_FLAGS :
- begin
- cg.a_jmp_flags(exprasmlist,p.location.resflags,
- truelabel);
- cg.a_jmp_cond(exprasmlist,OC_None,falselabel);
- end;
- end;
- end;
- end
- else
- internalerror(200112305);
- aktfilepos:=storepos;
- end;
- end.
- {
- $Log$
- Revision 1.7 2002-04-15 18:58:47 carl
- + target_info.size_of_pointer -> pointer_Size
- Revision 1.6 2002/04/06 18:10:42 jonas
- * several powerpc-related additions and fixes
- Revision 1.5 2002/04/04 19:05:57 peter
- * removed unused units
- * use tlocation.size in cg.a_*loc*() routines
- Revision 1.4 2002/04/02 17:11:28 peter
- * tlocation,treference update
- * LOC_CONSTANT added for better constant handling
- * secondadd splitted in multiple routines
- * location_force_reg added for loading a location to a register
- of a specified size
- * secondassignment parses now first the right and then the left node
- (this is compatible with Kylix). This saves a lot of push/pop especially
- with string operations
- * adapted some routines to use the new cg methods
- Revision 1.3 2002/03/31 20:26:34 jonas
- + a_loadfpu_* and a_loadmm_* methods in tcg
- * register allocation is now handled by a class and is mostly processor
- independent (+rgobj.pas and i386/rgcpu.pas)
- * temp allocation is now handled by a class (+tgobj.pas, -i386\tgcpu.pas)
- * some small improvements and fixes to the optimizer
- * some register allocation fixes
- * some fpuvaroffset fixes in the unary minus node
- * push/popusedregisters is now called rg.save/restoreusedregisters and
- (for i386) uses temps instead of push/pop's when using -Op3 (that code is
- also better optimizable)
- * fixed and optimized register saving/restoring for new/dispose nodes
- * LOC_FPU locations now also require their "register" field to be set to
- R_ST, not R_ST0 (the latter is used for LOC_CFPUREGISTER locations only)
- - list field removed of the tnode class because it's not used currently
- and can cause hard-to-find bugs
- Revision 1.2 2002/03/04 19:10:11 peter
- * removed compiler warnings
- Revision 1.1 2001/12/30 17:24:48 jonas
- * range checking is now processor independent (part in cgobj,
- part in cg64f32) and should work correctly again (it needed
- some changes after the changes of the low and high of
- tordef's to int64)
- * maketojumpbool() is now processor independent (in ncgutil)
- * getregister32 is now called getregisterint
- }
|