+ (mostly fake) register definitions for the JVM

git-svn-id: branches/jvmbackend@18289 -
This commit is contained in:
Jonas Maebe 2011-08-20 07:35:17 +00:00
parent 0ee702b3a2
commit 85e866a121
10 changed files with 320 additions and 0 deletions

9
.gitattributes vendored
View File

@ -207,6 +207,14 @@ compiler/ia64/ia64reg.dat svneol=native#text/plain
compiler/impdef.pas svneol=native#text/plain
compiler/import.pas svneol=native#text/plain
compiler/jvm/cpuinfo.pas svneol=native#text/plain
compiler/jvm/jvmreg.dat svneol=native#text/plain
compiler/jvm/rjvmcon.inc svneol=native#text/plain
compiler/jvm/rjvmnor.inc svneol=native#text/plain
compiler/jvm/rjvmnum.inc svneol=native#text/plain
compiler/jvm/rjvmrni.inc svneol=native#text/plain
compiler/jvm/rjvmsri.inc svneol=native#text/plain
compiler/jvm/rjvmstd.inc svneol=native#text/plain
compiler/jvm/rjvmsup.inc svneol=native#text/plain
compiler/jvm/tgcpu.pas svneol=native#text/plain
compiler/jvmdef.pas svneol=native#text/plain
compiler/link.pas svneol=native#text/plain
@ -599,6 +607,7 @@ compiler/utils/mk68kreg.pp svneol=native#text/plain
compiler/utils/mkarmins.pp svneol=native#text/plain
compiler/utils/mkarmreg.pp svneol=native#text/plain
compiler/utils/mkavrreg.pp svneol=native#text/plain
compiler/utils/mkjvmreg.pp svneol=native#text/plain
compiler/utils/mkmpsreg.pp svneol=native#text/plain
compiler/utils/mkppcreg.pp svneol=native#text/plain
compiler/utils/mkspreg.pp svneol=native#text/plain

20
compiler/jvm/jvmreg.dat Normal file
View File

@ -0,0 +1,20 @@
;
; JVM registers
;
; layout
; <name>,<type>,<subtype>,<value>,<stdname>
;
; The JVM does not have any registers, since it is stack-based.
; We do define a few artificial registers to make integration
; with the rest of the compiler easier though.
; general/int registers
NO,$00,$00,$00,INVALID
; used as base register in reference when referring to the top
; of the evaluation stack (offset = offset on the evaluation
; stack)
R0,$01,$00,$00,evalstacktopptr
; for addressing locals ("stack pointer")
R1,$01,$00,$01,localsstackptr
; generic fake evaluation stack register for use by the register allocator
R2,$01,$00,$02,evalstacktop

4
compiler/jvm/rjvmcon.inc Normal file
View File

@ -0,0 +1,4 @@
{ don't edit, this file is generated from jvmreg.dat }
NR_NO = tregister($00000000);
NR_R0 = tregister($01000000);
NR_R1 = tregister($01000001);

2
compiler/jvm/rjvmnor.inc Normal file
View File

@ -0,0 +1,2 @@
{ don't edit, this file is generated from jvmreg.dat }
3

4
compiler/jvm/rjvmnum.inc Normal file
View File

@ -0,0 +1,4 @@
{ don't edit, this file is generated from jvmreg.dat }
tregister($00000000),
tregister($01000000),
tregister($01000001)

4
compiler/jvm/rjvmrni.inc Normal file
View File

@ -0,0 +1,4 @@
{ don't edit, this file is generated from jvmreg.dat }
0,
1,
2

4
compiler/jvm/rjvmsri.inc Normal file
View File

@ -0,0 +1,4 @@
{ don't edit, this file is generated from jvmreg.dat }
0,
2,
1

4
compiler/jvm/rjvmstd.inc Normal file
View File

@ -0,0 +1,4 @@
{ don't edit, this file is generated from jvmreg.dat }
'INVALID',
'stacktopptr',
'stackptr'

4
compiler/jvm/rjvmsup.inc Normal file
View File

@ -0,0 +1,4 @@
{ don't edit, this file is generated from jvmreg.dat }
RS_NO = $00;
RS_R0 = $00;
RS_R1 = $01;

265
compiler/utils/mkjvmreg.pp Normal file
View File

@ -0,0 +1,265 @@
{
Copyright (c) 1998-2002 by Peter Vreman and Florian Klaempfl
Convert jvmreg.dat to several .inc files for usage with
the Free pascal compiler
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
program mkspreg;
const Version = '1.00';
max_regcount = 200;
var s : string;
i : longint;
line : longint;
regcount:byte;
regcount_bsstart:byte;
names,
regtypes,
subtypes,
supregs,
numbers,
stdnames : array[0..max_regcount-1] of string[63];
regnumber_index,
std_regname_index : array[0..max_regcount-1] of byte;
function tostr(l : longint) : string;
begin
str(l,tostr);
end;
function readstr : string;
var
result : string;
begin
result:='';
while (s[i]<>',') and (i<=length(s)) do
begin
result:=result+s[i];
inc(i);
end;
readstr:=result;
end;
procedure readcomma;
begin
if s[i]<>',' then
begin
writeln('Missing "," at line ',line);
writeln('Line: "',s,'"');
halt(1);
end;
inc(i);
end;
procedure skipspace;
begin
while (s[i] in [' ',#9]) do
inc(i);
end;
procedure openinc(var f:text;const fn:string);
begin
writeln('creating ',fn);
assign(f,fn);
rewrite(f);
writeln(f,'{ don''t edit, this file is generated from jvmreg.dat }');
end;
procedure closeinc(var f:text);
begin
writeln(f);
close(f);
end;
procedure build_regnum_index;
var h,i,j,p,t:byte;
begin
{Build the registernumber2regindex index.
Step 1: Fill.}
for i:=0 to regcount-1 do
regnumber_index[i]:=i;
{Step 2: Sort. We use a Shell-Metzner sort.}
p:=regcount_bsstart;
repeat
for h:=0 to regcount-p-1 do
begin
i:=h;
repeat
j:=i+p;
if numbers[regnumber_index[j]]>=numbers[regnumber_index[i]] then
break;
t:=regnumber_index[i];
regnumber_index[i]:=regnumber_index[j];
regnumber_index[j]:=t;
if i<p then
break;
dec(i,p);
until false;
end;
p:=p shr 1;
until p=0;
end;
procedure build_std_regname_index;
var h,i,j,p,t:byte;
begin
{Build the registernumber2regindex index.
Step 1: Fill.}
for i:=0 to regcount-1 do
std_regname_index[i]:=i;
{Step 2: Sort. We use a Shell-Metzner sort.}
p:=regcount_bsstart;
repeat
for h:=0 to regcount-p-1 do
begin
i:=h;
repeat
j:=i+p;
if stdnames[std_regname_index[j]]>=stdnames[std_regname_index[i]] then
break;
t:=std_regname_index[i];
std_regname_index[i]:=std_regname_index[j];
std_regname_index[j]:=t;
if i<p then
break;
dec(i,p);
until false;
end;
p:=p shr 1;
until p=0;
end;
procedure read_spreg_file;
var infile:text;
begin
{ open dat file }
assign(infile,'jvmreg.dat');
reset(infile);
while not(eof(infile)) do
begin
{ handle comment }
readln(infile,s);
inc(line);
while (s[1]=' ') do
delete(s,1,1);
if (s='') or (s[1]=';') then
continue;
i:=1;
names[regcount]:=readstr;
readcomma;
regtypes[regcount]:=readstr;
readcomma;
subtypes[regcount]:=readstr;
readcomma;
supregs[regcount]:=readstr;
readcomma;
stdnames[regcount]:=readstr;
{ Create register number }
if supregs[regcount][1]<>'$' then
begin
writeln('Missing $ before number, at line ',line);
writeln('Line: "',s,'"');
halt(1);
end;
numbers[regcount]:=regtypes[regcount]+copy(subtypes[regcount],2,255)+'00'+copy(supregs[regcount],2,255);
if i<length(s) then
begin
writeln('Extra chars at end of line, at line ',line);
writeln('Line: "',s,'"');
halt(1);
end;
inc(regcount);
if regcount>max_regcount then
begin
writeln('Error: Too much registers, please increase maxregcount in source');
halt(2);
end;
end;
close(infile);
end;
procedure write_inc_files;
var
norfile,stdfile,supfile,
numfile,confile,
rnifile,srifile:text;
first:boolean;
begin
{ create inc files }
openinc(confile,'rjvmcon.inc');
openinc(supfile,'rjvmsup.inc');
openinc(numfile,'rjvmnum.inc');
openinc(stdfile,'rjvmstd.inc');
openinc(norfile,'rjvmnor.inc');
openinc(rnifile,'rjvmrni.inc');
openinc(srifile,'rjvmsri.inc');
first:=true;
for i:=0 to regcount-1 do
begin
if not first then
begin
writeln(numfile,',');
writeln(stdfile,',');
writeln(rnifile,',');
writeln(srifile,',');
end
else
first:=false;
writeln(supfile,'RS_',names[i],' = ',supregs[i],';');
writeln(confile,'NR_'+names[i],' = ','tregister(',numbers[i],')',';');
write(numfile,'tregister(',numbers[i],')');
write(stdfile,'''',stdnames[i],'''');
write(rnifile,regnumber_index[i]);
write(srifile,std_regname_index[i]);
end;
write(norfile,regcount);
close(confile);
close(supfile);
closeinc(numfile);
closeinc(stdfile);
closeinc(norfile);
closeinc(rnifile);
closeinc(srifile);
writeln('Done!');
writeln(regcount,' registers procesed');
end;
begin
writeln('Register Table Converter Version ',Version);
line:=0;
regcount:=0;
read_spreg_file;
regcount_bsstart:=1;
while 2*regcount_bsstart<regcount do
regcount_bsstart:=regcount_bsstart*2;
build_regnum_index;
build_std_regname_index;
write_inc_files;
end.