{ $Id$ Copyright (c) 1998-2002 by Peter Vreman and Florian Klaempfl Convert i386reg.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. **********************************************************************} {$mode objfpc} {$i+} program mkx86reg; const Version = '1.00'; max_regcount = 128; var s : string; i : longint; line : longint; regcount:byte; regcount_bsstart:byte; names,numbers,stdnames,intnames,nasmnames,attnames,stabs,ots,ops: array[0..max_regcount-1] of string[63]; regnumber_index,std_regname_index,int_regname_index,att_regname_index, nasm_regname_index:array[0..max_regcount-1] of byte; x86_64 : boolean; fileprefix : string; {$ifndef FPC} procedure readln(var t:text;var s:string); var c : char; i : longint; begin c:=#0; i:=0; while (not eof(t)) and (c<>#10) do begin read(t,c); if c<>#10 then begin inc(i); s[i]:=c; end; end; if (i>0) and (s[i]=#13) then dec(i); s[0]:=chr(i); end; {$endif} function tostr(l : longint) : string; begin str(l,tostr); end; function readstr : 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 x86reg.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
=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
=intnames[int_regname_index[i]] then break; t:=int_regname_index[i]; int_regname_index[i]:=int_regname_index[j]; int_regname_index[j]:=t; if i
=attnames[att_regname_index[i]] then break; t:=att_regname_index[i]; att_regname_index[i]:=att_regname_index[j]; att_regname_index[j]:=t; if i
=nasmnames[nasm_regname_index[i]] then break; t:=nasm_regname_index[i]; nasm_regname_index[i]:=nasm_regname_index[j]; nasm_regname_index[j]:=t; if i
'64') or x86_64 then
          begin
            inc(regcount);
            if regcount>max_regcount then
              begin
                writeln('Error: Too much registers, please increase maxregcount in source');
                halt(2);
              end;
          end;
     end;
   close(infile);
end;
procedure write_inc_files;
var attfile,intfile,otfile,opfile,
    norfile,nasmfile,stdfile,
    numfile,stabfile,confile,
    rnifile,irifile,srifile,
    arifile,nrifile:text;
    first:boolean;
begin
  { create inc files }
  openinc(confile,fileprefix+'con.inc');
  openinc(numfile,fileprefix+'num.inc');
  openinc(stdfile,fileprefix+'std.inc');
  openinc(attfile,fileprefix+'att.inc');
  if not(x86_64) then
    begin
      openinc(intfile,fileprefix+'int.inc');
      openinc(nasmfile,fileprefix+'nasm.inc');
    end;
  openinc(stabfile,fileprefix+'stab.inc');
  openinc(otfile,fileprefix+'ot.inc');
  openinc(opfile,fileprefix+'op.inc');
  openinc(norfile,fileprefix+'nor.inc');
  openinc(rnifile,fileprefix+'rni.inc');
  openinc(srifile,fileprefix+'sri.inc');
  openinc(arifile,fileprefix+'ari.inc');
  if not(x86_64) then
    begin
      openinc(nrifile,fileprefix+'nri.inc');
      openinc(irifile,fileprefix+'iri.inc');
    end;
  first:=true;
  for i:=0 to regcount-1 do
    begin
      if not first then
        begin
          writeln(numfile,',');
          writeln(stdfile,',');
          writeln(attfile,',');
          if not(x86_64) then
            begin
              writeln(intfile,',');
              writeln(nasmfile,',');
            end;
          writeln(stabfile,',');
          writeln(otfile,',');
          writeln(opfile,',');
          writeln(rnifile,',');
          writeln(srifile,',');
          writeln(arifile,',');
          if not(x86_64) then
            begin
              writeln(irifile,',');
              writeln(nrifile,',');
            end;
        end
      else
        first:=false;
      writeln(confile,names[i],' = ','tregister(',numbers[i],')',';');
      write(numfile,'tregister(',numbers[i],')');
      write(stdfile,'''',stdnames[i],'''');
      write(attfile,'''',attnames[i],'''');
      if not(x86_64) then
        begin
          write(intfile,'''',intnames[i],'''');
          write(nasmfile,'''',nasmnames[i],'''');
        end;
      write(stabfile,stabs[i]);
      write(otfile,ots[i]);
      write(opfile,ops[i]);
      write(rnifile,regnumber_index[i]);
      write(srifile,std_regname_index[i]);
      write(arifile,att_regname_index[i]);
      if not(x86_64) then
        begin
          write(irifile,int_regname_index[i]);
          write(nrifile,nasm_regname_index[i]);
        end;
    end;
  write(norfile,regcount);
  close(confile);
  closeinc(numfile);
  closeinc(attfile);
  closeinc(stdfile);
  if not(x86_64) then
    begin
      closeinc(intfile);
      closeinc(nasmfile);
    end;
  closeinc(stabfile);
  closeinc(otfile);
  closeinc(opfile);
  closeinc(norfile);
  closeinc(rnifile);
  closeinc(srifile);
  closeinc(arifile);
  if not(x86_64) then
    begin
      closeinc(nrifile);
      closeinc(irifile);
    end;
  writeln('Done!');
  writeln(regcount,' registers procesed');
end;
begin
   writeln('Register Table Converter Version ',Version);
   x86_64:=paramstr(1)='x86_64';
   if x86_64 then
     fileprefix:='r8664'
   else
     fileprefix:='r386';
   line:=0;
   regcount:=0;
   read_x86reg_file;
   regcount_bsstart:=1;
   while 2*regcount_bsstart