dyn_inst_impl.hh revision 8502
11689SN/A/*
27783SGiacomo.Gabrielli@arm.com * Copyright (c) 2010 ARM Limited
37783SGiacomo.Gabrielli@arm.com * All rights reserved
47783SGiacomo.Gabrielli@arm.com *
57783SGiacomo.Gabrielli@arm.com * The license below extends only to copyright in the software and shall
67783SGiacomo.Gabrielli@arm.com * not be construed as granting a license to any other intellectual
77783SGiacomo.Gabrielli@arm.com * property including but not limited to intellectual property relating
87783SGiacomo.Gabrielli@arm.com * to a hardware implementation of the functionality of the software
97783SGiacomo.Gabrielli@arm.com * licensed hereunder.  You may use the software subject to the license
107783SGiacomo.Gabrielli@arm.com * terms below provided that you ensure that this notice is replicated
117783SGiacomo.Gabrielli@arm.com * unmodified and in its entirety in all distributions of the software,
127783SGiacomo.Gabrielli@arm.com * modified or unmodified, in source code or in binary form.
137783SGiacomo.Gabrielli@arm.com *
142316SN/A * Copyright (c) 2004-2006 The Regents of The University of Michigan
151689SN/A * All rights reserved.
161689SN/A *
171689SN/A * Redistribution and use in source and binary forms, with or without
181689SN/A * modification, are permitted provided that the following conditions are
191689SN/A * met: redistributions of source code must retain the above copyright
201689SN/A * notice, this list of conditions and the following disclaimer;
211689SN/A * redistributions in binary form must reproduce the above copyright
221689SN/A * notice, this list of conditions and the following disclaimer in the
231689SN/A * documentation and/or other materials provided with the distribution;
241689SN/A * neither the name of the copyright holders nor the names of its
251689SN/A * contributors may be used to endorse or promote products derived from
261689SN/A * this software without specific prior written permission.
271689SN/A *
281689SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
291689SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
301689SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
311689SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
321689SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
331689SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
341689SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
351689SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
361689SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
371689SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
381689SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392665SN/A *
402665SN/A * Authors: Kevin Lim
411689SN/A */
421061SN/A
435953Ssaidi@eecs.umich.edu#include "base/cp_annotate.hh"
445596Sgblack@eecs.umich.edu#include "cpu/o3/dyn_inst.hh"
451061SN/A
461061SN/Atemplate <class Impl>
475596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr staticInst,
488502Sgblack@eecs.umich.edu                                   StaticInstPtr macroop,
497720Sgblack@eecs.umich.edu                                   TheISA::PCState pc, TheISA::PCState predPC,
505596Sgblack@eecs.umich.edu                                   InstSeqNum seq_num, O3CPU *cpu)
518502Sgblack@eecs.umich.edu    : BaseDynInst<Impl>(staticInst, macroop, pc, predPC, seq_num, cpu)
524637SN/A{
534637SN/A    initVars();
544637SN/A}
554637SN/A
564637SN/Atemplate <class Impl>
578502Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr _staticInst,
588502Sgblack@eecs.umich.edu                                   StaticInstPtr _macroop)
598502Sgblack@eecs.umich.edu    : BaseDynInst<Impl>(_staticInst, _macroop)
601061SN/A{
612292SN/A    initVars();
622292SN/A}
632292SN/A
642292SN/Atemplate <class Impl>
652292SN/Avoid
665596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::initVars()
672292SN/A{
681464SN/A    // Make sure to have the renamed register entries set to the same
691464SN/A    // as the normal register entries.  It will allow the IQ to work
701464SN/A    // without any modifications.
712292SN/A    for (int i = 0; i < this->staticInst->numDestRegs(); i++) {
723782SN/A        this->_destRegIdx[i] = this->staticInst->destRegIdx(i);
731464SN/A    }
741464SN/A
752292SN/A    for (int i = 0; i < this->staticInst->numSrcRegs(); i++) {
763782SN/A        this->_srcRegIdx[i] = this->staticInst->srcRegIdx(i);
772292SN/A        this->_readySrcRegIdx[i] = 0;
781464SN/A    }
797783SGiacomo.Gabrielli@arm.com
807783SGiacomo.Gabrielli@arm.com    _numDestMiscRegs = 0;
818471SGiacomo.Gabrielli@arm.com
828471SGiacomo.Gabrielli@arm.com#if TRACING_ON
838471SGiacomo.Gabrielli@arm.com    fetchTick = 0;
848471SGiacomo.Gabrielli@arm.com    decodeTick = 0;
858471SGiacomo.Gabrielli@arm.com    renameTick = 0;
868471SGiacomo.Gabrielli@arm.com    dispatchTick = 0;
878471SGiacomo.Gabrielli@arm.com    issueTick = 0;
888471SGiacomo.Gabrielli@arm.com    completeTick = 0;
898471SGiacomo.Gabrielli@arm.com#endif
901061SN/A}
911061SN/A
922292SN/Atemplate <class Impl>
932292SN/AFault
945596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::execute()
952292SN/A{
962348SN/A    // @todo: Pretty convoluted way to avoid squashing from happening
972680SN/A    // when using the TC during an instruction's execution
982348SN/A    // (specifically for instructions that have side-effects that use
992680SN/A    // the TC).  Fix this.
1002292SN/A    bool in_syscall = this->thread->inSyscall;
1012292SN/A    this->thread->inSyscall = true;
1022292SN/A
1032292SN/A    this->fault = this->staticInst->execute(this, this->traceData);
1042292SN/A
1052292SN/A    this->thread->inSyscall = in_syscall;
1062292SN/A
1072292SN/A    return this->fault;
1082292SN/A}
1092292SN/A
1102292SN/Atemplate <class Impl>
1112292SN/AFault
1125596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::initiateAcc()
1132292SN/A{
1142348SN/A    // @todo: Pretty convoluted way to avoid squashing from happening
1152680SN/A    // when using the TC during an instruction's execution
1162348SN/A    // (specifically for instructions that have side-effects that use
1172680SN/A    // the TC).  Fix this.
1182292SN/A    bool in_syscall = this->thread->inSyscall;
1192292SN/A    this->thread->inSyscall = true;
1202292SN/A
1212292SN/A    this->fault = this->staticInst->initiateAcc(this, this->traceData);
1222292SN/A
1232292SN/A    this->thread->inSyscall = in_syscall;
1242292SN/A
1252292SN/A    return this->fault;
1262292SN/A}
1272292SN/A
1282292SN/Atemplate <class Impl>
1292292SN/AFault
1305596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::completeAcc(PacketPtr pkt)
1312292SN/A{
1327758Sminkyu.jeong@arm.com    // @todo: Pretty convoluted way to avoid squashing from happening
1337758Sminkyu.jeong@arm.com    // when using the TC during an instruction's execution
1347758Sminkyu.jeong@arm.com    // (specifically for instructions that have side-effects that use
1357758Sminkyu.jeong@arm.com    // the TC).  Fix this.
1367758Sminkyu.jeong@arm.com    bool in_syscall = this->thread->inSyscall;
1377758Sminkyu.jeong@arm.com    this->thread->inSyscall = true;
1387758Sminkyu.jeong@arm.com
1392790SN/A    this->fault = this->staticInst->completeAcc(pkt, this, this->traceData);
1402292SN/A
1417758Sminkyu.jeong@arm.com    this->thread->inSyscall = in_syscall;
1427758Sminkyu.jeong@arm.com
1432292SN/A    return this->fault;
1442292SN/A}
1452292SN/A
1461858SN/A#if FULL_SYSTEM
1471061SN/Atemplate <class Impl>
1485702Ssaidi@eecs.umich.eduFault
1495702Ssaidi@eecs.umich.eduBaseO3DynInst<Impl>::hwrei()
1505702Ssaidi@eecs.umich.edu{
1515702Ssaidi@eecs.umich.edu#if THE_ISA == ALPHA_ISA
1525702Ssaidi@eecs.umich.edu    // Can only do a hwrei when in pal mode.
1537720Sgblack@eecs.umich.edu    if (!(this->instAddr() & 0x3))
1545702Ssaidi@eecs.umich.edu        return new AlphaISA::UnimplementedOpcodeFault;
1555702Ssaidi@eecs.umich.edu
1565702Ssaidi@eecs.umich.edu    // Set the next PC based on the value of the EXC_ADDR IPR.
1577720Sgblack@eecs.umich.edu    AlphaISA::PCState pc = this->pcState();
1587720Sgblack@eecs.umich.edu    pc.npc(this->cpu->readMiscRegNoEffect(AlphaISA::IPR_EXC_ADDR,
1597720Sgblack@eecs.umich.edu                                          this->threadNumber));
1607720Sgblack@eecs.umich.edu    this->pcState(pc);
1615953Ssaidi@eecs.umich.edu    if (CPA::available()) {
1625953Ssaidi@eecs.umich.edu        ThreadContext *tc = this->cpu->tcBase(this->threadNumber);
1637720Sgblack@eecs.umich.edu        CPA::cpa()->swAutoBegin(tc, this->nextInstAddr());
1645953Ssaidi@eecs.umich.edu    }
1655702Ssaidi@eecs.umich.edu
1665702Ssaidi@eecs.umich.edu    // Tell CPU to clear any state it needs to if a hwrei is taken.
1675702Ssaidi@eecs.umich.edu    this->cpu->hwrei(this->threadNumber);
1685702Ssaidi@eecs.umich.edu#else
1695702Ssaidi@eecs.umich.edu
1705702Ssaidi@eecs.umich.edu#endif
1715702Ssaidi@eecs.umich.edu    // FIXME: XXX check for interrupts? XXX
1725702Ssaidi@eecs.umich.edu    return NoFault;
1735702Ssaidi@eecs.umich.edu}
1745702Ssaidi@eecs.umich.edu
1755702Ssaidi@eecs.umich.edutemplate <class Impl>
1761061SN/Avoid
1775596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::trap(Fault fault)
1781061SN/A{
1797684Sgblack@eecs.umich.edu    this->cpu->trap(fault, this->threadNumber, this->staticInst);
1801061SN/A}
1815702Ssaidi@eecs.umich.edu
1825702Ssaidi@eecs.umich.edutemplate <class Impl>
1835702Ssaidi@eecs.umich.edubool
1845702Ssaidi@eecs.umich.eduBaseO3DynInst<Impl>::simPalCheck(int palFunc)
1855702Ssaidi@eecs.umich.edu{
1865702Ssaidi@eecs.umich.edu#if THE_ISA != ALPHA_ISA
1875702Ssaidi@eecs.umich.edu    panic("simPalCheck called, but PAL only exists in Alpha!\n");
1885702Ssaidi@eecs.umich.edu#endif
1895702Ssaidi@eecs.umich.edu    return this->cpu->simPalCheck(palFunc, this->threadNumber);
1905702Ssaidi@eecs.umich.edu}
1911061SN/A#else
1921061SN/Atemplate <class Impl>
1931061SN/Avoid
1945596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::syscall(int64_t callnum)
1951061SN/A{
1965556SN/A    // HACK: check CPU's nextPC before and after syscall. If it
1975556SN/A    // changes, update this instruction's nextPC because the syscall
1985556SN/A    // must have changed the nextPC.
1997720Sgblack@eecs.umich.edu    TheISA::PCState curPC = this->cpu->pcState(this->threadNumber);
2002669SN/A    this->cpu->syscall(callnum, this->threadNumber);
2017720Sgblack@eecs.umich.edu    TheISA::PCState newPC = this->cpu->pcState(this->threadNumber);
2027720Sgblack@eecs.umich.edu    if (!(curPC == newPC)) {
2037720Sgblack@eecs.umich.edu        this->pcState(newPC);
2045556SN/A    }
2051061SN/A}
2061061SN/A#endif
2071061SN/A
208