mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 15:28:01 +02:00
Compare commits
3 Commits
ce4ea9cde1
...
39d99f84ba
Author | SHA1 | Date | |
---|---|---|---|
![]() |
39d99f84ba | ||
![]() |
6c4d218b8d | ||
![]() |
cab5ee1ba6 |
@ -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
|
||||||
|
2927
rtl/inc/heap.inc
2927
rtl/inc/heap.inc
File diff suppressed because it is too large
Load Diff
@ -97,12 +97,12 @@ Procedure Freememory(p:pointer;Size:ptruint);
|
|||||||
Function MemSize(p:pointer):ptruint;
|
Function MemSize(p:pointer):ptruint;
|
||||||
|
|
||||||
{ Delphi functions }
|
{ Delphi functions }
|
||||||
function GetMem(size:ptruint):pointer;
|
function GetMem(size:ptruint):pointer; inline;
|
||||||
function GetMemory(size:ptruint):pointer; cdecl;
|
function GetMemory(size:ptruint):pointer; cdecl;
|
||||||
function Freemem(p:pointer):ptruint;
|
function Freemem(p:pointer):ptruint; inline;
|
||||||
function Freememory(p:pointer):ptruint; cdecl;
|
function Freememory(p:pointer):ptruint; cdecl;
|
||||||
function AllocMem(Size:ptruint):pointer;
|
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 ReAllocMemory(p:pointer;Size:ptruint):pointer; cdecl;
|
||||||
function GetHeapStatus:THeapStatus;
|
function GetHeapStatus:THeapStatus;
|
||||||
function GetFPCHeapStatus:TFPCHeapStatus;
|
function GetFPCHeapStatus:TFPCHeapStatus;
|
||||||
|
Loading…
Reference in New Issue
Block a user