2002-02-11 Chris Demetriou <cgd@broadcom.com>
authorChris Demetriou <cgd@google.com>
Mon, 11 Feb 2002 23:35:07 +0000 (23:35 +0000)
committerChris Demetriou <cgd@google.com>
Mon, 11 Feb 2002 23:35:07 +0000 (23:35 +0000)
        * mips.igen: Add some additional comments about supported
        models, and about which instructions go where.
        (BC1b, MFC0, MTC0, RFE): Sort supported models in the same
        order as is used in the rest of the file.

sim/mips/ChangeLog
sim/mips/mips.igen

index e7d21dc..97fa2ec 100644 (file)
@@ -1,5 +1,12 @@
 2002-02-11  Chris Demetriou  <cgd@broadcom.com>
 
+       * mips.igen: Add some additional comments about supported
+       models, and about which instructions go where.
+       (BC1b, MFC0, MTC0, RFE): Sort supported models in the same
+       order as is used in the rest of the file.
+
+2002-02-11  Chris Demetriou  <cgd@broadcom.com>
+
        * mips.igen (ADD, ADDI, DADDI, DSUB, SUB): Add comment
        indicating that ALU32_END or ALU64_END are there to check
        for overflow.
index 6576b77..80090a2 100644 (file)
 // :option:::multi-sim:true
 
 
-// Models known by this simulator
+// Models known by this simulator are defined below.
+
+//  MIPS ISAs:
+//
+//  Instructions and related functions for these models are included in
+//  this file.
 :model:::mipsI:mips3000:
 :model:::mipsII:mips6000:
 :model:::mipsIII:mips4000:
 :model:::mipsIV:mips8000:
-:model:::mips16:mips16:
-:model:::r3900:mips3900:
-:model:::vr4100:mips4100:
+
+//  Vendor ISAs:
+//
+//  Standard MIPS ISA instructions used for these models are listed here,
+//  as are functions needed by those standard instructions.  Instructions
+//  which are model-dependent and which are not in the standard MIPS ISAs
+//  (or which pre-date or use different encodings than the standard
+//  instructions) are (for the most part) in separate .igen files.
+:model:::vr4100:mips4100:              // vr.igen
 :model:::vr5000:mips5000:
+:model:::r3900:mips3900:               // tx.igen
 
+//  MIPS Application Specific Extensions (ASEs)
+//
+//  Instructions for the ASEs are in separate .igen files.
+:model:::mips16:mips16:                        // m16.igen (and m16.dc)
 
 
 // Pseudo instructions known by IGEN
 
 
 //
-// Mips Architecture:
+// MIPS Architecture:
 //
 //        CPU Instruction Set (mipsI - mipsIV)
 //
 "bc1%s<TF>%s<ND> <OFFSET>":CC == 0
 "bc1%s<TF>%s<ND> <CC>, <OFFSET>"
 *mipsIV:
-*vr5000:
 #*vr4100:
+*vr5000:
 *r3900:
 {
   check_branch_bug ();
 010000,00000,5.RT,5.RD,00000,6.REGX:COP0:32::MFC0
 "mfc0 r<RT>, r<RD> # <REGX>"
 *mipsI,mipsII,mipsIII,mipsIV:
-*r3900:
 *vr4100:
 *vr5000:
+*r3900:
 {
   TRACE_ALU_INPUT0 ();
   DecodeCoproc (instruction_0);
 010000,00100,5.RT,5.RD,00000,6.REGX:COP0:32::MTC0
 "mtc0 r<RT>, r<RD> # <REGX>"
 *mipsI,mipsII,mipsIII,mipsIV:
-*r3900:
 *vr4100:
 *vr5000:
+*r3900:
 {
   DecodeCoproc (instruction_0);
 }
 010000,1,0000000000000000000,010000:COP0:32::RFE
 "rfe"
 *mipsI,mipsII,mipsIII,mipsIV:
-*r3900:
 *vr4100:
 *vr5000:
+*r3900:
 {
   DecodeCoproc (instruction_0);
 }