mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 23:48:14 +02:00

should be initialised, similar to how this was already allowed for finalize() (mantis #17998) git-svn-id: trunk@16407 -
416 lines
11 KiB
PHP
416 lines
11 KiB
PHP
{
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 1999-2000 by Michael Van Canneyt
|
|
member of the Free Pascal development team
|
|
|
|
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.
|
|
|
|
**********************************************************************}
|
|
|
|
{ Run-Time type information routines }
|
|
|
|
{ the tk* constants are now declared in system.inc }
|
|
|
|
type
|
|
TRTTIProc=procedure(Data,TypeInfo:Pointer);
|
|
|
|
{ if you modify this procedure, fpc_copy must be probably modified as well }
|
|
procedure RecordRTTI(Data,TypeInfo:Pointer;rttiproc:TRTTIProc);
|
|
{
|
|
A record is designed as follows :
|
|
1 : tkrecord
|
|
2 : Length of name string (n);
|
|
3 : name string;
|
|
3+n : record size;
|
|
7+n : number of elements (N)
|
|
11+n : N times : Pointer to type info
|
|
Offset in record
|
|
}
|
|
var
|
|
Temp : pbyte;
|
|
namelen : byte;
|
|
count,
|
|
offset,
|
|
i : longint;
|
|
info : pointer;
|
|
begin
|
|
Temp:=PByte(TypeInfo);
|
|
inc(Temp);
|
|
{ Skip Name }
|
|
namelen:=Temp^;
|
|
inc(temp,namelen+1);
|
|
temp:=aligntoptr(temp);
|
|
{ Skip size }
|
|
inc(Temp,4);
|
|
{ Element count }
|
|
Count:=PLongint(Temp)^;
|
|
inc(Temp,sizeof(Count));
|
|
{ Process elements }
|
|
for i:=1 to count Do
|
|
begin
|
|
Info:=PPointer(Temp)^;
|
|
inc(Temp,sizeof(Info));
|
|
Offset:=PLongint(Temp)^;
|
|
inc(Temp,sizeof(Offset));
|
|
rttiproc (Data+Offset,Info);
|
|
end;
|
|
end;
|
|
|
|
|
|
{ if you modify this procedure, fpc_copy must be probably modified as well }
|
|
procedure ArrayRTTI(Data,TypeInfo:Pointer;rttiproc:TRTTIProc);
|
|
{
|
|
An array is designed as follows :
|
|
1 : tkArray;
|
|
2 : length of name string (n);
|
|
3 : NAme string
|
|
3+n : Element Size
|
|
7+n : Number of elements
|
|
11+n : Pointer to type of elements
|
|
}
|
|
var
|
|
Temp : pbyte;
|
|
namelen : byte;
|
|
count,
|
|
size,
|
|
i : SizeInt;
|
|
info : pointer;
|
|
begin
|
|
Temp:=PByte(TypeInfo);
|
|
inc(Temp);
|
|
{ Skip Name }
|
|
namelen:=Temp^;
|
|
inc(temp,namelen+1);
|
|
temp:=aligntoptr(temp);
|
|
{ Element size }
|
|
size:=PSizeInt(Temp)^;
|
|
inc(Temp,sizeof(Size));
|
|
{ Element count }
|
|
Count:=PSizeInt(Temp)^;
|
|
inc(Temp,sizeof(Count));
|
|
Info:=PPointer(Temp)^;
|
|
inc(Temp,sizeof(Info));
|
|
{ Process elements }
|
|
for I:=0 to Count-1 do
|
|
rttiproc(Data+(I*size),Info);
|
|
end;
|
|
|
|
|
|
Procedure fpc_Initialize (Data,TypeInfo : pointer);[Public,Alias : 'FPC_INITIALIZE']; compilerproc;
|
|
begin
|
|
case PByte(TypeInfo)^ of
|
|
{$ifdef FPC_HAS_FEATURE_DYNARRAYS}
|
|
tkDynArray,
|
|
{$endif FPC_HAS_FEATURE_DYNARRAYS}
|
|
{$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
|
|
tkAstring,
|
|
{$endif FPC_HAS_FEATURE_ANSISTRINGS}
|
|
{$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
|
|
tkWstring,tkUString,
|
|
{$endif FPC_HAS_FEATURE_WIDESTRINGS}
|
|
tkInterface:
|
|
PPchar(Data)^:=Nil;
|
|
tkArray:
|
|
arrayrtti(data,typeinfo,@int_initialize);
|
|
{$ifdef FPC_HAS_FEATURE_OBJECTS}
|
|
tkObject,
|
|
{$endif FPC_HAS_FEATURE_OBJECTS}
|
|
tkRecord:
|
|
recordrtti(data,typeinfo,@int_initialize);
|
|
{$ifdef FPC_HAS_FEATURE_VARIANTS}
|
|
tkVariant:
|
|
variant_init(PVarData(Data)^);
|
|
{$endif FPC_HAS_FEATURE_VARIANTS}
|
|
end;
|
|
end;
|
|
|
|
|
|
Procedure fpc_finalize (Data,TypeInfo: Pointer);[Public,Alias : 'FPC_FINALIZE']; compilerproc;
|
|
begin
|
|
case PByte(TypeInfo)^ of
|
|
{$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
|
|
tkAstring :
|
|
begin
|
|
fpc_AnsiStr_Decr_Ref(PPointer(Data)^);
|
|
PPointer(Data)^:=nil;
|
|
end;
|
|
{$endif FPC_HAS_FEATURE_ANSISTRINGS}
|
|
{$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
|
|
{$ifndef VER2_2}
|
|
tkUstring :
|
|
begin
|
|
fpc_UnicodeStr_Decr_Ref(PPointer(Data)^);
|
|
PPointer(Data)^:=nil;
|
|
end;
|
|
{$endif VER2_2}
|
|
{$ifndef FPC_WIDESTRING_EQUAL_UNICODESTRING}
|
|
tkWstring :
|
|
begin
|
|
fpc_WideStr_Decr_Ref(PPointer(Data)^);
|
|
PPointer(Data)^:=nil;
|
|
end;
|
|
{$endif FPC_WIDESTRING_EQUAL_UNICODESTRING}
|
|
{$endif FPC_HAS_FEATURE_WIDESTRINGS}
|
|
tkArray :
|
|
arrayrtti(data,typeinfo,@int_finalize);
|
|
{$ifdef FPC_HAS_FEATURE_OBJECTS}
|
|
tkObject,
|
|
{$endif FPC_HAS_FEATURE_OBJECTS}
|
|
tkRecord:
|
|
recordrtti(data,typeinfo,@int_finalize);
|
|
tkInterface:
|
|
begin
|
|
Intf_Decr_Ref(PPointer(Data)^);
|
|
PPointer(Data)^:=nil;
|
|
end;
|
|
{$ifdef FPC_HAS_FEATURE_DYNARRAYS}
|
|
tkDynArray:
|
|
begin
|
|
fpc_dynarray_decr_ref(PPointer(Data)^,TypeInfo);
|
|
PPointer(Data)^:=nil;
|
|
end;
|
|
{$endif FPC_HAS_FEATURE_DYNARRAYS}
|
|
{$ifdef FPC_HAS_FEATURE_VARIANTS}
|
|
tkVariant:
|
|
variant_clear(PVarData(Data)^);
|
|
{$endif FPC_HAS_FEATURE_VARIANTS}
|
|
end;
|
|
end;
|
|
|
|
|
|
Procedure fpc_Addref (Data,TypeInfo : Pointer); [Public,alias : 'FPC_ADDREF']; compilerproc;
|
|
begin
|
|
case PByte(TypeInfo)^ of
|
|
{$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
|
|
tkAstring :
|
|
fpc_AnsiStr_Incr_Ref(PPointer(Data)^);
|
|
{$endif FPC_HAS_FEATURE_ANSISTRINGS}
|
|
{$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
|
|
{$ifndef FPC_WIDESTRING_EQUAL_UNICODESTRING}
|
|
tkWstring :
|
|
fpc_WideStr_Incr_Ref(PPointer(Data)^);
|
|
{$endif FPC_WIDESTRING_EQUAL_UNICODESTRING}
|
|
{$ifndef VER2_2}
|
|
tkUstring :
|
|
fpc_UnicodeStr_Incr_Ref(PPointer(Data)^);
|
|
{$endif VER2_2}
|
|
{$endif FPC_HAS_FEATURE_WIDESTRINGS}
|
|
tkArray :
|
|
arrayrtti(data,typeinfo,@int_addref);
|
|
{$ifdef FPC_HAS_FEATURE_OBJECTS}
|
|
tkobject,
|
|
{$endif FPC_HAS_FEATURE_OBJECTS}
|
|
tkrecord :
|
|
recordrtti(data,typeinfo,@int_addref);
|
|
{$ifdef FPC_HAS_FEATURE_DYNARRAYS}
|
|
tkDynArray:
|
|
fpc_dynarray_incr_ref(PPointer(Data)^);
|
|
{$endif FPC_HAS_FEATURE_DYNARRAYS}
|
|
tkInterface:
|
|
Intf_Incr_Ref(PPointer(Data)^);
|
|
{$ifdef FPC_HAS_FEATURE_VARIANTS}
|
|
tkVariant:
|
|
variant_addref(pvardata(Data)^);
|
|
{$endif FPC_HAS_FEATURE_DYNARRAYS}
|
|
end;
|
|
end;
|
|
|
|
|
|
{ alias for internal use }
|
|
{ we use another name else the compiler gets puzzled because of the wrong forward def }
|
|
procedure fpc_systemDecRef (Data, TypeInfo : Pointer);[external name 'FPC_DECREF'];
|
|
|
|
Procedure fpc_DecRef (Data, TypeInfo : Pointer);[Public,alias : 'FPC_DECREF']; compilerproc;
|
|
begin
|
|
case PByte(TypeInfo)^ of
|
|
{ see AddRef for comment about below construct (JM) }
|
|
{$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
|
|
tkAstring:
|
|
fpc_AnsiStr_Decr_Ref(PPointer(Data)^);
|
|
{$endif FPC_HAS_FEATURE_ANSISTRINGS}
|
|
{$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
|
|
{$ifndef FPC_WIDESTRING_EQUAL_UNICODESTRING}
|
|
tkWstring:
|
|
fpc_WideStr_Decr_Ref(PPointer(Data)^);
|
|
{$endif FPC_WIDESTRING_EQUAL_UNICODESTRING}
|
|
{$ifndef VER2_2}
|
|
tkUString:
|
|
fpc_UnicodeStr_Decr_Ref(PPointer(Data)^);
|
|
{$endif VER2_2}
|
|
{$endif FPC_HAS_FEATURE_WIDESTRINGS}
|
|
tkArray:
|
|
arrayrtti(data,typeinfo,@fpc_systemDecRef);
|
|
{$ifdef FPC_HAS_FEATURE_OBJECTS}
|
|
tkobject,
|
|
{$endif FPC_HAS_FEATURE_OBJECTS}
|
|
tkrecord:
|
|
recordrtti(data,typeinfo,@fpc_systemDecRef);
|
|
{$ifdef FPC_HAS_FEATURE_DYNARRAYS}
|
|
tkDynArray:
|
|
fpc_dynarray_decr_ref(PPointer(Data)^,TypeInfo);
|
|
{$endif FPC_HAS_FEATURE_DYNARRAYS}
|
|
tkInterface:
|
|
Intf_Decr_Ref(PPointer(Data)^);
|
|
{$ifdef FPC_HAS_FEATURE_VARIANTS}
|
|
tkVariant:
|
|
variant_clear(pvardata(data)^);
|
|
{$endif FPC_HAS_FEATURE_VARIANTS}
|
|
end;
|
|
end;
|
|
|
|
{ define alias for internal use in the system unit }
|
|
Function fpc_Copy_internal (Src, Dest, TypeInfo : Pointer) : SizeInt;[external name 'FPC_COPY'];
|
|
|
|
Function fpc_Copy (Src, Dest, TypeInfo : Pointer) : SizeInt;[Public,alias : 'FPC_COPY']; compilerproc;
|
|
var
|
|
Temp : pbyte;
|
|
namelen : byte;
|
|
copiedsize,
|
|
expectedoffset,
|
|
count,
|
|
offset,
|
|
size,
|
|
i : SizeInt;
|
|
info : pointer;
|
|
begin
|
|
result:=sizeof(pointer);
|
|
case PByte(TypeInfo)^ of
|
|
{$ifdef FPC_HAS_FEATURE_ANSISTRINGS}
|
|
tkAstring:
|
|
begin
|
|
fpc_AnsiStr_Incr_Ref(PPointer(Src)^);
|
|
fpc_AnsiStr_Decr_Ref(PPointer(Dest)^);
|
|
PPointer(Dest)^:=PPointer(Src)^;
|
|
end;
|
|
{$endif FPC_HAS_FEATURE_ANSISTRINGS}
|
|
{$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
|
|
{$ifndef FPC_WIDESTRING_EQUAL_UNICODESTRING}
|
|
tkWstring:
|
|
fpc_WideStr_Assign(PPointer(Dest)^,PPointer(Src)^);
|
|
{$endif FPC_WIDESTRING_EQUAL_UNICODESTRING}
|
|
{$ifndef VER2_2}
|
|
tkUstring:
|
|
fpc_UnicodeStr_Assign(PPointer(Dest)^,PPointer(Src)^);
|
|
{$endif VER2_2}
|
|
{$endif FPC_HAS_FEATURE_WIDESTRINGS}
|
|
tkArray:
|
|
begin
|
|
Temp:=PByte(TypeInfo);
|
|
inc(Temp);
|
|
{ Skip Name }
|
|
namelen:=Temp^;
|
|
inc(temp,namelen+1);
|
|
temp:=aligntoptr(temp);
|
|
|
|
{ Element size }
|
|
size:=PSizeInt(Temp)^;
|
|
inc(Temp,sizeof(Size));
|
|
|
|
{ Element count }
|
|
Count:=PSizeInt(Temp)^;
|
|
inc(Temp,sizeof(Count));
|
|
Info:=PPointer(Temp)^;
|
|
inc(Temp,sizeof(Info));
|
|
{ Process elements }
|
|
for I:=0 to Count-1 do
|
|
fpc_Copy_internal(Src+(I*size),Dest+(I*size),Info);
|
|
Result:=size*count;
|
|
end;
|
|
{$ifdef FPC_HAS_FEATURE_OBJECTS}
|
|
tkobject,
|
|
{$endif FPC_HAS_FEATURE_OBJECTS}
|
|
tkrecord:
|
|
begin
|
|
Temp:=PByte(TypeInfo);
|
|
inc(Temp);
|
|
{ Skip Name }
|
|
namelen:=Temp^;
|
|
inc(temp,namelen+1);
|
|
temp:=aligntoptr(temp);
|
|
|
|
Result:=plongint(temp)^;
|
|
|
|
{ Skip size }
|
|
inc(Temp,4);
|
|
|
|
{ Element count }
|
|
Count:=PLongint(Temp)^;
|
|
inc(Temp,sizeof(longint));
|
|
expectedoffset:=0;
|
|
{ Process elements with rtti }
|
|
for i:=1 to count Do
|
|
begin
|
|
Info:=PPointer(Temp)^;
|
|
inc(Temp,sizeof(Info));
|
|
Offset:=PLongint(Temp)^;
|
|
if Offset>expectedoffset then
|
|
move((Src+expectedoffset)^,(Dest+expectedoffset)^,Offset-expectedoffset);
|
|
inc(Temp,sizeof(longint));
|
|
copiedsize:=fpc_Copy_internal(Src+Offset,Dest+Offset,Info);
|
|
expectedoffset:=Offset+copiedsize;
|
|
end;
|
|
{ elements remaining? }
|
|
if result>expectedoffset then
|
|
move((Src+expectedoffset)^,(Dest+expectedoffset)^,Result-expectedoffset);
|
|
end;
|
|
{$ifdef FPC_HAS_FEATURE_DYNARRAYS}
|
|
tkDynArray:
|
|
begin
|
|
fpc_dynarray_Incr_Ref(PPointer(Src)^);
|
|
fpc_dynarray_Decr_Ref(PPointer(Dest)^,typeinfo);
|
|
PPointer(Dest)^:=PPointer(Src)^;
|
|
end;
|
|
{$endif FPC_HAS_FEATURE_DYNARRAYS}
|
|
tkInterface:
|
|
begin
|
|
Intf_Incr_Ref(PPointer(Src)^);
|
|
Intf_Decr_Ref(PPointer(Dest)^);
|
|
PPointer(Dest)^:=PPointer(Src)^;
|
|
end;
|
|
{$ifdef FPC_HAS_FEATURE_VARIANTS}
|
|
tkVariant:
|
|
begin
|
|
VarCopyProc(pvardata(dest)^,pvardata(src)^);
|
|
result:=sizeof(tvardata);
|
|
end;
|
|
{$endif FPC_HAS_FEATURE_VARIANTS}
|
|
end;
|
|
end;
|
|
|
|
|
|
{ For internal use by the compiler, because otherwise $x- can cause trouble. }
|
|
{ Generally disabling extended syntax checking for all compilerprocs may }
|
|
{ have unintended side-effects }
|
|
procedure fpc_Copy_proc (Src, Dest, TypeInfo : Pointer);compilerproc; inline;
|
|
begin
|
|
fpc_copy_internal(src,dest,typeinfo);
|
|
end;
|
|
|
|
|
|
procedure fpc_initialize_array(data,typeinfo : pointer;count,size : SizeInt); compilerproc;
|
|
var
|
|
i : SizeInt;
|
|
begin
|
|
if not(PByte(typeinfo)^ in [tkInteger,tkChar,tkEnumeration,tkFloat,tkSet,
|
|
tkMethod,tkSString,tkLString,tkWChar,tkBool,tkInt64,tkQWord]) then
|
|
for i:=0 to count-1 do
|
|
int_initialize(data+size*i,typeinfo);
|
|
end;
|
|
|
|
|
|
procedure fpc_finalize_array(data,typeinfo : pointer;count,size : SizeInt); [Public,Alias:'FPC_FINALIZEARRAY']; compilerproc;
|
|
var
|
|
i : SizeInt;
|
|
begin
|
|
if not(PByte(typeinfo)^ in [tkInteger,tkChar,tkEnumeration,tkFloat,tkSet,
|
|
tkMethod,tkSString,tkLString,tkWChar,tkBool,tkInt64,tkQWord]) then
|
|
for i:=0 to count-1 do
|
|
int_finalize(data+size*i,typeinfo);
|
|
end;
|
|
|