summaryrefslogtreecommitdiff
path: root/compiler/xtensa
diff options
context:
space:
mode:
authorflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-03-30 21:43:20 +0000
committerflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2021-03-30 21:43:20 +0000
commitc66fc01ba97f0535f2184beecae08605373b4180 (patch)
tree44bc078d0a7ad0607a5474c390ddce6dd3d95c6a /compiler/xtensa
parent273533e85a247226fc635b9f94e58e72921c1bda (diff)
downloadfpc-c66fc01ba97f0535f2184beecae08605373b4180.tar.gz
+ Xtensa: tcpuinlinenode.second_prefetch
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@49090 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/xtensa')
-rw-r--r--compiler/xtensa/ncpuinl.pas39
1 files changed, 34 insertions, 5 deletions
diff --git a/compiler/xtensa/ncpuinl.pas b/compiler/xtensa/ncpuinl.pas
index aa4e6bb615..3e11a87349 100644
--- a/compiler/xtensa/ncpuinl.pas
+++ b/compiler/xtensa/ncpuinl.pas
@@ -26,10 +26,10 @@ unit ncpuinl;
interface
uses
- node,ninl,ncginl, aasmbase;
+ node,ninl,ncginl,aasmbase;
type
- tcpuinlineNode = class(tcginlinenode)
+ tcpuinlinenode = class(tcginlinenode)
function first_abs_real: tnode; override;
procedure second_abs_long; override;
procedure second_abs_real; override;
@@ -37,13 +37,14 @@ unit ncpuinl;
procedure second_fma; override;
function first_minmax: tnode; override;
procedure second_minmax; override;
+ procedure second_prefetch; override;
end;
implementation
uses
cpuinfo,
- verbose,globals,
+ verbose,globals,globtype,
compinnr,
aasmdata,
aasmcpu,
@@ -52,7 +53,7 @@ unit ncpuinl;
hlcgobj,
pass_2,
cgbase, cgobj, cgutils,
- ncal,
+ ncal,nutils,
cpubase;
procedure tcpuinlinenode.second_abs_long;
@@ -182,7 +183,7 @@ unit ncpuinl;
end;
- procedure tcpuinlineNode.second_minmax;
+ procedure tcpuinlinenode.second_minmax;
var
paraarray : array[1..2] of tnode;
i: Integer;
@@ -231,6 +232,34 @@ unit ncpuinl;
end;
+ procedure tcpuinlinenode.second_prefetch;
+ var
+ ref : treference;
+ r : tregister;
+ checkpointer_used : boolean;
+ begin
+ { do not call Checkpointer for left node }
+ checkpointer_used:=(cs_checkpointer in current_settings.localswitches);
+ if checkpointer_used then
+ node_change_local_switch(left,cs_checkpointer,false);
+ secondpass(left);
+ if checkpointer_used then
+ node_change_local_switch(left,cs_checkpointer,false);
+ case left.location.loc of
+ LOC_CREFERENCE,
+ LOC_REFERENCE:
+ begin
+ r:=cg.getintregister(current_asmdata.CurrAsmList,OS_ADDR);
+ cg.a_loadaddr_ref_reg(current_asmdata.CurrAsmList,left.location.reference,r);
+ reference_reset_base(ref,r,0,location.reference.temppos,left.location.reference.alignment,location.reference.volatility);
+ current_asmdata.CurrAsmList.concat(taicpu.op_reg_const(A_DPFR,ref.base,ref.offset));
+ end;
+ else
+ { nothing to prefetch };
+ end;
+ end;
+
+
begin
cinlinenode:=tcpuinlinenode;
end.