As part of recent decisions regarding namespace naming conventions, all namespaces will be changed to snake case. ::Minor became ::minor. Change-Id: I408aa3d269ed7454ed0f488bd363d521602e58af Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/45428 Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu> Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu> Tested-by: kokoro <noreply+kokoro@google.com>
410 lines
12 KiB
C++
410 lines
12 KiB
C++
/*
|
|
* Copyright (c) 2011-2014, 2016-2018, 2020 ARM Limited
|
|
* Copyright (c) 2013 Advanced Micro Devices, Inc.
|
|
* All rights reserved
|
|
*
|
|
* The license below extends only to copyright in the software and shall
|
|
* not be construed as granting a license to any other intellectual
|
|
* property including but not limited to intellectual property relating
|
|
* to a hardware implementation of the functionality of the software
|
|
* licensed hereunder. You may use the software subject to the license
|
|
* terms below provided that you ensure that this notice is replicated
|
|
* unmodified and in its entirety in all distributions of the software,
|
|
* modified or unmodified, in source code or in binary form.
|
|
*
|
|
* Copyright (c) 2002-2005 The Regents of The University of Michigan
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met: redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer;
|
|
* redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution;
|
|
* neither the name of the copyright holders nor the names of its
|
|
* contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* ExecContext bears the exec_context interface for Minor.
|
|
*/
|
|
|
|
#ifndef __CPU_MINOR_EXEC_CONTEXT_HH__
|
|
#define __CPU_MINOR_EXEC_CONTEXT_HH__
|
|
|
|
#include "cpu/exec_context.hh"
|
|
#include "cpu/minor/execute.hh"
|
|
#include "cpu/minor/pipeline.hh"
|
|
#include "cpu/base.hh"
|
|
#include "cpu/simple_thread.hh"
|
|
#include "mem/request.hh"
|
|
#include "debug/MinorExecute.hh"
|
|
|
|
GEM5_DEPRECATED_NAMESPACE(Minor, minor);
|
|
namespace minor
|
|
{
|
|
|
|
/* Forward declaration of Execute */
|
|
class Execute;
|
|
|
|
/** ExecContext bears the exec_context interface for Minor. This nicely
|
|
* separates that interface from other classes such as Pipeline, MinorCPU
|
|
* and DynMinorInst and makes it easier to see what state is accessed by it.
|
|
*/
|
|
class ExecContext : public ::ExecContext
|
|
{
|
|
public:
|
|
MinorCPU &cpu;
|
|
|
|
/** ThreadState object, provides all the architectural state. */
|
|
SimpleThread &thread;
|
|
|
|
/** The execute stage so we can peek at its contents. */
|
|
Execute &execute;
|
|
|
|
/** Instruction for the benefit of memory operations and for PC */
|
|
MinorDynInstPtr inst;
|
|
|
|
ExecContext (
|
|
MinorCPU &cpu_,
|
|
SimpleThread &thread_, Execute &execute_,
|
|
MinorDynInstPtr inst_, RegIndex zeroReg) :
|
|
cpu(cpu_),
|
|
thread(thread_),
|
|
execute(execute_),
|
|
inst(inst_)
|
|
{
|
|
DPRINTF(MinorExecute, "ExecContext setting PC: %s\n", inst->pc);
|
|
pcState(inst->pc);
|
|
setPredicate(inst->readPredicate());
|
|
setMemAccPredicate(inst->readMemAccPredicate());
|
|
thread.setIntReg(zeroReg, 0);
|
|
}
|
|
|
|
~ExecContext()
|
|
{
|
|
inst->setPredicate(readPredicate());
|
|
inst->setMemAccPredicate(readMemAccPredicate());
|
|
}
|
|
|
|
Fault
|
|
initiateMemRead(Addr addr, unsigned int size,
|
|
Request::Flags flags,
|
|
const std::vector<bool>& byte_enable) override
|
|
{
|
|
assert(byte_enable.size() == size);
|
|
return execute.getLSQ().pushRequest(inst, true /* load */, nullptr,
|
|
size, addr, flags, nullptr, nullptr, byte_enable);
|
|
}
|
|
|
|
Fault
|
|
initiateHtmCmd(Request::Flags flags) override
|
|
{
|
|
panic("ExecContext::initiateHtmCmd() not implemented on MinorCPU\n");
|
|
return NoFault;
|
|
}
|
|
|
|
Fault
|
|
writeMem(uint8_t *data, unsigned int size, Addr addr,
|
|
Request::Flags flags, uint64_t *res,
|
|
const std::vector<bool>& byte_enable)
|
|
override
|
|
{
|
|
assert(byte_enable.size() == size);
|
|
return execute.getLSQ().pushRequest(inst, false /* store */, data,
|
|
size, addr, flags, res, nullptr, byte_enable);
|
|
}
|
|
|
|
Fault
|
|
initiateMemAMO(Addr addr, unsigned int size, Request::Flags flags,
|
|
AtomicOpFunctorPtr amo_op) override
|
|
{
|
|
// AMO requests are pushed through the store path
|
|
return execute.getLSQ().pushRequest(inst, false /* amo */, nullptr,
|
|
size, addr, flags, nullptr, std::move(amo_op),
|
|
std::vector<bool>(size, true));
|
|
}
|
|
|
|
RegVal
|
|
readIntRegOperand(const StaticInst *si, int idx) override
|
|
{
|
|
const RegId& reg = si->srcRegIdx(idx);
|
|
assert(reg.is(IntRegClass));
|
|
return thread.readIntReg(reg.index());
|
|
}
|
|
|
|
RegVal
|
|
readFloatRegOperandBits(const StaticInst *si, int idx) override
|
|
{
|
|
const RegId& reg = si->srcRegIdx(idx);
|
|
assert(reg.is(FloatRegClass));
|
|
return thread.readFloatReg(reg.index());
|
|
}
|
|
|
|
const TheISA::VecRegContainer &
|
|
readVecRegOperand(const StaticInst *si, int idx) const override
|
|
{
|
|
const RegId& reg = si->srcRegIdx(idx);
|
|
assert(reg.is(VecRegClass));
|
|
return thread.readVecReg(reg);
|
|
}
|
|
|
|
TheISA::VecRegContainer &
|
|
getWritableVecRegOperand(const StaticInst *si, int idx) override
|
|
{
|
|
const RegId& reg = si->destRegIdx(idx);
|
|
assert(reg.is(VecRegClass));
|
|
return thread.getWritableVecReg(reg);
|
|
}
|
|
|
|
TheISA::VecElem
|
|
readVecElemOperand(const StaticInst *si, int idx) const override
|
|
{
|
|
const RegId& reg = si->srcRegIdx(idx);
|
|
assert(reg.is(VecElemClass));
|
|
return thread.readVecElem(reg);
|
|
}
|
|
|
|
const TheISA::VecPredRegContainer&
|
|
readVecPredRegOperand(const StaticInst *si, int idx) const override
|
|
{
|
|
const RegId& reg = si->srcRegIdx(idx);
|
|
assert(reg.is(VecPredRegClass));
|
|
return thread.readVecPredReg(reg);
|
|
}
|
|
|
|
TheISA::VecPredRegContainer&
|
|
getWritableVecPredRegOperand(const StaticInst *si, int idx) override
|
|
{
|
|
const RegId& reg = si->destRegIdx(idx);
|
|
assert(reg.is(VecPredRegClass));
|
|
return thread.getWritableVecPredReg(reg);
|
|
}
|
|
|
|
void
|
|
setIntRegOperand(const StaticInst *si, int idx, RegVal val) override
|
|
{
|
|
const RegId& reg = si->destRegIdx(idx);
|
|
assert(reg.is(IntRegClass));
|
|
thread.setIntReg(reg.index(), val);
|
|
}
|
|
|
|
void
|
|
setFloatRegOperandBits(const StaticInst *si, int idx, RegVal val) override
|
|
{
|
|
const RegId& reg = si->destRegIdx(idx);
|
|
assert(reg.is(FloatRegClass));
|
|
thread.setFloatReg(reg.index(), val);
|
|
}
|
|
|
|
void
|
|
setVecRegOperand(const StaticInst *si, int idx,
|
|
const TheISA::VecRegContainer& val) override
|
|
{
|
|
const RegId& reg = si->destRegIdx(idx);
|
|
assert(reg.is(VecRegClass));
|
|
thread.setVecReg(reg, val);
|
|
}
|
|
|
|
void
|
|
setVecPredRegOperand(const StaticInst *si, int idx,
|
|
const TheISA::VecPredRegContainer& val) override
|
|
{
|
|
const RegId& reg = si->destRegIdx(idx);
|
|
assert(reg.is(VecPredRegClass));
|
|
thread.setVecPredReg(reg, val);
|
|
}
|
|
|
|
void
|
|
setVecElemOperand(const StaticInst *si, int idx,
|
|
const TheISA::VecElem val) override
|
|
{
|
|
const RegId& reg = si->destRegIdx(idx);
|
|
assert(reg.is(VecElemClass));
|
|
thread.setVecElem(reg, val);
|
|
}
|
|
|
|
bool
|
|
readPredicate() const override
|
|
{
|
|
return thread.readPredicate();
|
|
}
|
|
|
|
void
|
|
setPredicate(bool val) override
|
|
{
|
|
thread.setPredicate(val);
|
|
}
|
|
|
|
bool
|
|
readMemAccPredicate() const override
|
|
{
|
|
return thread.readMemAccPredicate();
|
|
}
|
|
|
|
void
|
|
setMemAccPredicate(bool val) override
|
|
{
|
|
thread.setMemAccPredicate(val);
|
|
}
|
|
|
|
// hardware transactional memory
|
|
uint64_t
|
|
getHtmTransactionUid() const override
|
|
{
|
|
panic("ExecContext::getHtmTransactionUid() not"
|
|
"implemented on MinorCPU\n");
|
|
return 0;
|
|
}
|
|
|
|
uint64_t
|
|
newHtmTransactionUid() const override
|
|
{
|
|
panic("ExecContext::newHtmTransactionUid() not"
|
|
"implemented on MinorCPU\n");
|
|
return 0;
|
|
}
|
|
|
|
bool
|
|
inHtmTransactionalState() const override
|
|
{
|
|
// ExecContext::inHtmTransactionalState() not
|
|
// implemented on MinorCPU
|
|
return false;
|
|
}
|
|
|
|
uint64_t
|
|
getHtmTransactionalDepth() const override
|
|
{
|
|
panic("ExecContext::getHtmTransactionalDepth() not"
|
|
"implemented on MinorCPU\n");
|
|
return 0;
|
|
}
|
|
|
|
TheISA::PCState
|
|
pcState() const override
|
|
{
|
|
return thread.pcState();
|
|
}
|
|
|
|
void
|
|
pcState(const TheISA::PCState &val) override
|
|
{
|
|
thread.pcState(val);
|
|
}
|
|
|
|
RegVal
|
|
readMiscRegNoEffect(int misc_reg) const
|
|
{
|
|
return thread.readMiscRegNoEffect(misc_reg);
|
|
}
|
|
|
|
RegVal
|
|
readMiscReg(int misc_reg) override
|
|
{
|
|
return thread.readMiscReg(misc_reg);
|
|
}
|
|
|
|
void
|
|
setMiscReg(int misc_reg, RegVal val) override
|
|
{
|
|
thread.setMiscReg(misc_reg, val);
|
|
}
|
|
|
|
RegVal
|
|
readMiscRegOperand(const StaticInst *si, int idx) override
|
|
{
|
|
const RegId& reg = si->srcRegIdx(idx);
|
|
assert(reg.is(MiscRegClass));
|
|
return thread.readMiscReg(reg.index());
|
|
}
|
|
|
|
void
|
|
setMiscRegOperand(const StaticInst *si, int idx, RegVal val) override
|
|
{
|
|
const RegId& reg = si->destRegIdx(idx);
|
|
assert(reg.is(MiscRegClass));
|
|
return thread.setMiscReg(reg.index(), val);
|
|
}
|
|
|
|
ThreadContext *tcBase() const override { return thread.getTC(); }
|
|
|
|
/* @todo, should make stCondFailures persistent somewhere */
|
|
unsigned int readStCondFailures() const override { return 0; }
|
|
void setStCondFailures(unsigned int st_cond_failures) override {}
|
|
|
|
ContextID contextId() { return thread.contextId(); }
|
|
/* ISA-specific (or at least currently ISA singleton) functions */
|
|
|
|
/* X86: TLB twiddling */
|
|
void
|
|
demapPage(Addr vaddr, uint64_t asn) override
|
|
{
|
|
thread.getMMUPtr()->demapPage(vaddr, asn);
|
|
}
|
|
|
|
RegVal
|
|
readCCRegOperand(const StaticInst *si, int idx) override
|
|
{
|
|
const RegId& reg = si->srcRegIdx(idx);
|
|
assert(reg.is(CCRegClass));
|
|
return thread.readCCReg(reg.index());
|
|
}
|
|
|
|
void
|
|
setCCRegOperand(const StaticInst *si, int idx, RegVal val) override
|
|
{
|
|
const RegId& reg = si->destRegIdx(idx);
|
|
assert(reg.is(CCRegClass));
|
|
thread.setCCReg(reg.index(), val);
|
|
}
|
|
|
|
BaseCPU *getCpuPtr() { return &cpu; }
|
|
|
|
public:
|
|
// monitor/mwait funtions
|
|
void
|
|
armMonitor(Addr address) override
|
|
{
|
|
getCpuPtr()->armMonitor(inst->id.threadId, address);
|
|
}
|
|
|
|
bool
|
|
mwait(PacketPtr pkt) override
|
|
{
|
|
return getCpuPtr()->mwait(inst->id.threadId, pkt);
|
|
}
|
|
|
|
void
|
|
mwaitAtomic(ThreadContext *tc) override
|
|
{
|
|
return getCpuPtr()->mwaitAtomic(inst->id.threadId, tc, thread.mmu);
|
|
}
|
|
|
|
AddressMonitor *
|
|
getAddrMonitor() override
|
|
{
|
|
return getCpuPtr()->getCpuAddrMonitor(inst->id.threadId);
|
|
}
|
|
};
|
|
|
|
} // namespace minor
|
|
|
|
#endif /* __CPU_MINOR_EXEC_CONTEXT_HH__ */
|