Edit Fetch DPRINT in simple CPU
src/arch/mips/isa/formats/mt.isa:
change copyright to 2006
src/cpu/simple/base.cc:
Only DPRINT NNPC if we are not using ALPHA
src/cpu/static_inst.hh:
Take Out MIPS Specific functions ...
--HG--
extra : convert_revision : 7a69e80cd1564fa3b778b9dade0e9fe3cef94e64
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* Authors: Steve Reinhardt
|
||||
* Korey Sewell
|
||||
*/
|
||||
|
||||
#include "arch/utility.hh"
|
||||
@@ -358,8 +359,13 @@ Fault
|
||||
BaseSimpleCPU::setupFetchRequest(Request *req)
|
||||
{
|
||||
// set up memory request for instruction fetch
|
||||
#if THE_ISA == ALPHA_ISA
|
||||
DPRINTF(Fetch,"Fetch: PC:%08p NPC:%08p",thread->readPC(),
|
||||
thread->readNextPC());
|
||||
#else
|
||||
DPRINTF(Fetch,"Fetch: PC:%08p NPC:%08p NNPC:%08p\n",thread->readPC(),
|
||||
thread->readNextPC(),thread->readNextNPC());
|
||||
#endif
|
||||
|
||||
req->setVirt(0, thread->readPC() & ~3, sizeof(MachInst),
|
||||
(FULL_SYSTEM && (thread->readPC() & 1)) ? PHYSICAL : 0,
|
||||
|
||||
Reference in New Issue
Block a user