2007-03-29 19:57:18 +02:00
|
|
|
// -*- mode:c++ -*-
|
|
|
|
|
2008-06-12 06:49:50 +02:00
|
|
|
// Copyright (c) 2007-2008 The Hewlett-Packard Development Company
|
2007-03-29 19:57:18 +02:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use of this software in source and binary forms,
|
|
|
|
// with or without modification, are permitted provided that the
|
|
|
|
// following conditions are met:
|
|
|
|
//
|
|
|
|
// The software must be used only for Non-Commercial Use which means any
|
|
|
|
// use which is NOT directed to receiving any direct monetary
|
|
|
|
// compensation for, or commercial advantage from such use. Illustrative
|
|
|
|
// examples of non-commercial use are academic research, personal study,
|
|
|
|
// teaching, education and corporate research & development.
|
|
|
|
// Illustrative examples of commercial use are distributing products for
|
|
|
|
// commercial advantage and providing services using the software for
|
|
|
|
// commercial advantage.
|
|
|
|
//
|
|
|
|
// If you wish to use this software or functionality therein that may be
|
|
|
|
// covered by patents for commercial use, please contact:
|
|
|
|
// Director of Intellectual Property Licensing
|
|
|
|
// Office of Strategy and Technology
|
|
|
|
// Hewlett-Packard Company
|
|
|
|
// 1501 Page Mill Road
|
|
|
|
// Palo Alto, California 94304
|
|
|
|
//
|
|
|
|
// 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 HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived from
|
|
|
|
// this software without specific prior written permission. No right of
|
|
|
|
// sublicense is granted herewith. Derivatives of the software and
|
|
|
|
// output created using the software may be prepared, but only for
|
|
|
|
// Non-Commercial Uses. Derivatives of the software may be shared with
|
|
|
|
// others provided: (i) the others agree to abide by the list of
|
|
|
|
// conditions herein which includes the Non-Commercial Use restrictions;
|
|
|
|
// and (ii) such Derivatives of the software include the above copyright
|
|
|
|
// notice to acknowledge the contribution from this software where
|
|
|
|
// applicable, this list of conditions and the disclaimer below.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2007-06-08 19:14:39 +02:00
|
|
|
//Include the definitions of the micro ops.
|
2007-07-15 02:14:19 +02:00
|
|
|
//These are python representations of static insts which stand on their own
|
|
|
|
//and make up an internal instruction set. They are used by the micro
|
|
|
|
//assembler.
|
2007-06-08 19:14:39 +02:00
|
|
|
##include "microops/microops.isa"
|
|
|
|
|
2007-06-08 19:41:23 +02:00
|
|
|
//Include code to build macroops in both C++ and python.
|
2007-06-08 19:14:39 +02:00
|
|
|
##include "macroop.isa"
|
2007-06-08 18:09:43 +02:00
|
|
|
|
2008-10-13 02:48:44 +02:00
|
|
|
//Include code to fill out the microcode ROM in both C++ and python.
|
|
|
|
##include "rom.isa"
|
|
|
|
|
2007-06-08 18:09:43 +02:00
|
|
|
let {{
|
|
|
|
import sys
|
|
|
|
sys.path[0:0] = ["src/arch/x86/isa/"]
|
|
|
|
from insts import microcode
|
2007-06-20 21:04:40 +02:00
|
|
|
# print microcode
|
2008-10-13 02:48:44 +02:00
|
|
|
from micro_asm import MicroAssembler, Rom_Macroop
|
|
|
|
mainRom = X86MicrocodeRom('main ROM')
|
2007-06-08 18:09:43 +02:00
|
|
|
assembler = MicroAssembler(X86Macroop, microopClasses, mainRom, Rom_Macroop)
|
2007-06-21 17:28:08 +02:00
|
|
|
# Add in symbols for the microcode registers
|
2009-02-02 02:06:25 +01:00
|
|
|
for num in range(16):
|
2007-06-21 17:28:08 +02:00
|
|
|
assembler.symbols["t%d" % num] = "NUM_INTREGS+%d" % num
|
2009-02-02 02:06:25 +01:00
|
|
|
for num in range(8):
|
2007-09-05 08:31:40 +02:00
|
|
|
assembler.symbols["ufp%d" % num] = "FLOATREG_MICROFP(%d)" % num
|
2007-06-21 17:28:08 +02:00
|
|
|
# Add in symbols for the segment descriptor registers
|
2008-10-13 05:17:38 +02:00
|
|
|
for letter in ("C", "D", "E", "F", "G", "H", "S"):
|
2007-06-21 17:28:08 +02:00
|
|
|
assembler.symbols["%ss" % letter.lower()] = "SEGMENT_REG_%sS" % letter
|
2007-12-02 08:01:17 +01:00
|
|
|
|
2008-06-12 06:50:10 +02:00
|
|
|
# Add in symbols for the various checks of segment selectors.
|
2008-10-13 05:33:37 +02:00
|
|
|
for check in ("NoCheck", "CSCheck", "CallGateCheck", "IntGateCheck",
|
2009-02-25 19:16:54 +01:00
|
|
|
"SoftIntGateCheck", "SSCheck", "IretCheck", "IntCSCheck",
|
2009-02-25 19:17:02 +01:00
|
|
|
"TRCheck", "TSSCheck"):
|
2008-06-12 06:50:10 +02:00
|
|
|
assembler.symbols[check] = "Seg%s" % check
|
|
|
|
|
2007-12-02 08:03:39 +01:00
|
|
|
for reg in ("TR", "IDTR"):
|
2007-12-02 08:01:17 +01:00
|
|
|
assembler.symbols[reg.lower()] = "SYS_SEGMENT_REG_%s" % reg
|
|
|
|
|
2007-12-02 08:03:39 +01:00
|
|
|
for reg in ("TSL", "TSG"):
|
|
|
|
assembler.symbols[reg.lower()] = "SEGMENT_REG_%s" % reg
|
|
|
|
|
2007-06-21 17:28:08 +02:00
|
|
|
# Miscellaneous symbols
|
|
|
|
symbols = {
|
|
|
|
"reg" : "env.reg",
|
2007-08-30 05:37:16 +02:00
|
|
|
"xmml" : "FLOATREG_XMM_LOW(env.reg)",
|
|
|
|
"xmmh" : "FLOATREG_XMM_HIGH(env.reg)",
|
2007-06-21 17:28:08 +02:00
|
|
|
"regm" : "env.regm",
|
2007-08-30 05:37:16 +02:00
|
|
|
"xmmlm" : "FLOATREG_XMM_LOW(env.regm)",
|
|
|
|
"xmmhm" : "FLOATREG_XMM_HIGH(env.regm)",
|
2007-10-19 07:39:00 +02:00
|
|
|
"imm" : "adjustedImm",
|
|
|
|
"disp" : "adjustedDisp",
|
2007-08-05 05:12:54 +02:00
|
|
|
"seg" : "env.seg",
|
2007-06-21 17:28:08 +02:00
|
|
|
"scale" : "env.scale",
|
|
|
|
"index" : "env.index",
|
|
|
|
"base" : "env.base",
|
|
|
|
"dsz" : "env.dataSize",
|
2007-08-08 00:25:41 +02:00
|
|
|
"asz" : "env.addressSize",
|
2007-06-21 17:28:08 +02:00
|
|
|
"ssz" : "env.stackSize"
|
|
|
|
}
|
2007-08-05 05:12:54 +02:00
|
|
|
assembler.symbols.update(symbols)
|
|
|
|
|
2008-01-12 12:41:32 +01:00
|
|
|
assembler.symbols["ldsz"] = \
|
|
|
|
"((env.dataSize == 8) ? 3 : (env.dataSize == 4) ? 2 : 1)"
|
|
|
|
|
|
|
|
assembler.symbols["lasz"] = \
|
|
|
|
"((env.addressSize == 8) ? 3 : (env.addressSize == 4) ? 2 : 1)"
|
|
|
|
|
|
|
|
assembler.symbols["lssz"] = \
|
|
|
|
"((env.stackSize == 8) ? 3 : (env.stackSize == 4) ? 2 : 1)"
|
|
|
|
|
2007-08-05 05:12:54 +02:00
|
|
|
# Short hand for common scale-index-base combinations.
|
|
|
|
assembler.symbols["sib"] = \
|
|
|
|
[symbols["scale"], symbols["index"], symbols["base"]]
|
|
|
|
assembler.symbols["riprel"] = \
|
|
|
|
["1", assembler.symbols["t0"], assembler.symbols["t7"]]
|
2007-06-21 22:35:27 +02:00
|
|
|
|
2007-10-13 01:37:55 +02:00
|
|
|
# This segment selects an internal address space mapped to MSRs,
|
|
|
|
# CPUID info, etc.
|
2007-12-02 08:03:39 +01:00
|
|
|
assembler.symbols["intseg"] = "SEGMENT_REG_MS"
|
|
|
|
# This segment always has base 0, and doesn't imply any special handling
|
|
|
|
# like the internal segment above
|
|
|
|
assembler.symbols["flatseg"] = "SEGMENT_REG_LS"
|
2007-10-13 01:37:55 +02:00
|
|
|
|
2007-06-21 22:35:27 +02:00
|
|
|
for reg in ('ax', 'bx', 'cx', 'dx', 'sp', 'bp', 'si', 'di'):
|
|
|
|
assembler.symbols["r%s" % reg] = "INTREG_R%s" % reg.upper()
|
2007-06-21 17:28:08 +02:00
|
|
|
|
2009-02-02 02:06:25 +01:00
|
|
|
for reg in range(16):
|
2007-11-12 23:38:59 +01:00
|
|
|
assembler.symbols["cr%d" % reg] = "MISCREG_CR%d" % reg
|
|
|
|
|
2008-06-12 06:49:50 +02:00
|
|
|
for flag in ('CF', 'PF', 'ECF', 'AF', 'EZF', 'ZF', 'SF', 'OF', \
|
|
|
|
'TF', 'IF', 'NT', 'RF', 'VM', 'AC', 'VIF', 'VIP', 'ID'):
|
2007-07-18 00:27:28 +02:00
|
|
|
assembler.symbols[flag] = flag + "Bit"
|
|
|
|
|
|
|
|
for cond in ('True', 'False', 'ECF', 'EZF', 'SZnZF',
|
2007-08-08 00:25:41 +02:00
|
|
|
'MSTRZ', 'STRZ', 'MSTRC',
|
2007-07-18 00:27:28 +02:00
|
|
|
'OF', 'CF', 'ZF', 'CvZF',
|
|
|
|
'SF', 'PF', 'SxOF', 'SxOvZF'):
|
|
|
|
assembler.symbols["C%s" % cond] = "ConditionTests::%s" % cond
|
|
|
|
assembler.symbols["nC%s" % cond] = "ConditionTests::Not%s" % cond
|
2007-08-08 00:25:41 +02:00
|
|
|
assembler.symbols["CSTRZnEZF"] = "ConditionTests::STRZnEZF"
|
|
|
|
assembler.symbols["CSTRnZnEZF"] = "ConditionTests::STRnZnEZF"
|
2007-07-18 00:27:28 +02:00
|
|
|
|
|
|
|
assembler.symbols["CTrue"] = "ConditionTests::True"
|
|
|
|
assembler.symbols["CFalse"] = "ConditionTests::False"
|
|
|
|
|
2008-10-13 07:55:55 +02:00
|
|
|
for reg in ('sysenter_cs', 'sysenter_esp', 'sysenter_eip',
|
|
|
|
'star', 'lstar', 'cstar', 'sf_mask',
|
|
|
|
'kernel_gs_base'):
|
|
|
|
assembler.symbols[reg] = "MISCREG_%s" % reg.upper()
|
|
|
|
|
2007-06-21 17:28:08 +02:00
|
|
|
# Code literal which forces a default 64 bit operand size in 64 bit mode.
|
|
|
|
assembler.symbols["oszIn64Override"] = '''
|
|
|
|
if (machInst.mode.submode == SixtyFourBitMode &&
|
|
|
|
env.dataSize == 4)
|
|
|
|
env.dataSize = 8;
|
|
|
|
'''
|
|
|
|
|
2007-12-02 08:01:17 +01:00
|
|
|
assembler.symbols["oszForPseudoDesc"] = '''
|
|
|
|
if (machInst.mode.submode == SixtyFourBitMode)
|
|
|
|
env.dataSize = 8;
|
|
|
|
else
|
|
|
|
env.dataSize = 4;
|
|
|
|
'''
|
|
|
|
|
2007-10-19 07:39:00 +02:00
|
|
|
def trimImm(width):
|
|
|
|
return "adjustedImm = adjustedImm & mask(%s);" % width
|
|
|
|
|
|
|
|
assembler.symbols["trimImm"] = trimImm
|
|
|
|
|
2007-08-27 05:38:42 +02:00
|
|
|
def labeler(labelStr):
|
|
|
|
return "label_%s" % labelStr
|
|
|
|
|
|
|
|
assembler.symbols["label"] = labeler
|
|
|
|
|
2008-10-13 02:52:51 +02:00
|
|
|
def rom_labeler(labelStr):
|
|
|
|
return "romMicroPC(RomLabels::extern_label_%s)" % labelStr
|
|
|
|
|
|
|
|
assembler.symbols["rom_label"] = rom_labeler
|
|
|
|
|
2008-10-13 05:44:11 +02:00
|
|
|
def rom_local_labeler(labelStr):
|
|
|
|
return "romMicroPC(RomLabels::label_%s)" % labelStr
|
|
|
|
|
|
|
|
assembler.symbols["rom_local_label"] = rom_local_labeler
|
|
|
|
|
2007-09-20 03:26:42 +02:00
|
|
|
def stack_index(index):
|
2007-10-03 07:57:33 +02:00
|
|
|
return "(NUM_FLOATREGS + (((%s) + 8) %% 8))" % index
|
2007-09-20 03:26:42 +02:00
|
|
|
|
|
|
|
assembler.symbols["st"] = stack_index
|
|
|
|
|
2007-06-08 18:09:43 +02:00
|
|
|
macroopDict = assembler.assemble(microcode)
|
2008-10-13 02:48:44 +02:00
|
|
|
|
|
|
|
decoder_output += mainRom.getDefinition()
|
|
|
|
header_output += mainRom.getDeclaration()
|
2007-06-08 18:09:43 +02:00
|
|
|
}};
|