123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- {
- Copyright (c) 1998-2002 by Florian Klaempfl
- Generate m68k assembler for type converting 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 n68kcnv;
- {$i fpcdefs.inc}
- interface
- uses
- node,ncnv,ncgcnv,defcmp;
- type
- tm68ktypeconvnode = class(tcgtypeconvnode)
- protected
- function first_int_to_real: tnode; override;
- procedure second_int_to_real;override;
- procedure second_int_to_bool;override;
- end;
- implementation
- uses
- verbose,globals,systems,
- symconst,symdef,aasmbase,aasmtai,aasmdata,
- defutil,
- cgbase,pass_1,pass_2,procinfo,
- ncon,ncal,
- ncgutil,
- cpubase,cpuinfo,aasmcpu,
- rgobj,tgobj,cgobj,hlcgobj,cgutils,globtype,cgcpu,cutils;
- {*****************************************************************************
- FirstTypeConv
- *****************************************************************************}
- function tm68ktypeconvnode.first_int_to_real: tnode;
- var
- fname: string[32];
- begin
- { In case we are in emulation mode, we must
- always call the helpers
- }
- if (cs_fp_emulation in current_settings.moduleswitches)
- or (current_settings.fputype=fpu_soft) then
- begin
- result := inherited first_int_to_real;
- exit;
- end
- else
- { converting a 64bit integer to a float requires a helper }
- if is_64bitint(left.resultdef) or
- is_currency(left.resultdef) then
- begin
- { hack to avoid double division by 10000, as it's
- already done by typecheckpass.resultdef_int_to_real }
- if is_currency(left.resultdef) then
- left.resultdef := s64inttype;
- if is_signed(left.resultdef) then
- fname := 'fpc_int64_to_double'
- else
- fname := 'fpc_qword_to_double';
- result := ccallnode.createintern(fname,ccallparanode.create(
- left,nil));
- left:=nil;
- firstpass(result);
- exit;
- end
- else
- begin
- { The FPU can load any size int, but only signed. Therefore, we convert
- 16 and 8 bit unsigned to 32bit signed, the rest we can load directly,
- and we have a special codepath for 32bit unsigned in second pass (KB) }
- if not (is_32bitint(left.resultdef) or is_signed(left.resultdef)) then
- begin
- inserttypeconv(left,s32inttype);
- firstpass(left);
- end;
- end;
- result := nil;
- location.loc:=LOC_FPUREGISTER;
- end;
- {*****************************************************************************
- SecondTypeConv
- *****************************************************************************}
- procedure tm68ktypeconvnode.second_int_to_real;
- var
- l: tasmlabel;
- ref: treference;
- tempref: treference;
- leftreg: tregister;
- signed : boolean;
- opsize : tcgsize;
- begin
- location_reset(location,LOC_FPUREGISTER,def_cgsize(resultdef));
- signed := is_signed(left.resultdef);
- opsize := def_cgsize(left.resultdef);
- { has to be handled by a helper }
- if is_64bitint(left.resultdef) then
- internalerror(200110011);
- location.register:=cg.getfpuregister(current_asmdata.CurrAsmList,opsize);
- if not signed then
- begin
- // current_asmdata.CurrAsmList.concat(tai_comment.create(strpnew('typeconvnode second_int_to_real cardinal')));
- { the idea behind this code is based on the cardinal to double code in the PPC and x86 CG (KB) }
- tg.GetTemp(current_asmdata.CurrAsmList,sizeof(double),sizeof(double),tt_normal,tempref);
- hlcg.a_load_const_ref(current_asmdata.CurrAsmList,u32inttype,$43300000,tempref);
- inc(tempref.offset,sizeof(aint));
- hlcg.a_load_loc_ref(current_asmdata.CurrAsmList,left.resultdef,u32inttype,left.location,tempref);
- dec(tempref.offset,sizeof(aint));
- current_asmdata.CurrAsmList.concat(taicpu.op_ref_reg(A_FMOVE,S_FD,tempref,location.register));
- if current_settings.fputype in [fpu_coldfire] then
- begin
- current_asmdata.getglobaldatalabel(l);
- new_section(current_asmdata.asmlists[al_typedconsts],sec_rodata_norel,l.name,const_align(sizeof(pint)));
- current_asmdata.asmlists[al_typedconsts].concat(Tai_label.Create(l));
- current_asmdata.asmlists[al_typedconsts].concat(Tai_const.Create_32bit($59800000));
- reference_reset_symbol(ref,l,0,4,[]);
- tcg68k(cg).fixref(current_asmdata.CurrAsmList,ref,true);
- current_asmdata.CurrAsmList.concat(taicpu.op_ref_reg(A_FSUB,S_FS,ref,location.register));
- end
- else
- { using single here for (1 shl 52) is safe, the optimizer would simplify it anyway }
- current_asmdata.CurrAsmList.concat(taicpu.op_realconst_reg(A_FSUB,S_FS,(1 shl 52),location.register));
- tg.UnGetTemp(current_asmdata.CurrAsmList,tempref);
- exit;
- end;
- if not(left.location.loc in [LOC_REGISTER,LOC_CREGISTER,LOC_REFERENCE,LOC_CREFERENCE]) then
- hlcg.location_force_reg(current_asmdata.CurrAsmList,left.location,left.resultdef,osuinttype,false);
- case left.location.loc of
- LOC_REGISTER, LOC_CREGISTER:
- begin
- leftreg:=tcg68k(cg).force_to_dataregister(current_asmdata.CurrAsmList,left.location.size,left.location.register);
- current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(A_FMOVE,TCGSize2OpSize[opsize],leftreg,
- location.register));
- end;
- LOC_REFERENCE,LOC_CREFERENCE:
- begin
- ref:=left.location.reference;
- tcg68k(cg).fixref(current_asmdata.CurrAsmList,ref,false);
- current_asmdata.CurrAsmList.concat(taicpu.op_ref_reg(A_FMOVE,TCGSize2OpSize[opsize],ref,location.register));
- end
- else
- internalerror(200110012);
- end;
- end;
- procedure tm68ktypeconvnode.second_int_to_bool;
- var
- hreg1,
- hreg2 : tregister;
- reg64 : tregister64;
- resflags : tresflags;
- opsize : tcgsize;
- newsize : tcgsize;
- hlabel : tasmlabel;
- tmpreference : treference;
- begin
- secondpass(left);
- { Explicit typecasts from any ordinal type to a boolean type }
- { must not change the ordinal value }
- if (nf_explicit in flags) and
- not(left.location.loc in [LOC_FLAGS,LOC_JUMP]) then
- begin
- location_copy(location,left.location);
- newsize:=def_cgsize(resultdef);
- { change of size? change sign only if location is LOC_(C)REGISTER? Then we have to sign/zero-extend }
- if (tcgsize2size[newsize]>tcgsize2size[left.location.size]) or
- ((newsize<>left.location.size) and (location.loc in [LOC_REGISTER,LOC_CREGISTER])) then
- hlcg.location_force_reg(current_asmdata.CurrAsmList,location,left.resultdef,resultdef,true)
- else
- begin
- location.size:=newsize;
- if (location.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
- begin
- inc(location.reference.offset,TCGSize2Size[left.location.size]-TCGSize2Size[location.size]);
- location.reference.alignment:=newalignment(location.reference.alignment,TCGSize2Size[left.location.size]-TCGSize2Size[location.size]);
- end;
- end;
- exit;
- end;
- resflags:=F_NE;
- newsize:=def_cgsize(resultdef);
- opsize := def_cgsize(left.resultdef);
- if (left.location.loc in [LOC_SUBSETREG,LOC_CSUBSETREG,LOC_SUBSETREF,LOC_CSUBSETREF]) or
- ((left.location.loc in [LOC_REFERENCE,LOC_CREFERENCE]) and needs_unaligned(left.location.reference.alignment,opsize)) then
- hlcg.location_force_reg(current_asmdata.CurrAsmList,left.location,left.resultdef,left.resultdef,true);
- case left.location.loc of
- LOC_CREFERENCE,LOC_REFERENCE :
- begin
- if opsize in [OS_64,OS_S64] then
- begin
- //current_asmdata.CurrAsmList.concat(tai_comment.create(strpnew('typeconvnode second_int_to_bool #1')));
- reg64.reghi:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
- reg64.reglo:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
- cg64.a_load64_loc_reg(current_asmdata.CurrAsmList,left.location,reg64);
- current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(A_OR,S_L,reg64.reghi,reg64.reglo));
- // it's not necessary to call TST after OR, which sets the flags as required already
- //current_asmdata.CurrAsmList.concat(taicpu.op_reg(A_TST,S_L,reg64.reglo));
- end
- else
- begin
- //current_asmdata.CurrAsmList.concat(tai_comment.create(strpnew('typeconvnode second_int_to_bool #2')));
- tmpreference:=left.location.reference;
- tcg68k(cg).fixref(current_asmdata.CurrAsmList,tmpreference,false);
- current_asmdata.CurrAsmList.concat(taicpu.op_ref(A_TST,TCGSize2OpSize[opsize],tmpreference));
- end;
- end;
- LOC_REGISTER,LOC_CREGISTER :
- begin
- if opsize in [OS_64,OS_S64] then
- begin
- //current_asmdata.CurrAsmList.concat(tai_comment.create(strpnew('typeconvnode second_int_to_bool #3')));
- hreg2:=cg.getintregister(current_asmdata.CurrAsmList,opsize);
- current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(A_MOVE,S_L,left.location.register64.reglo,hreg2));
- current_asmdata.CurrAsmList.concat(taicpu.op_reg_reg(A_OR,S_L,left.location.register64.reghi,hreg2));
- // it's not necessary to call TST after OR, which sets the flags as required already
- //current_asmdata.CurrAsmList.concat(taicpu.op_reg(A_TST,S_L,hreg2));
- end
- else
- begin
- if (current_settings.cputype = cpu_mc68000) and isaddressregister(left.location.register) then
- begin
- hreg2:=cg.getintregister(current_asmdata.CurrAsmList,opsize);
- cg.a_load_reg_reg(current_asmdata.CurrAsmList,OS_ADDR,opsize,left.location.register,hreg2);
- end
- else
- hreg2:=left.location.register;
- current_asmdata.CurrAsmList.concat(taicpu.op_reg(A_TST,TCGSize2OpSize[opsize],hreg2));
- end;
- end;
- LOC_FLAGS :
- begin
- resflags:=left.location.resflags;
- end;
- LOC_JUMP :
- begin
- { for now blindly copied from nx86cnv }
- location_reset(location,LOC_REGISTER,newsize);
- location.register:=cg.getintregister(current_asmdata.CurrAsmList,location.size);
- current_asmdata.getjumplabel(hlabel);
- cg.a_label(current_asmdata.CurrAsmList,left.location.truelabel);
- if not(is_cbool(resultdef)) then
- cg.a_load_const_reg(current_asmdata.CurrAsmList,location.size,1,location.register)
- else
- cg.a_load_const_reg(current_asmdata.CurrAsmList,location.size,-1,location.register);
- cg.a_jmp_always(current_asmdata.CurrAsmList,hlabel);
- cg.a_label(current_asmdata.CurrAsmList,left.location.falselabel);
- cg.a_load_const_reg(current_asmdata.CurrAsmList,location.size,0,location.register);
- cg.a_label(current_asmdata.CurrAsmList,hlabel);
- end;
- else
- internalerror(200512182);
- end;
- if left.location.loc<>LOC_JUMP then
- begin
- location_reset(location,LOC_REGISTER,newsize);
- if newsize in [OS_64,OS_S64] then
- begin
- hreg2:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
- cg.g_flags2reg(current_asmdata.CurrAsmList,OS_32,resflags,hreg2);
- if (is_cbool(resultdef)) then
- cg.a_op_reg_reg(current_asmdata.CurrAsmList,OP_NEG,OS_32,hreg2,hreg2);
- location.register64.reglo:=hreg2;
- location.register64.reghi:=cg.getintregister(current_asmdata.CurrAsmList,OS_32);
- if (is_cbool(resultdef)) then
- { reglo is either 0 or -1 -> reghi has to become the same }
- cg.a_load_reg_reg(current_asmdata.CurrAsmList,OS_32,OS_32,location.register64.reglo,location.register64.reghi)
- else
- { unsigned }
- cg.a_load_const_reg(current_asmdata.CurrAsmList,OS_32,0,location.register64.reghi);
- end
- else
- begin
- location.register:=cg.getintregister(current_asmdata.CurrAsmList,newsize);
- cg.g_flags2reg(current_asmdata.CurrAsmList,newsize,resflags,location.register);
- if (is_cbool(resultdef)) then
- cg.a_op_reg_reg(current_asmdata.CurrAsmList,OP_NEG,newsize,location.register,location.register);
- end
- end;
- end;
- begin
- ctypeconvnode:=tm68ktypeconvnode;
- end.
|