cpu: Update DRAM traffic gen
[gem5.git] / src / cpu / inorder / resources / execution_unit.cc
index 7ed9aed9a356cfc6815d429de160fbb21d7dee4c..296d5126fa7a4bc981419d234ef3f18402b361cb 100644 (file)
 #include "cpu/inorder/resources/execution_unit.hh"
 #include "cpu/inorder/cpu.hh"
 #include "cpu/inorder/resource_pool.hh"
+#include "debug/Fault.hh"
 #include "debug/InOrderExecute.hh"
 #include "debug/InOrderStall.hh"
+#include "sim/full_system.hh"
 
 using namespace std;
 using namespace ThePipeline;
 
 ExecutionUnit::ExecutionUnit(string res_name, int res_id, int res_width,
-                             int res_latency, InOrderCPU *_cpu,
+                             Cycles res_latency, InOrderCPU *_cpu,
                              ThePipeline::Params *params)
     : Resource(res_name, res_id, res_width, res_latency, _cpu),
-      lastExecuteTick(0), lastControlTick(0), serializeTick(0)
+      lastExecuteTick(0), lastControlTick(0)
 { }
 
 void
@@ -87,18 +89,22 @@ ExecutionUnit::execute(int slot_num)
 {
     ResourceRequest* exec_req = reqs[slot_num];
     DynInstPtr inst = reqs[slot_num]->inst;
-    Fault fault = NoFault;
-    InstSeqNum seq_num = inst->seqNum;
-    Tick cur_tick = curTick();
-
-    if (cur_tick == serializeTick) {
-        DPRINTF(InOrderExecute, "Can not execute [tid:%i][sn:%i][PC:%s] %s. "
-                "All instructions are being serialized this cycle\n",
-                inst->readTid(), seq_num, inst->pcState(), inst->instName());
-        exec_req->done(false);
+    if (inst->fault != NoFault) {
+        DPRINTF(InOrderExecute,
+                "[tid:%i]: [sn:%i]: Detected %s fault @ %x. Forwarding to "
+                "next stage.\n", inst->readTid(), inst->seqNum, inst->fault->name(),
+                inst->pcState());
+        exec_req->done();
         return;
     }
 
+    Fault fault = NoFault;
+    Tick cur_tick = curTick();
+    unsigned stage_num = exec_req->getStageNum();
+    ThreadID tid = inst->readTid();
+#if TRACING_ON
+    InstSeqNum seq_num = inst->seqNum;
+#endif
 
     switch (exec_req->cmd)
     {
@@ -120,15 +126,9 @@ ExecutionUnit::execute(int slot_num)
                 lastExecuteTick = cur_tick;
             }
 
+            //@todo: handle address generation here
             assert(!inst->isMemRef());
 
-            if (inst->isSerializeAfter()) {
-                serializeTick = cur_tick;
-                DPRINTF(InOrderExecute, "Serializing execution after [tid:%i] "
-                        "[sn:%i] [PC:%s] %s.\n", inst->readTid(), seq_num,
-                        inst->pcState(), inst->instName());
-            }
-
             if (inst->isControl()) {
                 if (lastControlTick == cur_tick) {
                     DPRINTF(InOrderExecute, "Can not Execute More than One Control "
@@ -140,99 +140,35 @@ ExecutionUnit::execute(int slot_num)
 
                 // Evaluate Branch
                 fault = inst->execute();
-                executions++;
 
-                inst->setExecuted();
+                // Should unconditional control , pc relative count as an
+                // execution??? Probably not.
+                executions++;
 
                 if (fault == NoFault) {
-                    // If branch is mispredicted, then signal squash
-                    // throughout all stages behind the pipeline stage
-                    // that got squashed.
-                    if (inst->mispredicted()) {
-                        int stage_num = exec_req->getStageNum();
-                        ThreadID tid = inst->readTid();
-                        // If it's a branch ...
-                        if (inst->isDirectCtrl()) {
-                            assert(!inst->isIndirectCtrl());
-
-                            TheISA::PCState pc = inst->pcState();
-                            TheISA::advancePC(pc, inst->staticInst);
-                            inst->setPredTarg(pc);
-
-                            if (inst->predTaken() && inst->isCondDelaySlot()) {
-                                inst->bdelaySeqNum = seq_num;
-
-                                DPRINTF(InOrderExecute, "[tid:%i]: Conditional"
-                                        " branch inst [sn:%i] PC %s mis"
-                                        "predicted as taken.\n", tid,
-                                        seq_num, inst->pcState());
-                            } else if (!inst->predTaken() &&
-                                       inst->isCondDelaySlot()) {
-                                inst->bdelaySeqNum = seq_num;
-                                inst->procDelaySlotOnMispred = true;
-
-                                DPRINTF(InOrderExecute, "[tid:%i]: Conditional"
-                                        " branch inst [sn:%i] PC %s mis"
-                                        "predicted as not taken.\n", tid,
-                                        seq_num, inst->pcState());
-                            } else {
-#if ISA_HAS_DELAY_SLOT
-                                inst->bdelaySeqNum = seq_num + 1;
-#else
-                                inst->bdelaySeqNum = seq_num;
-#endif
-                                DPRINTF(InOrderExecute, "[tid:%i]: "
-                                        "Misprediction detected at "
-                                        "[sn:%i] PC %s,\n\t squashing after "
-                                        "delay slot instruction [sn:%i].\n",
-                                        tid, seq_num, inst->pcState(),
-                                        inst->bdelaySeqNum);
-                                DPRINTF(InOrderStall, "STALL: [tid:%i]: Branch"
-                                        " misprediction at %s\n",
-                                        tid, inst->pcState());
-                            }
-
-                            DPRINTF(InOrderExecute, "[tid:%i] Redirecting "
-                                    "fetch to %s.\n", tid,
-                                    inst->readPredTarg());
-
-                        } else if (inst->isIndirectCtrl()){
-                            TheISA::PCState pc = inst->pcState();
-                            TheISA::advancePC(pc, inst->staticInst);
-                            inst->seqNum = seq_num;
-                            inst->setPredTarg(pc);
-
-#if ISA_HAS_DELAY_SLOT
-                            inst->bdelaySeqNum = seq_num + 1;
-#else
-                            inst->bdelaySeqNum = seq_num;
-#endif
-
-                            DPRINTF(InOrderExecute, "[tid:%i] Redirecting"
-                                    " fetch to %s.\n", tid,
-                                    inst->readPredTarg());
-                        } else {
-                            panic("Non-control instruction (%s) mispredict"
-                                  "ing?!!", inst->staticInst->getName());
-                        }
-
-                        DPRINTF(InOrderExecute, "[tid:%i] Squashing will "
-                                "start from stage %i.\n", tid, stage_num);
+                    inst->setExecuted();
 
-                        cpu->pipelineStage[stage_num]->squashDueToBranch(inst,
-                                                                         tid);
+                    if (inst->mispredicted()) {
+                        assert(inst->isControl());
 
-                        inst->squashingStage = stage_num;
+                        // Set up Squash Generated By this Misprediction
+                        TheISA::PCState pc = inst->pcState();
+                        TheISA::advancePC(pc, inst->staticInst);
+                        inst->setPredTarg(pc);
+                        inst->setSquashInfo(stage_num);
+                        setupSquash(inst, stage_num, tid);
 
-                        // Squash throughout other resources
-                        cpu->resPool->scheduleEvent((InOrderCPU::CPUEventType)
-                                                    ResourcePool::SquashAll,
-                                                    inst, 0, 0, tid);
+                        DPRINTF(InOrderExecute, "[tid:%i]: [sn:%i] Squashing from "
+                                "stage %i. Redirecting  fetch to %s.\n", tid,
+                                inst->seqNum, stage_num, pc);
+                        DPRINTF(InOrderStall, "STALL: [tid:%i]: Branch"
+                                " misprediction at %s\n", tid, inst->pcState());
 
                         if (inst->predTaken()) {
                             predictedTakenIncorrect++;
                             DPRINTF(InOrderExecute, "[tid:%i] [sn:%i] %s ..."
-                                    "PC %s ... Mispredicts! (Taken)\n",
+                                    "PC %s ... Mispredicts! "
+                                    "(Prediction: Taken)\n",
                                     tid, inst->seqNum,
                                     inst->staticInst->disassemble(
                                         inst->instAddr()),
@@ -240,7 +176,8 @@ ExecutionUnit::execute(int slot_num)
                         } else {
                             predictedNotTakenIncorrect++;
                             DPRINTF(InOrderExecute, "[tid:%i] [sn:%i] %s ..."
-                                    "PC %s ... Mispredicts! (Not Taken)\n",
+                                    "PC %s ... Mispredicts! "
+                                    "(Prediction: Not Taken)\n",
                                     tid, inst->seqNum,
                                     inst->staticInst->disassemble(
                                         inst->instAddr()),
@@ -255,8 +192,10 @@ ExecutionUnit::execute(int slot_num)
 
                     exec_req->done();
                 } else {
-                    warn("inst [sn:%i] had a %s fault",
-                         seq_num, fault->name());
+                    DPRINTF(Fault, "[tid:%i]:[sn:%i]: Fault %s found\n",
+                            inst->readTid(), inst->seqNum, fault->name());
+                    inst->fault = fault;
+                    exec_req->done();
                 }
             } else {
                 // Regular ALU instruction
@@ -266,14 +205,34 @@ ExecutionUnit::execute(int slot_num)
                 if (fault == NoFault) {
                     inst->setExecuted();
 
-                    DPRINTF(InOrderExecute, "[tid:%i]: [sn:%i]: The result "
-                            "of execution is 0x%x.\n", inst->readTid(),
-                            seq_num,
-                            (inst->resultType(0) == InOrderDynInst::Float) ?
-                            inst->readFloatResult(0) : inst->readIntResult(0));
+#if TRACING_ON
+                    for (int didx = 0; didx < inst->numDestRegs(); didx++)
+                        if (inst->resultType(didx) == InOrderDynInst::Float ||
+                            inst->resultType(didx) == InOrderDynInst::FloatBits ||
+                            inst->resultType(didx) == InOrderDynInst::Double)
+                            DPRINTF(InOrderExecute, "[tid:%i]: [sn:%i]: Dest result %i "
+                                    "of FP execution is %08f (%x).\n", inst->readTid(),
+                                    seq_num, didx, inst->readFloatResult(didx),
+                                    inst->readFloatBitsResult(didx));
+                        else
+                            DPRINTF(InOrderExecute, "[tid:%i]: [sn:%i]: Dest result %i "
+                                    "of Int execution is 0x%x.\n", inst->readTid(),
+                                    seq_num, didx, inst->readIntResult(didx));
+#endif
+
+                    if (!FullSystem) {
+                        // The Syscall might change the PC, so conservatively
+                        // squash everything behing it
+                        if (inst->isSyscall()) {
+                            inst->setSquashInfo(stage_num);
+                            setupSquash(inst, stage_num, tid);
+                        }
+                    }
                 } else {
                     DPRINTF(InOrderExecute, "[tid:%i]: [sn:%i]: had a %s "
                             "fault.\n", inst->readTid(), seq_num, fault->name());
+                    DPRINTF(Fault, "[tid:%i]:[sn:%i]: Fault %s found\n",
+                            inst->readTid(), inst->seqNum, fault->name());
                     inst->fault = fault;
                 }