{ $Id$ This file is part of the Free Pascal run time library. Copyright (c) 1999-2000 by the Free Pascal development team. Processor independent implementation for the system unit (adapted for intel i386.inc file) See the file COPYING.FPC, included in this distribution, for details about the copyright. 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. **********************************************************************} {**************************************************************************** Move / Fill ****************************************************************************} {$ifndef FPC_SYSTEM_HAS_MOVE} procedure Move(var source;var dest;count:longint); type longintarray = array [0..maxlongint] of longint; bytearray = array [0..maxlongint] of byte; var i,size : longint; begin size:=count div sizeof(longint); if (@dest)<@source) or (@dest>@source+count) then begin for i:=0 to size-1 do longintarray(dest)[i]:=longintarray(source)[i]; for i:=size*sizeof(longint) to count-1 do bytearray(dest)[i]:=bytearray(source)[i]; end else begin for i:=count-1 downto size*sizeof(longint) do bytearray(dest)[i]:=bytearray(source)[i]; for i:=size-1 downto 0 do longintarray(dest)[i]:=longintarray(source)[i]; end; end; {$endif ndef FPC_SYSTEM_HAS_MOVE} {$ifndef FPC_SYSTEM_HAS_FILLCHAR} Procedure FillChar(var x;count:longint;value:byte); type longintarray = array [0..maxlongint] of longint; bytearray = array [0..maxlongint] of byte; var i,v : longint; begin v:=value*256+value; v:=v*$10000+v; for i:=0 to (count div 4) -1 do longintarray(x)[i]:=v; for i:=(count div 4)*4 to count-1 do bytearray(x)[i]:=value; end; {$endif ndef FPC_SYSTEM_HAS_FILLCHAR} {$ifndef FPC_SYSTEM_HAS_FILLWORD} procedure fillword(var x;count : longint;value : word); type longintarray = array [0..maxlongint] of longint; wordarray = array [0..maxlongint] of word; var i,v : longint; begin v:=value*$10000+value; for i:=0 to (count div 2) -1 do longintarray(x)[i]:=v; for i:=(count div 2)*2 to count-1 do wordarray(x)[i]:=value; end; {$endif ndef FPC_SYSTEM_HAS_FILLWORD} {**************************************************************************** Object Helpers ****************************************************************************} {$ifndef FPC_SYSTEM_HAS_FPC_HELP_CONSTRUCTOR} { Generic code does not set the register used for self ! So this needs to be done by the compiler after calling FPC_HELP_CONSTRUCTOR : generic allways means aa little less efficient (PM) } procedure int_help_constructor(var _self : pointer; vmt : pointer; vmt_pos : cardinal); [public,alias:'FPC_HELP_CONSTRUCTOR']; type ppointer = ^pointer; pvmt = ^tvmt; tvmt = record size,msize : longint; parent : pointer; end; var objectsize : longint; begin objectsize:=pvmt(vmt)^.size; getmem(_self,objectsize); fillchar(_self,objectsize,#0); ppointer(_self+vmt_pos)^:=vmt; end; {$endif ndef FPC_SYSTEM_HAS_FPC_HELP_CONSTRUCTOR} {$ifndef FPC_SYSTEM_HAS_FPC_HELP_DESTRUCTOR} procedure int_help_destructor(var _self : pointer; vmt : pointer; vmt_pos : cardinal);[public,alias:'FPC_HELP_DESTRUCTOR']; type ppointer = ^pointer; pvmt = ^tvmt; tvmt = record size,msize : longint; parent : pointer; end; var objectsize : longint; begin if (_self=nil) then exit; if (pvmt(ppointer(_self+vmt_pos)^)^.size=0) or (pvmt(ppointer(_self+vmt_pos)^)^.size+pvmt(ppointer(_self+vmt_pos)^)^.msize<>0) then RunError(210); objectsize:=pvmt(vmt)^.size; { reset vmt to nil for protection } ppointer(_self+vmt_pos)^:=nil; freemem(_self,objectsize); _self:=nil; end; {$endif ndef FPC_SYSTEM_HAS_FPC_HELP_DESTRUCTOR} {$ifndef FPC_SYSTEM_HAS_FPC_NEW_CLASS} procedure int_new_class;assembler;[public,alias:'FPC_NEW_CLASS']; asm { to be sure in the future, we save also edit } pushl %edi { create class ? } movl 8(%ebp),%edi orl %edi,%edi jz .LNEW_CLASS1 { save registers !! } pushl %ebx pushl %ecx pushl %edx { esi contains the vmt } pushl %esi { call newinstance (class method!) } call *16(%esi) popl %edx popl %ecx popl %ebx { newinstance returns a pointer to the new created } { instance in eax } { load esi and insert self } movl %eax,%esi .LNEW_CLASS1: movl %esi,8(%ebp) orl %eax,%eax popl %edi end; {$endif ndef FPC_SYSTEM_HAS_FPC_NEW_CLASS} {$ifndef FPC_SYSTEM_HAS_FPC_DISPOSE_CLASS} procedure int_dispose_class;assembler;[public,alias:'FPC_DISPOSE_CLASS']; asm { to be sure in the future, we save also edit } pushl %edi { destroy class ? } movl 12(%ebp),%edi orl %edi,%edi jz .LDISPOSE_CLASS1 { no inherited call } movl (%esi),%edi { save registers !! } pushl %eax pushl %ebx pushl %ecx pushl %edx { push self } pushl %esi { call freeinstance } call *20(%edi) popl %edx popl %ecx popl %ebx popl %eax .LDISPOSE_CLASS1: popl %edi end; {$endif ndef FPC_SYSTEM_HAS_FPC_DISPOSE_CLASS} {$ifndef FPC_SYSTEM_HAS_FPC_CHECK_OBJECT} procedure int_check_object(vmt : pointer);[public,alias:'FPC_CHECK_OBJECT']; type pvmt = ^tvmt; tvmt = record size,msize : longint; parent : pointer; end; begin if (vmt=nil) or (pvmt(vmt)^.size=0) or (pvmt(vmt)^.size+pvmt(vmt)^.msize<>0) then RunError(210); end; {$endif ndef FPC_SYSTEM_HAS_FPC_CHECK_OBJECT} { checks for a correct vmt pointer } { deeper check to see if the current object is } { really related to the true } {$ifndef FPC_SYSTEM_HAS_FPC_CHECK_OBJECT_EXT} procedure int_check_object_ext(vmt, expvmt : pointer);[public,alias:'FPC_CHECK_OBJECT_EXT']; type pvmt = ^tvmt; tvmt = record size,msize : longint; parent : pointer; end; begin if (vmt=nil) or (pvmt(vmt)^.size=0) or (pvmt(vmt)^.size+pvmt(vmt)^.msize<>0) then RunError(210); while assigned(vmt) do if vmt=expvmt then exit else vmt:=pvmt(vmt)^.parent; RunError(220); end; {$endif ndef FPC_SYSTEM_HAS_FPC_CHECK_OBJECT_EXT} {**************************************************************************** String ****************************************************************************} {$ifndef FPC_SYSTEM_HAS_FPC_SHORTSTR_COPY} procedure int_strcopy(len:longint;sstr,dstr:pointer);[public,alias:'FPC_SHORTSTR_COPY']; var slen : byte; begin if dstr=nil then exit; if sstr=nil then begin if dstr<>nil then pstring(dstr)^[0]:=#0; exit; end; slen:=length(pstring(sstr)^); if slen255 then s1l:=255-s2l; move(@(pstring(s1)^[1]),@(pstring(s2)^[s2l+1]),s1l); pstring(s2)^[0]:=chr(s1l+s2l); end; {$endif ndef FPC_SYSTEM_HAS_FPC_SHORTSTR_CONCAT} {$ifndef FPC_SYSTEM_HAS_FPC_SHORTSTR_COMPARE} function int_strcmp(dstr,sstr:pointer) : longint;[public,alias:'FPC_SHORTSTR_COMPARE']; var s1,s2,max,i : byte; d : longint; begin s1:=length(pstring(dstr)^); s2:=length(pstring(sstr)^); if s10 then exit(1) else if d<0 then exit(-1); end; if s1>s2 then exit(1) else if s1255 then l:=255; if l>0 then move(p^,@(strpas[1]),l); strpas[0]:=chr(l); end; {$endif ndef FPC_SYSTEM_HAS_FPC_PCHAR_TO_SHORTSTR} {$ifndef FPC_SYSTEM_HAS_FPC_CHARARRAY_TO_SHORTSTR} function strchararray(p:pchar; l : longint):shortstring;[public,alias:'FPC_CHARARRAY_TO_SHORTSTR']; begin if l>=256 then l:=255 else if l<0 then l:=0; move(p^,@(strchararray[1]),l); strchararray[0]:=chr(l); end; {$endif ndef FPC_SYSTEM_HAS_FPC_CHARARRAY_TO_SHORTSTR} {$ifndef FPC_SYSTEM_HAS_STRLEN} function strlen(p:pchar):longint; var i : longint; begin i:=0; while p[i]<>#0 do inc(i); exit(i); end; {$endif ndef FPC_SYSTEM_HAS_STRLEN} {**************************************************************************** Caller/StackFrame Helpers ****************************************************************************} {$ifndef FPC_SYSTEM_HAS_GET_FRAME} {$error Get_frame must be defined for each processor } {$endif ndef FPC_SYSTEM_HAS_GET_FRAME} {$ifndef FPC_SYSTEM_HAS_GET_CALLER_ADDR} {$error Get_caller_addr must be defined for each processor } {$endif ndef FPC_SYSTEM_HAS_GET_CALLER_ADDR} {$ifndef FPC_SYSTEM_HAS_GET_CALLER_FRAME} {$error Get_caller_frame must be defined for each processor } {$endif ndef FPC_SYSTEM_HAS_GET_CALLER_FRAME} {**************************************************************************** Math ****************************************************************************} {$ifndef FPC_SYSTEM_HAS_ABS_LONGINT} function abs(l:longint):longint;[internconst:in_const_abs]; begin if l<0 then abs:=-l else abs:=l; end; {$endif ndef FPC_SYSTEM_HAS_ABS_LONGINT} {$ifndef FPC_SYSTEM_HAS_ODD_LONGINT} function odd(l:longint):boolean;[internconst:in_const_odd]; begin odd:=((l and 1)<>0); end; {$endif ndef FPC_SYSTEM_HAS_ODD_LONGINT} {$ifndef FPC_SYSTEM_HAS_SQR_LONGINT} function sqr(l:longint):longint;[internconst:in_const_sqr]; begin sqr:=l*l; end; {$endif ndef FPC_SYSTEM_HAS_SQR_LONGINT} {$ifndef FPC_SYSTEM_HAS_SPTR} {$error Sptr must be defined for each processor } {$endif ndef FPC_SYSTEM_HAS_SPTR} {**************************************************************************** Str() ****************************************************************************} {$ifndef FPC_SYSTEM_HAS_INT_STR_LONGINT} procedure int_str(l : longint;var s : string); var sign : boolean; begin { Workaround: } if l=$80000000 then begin s:='-2147483648'; exit; end; if l<0 then begin sign:=true; l:=-l; end else sign:=false; s:=''; while l>0 do begin s:=char(ord('0')+(l mod 10))+s; l:=l div 10; end; if sign then s:='-'+s; end; {$endif ndef FPC_SYSTEM_HAS_INT_STR_LONGINT} {$ifndef FPC_SYSTEM_HAS_INT_STR_CARDINAL} procedure int_str(l : cardinal;var s : string); begin s:=''; while l>0 do begin s:=char(ord('0')+(l mod 10))+s; l:=l div 10; end; if sign then s:='-'+s; end; {$endif ndef FPC_SYSTEM_HAS_INT_STR_CARDINAL} {**************************************************************************** Bounds Check ****************************************************************************} {$ifndef FPC_SYSTEM_HAS_FPC_BOUNDCHECK} procedure int_boundcheck(l : longint; range : pointer);[public,alias: 'FPC_BOUNDCHECK']; type prange = ^trange; trange = record min,max : longint; end; begin if (l < prange(range)^.min) or (l > prange(range)^.max) then HandleError(201); end; {$endif ndef FPC_SYSTEM_HAS_FPC_BOUNDCHECK} {**************************************************************************** IoCheck ****************************************************************************} {$ifndef FPC_SYSTEM_HAS_FPC_IOCHECK} procedure int_iocheck(addr : longint);[public,alias:'FPC_IOCHECK']; var l : longint; begin if InOutRes<>0 then begin l:=InOutRes; InOutRes:=0; HandleErrorFrame(l,get_frame); end; end; {$endif ndef FPC_SYSTEM_HAS_FPC_IOCHECK} { $Log$ Revision 1.5 2000-01-07 16:41:34 daniel * copyright 2000 Revision 1.4 2000/01/07 16:32:24 daniel * copyright 2000 added Revision 1.3 1999/12/21 11:12:16 pierre * some assembler functions translated to pascal WARNING these are not yet TESTED !!! + FPC_CHARARRAY_TO_SHORTSTRING added Revision 1.2 1999/07/05 20:04:22 peter * removed temp defines Revision 1.1 1999/05/31 21:59:58 pierre + generic.inc added }