Compare commits

...

3 Commits

Author SHA1 Message Date
Henrique Gottardi Werlang
849ab7526c Merge branch 'RecordInfoRTTI' into 'main'
Generated record info to allow creation of a record by RTTI information.

See merge request freepascal.org/fpc/source!573
2025-04-03 20:21:58 -03:00
florian
6c4d218b8d * use for threadvars on RiscV always the size optimization code path as loading addresses is expensive 2025-04-03 23:14:43 +02:00
Henrique Gottardi Werlang
70a28ccc26 Generated record info to allow creation of a record by RTTI information. 2025-03-24 11:17:41 -03:00
2 changed files with 14 additions and 3 deletions

View File

@ -326,8 +326,12 @@ implementation
else
reference_reset_symbol(tvref,current_asmdata.WeakRefAsmSymbol(gvs.mangledname,AT_DATA),0,sizeof(pint),[]);
{ Enable size optimization with -Os or PIC code is generated and PIC uses GOT }
size_opt:=(cs_opt_size in current_settings.optimizerswitches)
or ((cs_create_pic in current_settings.moduleswitches) and (tf_pic_uses_got in target_info.flags));
size_opt:={$if defined(RISCV)}
true
{$else defined(RISCV)}
(cs_opt_size in current_settings.optimizerswitches)
or ((cs_create_pic in current_settings.moduleswitches) and (tf_pic_uses_got in target_info.flags))
{$endif defined(RISCV)};
hreg_tv_rec:=NR_INVALID;
if size_opt then
begin

View File

@ -19043,6 +19043,7 @@ var
ObjLit: TJSObjectLiteral;
Call: TJSCallExpression;
HasRTTIMembers: Boolean;
RecordInfo: TJSObjectLiteralElement;
begin
// module.$rtti.$Record("typename",{});
Call:=CreateRTTINewType(El,GetBIName(pbifnRTTINewRecord),false,FuncContext,ObjLit);
@ -19054,7 +19055,13 @@ begin
end;
HasRTTIMembers:=CreateRTTIMembers(El,Src,FuncContext,MembersSrc,MembersFuncContext,Call,false);
if not HasRTTIMembers then
if HasRTTIMembers then
begin
RecordInfo := ObjLit.Elements.AddElement;
RecordInfo.Name := GetBIName(pbivnPtrRecord);
RecordInfo.Expr := CreatePrimitiveDotExpr('this', El);
end
else
begin
// no published members, add "module.$rtti.$Record..."
if Src=MembersSrc then