dyn_inst_impl.hh revision 8471
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,
487720Sgblack@eecs.umich.edu                                   TheISA::PCState pc, TheISA::PCState predPC,
495596Sgblack@eecs.umich.edu                                   InstSeqNum seq_num, O3CPU *cpu)
507720Sgblack@eecs.umich.edu    : BaseDynInst<Impl>(staticInst, pc, predPC, seq_num, cpu)
514637SN/A{
524637SN/A    initVars();
534637SN/A}
544637SN/A
554637SN/Atemplate <class Impl>
565596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::BaseO3DynInst(ExtMachInst inst,
577720Sgblack@eecs.umich.edu                                   TheISA::PCState pc, TheISA::PCState predPC,
585596Sgblack@eecs.umich.edu                                   InstSeqNum seq_num, O3CPU *cpu)
597720Sgblack@eecs.umich.edu    : BaseDynInst<Impl>(inst, pc, predPC, seq_num, cpu)
601061SN/A{
612292SN/A    initVars();
621061SN/A}
631061SN/A
641061SN/Atemplate <class Impl>
655596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr &_staticInst)
661464SN/A    : BaseDynInst<Impl>(_staticInst)
671061SN/A{
682292SN/A    initVars();
692292SN/A}
702292SN/A
712292SN/Atemplate <class Impl>
722292SN/Avoid
735596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::initVars()
742292SN/A{
751464SN/A    // Make sure to have the renamed register entries set to the same
761464SN/A    // as the normal register entries.  It will allow the IQ to work
771464SN/A    // without any modifications.
782292SN/A    for (int i = 0; i < this->staticInst->numDestRegs(); i++) {
793782SN/A        this->_destRegIdx[i] = this->staticInst->destRegIdx(i);
801464SN/A    }
811464SN/A
822292SN/A    for (int i = 0; i < this->staticInst->numSrcRegs(); i++) {
833782SN/A        this->_srcRegIdx[i] = this->staticInst->srcRegIdx(i);
842292SN/A        this->_readySrcRegIdx[i] = 0;
851464SN/A    }
867783SGiacomo.Gabrielli@arm.com
877783SGiacomo.Gabrielli@arm.com    _numDestMiscRegs = 0;
888471SGiacomo.Gabrielli@arm.com
898471SGiacomo.Gabrielli@arm.com#if TRACING_ON
908471SGiacomo.Gabrielli@arm.com    fetchTick = 0;
918471SGiacomo.Gabrielli@arm.com    decodeTick = 0;
928471SGiacomo.Gabrielli@arm.com    renameTick = 0;
938471SGiacomo.Gabrielli@arm.com    dispatchTick = 0;
948471SGiacomo.Gabrielli@arm.com    issueTick = 0;
958471SGiacomo.Gabrielli@arm.com    completeTick = 0;
968471SGiacomo.Gabrielli@arm.com#endif
971061SN/A}
981061SN/A
992292SN/Atemplate <class Impl>
1002292SN/AFault
1015596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::execute()
1022292SN/A{
1032348SN/A    // @todo: Pretty convoluted way to avoid squashing from happening
1042680SN/A    // when using the TC during an instruction's execution
1052348SN/A    // (specifically for instructions that have side-effects that use
1062680SN/A    // the TC).  Fix this.
1072292SN/A    bool in_syscall = this->thread->inSyscall;
1082292SN/A    this->thread->inSyscall = true;
1092292SN/A
1102292SN/A    this->fault = this->staticInst->execute(this, this->traceData);
1112292SN/A
1122292SN/A    this->thread->inSyscall = in_syscall;
1132292SN/A
1142292SN/A    return this->fault;
1152292SN/A}
1162292SN/A
1172292SN/Atemplate <class Impl>
1182292SN/AFault
1195596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::initiateAcc()
1202292SN/A{
1212348SN/A    // @todo: Pretty convoluted way to avoid squashing from happening
1222680SN/A    // when using the TC during an instruction's execution
1232348SN/A    // (specifically for instructions that have side-effects that use
1242680SN/A    // the TC).  Fix this.
1252292SN/A    bool in_syscall = this->thread->inSyscall;
1262292SN/A    this->thread->inSyscall = true;
1272292SN/A
1282292SN/A    this->fault = this->staticInst->initiateAcc(this, this->traceData);
1292292SN/A
1302292SN/A    this->thread->inSyscall = in_syscall;
1312292SN/A
1322292SN/A    return this->fault;
1332292SN/A}
1342292SN/A
1352292SN/Atemplate <class Impl>
1362292SN/AFault
1375596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::completeAcc(PacketPtr pkt)
1382292SN/A{
1397758Sminkyu.jeong@arm.com    // @todo: Pretty convoluted way to avoid squashing from happening
1407758Sminkyu.jeong@arm.com    // when using the TC during an instruction's execution
1417758Sminkyu.jeong@arm.com    // (specifically for instructions that have side-effects that use
1427758Sminkyu.jeong@arm.com    // the TC).  Fix this.
1437758Sminkyu.jeong@arm.com    bool in_syscall = this->thread->inSyscall;
1447758Sminkyu.jeong@arm.com    this->thread->inSyscall = true;
1457758Sminkyu.jeong@arm.com
1462790SN/A    this->fault = this->staticInst->completeAcc(pkt, this, this->traceData);
1472292SN/A
1487758Sminkyu.jeong@arm.com    this->thread->inSyscall = in_syscall;
1497758Sminkyu.jeong@arm.com
1502292SN/A    return this->fault;
1512292SN/A}
1522292SN/A
1531858SN/A#if FULL_SYSTEM
1541061SN/Atemplate <class Impl>
1555702Ssaidi@eecs.umich.eduFault
1565702Ssaidi@eecs.umich.eduBaseO3DynInst<Impl>::hwrei()
1575702Ssaidi@eecs.umich.edu{
1585702Ssaidi@eecs.umich.edu#if THE_ISA == ALPHA_ISA
1595702Ssaidi@eecs.umich.edu    // Can only do a hwrei when in pal mode.
1607720Sgblack@eecs.umich.edu    if (!(this->instAddr() & 0x3))
1615702Ssaidi@eecs.umich.edu        return new AlphaISA::UnimplementedOpcodeFault;
1625702Ssaidi@eecs.umich.edu
1635702Ssaidi@eecs.umich.edu    // Set the next PC based on the value of the EXC_ADDR IPR.
1647720Sgblack@eecs.umich.edu    AlphaISA::PCState pc = this->pcState();
1657720Sgblack@eecs.umich.edu    pc.npc(this->cpu->readMiscRegNoEffect(AlphaISA::IPR_EXC_ADDR,
1667720Sgblack@eecs.umich.edu                                          this->threadNumber));
1677720Sgblack@eecs.umich.edu    this->pcState(pc);
1685953Ssaidi@eecs.umich.edu    if (CPA::available()) {
1695953Ssaidi@eecs.umich.edu        ThreadContext *tc = this->cpu->tcBase(this->threadNumber);
1707720Sgblack@eecs.umich.edu        CPA::cpa()->swAutoBegin(tc, this->nextInstAddr());
1715953Ssaidi@eecs.umich.edu    }
1725702Ssaidi@eecs.umich.edu
1735702Ssaidi@eecs.umich.edu    // Tell CPU to clear any state it needs to if a hwrei is taken.
1745702Ssaidi@eecs.umich.edu    this->cpu->hwrei(this->threadNumber);
1755702Ssaidi@eecs.umich.edu#else
1765702Ssaidi@eecs.umich.edu
1775702Ssaidi@eecs.umich.edu#endif
1785702Ssaidi@eecs.umich.edu    // FIXME: XXX check for interrupts? XXX
1795702Ssaidi@eecs.umich.edu    return NoFault;
1805702Ssaidi@eecs.umich.edu}
1815702Ssaidi@eecs.umich.edu
1825702Ssaidi@eecs.umich.edutemplate <class Impl>
1831061SN/Avoid
1845596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::trap(Fault fault)
1851061SN/A{
1867684Sgblack@eecs.umich.edu    this->cpu->trap(fault, this->threadNumber, this->staticInst);
1871061SN/A}
1885702Ssaidi@eecs.umich.edu
1895702Ssaidi@eecs.umich.edutemplate <class Impl>
1905702Ssaidi@eecs.umich.edubool
1915702Ssaidi@eecs.umich.eduBaseO3DynInst<Impl>::simPalCheck(int palFunc)
1925702Ssaidi@eecs.umich.edu{
1935702Ssaidi@eecs.umich.edu#if THE_ISA != ALPHA_ISA
1945702Ssaidi@eecs.umich.edu    panic("simPalCheck called, but PAL only exists in Alpha!\n");
1955702Ssaidi@eecs.umich.edu#endif
1965702Ssaidi@eecs.umich.edu    return this->cpu->simPalCheck(palFunc, this->threadNumber);
1975702Ssaidi@eecs.umich.edu}
1981061SN/A#else
1991061SN/Atemplate <class Impl>
2001061SN/Avoid
2015596Sgblack@eecs.umich.eduBaseO3DynInst<Impl>::syscall(int64_t callnum)
2021061SN/A{
2035556SN/A    // HACK: check CPU's nextPC before and after syscall. If it
2045556SN/A    // changes, update this instruction's nextPC because the syscall
2055556SN/A    // must have changed the nextPC.
2067720Sgblack@eecs.umich.edu    TheISA::PCState curPC = this->cpu->pcState(this->threadNumber);
2072669SN/A    this->cpu->syscall(callnum, this->threadNumber);
2087720Sgblack@eecs.umich.edu    TheISA::PCState newPC = this->cpu->pcState(this->threadNumber);
2097720Sgblack@eecs.umich.edu    if (!(curPC == newPC)) {
2107720Sgblack@eecs.umich.edu        this->pcState(newPC);
2115556SN/A    }
2121061SN/A}
2131061SN/A#endif
2141061SN/A
215