瀏覽代碼

* Remove obsolete mips files

git-svn-id: trunk@19606 -
pierre 13 年之前
父節點
當前提交
dd266f262c
共有 4 個文件被更改,包括 2 次插入159 次删除
  1. 0 2
      .gitattributes
  2. 0 75
      compiler/mips/rmipsmot.inc
  3. 0 75
      compiler/mips/rmipsmri.inc
  4. 2 7
      compiler/utils/mkmpsreg.pp

+ 0 - 2
.gitattributes

@@ -266,8 +266,6 @@ compiler/mips/rmipsdwf.inc svneol=native#text/plain
 compiler/mips/rmipsgas.inc svneol=native#text/plain
 compiler/mips/rmipsgas.inc svneol=native#text/plain
 compiler/mips/rmipsgri.inc svneol=native#text/plain
 compiler/mips/rmipsgri.inc svneol=native#text/plain
 compiler/mips/rmipsgss.inc svneol=native#text/plain
 compiler/mips/rmipsgss.inc svneol=native#text/plain
-compiler/mips/rmipsmot.inc svneol=native#text/plain
-compiler/mips/rmipsmri.inc svneol=native#text/plain
 compiler/mips/rmipsnor.inc svneol=native#text/plain
 compiler/mips/rmipsnor.inc svneol=native#text/plain
 compiler/mips/rmipsnum.inc svneol=native#text/plain
 compiler/mips/rmipsnum.inc svneol=native#text/plain
 compiler/mips/rmipsrni.inc svneol=native#text/plain
 compiler/mips/rmipsrni.inc svneol=native#text/plain

+ 0 - 75
compiler/mips/rmipsmot.inc

@@ -1,75 +0,0 @@
-{ don't edit, this file is generated from mipsreg.dat }
-'INVALID',
-'r0',
-'r1',
-'r2',
-'r3',
-'r4',
-'r5',
-'r6',
-'r7',
-'r8',
-'r9',
-'r10',
-'r11',
-'r12',
-'r13',
-'r14',
-'r15',
-'r16',
-'r17',
-'r18',
-'r19',
-'r20',
-'r21',
-'r22',
-'r23',
-'r24',
-'r25',
-'r26',
-'r27',
-'r28',
-'r29',
-'r30',
-'r31',
-'F0',
-'F1',
-'F2',
-'F3',
-'F4',
-'F5',
-'F6',
-'F7',
-'F8',
-'F9',
-'F10',
-'F11',
-'F12',
-'F13',
-'F14',
-'F15',
-'F16',
-'F17',
-'F18',
-'F19',
-'F20',
-'F21',
-'F22',
-'F23',
-'F24',
-'F25',
-'F26',
-'F27',
-'F28',
-'F29',
-'F30',
-'F31',
-'PC',
-'HI',
-'LO',
-'CR',
-'FCR0',
-'FCR25',
-'FCR26',
-'FCR28',
-'FCSR'

+ 0 - 75
compiler/mips/rmipsmri.inc

@@ -1,75 +0,0 @@
-{ don't edit, this file is generated from mipsreg.dat }
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0,
-0

+ 2 - 7
compiler/utils/mkmpsreg.pp

@@ -33,8 +33,7 @@ var s : string;
     stabs : array[0..max_regcount-1] of string[63];
     stabs : array[0..max_regcount-1] of string[63];
     regnumber_index,
     regnumber_index,
     std_regname_index,
     std_regname_index,
-    gas_regname_index,
-    mot_regname_index : array[0..max_regcount-1] of byte;
+    gas_regname_index : array[0..max_regcount-1] of byte;
 
 
 function tostr(l : longint) : string;
 function tostr(l : longint) : string;
 
 
@@ -244,7 +243,7 @@ procedure write_inc_files;
 var
 var
     norfile,stdfile,supfile,
     norfile,stdfile,supfile,
     numfile,stabfile,confile,gasfile,dwarffile,
     numfile,stabfile,confile,gasfile,dwarffile,
-    rnifile,srifile,mrifile,grifile : text;
+    rnifile,srifile,grifile : text;
     first:boolean;
     first:boolean;
 
 
 begin
 begin
@@ -260,7 +259,6 @@ begin
   openinc(rnifile,'rmipsrni.inc');
   openinc(rnifile,'rmipsrni.inc');
   openinc(srifile,'rmipssri.inc');
   openinc(srifile,'rmipssri.inc');
   openinc(grifile,'rmipsgri.inc');
   openinc(grifile,'rmipsgri.inc');
-  openinc(mrifile,'rmipsmri.inc');
   first:=true;
   first:=true;
   for i:=0 to regcount-1 do
   for i:=0 to regcount-1 do
     begin
     begin
@@ -274,7 +272,6 @@ begin
           writeln(rnifile,',');
           writeln(rnifile,',');
           writeln(srifile,',');
           writeln(srifile,',');
           writeln(grifile,',');
           writeln(grifile,',');
-          writeln(mrifile,',');
         end
         end
       else
       else
         first:=false;
         first:=false;
@@ -288,7 +285,6 @@ begin
       write(rnifile,regnumber_index[i]);
       write(rnifile,regnumber_index[i]);
       write(srifile,std_regname_index[i]);
       write(srifile,std_regname_index[i]);
       write(grifile,gas_regname_index[i]);
       write(grifile,gas_regname_index[i]);
-      write(mrifile,mot_regname_index[i]);
     end;
     end;
   write(norfile,regcount);
   write(norfile,regcount);
   close(confile);
   close(confile);
@@ -302,7 +298,6 @@ begin
   closeinc(rnifile);
   closeinc(rnifile);
   closeinc(srifile);
   closeinc(srifile);
   closeinc(grifile);
   closeinc(grifile);
-  closeinc(mrifile);
   writeln('Done!');
   writeln('Done!');
   writeln(regcount,' registers procesed');
   writeln(regcount,' registers procesed');
 end;
 end;