fetch_impl.hh (2679:737e9f158843) fetch_impl.hh (2680:246e7104f744)
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 997 unchanged lines hidden (view full) ---

1006 DPRINTF(Fetch, "[tid:%i]: Instruction PC %#x created "
1007 "[sn:%lli]\n",
1008 tid, instruction->readPC(), inst_seq);
1009
1010 DPRINTF(Fetch, "[tid:%i]: Instruction is: %s\n",
1011 tid, instruction->staticInst->disassemble(fetch_PC));
1012
1013 instruction->traceData =
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 997 unchanged lines hidden (view full) ---

1006 DPRINTF(Fetch, "[tid:%i]: Instruction PC %#x created "
1007 "[sn:%lli]\n",
1008 tid, instruction->readPC(), inst_seq);
1009
1010 DPRINTF(Fetch, "[tid:%i]: Instruction is: %s\n",
1011 tid, instruction->staticInst->disassemble(fetch_PC));
1012
1013 instruction->traceData =
1014 Trace::getInstRecord(curTick, cpu->xcBase(tid), cpu,
1014 Trace::getInstRecord(curTick, cpu->tcBase(tid), cpu,
1015 instruction->staticInst,
1016 instruction->readPC(),tid);
1017
1018 predicted_branch = lookupAndUpdateNextPC(instruction, next_PC);
1019
1020 // Add instruction to the CPU's list of instructions.
1021 instruction->setInstListIt(cpu->addInst(instruction));
1022

--- 230 unchanged lines hidden ---
1015 instruction->staticInst,
1016 instruction->readPC(),tid);
1017
1018 predicted_branch = lookupAndUpdateNextPC(instruction, next_PC);
1019
1020 // Add instruction to the CPU's list of instructions.
1021 instruction->setInstListIt(cpu->addInst(instruction));
1022

--- 230 unchanged lines hidden ---