2008-06-12 06:58:27 +02:00
|
|
|
// Copyright (c) 2007-2008 The Hewlett-Packard Development Company
|
2011-11-04 04:52:21 +01:00
|
|
|
// Copyright (c) 2011 Mark D. Hill and David A. Wood
|
2007-06-04 17:59:20 +02:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
2010-05-24 07:44:15 +02:00
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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
|
2007-06-04 17:59:20 +02:00
|
|
|
// contributors may be used to endorse or promote products derived from
|
2010-05-24 07:44:15 +02:00
|
|
|
// this software without specific prior written permission.
|
2007-06-04 17:59:20 +02:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// Authors: Gabe Black
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Fault Microop
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-06-19 16:50:35 +02:00
|
|
|
output header {{
|
2007-10-19 07:40:18 +02:00
|
|
|
class MicroFaultBase : public X86ISA::X86MicroopBase
|
2007-06-04 17:59:20 +02:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
Fault fault;
|
2007-10-19 07:40:18 +02:00
|
|
|
uint8_t cc;
|
2007-06-04 17:59:20 +02:00
|
|
|
|
|
|
|
public:
|
2007-10-19 07:40:18 +02:00
|
|
|
MicroFaultBase(ExtMachInst _machInst, const char * instMnem,
|
2010-08-23 18:44:19 +02:00
|
|
|
uint64_t setFlags, Fault _fault, uint8_t _cc);
|
2007-06-04 17:59:20 +02:00
|
|
|
|
2007-07-19 01:09:35 +02:00
|
|
|
std::string generateDisassembly(Addr pc,
|
|
|
|
const SymbolTable *symtab) const;
|
2007-06-04 17:59:20 +02:00
|
|
|
};
|
2007-10-20 00:10:23 +02:00
|
|
|
|
|
|
|
class MicroHalt : public X86ISA::X86MicroopBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MicroHalt(ExtMachInst _machInst, const char * instMnem,
|
2010-08-23 18:44:19 +02:00
|
|
|
uint64_t setFlags) :
|
2010-09-14 21:31:37 +02:00
|
|
|
X86MicroopBase(_machInst, "halt", instMnem,
|
|
|
|
setFlags | (ULL(1) << StaticInst::IsNonSpeculative),
|
|
|
|
No_OpClass)
|
2007-10-20 00:10:23 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
%(BasicExecDeclare)s
|
2008-06-12 06:58:27 +02:00
|
|
|
|
|
|
|
std::string generateDisassembly(Addr pc,
|
|
|
|
const SymbolTable *symtab) const;
|
2007-10-20 00:10:23 +02:00
|
|
|
};
|
2007-06-04 17:59:20 +02:00
|
|
|
}};
|
|
|
|
|
2007-10-19 07:40:18 +02:00
|
|
|
def template MicroFaultDeclare {{
|
|
|
|
class %(class_name)s : public %(base_class)s
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
%(class_name)s(ExtMachInst _machInst, const char * instMnem,
|
2010-08-23 18:44:19 +02:00
|
|
|
uint64_t setFlags, Fault _fault, uint8_t _cc);
|
2007-10-19 07:40:18 +02:00
|
|
|
|
|
|
|
%(BasicExecDeclare)s
|
|
|
|
};
|
|
|
|
}};
|
|
|
|
|
|
|
|
def template MicroFaultExecute {{
|
|
|
|
Fault %(class_name)s::execute(%(CPU_exec_context)s *xc,
|
2007-06-19 16:50:35 +02:00
|
|
|
Trace::InstRecord *traceData) const
|
|
|
|
{
|
2007-10-19 07:40:18 +02:00
|
|
|
%(op_decl)s;
|
|
|
|
%(op_rd)s;
|
|
|
|
if (%(cond_test)s) {
|
|
|
|
//Return the fault we were constructed with
|
|
|
|
return fault;
|
|
|
|
} else {
|
|
|
|
return NoFault;
|
|
|
|
}
|
2007-06-19 16:50:35 +02:00
|
|
|
}
|
|
|
|
}};
|
2007-06-04 17:59:20 +02:00
|
|
|
|
2007-10-20 00:10:23 +02:00
|
|
|
output exec {{
|
|
|
|
Fault
|
|
|
|
MicroHalt::execute(%(CPU_exec_context)s *xc,
|
|
|
|
Trace::InstRecord * traceData) const
|
|
|
|
{
|
2007-10-20 00:11:15 +02:00
|
|
|
xc->tcBase()->suspend();
|
2007-10-20 00:10:23 +02:00
|
|
|
return NoFault;
|
|
|
|
}
|
|
|
|
}};
|
|
|
|
|
2007-06-19 16:50:35 +02:00
|
|
|
output decoder {{
|
2007-10-19 07:40:18 +02:00
|
|
|
inline MicroFaultBase::MicroFaultBase(
|
2007-06-04 17:59:20 +02:00
|
|
|
ExtMachInst machInst, const char * instMnem,
|
2010-08-23 18:44:19 +02:00
|
|
|
uint64_t setFlags, Fault _fault, uint8_t _cc) :
|
|
|
|
X86MicroopBase(machInst, "fault", instMnem, setFlags, No_OpClass),
|
2007-10-19 07:40:18 +02:00
|
|
|
fault(_fault), cc(_cc)
|
2007-06-04 17:59:20 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}};
|
|
|
|
|
2007-10-19 07:40:18 +02:00
|
|
|
def template MicroFaultConstructor {{
|
|
|
|
inline %(class_name)s::%(class_name)s(
|
2010-08-23 18:44:19 +02:00
|
|
|
ExtMachInst machInst, const char * instMnem, uint64_t setFlags,
|
2007-10-19 07:40:18 +02:00
|
|
|
Fault _fault, uint8_t _cc) :
|
2010-08-23 18:44:19 +02:00
|
|
|
%(base_class)s(machInst, instMnem, setFlags, _fault, _cc)
|
2007-10-19 07:40:18 +02:00
|
|
|
{
|
2010-08-23 18:44:19 +02:00
|
|
|
%(constructor)s;
|
2007-10-19 07:40:18 +02:00
|
|
|
}
|
|
|
|
}};
|
|
|
|
|
2007-07-19 01:09:35 +02:00
|
|
|
output decoder {{
|
2007-10-19 07:40:18 +02:00
|
|
|
std::string MicroFaultBase::generateDisassembly(Addr pc,
|
2007-07-19 01:09:35 +02:00
|
|
|
const SymbolTable *symtab) const
|
|
|
|
{
|
|
|
|
std::stringstream response;
|
|
|
|
|
|
|
|
printMnemonic(response, instMnem, mnemonic);
|
|
|
|
if(fault)
|
|
|
|
response << fault->name();
|
|
|
|
else
|
|
|
|
response << "No Fault";
|
|
|
|
|
|
|
|
return response.str();
|
|
|
|
}
|
2008-06-12 06:58:27 +02:00
|
|
|
|
|
|
|
std::string MicroHalt::generateDisassembly(Addr pc,
|
|
|
|
const SymbolTable *symtab) const
|
|
|
|
{
|
|
|
|
std::stringstream response;
|
|
|
|
|
|
|
|
printMnemonic(response, instMnem, mnemonic);
|
|
|
|
|
|
|
|
return response.str();
|
|
|
|
}
|
2007-07-19 01:09:35 +02:00
|
|
|
}};
|
|
|
|
|
2007-06-04 17:59:20 +02:00
|
|
|
let {{
|
2007-06-19 16:50:35 +02:00
|
|
|
class Fault(X86Microop):
|
2007-10-19 07:40:18 +02:00
|
|
|
className = "MicroFault"
|
|
|
|
def __init__(self, fault, flags=None):
|
2007-06-19 16:50:35 +02:00
|
|
|
self.fault = fault
|
2007-10-19 07:40:18 +02:00
|
|
|
if flags:
|
|
|
|
if not isinstance(flags, (list, tuple)):
|
|
|
|
raise Exception, "flags must be a list or tuple of flags"
|
|
|
|
self.cond = " | ".join(flags)
|
|
|
|
self.className += "Flags"
|
|
|
|
else:
|
|
|
|
self.cond = "0"
|
2007-06-19 16:50:35 +02:00
|
|
|
|
2010-08-23 18:44:19 +02:00
|
|
|
def getAllocator(self, microFlags):
|
|
|
|
allocator = '''new %(class_name)s(machInst, macrocodeBlock,
|
2007-10-19 07:40:18 +02:00
|
|
|
%(flags)s, %(fault)s, %(cc)s)''' % {
|
|
|
|
"class_name" : self.className,
|
2007-06-19 16:50:35 +02:00
|
|
|
"flags" : self.microFlagsText(microFlags),
|
2007-10-19 07:40:18 +02:00
|
|
|
"fault" : self.fault,
|
|
|
|
"cc" : self.cond}
|
2007-06-19 16:50:35 +02:00
|
|
|
return allocator
|
2007-10-19 07:40:18 +02:00
|
|
|
|
2007-12-02 08:01:56 +01:00
|
|
|
iop = InstObjParams("fault", "MicroFaultFlags", "MicroFaultBase",
|
2007-10-19 07:40:18 +02:00
|
|
|
{"code": "",
|
|
|
|
"cond_test": "checkCondition(ccFlagBits, cc)"})
|
|
|
|
exec_output = MicroFaultExecute.subst(iop)
|
|
|
|
header_output = MicroFaultDeclare.subst(iop)
|
|
|
|
decoder_output = MicroFaultConstructor.subst(iop)
|
2007-12-02 08:01:56 +01:00
|
|
|
iop = InstObjParams("fault", "MicroFault", "MicroFaultBase",
|
2007-10-19 07:40:18 +02:00
|
|
|
{"code": "",
|
|
|
|
"cond_test": "true"})
|
|
|
|
exec_output += MicroFaultExecute.subst(iop)
|
|
|
|
header_output += MicroFaultDeclare.subst(iop)
|
|
|
|
decoder_output += MicroFaultConstructor.subst(iop)
|
2007-06-19 16:50:35 +02:00
|
|
|
microopClasses["fault"] = Fault
|
2007-10-20 00:10:23 +02:00
|
|
|
|
|
|
|
class Halt(X86Microop):
|
2009-04-19 11:51:09 +02:00
|
|
|
className = "MicroHalt"
|
2007-10-20 00:10:23 +02:00
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
2010-08-23 18:44:19 +02:00
|
|
|
def getAllocator(self, microFlags):
|
|
|
|
return "new MicroHalt(machInst, macrocodeBlock, %s)" % \
|
2007-10-20 00:10:23 +02:00
|
|
|
self.microFlagsText(microFlags)
|
|
|
|
|
|
|
|
microopClasses["halt"] = Halt
|
2007-06-04 17:59:20 +02:00
|
|
|
}};
|
2011-11-04 04:52:21 +01:00
|
|
|
|
|
|
|
def template MicroFenceOpDeclare {{
|
|
|
|
class %(class_name)s : public X86ISA::X86MicroopBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
%(class_name)s(ExtMachInst _machInst,
|
|
|
|
const char * instMnem,
|
|
|
|
uint64_t setFlags);
|
|
|
|
|
|
|
|
%(BasicExecDeclare)s
|
|
|
|
};
|
|
|
|
}};
|
|
|
|
|
|
|
|
def template MicroFenceOpConstructor {{
|
|
|
|
inline %(class_name)s::%(class_name)s(
|
|
|
|
ExtMachInst machInst, const char * instMnem, uint64_t setFlags) :
|
|
|
|
%(base_class)s(machInst, "%(mnemonic)s", instMnem,
|
|
|
|
setFlags, %(op_class)s)
|
|
|
|
{
|
|
|
|
%(constructor)s;
|
|
|
|
}
|
|
|
|
}};
|
|
|
|
|
|
|
|
let {{
|
|
|
|
class MfenceOp(X86Microop):
|
|
|
|
def __init__(self):
|
|
|
|
self.className = "Mfence"
|
|
|
|
self.mnemonic = "mfence"
|
|
|
|
self.instFlags = "| (1ULL << StaticInst::IsMemBarrier)"
|
|
|
|
|
|
|
|
def getAllocator(self, microFlags):
|
|
|
|
allocString = '''
|
|
|
|
(StaticInstPtr)(new %(class_name)s(machInst,
|
|
|
|
macrocodeBlock, %(flags)s))
|
|
|
|
'''
|
|
|
|
allocator = allocString % {
|
|
|
|
"class_name" : self.className,
|
|
|
|
"mnemonic" : self.mnemonic,
|
|
|
|
"flags" : self.microFlagsText(microFlags) + self.instFlags}
|
|
|
|
return allocator
|
|
|
|
|
|
|
|
microopClasses["mfence"] = MfenceOp
|
|
|
|
}};
|
|
|
|
|
|
|
|
let {{
|
|
|
|
# Build up the all register version of this micro op
|
|
|
|
iop = InstObjParams("mfence", "Mfence", 'X86MicroopBase',
|
|
|
|
{"code" : ""})
|
|
|
|
header_output += MicroFenceOpDeclare.subst(iop)
|
|
|
|
decoder_output += MicroFenceOpConstructor.subst(iop)
|
|
|
|
exec_output += BasicExecute.subst(iop)
|
|
|
|
}};
|