Compare commits

...

3 Commits

Author SHA1 Message Date
Rika
39d99f84ba Merge branch 'heap' into 'main'
heap.inc with incremental formatting and instant recycling of fixed chunks.

See merge request freepascal.org/fpc/source!694
2025-04-04 01:49:45 +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
Rika Ichinose
cab5ee1ba6 heap.inc with incremental formatting and instant recycling of fixed chunks. 2025-03-12 18:17:04 +03:00
3 changed files with 1497 additions and 1446 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

File diff suppressed because it is too large Load Diff

View File

@ -97,12 +97,12 @@ Procedure Freememory(p:pointer;Size:ptruint);
Function MemSize(p:pointer):ptruint;
{ Delphi functions }
function GetMem(size:ptruint):pointer;
function GetMem(size:ptruint):pointer; inline;
function GetMemory(size:ptruint):pointer; cdecl;
function Freemem(p:pointer):ptruint;
function Freemem(p:pointer):ptruint; inline;
function Freememory(p:pointer):ptruint; cdecl;
function AllocMem(Size:ptruint):pointer;
function ReAllocMem(var p:pointer;Size:ptruint):pointer;
function ReAllocMem(var p:pointer;Size:ptruint):pointer; inline;
function ReAllocMemory(p:pointer;Size:ptruint):pointer; cdecl;
function GetHeapStatus:THeapStatus;
function GetFPCHeapStatus:TFPCHeapStatus;