mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 15:28:01 +02:00
Compare commits
3 Commits
d40bdc1f8f
...
395b9d9857
Author | SHA1 | Date | |
---|---|---|---|
![]() |
395b9d9857 | ||
![]() |
6c4d218b8d | ||
![]() |
c8ea310a8b |
@ -326,8 +326,12 @@ implementation
|
|||||||
else
|
else
|
||||||
reference_reset_symbol(tvref,current_asmdata.WeakRefAsmSymbol(gvs.mangledname,AT_DATA),0,sizeof(pint),[]);
|
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 }
|
{ Enable size optimization with -Os or PIC code is generated and PIC uses GOT }
|
||||||
size_opt:=(cs_opt_size in current_settings.optimizerswitches)
|
size_opt:={$if defined(RISCV)}
|
||||||
or ((cs_create_pic in current_settings.moduleswitches) and (tf_pic_uses_got in target_info.flags));
|
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;
|
hreg_tv_rec:=NR_INVALID;
|
||||||
if size_opt then
|
if size_opt then
|
||||||
begin
|
begin
|
||||||
|
@ -20945,11 +20945,14 @@ var
|
|||||||
ResultTypeInfo: TJSElement;
|
ResultTypeInfo: TJSElement;
|
||||||
Call: TJSCallExpression;
|
Call: TJSCallExpression;
|
||||||
Flags: Integer;
|
Flags: Integer;
|
||||||
ExtVis: word;
|
ExtVis: Integer;
|
||||||
|
|
||||||
procedure AddExtRTTIVisibility;
|
procedure AddExtRTTIVisibility;
|
||||||
begin
|
begin
|
||||||
Call.AddArg(CreateLiteralNumber(Proc,ExtVis));
|
if ExtVis > -1 then
|
||||||
|
Call.AddArg(CreateLiteralNumber(Proc,ExtVis));
|
||||||
|
|
||||||
|
ExtVis := -1;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure AddOption(const aName: String; JS: TJSElement);
|
procedure AddOption(const aName: String; JS: TJSElement);
|
||||||
@ -20959,8 +20962,7 @@ var
|
|||||||
if JS=nil then exit;
|
if JS=nil then exit;
|
||||||
if OptionsEl=nil then
|
if OptionsEl=nil then
|
||||||
begin
|
begin
|
||||||
if ExtVis=ExtRTTIVisDefaultMethod then
|
AddExtRTTIVisibility;
|
||||||
AddExtRTTIVisibility;
|
|
||||||
OptionsEl:=TJSObjectLiteral(CreateElement(TJSObjectLiteral,Proc));
|
OptionsEl:=TJSObjectLiteral(CreateElement(TJSObjectLiteral,Proc));
|
||||||
Call.AddArg(OptionsEl);
|
Call.AddArg(OptionsEl);
|
||||||
end;
|
end;
|
||||||
@ -21054,10 +21056,19 @@ begin
|
|||||||
ResultEl:=TPasFunction(Proc).FuncType.ResultEl;
|
ResultEl:=TPasFunction(Proc).FuncType.ResultEl;
|
||||||
ResultTypeInfo:=CreateTypeInfoRef(ResultEl.ResultType,AContext,ResultEl);
|
ResultTypeInfo:=CreateTypeInfoRef(ResultEl.ResultType,AContext,ResultEl);
|
||||||
if ResultTypeInfo<>nil then
|
if ResultTypeInfo<>nil then
|
||||||
|
begin
|
||||||
|
AddExtRTTIVisibility;
|
||||||
|
|
||||||
Call.AddArg(ResultTypeInfo);
|
Call.AddArg(ResultTypeInfo);
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
if (ResultTypeInfo=nil) and ((Flags>0) or (length(Attr)>0)) then
|
if (ResultTypeInfo=nil) and ((Flags>0) or (length(Attr)>0)) then
|
||||||
|
begin
|
||||||
|
AddExtRTTIVisibility;
|
||||||
|
|
||||||
Call.AddArg(CreateLiteralNull(Proc));
|
Call.AddArg(CreateLiteralNull(Proc));
|
||||||
|
end;
|
||||||
|
|
||||||
// flags if needed
|
// flags if needed
|
||||||
if (Flags>0) or (length(Attr)>0) then
|
if (Flags>0) or (length(Attr)>0) then
|
||||||
|
Loading…
Reference in New Issue
Block a user