Style: Replace some tabs with spaces.
authorGabe Black <gblack@eecs.umich.edu>
Mon, 20 Dec 2010 21:24:40 +0000 (16:24 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Mon, 20 Dec 2010 21:24:40 +0000 (16:24 -0500)
22 files changed:
src/arch/SConscript
src/arch/alpha/isa/decoder.isa
src/arch/alpha/isa/fp.isa
src/arch/alpha/isa/main.isa
src/arch/alpha/isa/pal.isa
src/arch/arm/isa_traits.hh
src/arch/arm/linux/linux.cc
src/arch/arm/tlb.hh
src/arch/mips/SConscript
src/arch/mips/isa/bitfields.isa
src/arch/mips/isa/decoder.isa
src/arch/sparc/isa/base.isa
src/arch/sparc/isa/bitfields.isa
src/arch/sparc/isa/formats/integerop.isa
src/arch/sparc/isa/operands.isa
src/arch/x86/bios/SConscript
src/cpu/inorder/SConscript
src/cpu/inorder/first_stage.hh
src/cpu/inorder/inorder_dyn_inst.hh
src/cpu/inorder/resource.hh
src/cpu/inorder/resources/cache_unit.hh
src/dev/x86/cmos.cc

index dd337b1b7a86f61837b21a5e3ff86eda3675283e..620de4d1ce666d3dcfd52b51a012e7b7c17509ed 100644 (file)
@@ -45,7 +45,7 @@ Import('*')
 isa_switch_hdrs = Split('''
         faults.hh
         interrupts.hh
-       isa.hh
+        isa.hh
         isa_traits.hh
         kernel_stats.hh
         locked_mem.hh
index 36458a047d4a34d88c1e3569f6d315ea48ae7b18..d829ad7444dec5252d45c373c477bb2a73a11666 100644 (file)
@@ -100,7 +100,7 @@ decode OPCODE default Unknown::unknown() {
 
     format IntegerOperate {
 
-        0x10: decode INTFUNC { // integer arithmetic operations
+        0x10: decode INTFUNC {  // integer arithmetic operations
 
             0x00: addl({{ Rc.sl = Ra.sl + Rb_or_imm.sl; }});
             0x40: addlv({{
@@ -173,7 +173,7 @@ decode OPCODE default Unknown::unknown() {
             }});
         }
 
-        0x11: decode INTFUNC { // integer logical operations
+        0x11: decode INTFUNC {  // integer logical operations
 
             0x00: and({{ Rc = Ra & Rb_or_imm; }});
             0x08: bic({{ Rc = Ra & ~Rb_or_imm; }});
@@ -291,7 +291,7 @@ decode OPCODE default Unknown::unknown() {
             }});
         }
 
-        0x13: decode INTFUNC { // integer multiplies
+        0x13: decode INTFUNC {  // integer multiplies
             0x00: mull({{ Rc.sl = Ra.sl * Rb_or_imm.sl; }}, IntMultOp);
             0x20: mulq({{ Rc    = Ra    * Rb_or_imm;    }}, IntMultOp);
             0x30: umulh({{
@@ -301,7 +301,7 @@ decode OPCODE default Unknown::unknown() {
             }}, IntMultOp);
             0x40: mullv({{
                 // 32-bit multiply with trap on overflow
-                int64_t Rax = Ra.sl;   // sign extended version of Ra.sl
+                int64_t Rax = Ra.sl;    // sign extended version of Ra.sl
                 int64_t Rbx = Rb_or_imm.sl;
                 int64_t tmp = Rax * Rbx;
                 // To avoid overflow, all the upper 32 bits must match
@@ -587,7 +587,7 @@ decode OPCODE default Unknown::unknown() {
                 format BasicOperateWithNopCheck {
                     0x004: itofs({{ Fc.uq = s_to_t(Ra.ul); }}, FloatCvtOp);
                     0x024: itoft({{ Fc.uq = Ra.uq; }}, FloatCvtOp);
-                    0x014: FailUnimpl::itoff();        // VAX-format conversion
+                    0x014: FailUnimpl::itoff(); // VAX-format conversion
                 }
             }
         }
index f9abd9b6887e11e9cd9fa9edfd4c709f54611bb5..b1d01724d427cf85ad49bde5629dd8b738df8815 100644 (file)
@@ -32,9 +32,9 @@
 //
 // Floating-point instructions
 //
-//     Note that many FP-type instructions which do not support all the
-//     various rounding & trapping modes use the simpler format
-//     BasicOperateWithNopCheck.
+//      Note that many FP-type instructions which do not support all the
+//      various rounding & trapping modes use the simpler format
+//      BasicOperateWithNopCheck.
 //
 
 output exec {{
@@ -45,7 +45,7 @@ output exec {{
 #if FULL_SYSTEM
     inline Fault checkFpEnableFault(%(CPU_exec_context)s *xc)
     {
-        Fault fault = NoFault; // dummy... this ipr access should not fault
+        Fault fault = NoFault;  // dummy... this ipr access should not fault
         if (!ICSR_FPE(xc->readMiscReg(IPR_ICSR))) {
             fault = new FloatEnableFault;
         }
@@ -71,11 +71,11 @@ output header {{
       public:
         /// Alpha FP rounding modes.
         enum RoundingMode {
-            Chopped = 0,       ///< round toward zero
+            Chopped = 0,        ///< round toward zero
             Minus_Infinity = 1, ///< round toward minus infinity
-            Normal = 2,                ///< round to nearest (default)
-            Dynamic = 3,       ///< use FPCR setting (in instruction)
-            Plus_Infinity = 3  ///< round to plus inifinity (in FPCR)
+            Normal = 2,         ///< round to nearest (default)
+            Dynamic = 3,        ///< use FPCR setting (in instruction)
+            Plus_Infinity = 3   ///< round to plus inifinity (in FPCR)
         };
 
         /// Alpha FP trapping modes.
@@ -84,10 +84,10 @@ output header {{
         /// the assembly modifier is V rather than U.
         enum TrappingMode {
             /// default: nothing enabled
-            Imprecise = 0,                ///< no modifier
+            Imprecise = 0,                 ///< no modifier
             /// underflow/overflow traps enabled, inexact disabled
-            Underflow_Imprecise = 1,      ///< /U or /V
-            Underflow_Precise = 5,        ///< /SU or /SV
+            Underflow_Imprecise = 1,       ///< /U or /V
+            Underflow_Precise = 5,         ///< /SU or /SV
             /// underflow/overflow and inexact traps enabled
             Underflow_Inexact_Precise = 7  ///< /SUI or /SVI
         };
@@ -192,10 +192,10 @@ output decoder {{
     }
 
     const int AlphaFP::alphaToC99RoundingMode[] = {
-        M5_FE_TOWARDZERO,      // Chopped
-        M5_FE_DOWNWARD,        // Minus_Infinity
-        M5_FE_TONEAREST,       // Normal
-        M5_FE_UPWARD   // Dynamic in inst, Plus_Infinity in FPCR
+        M5_FE_TOWARDZERO,       // Chopped
+        M5_FE_DOWNWARD, // Minus_Infinity
+        M5_FE_TONEAREST,        // Normal
+        M5_FE_UPWARD    // Dynamic in inst, Plus_Infinity in FPCR
     };
 
     const char *AlphaFP::roundingModeSuffix[] = { "c", "m", "", "d" };
index fa0086fc7d8544e506b4ecc58c9f7274fe50dc94..077520139bfba7cb703a1dc8a13bd0ba8d4d7bbb 100644 (file)
@@ -102,30 +102,30 @@ namespace AlphaISA;
 
 // Universal (format-independent) fields
 def bitfield PALMODE    <32:32>;
-def bitfield OPCODE    <31:26>;
-def bitfield RA                <25:21>;
-def bitfield RB                <20:16>;
+def bitfield OPCODE     <31:26>;
+def bitfield RA         <25:21>;
+def bitfield RB         <20:16>;
 
 // Memory format
 def signed bitfield MEMDISP <15: 0>; // displacement
 def        bitfield MEMFUNC <15: 0>; // function code (same field, unsigned)
 
 // Memory-format jumps
-def bitfield JMPFUNC   <15:14>; // function code (disp<15:14>)
-def bitfield JMPHINT   <13: 0>; // tgt Icache idx hint (disp<13:0>)
+def bitfield JMPFUNC    <15:14>; // function code (disp<15:14>)
+def bitfield JMPHINT    <13: 0>; // tgt Icache idx hint (disp<13:0>)
 
 // Branch format
 def signed bitfield BRDISP <20: 0>; // displacement
 
 // Integer operate format(s>;
-def bitfield INTIMM    <20:13>; // integer immediate (literal)
-def bitfield IMM       <12:12>; // immediate flag
-def bitfield INTFUNC   <11: 5>; // function code
-def bitfield RC                < 4: 0>; // dest reg
+def bitfield INTIMM     <20:13>; // integer immediate (literal)
+def bitfield IMM        <12:12>; // immediate flag
+def bitfield INTFUNC    <11: 5>; // function code
+def bitfield RC         < 4: 0>; // dest reg
 
 // Floating-point operate format
-def bitfield FA                  <25:21>;
-def bitfield FB                  <20:16>;
+def bitfield FA           <25:21>;
+def bitfield FB           <20:16>;
 def bitfield FP_FULLFUNC  <15: 5>; // complete function code
     def bitfield FP_TRAPMODE  <15:13>; // trapping mode
     def bitfield FP_ROUNDMODE <12:11>; // rounding mode
@@ -133,10 +133,10 @@ def bitfield FP_FULLFUNC  <15: 5>; // complete function code
         def bitfield FP_SRCTYPE   <10: 9>; // source reg type
         def bitfield FP_SHORTFUNC < 8: 5>; // short function code
         def bitfield FP_SHORTFUNC_TOP2 <8:7>; // top 2 bits of short func code
-def bitfield FC                  < 4: 0>; // dest reg
+def bitfield FC           < 4: 0>; // dest reg
 
 // PALcode format
-def bitfield PALFUNC   <25: 0>; // function code
+def bitfield PALFUNC    <25: 0>; // function code
 
 // EV5 PAL instructions:
 // HW_LD/HW_ST
@@ -154,7 +154,7 @@ def bitfield HW_REI_TYP <15:14>; // type: stalling vs. non-stallingk
 def bitfield HW_REI_MBZ <13: 0>; // must be zero
 
 // HW_MTPR/MW_MFPR
-def bitfield HW_IPR_IDX <15:0>;         // IPR index
+def bitfield HW_IPR_IDX <15:0>;  // IPR index
 
 // M5 instructions
 def bitfield M5FUNC <7:0>;
index c6c0fa95c3e483ceef43e5add1dbe00a87fe404e..53e0d6193cb5bc84284eaf9b19287b1f33c393b7 100644 (file)
@@ -84,10 +84,10 @@ output header {{
     class CallPalBase : public AlphaStaticInst
     {
       protected:
-        int palFunc;   ///< Function code part of instruction
-        int palOffset; ///< Target PC, offset from IPR_PAL_BASE
-        bool palValid; ///< is the function code valid?
-        bool palPriv;  ///< is this call privileged?
+        int palFunc;    ///< Function code part of instruction
+        int palOffset;  ///< Target PC, offset from IPR_PAL_BASE
+        bool palValid;  ///< is the function code valid?
+        bool palPriv;   ///< is this call privileged?
 
         /// Constructor.
         CallPalBase(const char *mnem, ExtMachInst _machInst,
index f6aa7fcf055a27297210c61ffbbd3a4077164e33..a24852ba91f0c8e308cfaf3a9a5faec7e7e6548a 100644 (file)
@@ -99,7 +99,7 @@ namespace ArmISA
     // return a no-op instruction... used for instruction fetch faults
     const ExtMachInst NoopMachInst = 0x00000000;
 
-    const int LogVMPageSize = 12;      // 4K bytes
+    const int LogVMPageSize = 12;       // 4K bytes
     const int VMPageSize = (1 << LogVMPageSize);
 
     // Shouldn't this be 1 because of Thumb?! Dynamic? --Ali
index c81eee3c8ae70b6b4aa5b1ac11f9b515c89f1850..a26567475a7db4e718cd4d3fe23d359da0c6da31 100644 (file)
 // open(2) flags translation table
 OpenFlagTransTable ArmLinux::openFlagTable[] = {
 #ifdef _MSC_VER
-  { ArmLinux::TGT_O_RDONLY,    _O_RDONLY },
-  { ArmLinux::TGT_O_WRONLY,    _O_WRONLY },
-  { ArmLinux::TGT_O_RDWR,      _O_RDWR },
-  { ArmLinux::TGT_O_APPEND,    _O_APPEND },
-  { ArmLinux::TGT_O_CREAT,     _O_CREAT },
-  { ArmLinux::TGT_O_TRUNC,     _O_TRUNC },
-  { ArmLinux::TGT_O_EXCL,      _O_EXCL },
+  { ArmLinux::TGT_O_RDONLY,     _O_RDONLY },
+  { ArmLinux::TGT_O_WRONLY,     _O_WRONLY },
+  { ArmLinux::TGT_O_RDWR,       _O_RDWR },
+  { ArmLinux::TGT_O_APPEND,     _O_APPEND },
+  { ArmLinux::TGT_O_CREAT,      _O_CREAT },
+  { ArmLinux::TGT_O_TRUNC,      _O_TRUNC },
+  { ArmLinux::TGT_O_EXCL,       _O_EXCL },
 #ifdef _O_NONBLOCK
-  { ArmLinux::TGT_O_NONBLOCK,  _O_NONBLOCK },
+  { ArmLinux::TGT_O_NONBLOCK,   _O_NONBLOCK },
 #endif
 #ifdef _O_NOCTTY
-  { ArmLinux::TGT_O_NOCTTY,    _O_NOCTTY },
+  { ArmLinux::TGT_O_NOCTTY,     _O_NOCTTY },
 #endif
 #ifdef _O_SYNC
-  { ArmLinux::TGT_O_SYNC,      _O_SYNC },
+  { ArmLinux::TGT_O_SYNC,       _O_SYNC },
 #endif
 #else /* !_MSC_VER */
-  { ArmLinux::TGT_O_RDONLY,    O_RDONLY },
-  { ArmLinux::TGT_O_WRONLY,    O_WRONLY },
-  { ArmLinux::TGT_O_RDWR,      O_RDWR },
-  { ArmLinux::TGT_O_CREAT,     O_CREAT },
-  { ArmLinux::TGT_O_EXCL,      O_EXCL },
-  { ArmLinux::TGT_O_NOCTTY,    O_NOCTTY },
-  { ArmLinux::TGT_O_TRUNC,     O_TRUNC },
-  { ArmLinux::TGT_O_APPEND,    O_APPEND },
-  { ArmLinux::TGT_O_NONBLOCK,  O_NONBLOCK },
+  { ArmLinux::TGT_O_RDONLY,     O_RDONLY },
+  { ArmLinux::TGT_O_WRONLY,     O_WRONLY },
+  { ArmLinux::TGT_O_RDWR,       O_RDWR },
+  { ArmLinux::TGT_O_CREAT,      O_CREAT },
+  { ArmLinux::TGT_O_EXCL,       O_EXCL },
+  { ArmLinux::TGT_O_NOCTTY,     O_NOCTTY },
+  { ArmLinux::TGT_O_TRUNC,      O_TRUNC },
+  { ArmLinux::TGT_O_APPEND,     O_APPEND },
+  { ArmLinux::TGT_O_NONBLOCK,   O_NONBLOCK },
 #ifdef O_SYNC
-  { ArmLinux::TGT_O_SYNC,      O_SYNC },
+  { ArmLinux::TGT_O_SYNC,       O_SYNC },
 #endif
 #ifdef FASYNC
-  { ArmLinux::TGT_FASYNC,      FASYNC },
+  { ArmLinux::TGT_FASYNC,       FASYNC },
 #endif
 #ifdef O_DIRECT
-  { ArmLinux::TGT_O_DIRECT,    O_DIRECT },
+  { ArmLinux::TGT_O_DIRECT,     O_DIRECT },
 #endif
 #ifdef O_LARGEFILE
-  { ArmLinux::TGT_O_LARGEFILE, O_LARGEFILE },
+  { ArmLinux::TGT_O_LARGEFILE,  O_LARGEFILE },
 #endif
 #ifdef O_DIRECTORY
-  { ArmLinux::TGT_O_DIRECTORY, O_DIRECTORY },
+  { ArmLinux::TGT_O_DIRECTORY,  O_DIRECTORY },
 #endif
 #ifdef O_NOFOLLOW
-  { ArmLinux::TGT_O_NOFOLLOW,  O_NOFOLLOW },
+  { ArmLinux::TGT_O_NOFOLLOW,   O_NOFOLLOW },
 #endif
 #endif /* _MSC_VER */
 };
index 21062ea0d763599ad6072def01c1e53b3bbb91bc..5b24eebe2ca72ef1534e8ef9c309c835b5066f5d 100644 (file)
@@ -84,10 +84,10 @@ class TLB : public BaseTLB
     };
   protected:
 
-    TlbEntry *table;   // the Page Table
-    int size;                  // TLB Size
+    TlbEntry *table;    // the Page Table
+    int size;           // TLB Size
 
-    uint32_t _attr;      // Memory attributes for last accessed TLB entry
+    uint32_t _attr;     // Memory attributes for last accessed TLB entry
 
 #if FULL_SYSTEM
     TableWalker *tableWalker;
index ffc1f18eb5bd3b331bf49baa50e53511850ef26f..9e0275de79718ef80f041a2af83573186666ac14 100644 (file)
@@ -44,15 +44,15 @@ if env['TARGET_ISA'] == 'mips':
     TraceFlag('MipsPRA')
 
     if env['FULL_SYSTEM']:
-       SimObject('MipsSystem.py')
-       SimObject('MipsInterrupts.py')
+        SimObject('MipsSystem.py')
+        SimObject('MipsInterrupts.py')
         Source('idle_event.cc')
         Source('mips_core_specific.cc')
         Source('vtophys.cc')
         Source('system.cc')
         Source('stacktrace.cc')
         Source('linux/system.cc')
-       Source('interrupts.cc')
+        Source('interrupts.cc')
         Source('bare_iron/system.cc')
     else:
         Source('process.cc')
index 85d2d96dade3846c1b38a8ae34ab421a0bd32a06..d2d119cacae4f9d143fec7e7772740dceadc46fa 100644 (file)
@@ -46,27 +46,27 @@ def bitfield FUNCTION      < 5: 0>;
 def bitfield FUNCTION_HI   < 5: 3>;
 def bitfield FUNCTION_LO   < 2: 0>;
 
-def bitfield RS              <25:21>;
+def bitfield RS       <25:21>;
 def bitfield RS_MSB   <25:25>;
 def bitfield RS_HI    <25:24>;
 def bitfield RS_LO    <23:21>;
 def bitfield RS_SRL   <25:22>;
 def bitfield RS_RT    <25:16>;
-def bitfield RT              <20:16>;
+def bitfield RT       <20:16>;
 def bitfield RT_HI    <20:19>;
 def bitfield RT_LO    <18:16>;
 def bitfield RT_RD    <20:11>;
-def bitfield RD              <15:11>;
+def bitfield RD       <15:11>;
 
-def bitfield INTIMM      <15: 0>;
+def bitfield INTIMM       <15: 0>;
 def bitfield RS_RT_INTIMM <25: 0>;
 
 // Floating-point operate format
 def bitfield FMT      <25:21>;
 def bitfield FR       <25:21>;
-def bitfield FT              <20:16>;
-def bitfield FS              <15:11>;
-def bitfield FD              <10:6>;
+def bitfield FT       <20:16>;
+def bitfield FS       <15:11>;
+def bitfield FD       <10:6>;
 
 def bitfield ND       <17:17>;
 def bitfield TF       <16:16>;
@@ -90,15 +90,15 @@ def bitfield SC       < 5: 5>;
 def bitfield OFFSET <15: 0>; // displacement
 
 // Jmp format
-def bitfield JMPTARG   <25: 0>;
-def bitfield HINT      <10: 6>;
+def bitfield JMPTARG    <25: 0>;
+def bitfield HINT       <10: 6>;
 
 def bitfield SYSCALLCODE <25: 6>;
 def bitfield TRAPCODE    <15:13>;
 
 // EXT/INS instructions
-def bitfield MSB       <15:11>;
-def bitfield LSB       <10: 6>;
+def bitfield MSB        <15:11>;
+def bitfield LSB        <10: 6>;
 
 // M5 instructions
 def bitfield M5FUNC <7:0>;
index 8a8033a007cd1844eb20358b2581e99a323ac8fc..173fa89dfc15066b694ab9e5b821c132859886cf 100644 (file)
@@ -1131,7 +1131,7 @@ decode OPCODE_HI default Unknown::unknown() {
                                             UnorderedFalse);
                                 0x3: c_ueq_s({{ cond = (Fs.sf == Ft.sf); }},
                                              UnorderedTrue);
-                                0x4: c_olt_s({{ cond = (Fs.sf < Ft.sf);        }},
+                                0x4: c_olt_s({{ cond = (Fs.sf < Ft.sf); }},
                                              UnorderedFalse);
                                 0x5: c_ult_s({{ cond = (Fs.sf < Ft.sf); }},
                                              UnorderedTrue);
@@ -1252,7 +1252,7 @@ decode OPCODE_HI default Unknown::unknown() {
                                             UnorderedFalse);
                                 0x3: c_ueq_d({{ cond = (Fs.df == Ft.df); }},
                                              UnorderedTrue);
-                                0x4: c_olt_d({{ cond = (Fs.df < Ft.df);        }},
+                                0x4: c_olt_d({{ cond = (Fs.df < Ft.df); }},
                                              UnorderedFalse);
                                 0x5: c_ult_d({{ cond = (Fs.df < Ft.df); }},
                                              UnorderedTrue);
index af70acb3d62c75b20bb92997e624d8a4738fcd91..b95ffd69ad89c929715085d20646a2c5bb5e8d04 100644 (file)
@@ -567,7 +567,7 @@ output exec {{
     inline Fault
     checkFpEnableFault(%(CPU_exec_context)s *xc)
     {
-        Fault fault = NoFault; // dummy... this ipr access should not fault
+        Fault fault = NoFault;  // dummy... this ipr access should not fault
         if (xc->readMiscReg(MISCREG_PSTATE) & PSTATE::pef &&
             xc->readMiscReg(MISCREG_FPRS) & 0x4) {
             return NoFault;
index afa8f88a2e375b83ef7d33dcdbf77ddd51365603..98f2068a0500c803a3a44dbbee8516ec3469aabd 100644 (file)
 // Bitfields are shared liberally between instruction formats, so they are
 // simply defined alphabetically
 
-def bitfield A         <29>;
+def bitfield A          <29>;
 def bitfield BPCC       <21:20>; // for BPcc & FBPcc
 def bitfield FCMPCC     <26:25>; // for FCMP & FCMPEa
 def bitfield FMOVCC     <13:11>; // for FMOVcc
 def bitfield CC         <12:11>; // for MOVcc & Tcc
 def bitfield MOVCC3     <18>; // also for MOVcc
-def bitfield CMASK     <6:4>;
-def bitfield COND2     <28:25>;
-def bitfield COND4     <17:14>;
-def bitfield D16HI     <21:20>;
-def bitfield D16LO     <13:0>;
-def bitfield DISP19    <18:0>;
-def bitfield DISP22    <21:0>;
-def bitfield DISP30    <29:0>;
-def bitfield FCN       <29:25>;
-def bitfield I         <13>;
-def bitfield IMM_ASI   <12:5>;
-def bitfield IMM22     <21:0>;
+def bitfield CMASK      <6:4>;
+def bitfield COND2      <28:25>;
+def bitfield COND4      <17:14>;
+def bitfield D16HI      <21:20>;
+def bitfield D16LO      <13:0>;
+def bitfield DISP19     <18:0>;
+def bitfield DISP22     <21:0>;
+def bitfield DISP30     <29:0>;
+def bitfield FCN        <29:25>;
+def bitfield I          <13>;
+def bitfield IMM_ASI    <12:5>;
+def bitfield IMM22      <21:0>;
 def bitfield M5FUNC     <15:7>;
-def bitfield MMASK     <3:0>;
-def bitfield OP                <31:30>;
-def bitfield OP2       <24:22>;
-def bitfield OP3       <24:19>;
-def bitfield OPF       <13:5>;
-def bitfield OPF_CC    <13:11>;
-def bitfield OPF_LOW5  <9:5>;
-def bitfield OPF_LOW6  <10:5>;
-def bitfield P         <19>;
-def bitfield RCOND2    <27:25>;
-def bitfield RCOND3    <12:10>;
-def bitfield RCOND4    <12:10>;
-def bitfield RD                <29:25>;
-def bitfield RS1       <18:14>;
-def bitfield RS2       <4:0>;
-def bitfield SHCNT32   <4:0>;
-def bitfield SHCNT64   <5:0>;
-def bitfield SIMM10    <9:0>;
-def bitfield SIMM11    <10:0>;
-def bitfield SIMM13    <12:0>;
-def bitfield SW_TRAP   <7:0>;
-def bitfield X         <12>;
+def bitfield MMASK      <3:0>;
+def bitfield OP         <31:30>;
+def bitfield OP2        <24:22>;
+def bitfield OP3        <24:19>;
+def bitfield OPF        <13:5>;
+def bitfield OPF_CC     <13:11>;
+def bitfield OPF_LOW5   <9:5>;
+def bitfield OPF_LOW6   <10:5>;
+def bitfield P          <19>;
+def bitfield RCOND2     <27:25>;
+def bitfield RCOND3     <12:10>;
+def bitfield RCOND4     <12:10>;
+def bitfield RD         <29:25>;
+def bitfield RS1        <18:14>;
+def bitfield RS2        <4:0>;
+def bitfield SHCNT32    <4:0>;
+def bitfield SHCNT64    <5:0>;
+def bitfield SIMM10     <9:0>;
+def bitfield SIMM11     <10:0>;
+def bitfield SIMM13     <12:0>;
+def bitfield SW_TRAP    <7:0>;
+def bitfield X          <12>;
 
 // Extended bitfields which aren't part of the actual instruction.
 
-def bitfield EXT_ASI   <39:32>;
+def bitfield EXT_ASI    <39:32>;
index e9536f4950fbc779e111da3bc73cbfa43dd42ff9..58d7b37ee5f4a4754856f5ba7bae129cbb0cd433 100644 (file)
@@ -259,7 +259,7 @@ let {{
     def doIntFormat(code, ccCode, name, Name, opt_flags):
         (usesImm, code, immCode,
          rString, iString) = splitOutImm(code)
-        iop = InstObjParams(name, Name,        'IntOp',
+        iop = InstObjParams(name, Name, 'IntOp',
                 {"code": code, "cc_code": ccCode},
                 opt_flags)
         header_output = BasicDeclare.subst(iop)
index dfc71f41935cacf054b6b7d02823eb6cf95b5889..047451ae7bb8568c2729a5401297bf91d4317ec7 100644 (file)
@@ -72,71 +72,71 @@ def operands {{
     # For clarity, descriptions that depend on unsigned behavior should
     # explicitly specify '.uq'.
 
-    'Rd':              ('IntReg', 'udw', 'RD', 'IsInteger', 1),
+    'Rd':               ('IntReg', 'udw', 'RD', 'IsInteger', 1),
     # The Rd from the previous window
-    'Rd_prev':         ('IntReg', 'udw', 'RD + NumIntArchRegs + NumMicroIntRegs', 'IsInteger', 2),
+    'Rd_prev':          ('IntReg', 'udw', 'RD + NumIntArchRegs + NumMicroIntRegs', 'IsInteger', 2),
     # The Rd from the next window
-    'Rd_next':         ('IntReg', 'udw', 'RD + 2 * NumIntArchRegs + NumMicroIntRegs', 'IsInteger', 3),
+    'Rd_next':          ('IntReg', 'udw', 'RD + 2 * NumIntArchRegs + NumMicroIntRegs', 'IsInteger', 3),
     # For microcoded twin load instructions, RdTwin appears in the "code"
     # for the instruction is replaced by RdLow or RdHigh by the format
     # before it's processed by the iop.
     # The low (even) register of a two register pair
-    'RdLow':           ('IntReg', 'udw', 'RD & (~1)', 'IsInteger', 4),
+    'RdLow':            ('IntReg', 'udw', 'RD & (~1)', 'IsInteger', 4),
     # The high (odd) register of a two register pair
-    'RdHigh':          ('IntReg', 'udw', 'RD | 1', 'IsInteger', 5),
-    'Rs1':             ('IntReg', 'udw', 'RS1', 'IsInteger', 6),
-    'Rs2':             ('IntReg', 'udw', 'RS2', 'IsInteger', 7),
+    'RdHigh':           ('IntReg', 'udw', 'RD | 1', 'IsInteger', 5),
+    'Rs1':              ('IntReg', 'udw', 'RS1', 'IsInteger', 6),
+    'Rs2':              ('IntReg', 'udw', 'RS2', 'IsInteger', 7),
     # A microcode register. Right now, this is the only one.
-    'uReg0':           ('IntReg', 'udw', 'NumIntArchRegs', 'IsInteger', 8),
+    'uReg0':            ('IntReg', 'udw', 'NumIntArchRegs', 'IsInteger', 8),
     # Because double and quad precision register numbers are decoded
     # differently, they get different operands. The single precision versions
     # have an s post pended to their name.
-    'Frds':            ('FloatReg', 'sf', 'RD', 'IsFloating', 10),
-    #'Frd':            ('FloatReg', 'df', 'dfpr(RD)', 'IsFloating', 10),
-    'Frd_low':         ('FloatReg', 'uw', 'dfprl(RD)', 'IsFloating', 10),
-    'Frd_high':                ('FloatReg', 'uw', 'dfprh(RD)', 'IsFloating', 10),
+    'Frds':             ('FloatReg', 'sf', 'RD', 'IsFloating', 10),
+    #'Frd':             ('FloatReg', 'df', 'dfpr(RD)', 'IsFloating', 10),
+    'Frd_low':          ('FloatReg', 'uw', 'dfprl(RD)', 'IsFloating', 10),
+    'Frd_high':         ('FloatReg', 'uw', 'dfprh(RD)', 'IsFloating', 10),
     # Each Frd_N refers to the Nth double precision register from Frd.
     # Note that this adds twice N to the register number.
-    #'Frd_0':          ('FloatReg', 'df', 'dfpr(RD)', 'IsFloating', 10),
-    'Frd_0_low':       ('FloatReg', 'uw', 'dfprl(RD)', 'IsFloating', 10),
-    'Frd_0_high':      ('FloatReg', 'uw', 'dfprh(RD)', 'IsFloating', 10),
-    #'Frd_1':          ('FloatReg', 'df', 'dfpr(RD) + 2', 'IsFloating', 10),
-    'Frd_1_low':       ('FloatReg', 'uw', 'dfprl(RD) + 2', 'IsFloating', 10),
-    'Frd_1_high':      ('FloatReg', 'uw', 'dfprh(RD) + 2', 'IsFloating', 10),
-    #'Frd_2':          ('FloatReg', 'df', 'dfpr(RD) + 4', 'IsFloating', 10),
-    'Frd_2_low':       ('FloatReg', 'uw', 'dfprl(RD) + 4', 'IsFloating', 10),
-    'Frd_2_high':      ('FloatReg', 'uw', 'dfprh(RD) + 4', 'IsFloating', 10),
-    #'Frd_3':          ('FloatReg', 'df', 'dfpr(RD) + 6', 'IsFloating', 10),
-    'Frd_3_low':       ('FloatReg', 'uw', 'dfprl(RD) + 6', 'IsFloating', 10),
-    'Frd_3_high':      ('FloatReg', 'uw', 'dfprh(RD) + 6', 'IsFloating', 10),
-    #'Frd_4':          ('FloatReg', 'df', 'dfpr(RD) + 8', 'IsFloating', 10),
-    'Frd_4_low':       ('FloatReg', 'uw', 'dfprl(RD) + 8', 'IsFloating', 10),
-    'Frd_4_high':      ('FloatReg', 'uw', 'dfprh(RD) + 8', 'IsFloating', 10),
-    #'Frd_5':          ('FloatReg', 'df', 'dfpr(RD) + 10', 'IsFloating', 10),
-    'Frd_5_low':       ('FloatReg', 'uw', 'dfprl(RD) + 10', 'IsFloating', 10),
-    'Frd_5_high':      ('FloatReg', 'uw', 'dfprh(RD) + 10', 'IsFloating', 10),
-    #'Frd_6':          ('FloatReg', 'df', 'dfpr(RD) + 12', 'IsFloating', 10),
-    'Frd_6_low':       ('FloatReg', 'uw', 'dfprl(RD) + 12', 'IsFloating', 10),
-    'Frd_6_high':      ('FloatReg', 'uw', 'dfprh(RD) + 12', 'IsFloating', 10),
-    #'Frd_7':          ('FloatReg', 'df', 'dfpr(RD) + 14', 'IsFloating', 10),
-    'Frd_7_low':       ('FloatReg', 'uw', 'dfprl(RD) + 14', 'IsFloating', 10),
-    'Frd_7_high':      ('FloatReg', 'uw', 'dfprh(RD) + 14', 'IsFloating', 10),
-    'Frs1s':           ('FloatReg', 'sf', 'RS1', 'IsFloating', 11),
-    #'Frs1':           ('FloatReg', 'df', 'dfpr(RS1)', 'IsFloating', 11),
-    'Frs1_low':                ('FloatReg', 'uw', 'dfprl(RS1)', 'IsFloating', 11),
-    'Frs1_high':       ('FloatReg', 'uw', 'dfprh(RS1)', 'IsFloating', 11),
-    'Frs2s':           ('FloatReg', 'sf', 'RS2', 'IsFloating', 12),
-    #'Frs2':           ('FloatReg', 'df', 'dfpr(RS2)', 'IsFloating', 12),
-    'Frs2_low':                ('FloatReg', 'uw', 'dfprl(RS2)', 'IsFloating', 12),
-    'Frs2_high':       ('FloatReg', 'uw', 'dfprh(RS2)', 'IsFloating', 12),
+    #'Frd_0':           ('FloatReg', 'df', 'dfpr(RD)', 'IsFloating', 10),
+    'Frd_0_low':        ('FloatReg', 'uw', 'dfprl(RD)', 'IsFloating', 10),
+    'Frd_0_high':       ('FloatReg', 'uw', 'dfprh(RD)', 'IsFloating', 10),
+    #'Frd_1':           ('FloatReg', 'df', 'dfpr(RD) + 2', 'IsFloating', 10),
+    'Frd_1_low':        ('FloatReg', 'uw', 'dfprl(RD) + 2', 'IsFloating', 10),
+    'Frd_1_high':       ('FloatReg', 'uw', 'dfprh(RD) + 2', 'IsFloating', 10),
+    #'Frd_2':           ('FloatReg', 'df', 'dfpr(RD) + 4', 'IsFloating', 10),
+    'Frd_2_low':        ('FloatReg', 'uw', 'dfprl(RD) + 4', 'IsFloating', 10),
+    'Frd_2_high':       ('FloatReg', 'uw', 'dfprh(RD) + 4', 'IsFloating', 10),
+    #'Frd_3':           ('FloatReg', 'df', 'dfpr(RD) + 6', 'IsFloating', 10),
+    'Frd_3_low':        ('FloatReg', 'uw', 'dfprl(RD) + 6', 'IsFloating', 10),
+    'Frd_3_high':       ('FloatReg', 'uw', 'dfprh(RD) + 6', 'IsFloating', 10),
+    #'Frd_4':           ('FloatReg', 'df', 'dfpr(RD) + 8', 'IsFloating', 10),
+    'Frd_4_low':        ('FloatReg', 'uw', 'dfprl(RD) + 8', 'IsFloating', 10),
+    'Frd_4_high':       ('FloatReg', 'uw', 'dfprh(RD) + 8', 'IsFloating', 10),
+    #'Frd_5':           ('FloatReg', 'df', 'dfpr(RD) + 10', 'IsFloating', 10),
+    'Frd_5_low':        ('FloatReg', 'uw', 'dfprl(RD) + 10', 'IsFloating', 10),
+    'Frd_5_high':       ('FloatReg', 'uw', 'dfprh(RD) + 10', 'IsFloating', 10),
+    #'Frd_6':           ('FloatReg', 'df', 'dfpr(RD) + 12', 'IsFloating', 10),
+    'Frd_6_low':        ('FloatReg', 'uw', 'dfprl(RD) + 12', 'IsFloating', 10),
+    'Frd_6_high':       ('FloatReg', 'uw', 'dfprh(RD) + 12', 'IsFloating', 10),
+    #'Frd_7':           ('FloatReg', 'df', 'dfpr(RD) + 14', 'IsFloating', 10),
+    'Frd_7_low':        ('FloatReg', 'uw', 'dfprl(RD) + 14', 'IsFloating', 10),
+    'Frd_7_high':       ('FloatReg', 'uw', 'dfprh(RD) + 14', 'IsFloating', 10),
+    'Frs1s':            ('FloatReg', 'sf', 'RS1', 'IsFloating', 11),
+    #'Frs1':            ('FloatReg', 'df', 'dfpr(RS1)', 'IsFloating', 11),
+    'Frs1_low':         ('FloatReg', 'uw', 'dfprl(RS1)', 'IsFloating', 11),
+    'Frs1_high':        ('FloatReg', 'uw', 'dfprh(RS1)', 'IsFloating', 11),
+    'Frs2s':            ('FloatReg', 'sf', 'RS2', 'IsFloating', 12),
+    #'Frs2':            ('FloatReg', 'df', 'dfpr(RS2)', 'IsFloating', 12),
+    'Frs2_low':         ('FloatReg', 'uw', 'dfprl(RS2)', 'IsFloating', 12),
+    'Frs2_high':        ('FloatReg', 'uw', 'dfprh(RS2)', 'IsFloating', 12),
     'PC':               ('PCState', 'udw', 'pc', (None, None, 'IsControl'), 30),
     'NPC':              ('PCState', 'udw', 'npc', (None, None, 'IsControl'), 30),
     'NNPC':             ('PCState', 'udw', 'nnpc', (None, None, 'IsControl'), 30),
     # Registers which are used explicitly in instructions
-    'R0':              ('IntReg', 'udw', '0', None, 6),
-    'R1':              ('IntReg', 'udw', '1', None, 7),
-    'R15':             ('IntReg', 'udw', '15', 'IsInteger', 8),
-    'R16':             ('IntReg', 'udw', '16', None, 9),
+    'R0':               ('IntReg', 'udw', '0', None, 6),
+    'R1':               ('IntReg', 'udw', '1', None, 7),
+    'R15':              ('IntReg', 'udw', '15', 'IsInteger', 8),
+    'R16':              ('IntReg', 'udw', '16', None, 9),
     'O0':               ('IntReg', 'udw', '8', 'IsInteger', 10),
     'O1':               ('IntReg', 'udw', '9', 'IsInteger', 11),
     'O2':               ('IntReg', 'udw', '10', 'IsInteger', 12),
@@ -145,55 +145,55 @@ def operands {{
     'O5':               ('IntReg', 'udw', '13', 'IsInteger', 15),
 
     # Control registers
-#   'Y':               ('ControlReg', 'udw', 'MISCREG_Y', None, 40),
-#   'Ccr':             ('ControlReg', 'udw', 'MISCREG_CCR', None, 41),
-    'Y':               ('IntReg', 'udw', 'NumIntArchRegs + 1', None, 40),
-    'Ccr':             ('IntReg', 'udw', 'NumIntArchRegs + 2', None, 41),
-    'Asi':             ('ControlReg', 'udw', 'MISCREG_ASI', None, 42),
-    'Fprs':            ('ControlReg', 'udw', 'MISCREG_FPRS', None, 43),
-    'Pcr':             ('ControlReg', 'udw', 'MISCREG_PCR', None, 44),
-    'Pic':             ('ControlReg', 'udw', 'MISCREG_PIC', None, 45),
-#   'Gsr':             ('ControlReg', 'udw', 'MISCREG_GSR', (None, None, ['IsSerializeAfter','IsSerializing','IsNonSpeculative']), 46),
-    'Gsr':             ('IntReg', 'udw', 'NumIntArchRegs + 8', None, 46),
-    'Softint':         ('ControlReg', 'udw', 'MISCREG_SOFTINT', None, 47),
-    'SoftintSet':      ('ControlReg', 'udw', 'MISCREG_SOFTINT_SET', None, 48),
-    'SoftintClr':      ('ControlReg', 'udw', 'MISCREG_SOFTINT_CLR', None, 49),
-    'TickCmpr':                ('ControlReg', 'udw', 'MISCREG_TICK_CMPR', None, 50),
-    'Stick':           ('ControlReg', 'udw', 'MISCREG_STICK', None, 51),
-    'StickCmpr':       ('ControlReg', 'udw', 'MISCREG_STICK_CMPR', None, 52),
+#   'Y':                ('ControlReg', 'udw', 'MISCREG_Y', None, 40),
+#   'Ccr':              ('ControlReg', 'udw', 'MISCREG_CCR', None, 41),
+    'Y':                ('IntReg', 'udw', 'NumIntArchRegs + 1', None, 40),
+    'Ccr':              ('IntReg', 'udw', 'NumIntArchRegs + 2', None, 41),
+    'Asi':              ('ControlReg', 'udw', 'MISCREG_ASI', None, 42),
+    'Fprs':             ('ControlReg', 'udw', 'MISCREG_FPRS', None, 43),
+    'Pcr':              ('ControlReg', 'udw', 'MISCREG_PCR', None, 44),
+    'Pic':              ('ControlReg', 'udw', 'MISCREG_PIC', None, 45),
+#   'Gsr':              ('ControlReg', 'udw', 'MISCREG_GSR', (None, None, ['IsSerializeAfter','IsSerializing','IsNonSpeculative']), 46),
+    'Gsr':              ('IntReg', 'udw', 'NumIntArchRegs + 8', None, 46),
+    'Softint':          ('ControlReg', 'udw', 'MISCREG_SOFTINT', None, 47),
+    'SoftintSet':       ('ControlReg', 'udw', 'MISCREG_SOFTINT_SET', None, 48),
+    'SoftintClr':       ('ControlReg', 'udw', 'MISCREG_SOFTINT_CLR', None, 49),
+    'TickCmpr':         ('ControlReg', 'udw', 'MISCREG_TICK_CMPR', None, 50),
+    'Stick':            ('ControlReg', 'udw', 'MISCREG_STICK', None, 51),
+    'StickCmpr':        ('ControlReg', 'udw', 'MISCREG_STICK_CMPR', None, 52),
 
-    'Tpc':             ('ControlReg', 'udw', 'MISCREG_TPC', None, 53),
-    'Tnpc':            ('ControlReg', 'udw', 'MISCREG_TNPC', None, 54),
-    'Tstate':          ('ControlReg', 'udw', 'MISCREG_TSTATE', None, 55),
-    'Tt':              ('ControlReg', 'udw', 'MISCREG_TT', None, 56),
-    'Tick':            ('ControlReg', 'udw', 'MISCREG_TICK', None, 57),
-    'Tba':             ('ControlReg', 'udw', 'MISCREG_TBA', None, 58),
-    'Pstate':          ('ControlReg', 'udw', 'MISCREG_PSTATE', None, 59),
-    'Tl':              ('ControlReg', 'udw', 'MISCREG_TL', None, 60),
-    'Pil':             ('ControlReg', 'udw', 'MISCREG_PIL', None, 61),
-    'Cwp':             ('ControlReg', 'udw', 'MISCREG_CWP', (None, None, ['IsSerializeAfter','IsSerializing','IsNonSpeculative']), 62),
-#   'Cansave':         ('ControlReg', 'udw', 'MISCREG_CANSAVE', None, 63),
-#   'Canrestore':      ('ControlReg', 'udw', 'MISCREG_CANRESTORE', None, 64),
-#   'Cleanwin':                ('ControlReg', 'udw', 'MISCREG_CLEANWIN', None, 65),
-#   'Otherwin':                ('ControlReg', 'udw', 'MISCREG_OTHERWIN', None, 66),
-#   'Wstate':          ('ControlReg', 'udw', 'MISCREG_WSTATE', None, 67),
-    'Cansave':         ('IntReg', 'udw', 'NumIntArchRegs + 3', None, 63),
-    'Canrestore':      ('IntReg', 'udw', 'NumIntArchRegs + 4', None, 64),
-    'Cleanwin':                ('IntReg', 'udw', 'NumIntArchRegs + 5', None, 65),
-    'Otherwin':                ('IntReg', 'udw', 'NumIntArchRegs + 6', None, 66),
-    'Wstate':          ('IntReg', 'udw', 'NumIntArchRegs + 7', None, 67),
+    'Tpc':              ('ControlReg', 'udw', 'MISCREG_TPC', None, 53),
+    'Tnpc':             ('ControlReg', 'udw', 'MISCREG_TNPC', None, 54),
+    'Tstate':           ('ControlReg', 'udw', 'MISCREG_TSTATE', None, 55),
+    'Tt':               ('ControlReg', 'udw', 'MISCREG_TT', None, 56),
+    'Tick':             ('ControlReg', 'udw', 'MISCREG_TICK', None, 57),
+    'Tba':              ('ControlReg', 'udw', 'MISCREG_TBA', None, 58),
+    'Pstate':           ('ControlReg', 'udw', 'MISCREG_PSTATE', None, 59),
+    'Tl':               ('ControlReg', 'udw', 'MISCREG_TL', None, 60),
+    'Pil':              ('ControlReg', 'udw', 'MISCREG_PIL', None, 61),
+    'Cwp':              ('ControlReg', 'udw', 'MISCREG_CWP', (None, None, ['IsSerializeAfter','IsSerializing','IsNonSpeculative']), 62),
+#   'Cansave':          ('ControlReg', 'udw', 'MISCREG_CANSAVE', None, 63),
+#   'Canrestore':       ('ControlReg', 'udw', 'MISCREG_CANRESTORE', None, 64),
+#   'Cleanwin':         ('ControlReg', 'udw', 'MISCREG_CLEANWIN', None, 65),
+#   'Otherwin':         ('ControlReg', 'udw', 'MISCREG_OTHERWIN', None, 66),
+#   'Wstate':           ('ControlReg', 'udw', 'MISCREG_WSTATE', None, 67),
+    'Cansave':          ('IntReg', 'udw', 'NumIntArchRegs + 3', None, 63),
+    'Canrestore':       ('IntReg', 'udw', 'NumIntArchRegs + 4', None, 64),
+    'Cleanwin':         ('IntReg', 'udw', 'NumIntArchRegs + 5', None, 65),
+    'Otherwin':         ('IntReg', 'udw', 'NumIntArchRegs + 6', None, 66),
+    'Wstate':           ('IntReg', 'udw', 'NumIntArchRegs + 7', None, 67),
     'Gl':               ('ControlReg', 'udw', 'MISCREG_GL', None, 68),
 
-    'Hpstate':         ('ControlReg', 'udw', 'MISCREG_HPSTATE', None, 69),
-    'Htstate':         ('ControlReg', 'udw', 'MISCREG_HTSTATE', None, 70),
-    'Hintp':           ('ControlReg', 'udw', 'MISCREG_HINTP', None, 71),
-    'Htba':            ('ControlReg', 'udw', 'MISCREG_HTBA', None, 72),
-    'HstickCmpr':      ('ControlReg', 'udw', 'MISCREG_HSTICK_CMPR', None, 73),
-    'Hver':            ('ControlReg', 'udw', 'MISCREG_HVER', None, 74),
-    'StrandStsReg':    ('ControlReg', 'udw', 'MISCREG_STRAND_STS_REG', None, 75),
+    'Hpstate':          ('ControlReg', 'udw', 'MISCREG_HPSTATE', None, 69),
+    'Htstate':          ('ControlReg', 'udw', 'MISCREG_HTSTATE', None, 70),
+    'Hintp':            ('ControlReg', 'udw', 'MISCREG_HINTP', None, 71),
+    'Htba':             ('ControlReg', 'udw', 'MISCREG_HTBA', None, 72),
+    'HstickCmpr':       ('ControlReg', 'udw', 'MISCREG_HSTICK_CMPR', None, 73),
+    'Hver':             ('ControlReg', 'udw', 'MISCREG_HVER', None, 74),
+    'StrandStsReg':     ('ControlReg', 'udw', 'MISCREG_STRAND_STS_REG', None, 75),
 
-    'Fsr':             ('ControlReg', 'udw', 'MISCREG_FSR', (None, None, ['IsSerializeAfter','IsSerializing','IsNonSpeculative']), 80),
+    'Fsr':              ('ControlReg', 'udw', 'MISCREG_FSR', (None, None, ['IsSerializeAfter','IsSerializing','IsNonSpeculative']), 80),
     # Mem gets a large number so it's always last
-    'Mem':             ('Mem', 'udw', None, ('IsMemRef', 'IsLoad', 'IsStore'), 100)
+    'Mem':              ('Mem', 'udw', None, ('IsMemRef', 'IsLoad', 'IsStore'), 100)
 
 }};
index 5fd70a53889e3e385b62eecb6ef1d2905602b0c3..16a413ed0310b5072e2a69a0b9e494025a1123ce 100644 (file)
@@ -48,12 +48,12 @@ if env['TARGET_ISA'] == 'x86':
 
         # The DMI tables.
         SimObject('SMBios.py')
-       Source('smbios.cc')
+        Source('smbios.cc')
 
         # Intel Multiprocessor Specification Configuration Table
         SimObject('IntelMP.py')
         Source('intelmp.cc')
 
         # ACPI system description tables
-       SimObject('ACPI.py')
+        SimObject('ACPI.py')
         Source('acpi.cc')
index 90cb285f561e8ccac1abac90989b36c4eaba0615..37c235759f23fb2ff93e0b63f5b746012aa5a9f9 100644 (file)
 Import('*')
 
 if 'InOrderCPU' in env['CPU_MODELS']:
-       SimObject('InOrderCPU.py')
-       SimObject('InOrderTrace.py')
+        SimObject('InOrderCPU.py')
+        SimObject('InOrderTrace.py')
 
-       TraceFlag('ResReqCount')
-       TraceFlag('InOrderStage')
-       TraceFlag('InOrderStall')
-       TraceFlag('InOrderCPU')
-       TraceFlag('RegDepMap')
-       TraceFlag('InOrderDynInst')
-       TraceFlag('Resource')
-       TraceFlag('InOrderAGEN')
-       TraceFlag('InOrderFetchSeq')
-       TraceFlag('InOrderTLB')
-       TraceFlag('InOrderCachePort')
-       TraceFlag('InOrderBPred')
-       TraceFlag('InOrderDecode')
-       TraceFlag('InOrderExecute')
-       TraceFlag('InOrderInstBuffer')
-       TraceFlag('InOrderUseDef')
-       TraceFlag('InOrderMDU')
-       TraceFlag('InOrderGraduation')
-       TraceFlag('ThreadModel')
-       TraceFlag('RefCount')
-       TraceFlag('AddrDep')    
-       
+        TraceFlag('ResReqCount')
+        TraceFlag('InOrderStage')
+        TraceFlag('InOrderStall')
+        TraceFlag('InOrderCPU')
+        TraceFlag('RegDepMap')
+        TraceFlag('InOrderDynInst')
+        TraceFlag('Resource')
+        TraceFlag('InOrderAGEN')
+        TraceFlag('InOrderFetchSeq')
+        TraceFlag('InOrderTLB')
+        TraceFlag('InOrderCachePort')
+        TraceFlag('InOrderBPred')
+        TraceFlag('InOrderDecode')
+        TraceFlag('InOrderExecute')
+        TraceFlag('InOrderInstBuffer')
+        TraceFlag('InOrderUseDef')
+        TraceFlag('InOrderMDU')
+        TraceFlag('InOrderGraduation')
+        TraceFlag('ThreadModel')
+        TraceFlag('RefCount')
+        TraceFlag('AddrDep')
 
-       CompoundFlag('InOrderCPUAll', [ 'InOrderStage', 'InOrderStall', 'InOrderCPU',
-              'InOrderMDU', 'InOrderAGEN', 'InOrderFetchSeq', 'InOrderTLB', 'InOrderBPred',
-              'InOrderDecode', 'InOrderExecute', 'InOrderInstBuffer', 'InOrderUseDef',
-              'InOrderGraduation', 'InOrderCachePort', 'RegDepMap', 'Resource',
-              'ThreadModel', 'AddrDep'])
 
-       Source('pipeline_traits.cc')        
-       Source('inorder_dyn_inst.cc')
-       Source('inorder_cpu_builder.cc')
-       Source('inorder_trace.cc')
-       Source('pipeline_stage.cc')
-       Source('first_stage.cc')
-       Source('resource.cc')
-       Source('resources/agen_unit.cc')
-       Source('resources/execution_unit.cc')
-       Source('resources/bpred_unit.cc')
-       Source('resources/branch_predictor.cc')
-       Source('resources/cache_unit.cc')
-       Source('resources/use_def.cc')
-       Source('resources/decode_unit.cc')
-       Source('resources/inst_buffer.cc')
-       Source('resources/graduation_unit.cc')
-       Source('resources/fetch_seq_unit.cc')
-       Source('resources/mult_div_unit.cc')
-       Source('resource_pool.cc')
-       Source('resource_sked.cc')      
-       Source('reg_dep_map.cc')
-       Source('thread_state.cc')
-       Source('thread_context.cc')
-       Source('cpu.cc')
+        CompoundFlag('InOrderCPUAll', [ 'InOrderStage', 'InOrderStall', 'InOrderCPU',
+               'InOrderMDU', 'InOrderAGEN', 'InOrderFetchSeq', 'InOrderTLB', 'InOrderBPred',
+               'InOrderDecode', 'InOrderExecute', 'InOrderInstBuffer', 'InOrderUseDef',
+               'InOrderGraduation', 'InOrderCachePort', 'RegDepMap', 'Resource',
+               'ThreadModel', 'AddrDep'])
+
+        Source('pipeline_traits.cc')        
+        Source('inorder_dyn_inst.cc')
+        Source('inorder_cpu_builder.cc')
+        Source('inorder_trace.cc')
+        Source('pipeline_stage.cc')
+        Source('first_stage.cc')
+        Source('resource.cc')
+        Source('resources/agen_unit.cc')
+        Source('resources/execution_unit.cc')
+        Source('resources/bpred_unit.cc')
+        Source('resources/branch_predictor.cc')
+        Source('resources/cache_unit.cc')
+        Source('resources/use_def.cc')
+        Source('resources/decode_unit.cc')
+        Source('resources/inst_buffer.cc')
+        Source('resources/graduation_unit.cc')
+        Source('resources/fetch_seq_unit.cc')
+        Source('resources/mult_div_unit.cc')
+        Source('resource_pool.cc')
+        Source('resource_sked.cc')
+        Source('reg_dep_map.cc')
+        Source('thread_state.cc')
+        Source('thread_context.cc')
+        Source('cpu.cc')
 
index 383b799f3a186fc55dd27b93619bafdadc6d27c8..f479dd812215f45ba8c8a8a56742bb42dfe8cae6 100644 (file)
@@ -64,7 +64,7 @@ class FirstStage : public PipelineStage {
     void squashDueToMemStall(InstSeqNum seq_num, ThreadID tid);
 
     /** There are no insts. coming from previous stages, so there is
-     * no need to sort insts here
+     *  no need to sort insts here
      */
     void sortInsts() {}
 
index a67fe46c24154ace20a1c42871f08e7b8a6bf3ce..1c0ee43844baf7338b418b39e1dc2f29d833160c 100644 (file)
@@ -101,8 +101,8 @@ class InOrderDynInst : public FastAlloc, public RefCounted
     typedef std::list<DynInstPtr>::iterator ListIt;
 
     enum {
-        MaxInstSrcRegs = TheISA::MaxInstSrcRegs,       /// Max source regs
-        MaxInstDestRegs = TheISA::MaxInstDestRegs,     /// Max dest regs
+        MaxInstSrcRegs = TheISA::MaxInstSrcRegs,        /// Max source regs
+        MaxInstDestRegs = TheISA::MaxInstDestRegs,      /// Max dest regs
     };
 
   public:
@@ -373,24 +373,24 @@ class InOrderDynInst : public FastAlloc, public RefCounted
     //  INSTRUCTION TYPES -  Forward checks to StaticInst object.
     //
     ////////////////////////////////////////////////////////////
-    bool isNop()         const { return staticInst->isNop(); }
-    bool isMemRef()              const { return staticInst->isMemRef(); }
-    bool isLoad()        const { return staticInst->isLoad(); }
-    bool isStore()       const { return staticInst->isStore(); }
+    bool isNop()          const { return staticInst->isNop(); }
+    bool isMemRef()       const { return staticInst->isMemRef(); }
+    bool isLoad()         const { return staticInst->isLoad(); }
+    bool isStore()        const { return staticInst->isStore(); }
     bool isStoreConditional() const
     { return staticInst->isStoreConditional(); }
     bool isInstPrefetch() const { return staticInst->isInstPrefetch(); }
     bool isDataPrefetch() const { return staticInst->isDataPrefetch(); }
     bool isCopy()         const { return staticInst->isCopy(); }
-    bool isInteger()     const { return staticInst->isInteger(); }
-    bool isFloating()    const { return staticInst->isFloating(); }
-    bool isControl()     const { return staticInst->isControl(); }
-    bool isCall()        const { return staticInst->isCall(); }
-    bool isReturn()      const { return staticInst->isReturn(); }
-    bool isDirectCtrl()          const { return staticInst->isDirectCtrl(); }
+    bool isInteger()      const { return staticInst->isInteger(); }
+    bool isFloating()     const { return staticInst->isFloating(); }
+    bool isControl()      const { return staticInst->isControl(); }
+    bool isCall()         const { return staticInst->isCall(); }
+    bool isReturn()       const { return staticInst->isReturn(); }
+    bool isDirectCtrl()   const { return staticInst->isDirectCtrl(); }
     bool isIndirectCtrl() const { return staticInst->isIndirectCtrl(); }
-    bool isCondCtrl()    const { return staticInst->isCondCtrl(); }
-    bool isUncondCtrl()          const { return staticInst->isUncondCtrl(); }
+    bool isCondCtrl()     const { return staticInst->isCondCtrl(); }
+    bool isUncondCtrl()   const { return staticInst->isUncondCtrl(); }
     bool isCondDelaySlot() const { return staticInst->isCondDelaySlot(); }
 
     bool isThreadSync()   const { return staticInst->isThreadSync(); }
@@ -674,7 +674,7 @@ class InOrderDynInst : public FastAlloc, public RefCounted
     //
     //////////////////////////////////////////////////
     /** Returns the number of source registers. */
-    int8_t numSrcRegs()        const { return staticInst->numSrcRegs(); }
+    int8_t numSrcRegs() const { return staticInst->numSrcRegs(); }
 
     /** Returns the number of destination registers. */
     int8_t numDestRegs() const { return staticInst->numDestRegs(); }
index 06ef95e44a8bf592a98cbd30eda3a1a804952b91..2e0143f9ff3d67acbddf0b1261e684e2ef40957d 100644 (file)
@@ -253,7 +253,7 @@ class ResourceEvent : public Event
     /// (for InOrderCPU model).
     /// check src/sim/eventq.hh for more event priorities.
     enum InOrderPriority {
-        Resource_Event_Pri     =   45,
+        Resource_Event_Pri = 45,
     };
 
     /** The Resource Slot that this event is servicing */
index 49b394c610cdab490dbaffe849f47bed3a818f46..af8c4892c3009270b9172b21857c22be4c67dfd4 100644 (file)
@@ -258,7 +258,7 @@ class CacheRequest : public ResourceRequest
     }
 
     virtual PacketDataPtr getData()
-    {  return reqData; }
+    { return reqData; }
 
     void
     setMemAccCompleted(bool completed = true)
index e08c56e8c365cb598d7b8bc6fe4fe4751f5ad885..122b531caf1c98095bee6ae35de8990b67a21bd5 100644 (file)
@@ -87,11 +87,11 @@ X86ISA::Cmos::readRegister(uint8_t reg)
     if (reg <= 0xD) {
         val = rtc.readData(reg);
         DPRINTF(CMOS,
-           "Reading CMOS RTC reg %x as %x.\n", reg, val);
+            "Reading CMOS RTC reg %x as %x.\n", reg, val);
     } else {
         val = regs[reg];
         DPRINTF(CMOS,
-           "Reading non-volitile CMOS address %x as %x.\n", reg, val);
+            "Reading non-volitile CMOS address %x as %x.\n", reg, val);
     }
     return val;
 }
@@ -102,11 +102,11 @@ X86ISA::Cmos::writeRegister(uint8_t reg, uint8_t val)
     assert(reg < numRegs);
     if (reg <= 0xD) {
         DPRINTF(CMOS, "Writing CMOS RTC reg %x with %x.\n",
-               reg, val);
+                reg, val);
         rtc.writeData(reg, val);
     } else {
         DPRINTF(CMOS, "Writing non-volitile CMOS address %x with %x.\n",
-               reg, val);
+                reg, val);
         regs[reg] = val;
     }
 }