mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 11:29:18 +02:00

so it also works for 32 bit targets and a high level code generator (where aint is still 32 bit, but 64 bit operations are not decomposed) git-svn-id: trunk@41441 -
144 lines
4.0 KiB
ObjectPascal
144 lines
4.0 KiB
ObjectPascal
{
|
|
Copyright (c) 1998-2004 by Florian Klaempfl and David Zhang
|
|
|
|
Generate MIPSEL assembler for in set/case nodes
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
****************************************************************************
|
|
}
|
|
unit ncpuset;
|
|
|
|
{$i fpcdefs.inc}
|
|
|
|
interface
|
|
|
|
uses
|
|
globtype,
|
|
nset,
|
|
ncgset;
|
|
|
|
type
|
|
tcpucasenode = class(tcgcasenode)
|
|
protected
|
|
procedure optimizevalues(var max_linear_list: int64; var max_dist: qword); override;
|
|
function has_jumptable: boolean; override;
|
|
procedure genjumptable(hp: pcaselabel; min_, max_: int64); override;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
|
globals,
|
|
systems,
|
|
constexp,
|
|
cpubase,
|
|
aasmbase, aasmtai, aasmcpu, aasmdata,
|
|
cgbase, cgutils, cgobj,
|
|
defutil,procinfo;
|
|
|
|
procedure tcpucasenode.optimizevalues(var max_linear_list: int64; var max_dist: qword);
|
|
begin
|
|
{ give the jump table a higher priority }
|
|
max_dist := (max_dist * 3) div 2;
|
|
end;
|
|
|
|
|
|
function tcpucasenode.has_jumptable: boolean;
|
|
begin
|
|
has_jumptable := True;
|
|
end;
|
|
|
|
|
|
procedure tcpucasenode.genjumptable(hp: pcaselabel; min_, max_: int64);
|
|
var
|
|
table: tasmlabel;
|
|
last: TConstExprInt;
|
|
indexreg, jmpreg: tregister;
|
|
href: treference;
|
|
jumpsegment: TAsmlist;
|
|
opcgsize: tcgsize;
|
|
labeltyp: taiconst_type;
|
|
|
|
procedure genitem(t: pcaselabel);
|
|
var
|
|
i: TConstExprInt;
|
|
begin
|
|
if assigned(t^.less) then
|
|
genitem(t^.less);
|
|
{ fill possible hole }
|
|
i:=last+1;
|
|
while i<=t^._low-1 do
|
|
begin
|
|
jumpSegment.concat(Tai_const.Create_type_sym(labeltyp,elselabel));
|
|
i:=i+1;
|
|
end;
|
|
i:= t^._low;
|
|
while i<=t^._high do
|
|
begin
|
|
jumpSegment.concat(Tai_const.Create_type_sym(labeltyp,blocklabel(t^.blockid)));
|
|
i:=i+1;
|
|
end;
|
|
last := t^._high;
|
|
if assigned(t^.greater) then
|
|
genitem(t^.greater);
|
|
end;
|
|
|
|
begin
|
|
opcgsize:=def_cgsize(opsize);
|
|
last:=min_;
|
|
jumpsegment := current_procinfo.aktlocaldata;
|
|
if not (jumptable_no_range) then
|
|
begin
|
|
{ a <= x <= b <-> unsigned(x-a) <= (b-a) }
|
|
cg.a_op_const_reg(current_asmdata.CurrAsmList,OP_SUB,opcgsize,aint(min_),hregister);
|
|
{ case expr greater than max_ => goto elselabel }
|
|
cg.a_cmp_const_reg_label(current_asmdata.CurrAsmList,opcgsize,OC_A,aint(max_)-aint(min_),hregister,elselabel);
|
|
min_:=0;
|
|
end;
|
|
current_asmdata.getjumplabel(table);
|
|
indexreg := cg.getaddressregister(current_asmdata.CurrAsmList);
|
|
cg.a_op_const_reg_reg(current_asmdata.CurrAsmList, OP_SHL, OS_ADDR, 2, hregister, indexreg);
|
|
{ create reference }
|
|
reference_reset_symbol(href, table, 0, sizeof(aint), []);
|
|
href.offset := (-aint(min_)) * 4;
|
|
href.base:=indexreg;
|
|
jmpreg := cg.getaddressregister(current_asmdata.CurrAsmList);
|
|
cg.a_load_ref_reg(current_asmdata.CurrAsmList, OS_ADDR, OS_ADDR, href, jmpreg);
|
|
|
|
if (cs_create_pic in current_settings.moduleswitches) then
|
|
begin
|
|
cg.a_op_reg_reg_reg(current_asmdata.CurrAsmList,OP_ADD,OS_ADDR,NR_GP,jmpreg,jmpreg);
|
|
labeltyp:=aitconst_gotoff_symbol;
|
|
end
|
|
else
|
|
labeltyp:=aitconst_ptr;
|
|
|
|
current_asmdata.CurrAsmList.concat(taicpu.op_reg(A_JR, jmpreg));
|
|
{ Delay slot }
|
|
current_asmdata.CurrAsmList.concat(taicpu.op_none(A_NOP));
|
|
{ generate jump table }
|
|
new_section(jumpSegment,sec_rodata,current_procinfo.procdef.mangledname,sizeof(aint));
|
|
jumpSegment.concat(Tai_label.Create(table));
|
|
genitem(hp);
|
|
end;
|
|
|
|
|
|
|
|
begin
|
|
ccasenode := tcpucasenode;
|
|
end.
|