{ $Id$ Copyright (c) 1998-2002 by Florian Klaempfl Generate ARM 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 narmcnv; {$i fpcdefs.inc} interface uses node,ncnv,ncgcnv,defcmp; type tarmtypeconvnode = class(tcgtypeconvnode) protected function first_int_to_real: tnode;override; { procedure second_int_to_int;override; } { procedure second_string_to_string;override; } { procedure second_cstring_to_pchar;override; } { procedure second_string_to_chararray;override; } { procedure second_array_to_pointer;override; } // function first_int_to_real: tnode; override; { procedure second_pointer_to_array;override; } { procedure second_chararray_to_string;override; } { procedure second_char_to_string;override; } procedure second_int_to_real;override; // procedure second_real_to_real;override; { procedure second_cord_to_pointer;override; } { procedure second_proc_to_procvar;override; } { procedure second_bool_to_int;override; } procedure second_int_to_bool;override; { procedure second_load_smallset;override; } { procedure second_ansistring_to_pchar;override; } { procedure second_pchar_to_string;override; } { procedure second_class_to_intf;override; } { procedure second_char_to_char;override; } procedure second_call_helper(c : tconverttype); override; end; implementation uses verbose,globals,systems, symconst,symdef,aasmbase,aasmtai, defutil, cgbase,pass_1,pass_2, ncon,ncal, ncgutil, cpubase,aasmcpu, rgobj,tgobj,cgobj; {***************************************************************************** FirstTypeConv *****************************************************************************} function tarmtypeconvnode.first_int_to_real: tnode; var fname: string[19]; begin { converting a 64bit integer to a float requires a helper } if is_64bitint(left.resulttype.def) then begin if is_signed(left.resulttype.def) 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 { other integers are supposed to be 32 bit } begin if is_signed(left.resulttype.def) then inserttypeconv(left,s32bittype) else inserttypeconv(left,u32bittype); firstpass(left); end; result := nil; if registersfpu<1 then registersfpu:=1; expectloc:=LOC_FPUREGISTER; end; procedure tarmtypeconvnode.second_int_to_real; var instr : taicpu; begin location_reset(location,LOC_FPUREGISTER,def_cgsize(resulttype.def)); location_force_reg(exprasmlist,left.location,OS_32,true); location.register:=cg.getfpuregister(exprasmlist,location.size); instr:=taicpu.op_reg_reg(A_FLT,location.register,left.location.register); instr.oppostfix:=cgsize2fpuoppostfix[def_cgsize(resulttype.def)]; exprasmlist.concat(instr); end; procedure tarmtypeconvnode.second_int_to_bool; begin end; procedure tarmtypeconvnode.second_call_helper(c : tconverttype); const secondconvert : array[tconverttype] of pointer = ( @second_nothing, {equal} @second_nothing, {not_possible} @second_nothing, {second_string_to_string, handled in resulttype pass } @second_char_to_string, @second_nothing, {char_to_charray} @second_nothing, { pchar_to_string, handled in resulttype pass } @second_nothing, {cchar_to_pchar} @second_cstring_to_pchar, @second_ansistring_to_pchar, @second_string_to_chararray, @second_nothing, { chararray_to_string, handled in resulttype pass } @second_array_to_pointer, @second_pointer_to_array, @second_int_to_int, @second_int_to_bool, @second_bool_to_int, { bool_to_bool } @second_bool_to_int, @second_real_to_real, @second_int_to_real, @second_nothing, { real_to_currency, handled in resulttype pass } @second_proc_to_procvar, @second_nothing, { arrayconstructor_to_set } @second_nothing, { second_load_smallset, handled in first pass } @second_cord_to_pointer, @second_nothing, { interface 2 string } @second_nothing, { interface 2 guid } @second_class_to_intf, @second_char_to_char, @second_nothing, { normal_2_smallset } @second_nothing, { dynarray_2_openarray } @second_nothing, @second_nothing, { variant_2_dynarray } @second_nothing { dynarray_2_variant} ); type tprocedureofobject = procedure of object; var r : packed record proc : pointer; obj : pointer; end; begin { this is a little bit dirty but it works } { and should be quite portable too } r.proc:=secondconvert[c]; r.obj:=self; tprocedureofobject(r){$ifdef FPC}();{$endif FPC} end; begin ctypeconvnode:=tarmtypeconvnode; end. { $Log$ Revision 1.5 2003-11-02 14:30:03 florian * fixed ARM for new reg. allocation scheme Revision 1.4 2003/09/01 15:11:16 florian * fixed reference handling * fixed operand postfix for floating point instructions * fixed wrong shifter constant handling Revision 1.3 2003/09/01 09:54:57 florian * results of work on arm port last weekend Revision 1.2 2003/08/25 23:20:38 florian + started to implement FPU support for the ARM * fixed a lot of other things Revision 1.1 2003/08/21 23:24:08 florian * continued to work on the arm skeleton }