X86: Implement the in/out instructions. These will still need support from the TLB and memory system.

--HG--
extra : convert_revision : a9503248ea9efca7e5247e4f2830967f428b8215
This commit is contained in:
Gabe Black 2007-10-18 22:39:00 -07:00
parent 2bbc058c6c
commit dc2e887f23
5 changed files with 62 additions and 18 deletions

View file

@ -476,10 +476,10 @@
0x1: Inst::LOOPE(Jb);
0x2: Inst::LOOP(Jb);
0x3: Inst::JRCX(Jb);
0x4: in_Al_Ib();
0x5: in_eAX_Ib();
0x6: out_Ib_Al();
0x7: out_Ib_eAX();
0x4: Inst::IN(rAb,Ib);
0x5: Inst::IN(rAv,Iv);
0x6: Inst::OUT(Ib,rAb);
0x7: Inst::OUT(Iv,rAv);
}
0x1D: decode OPCODE_OP_BOTTOM3 {
0x0: Inst::CALL_NEAR(Jz);
@ -489,10 +489,10 @@
default: jmp_far_Ap();
}
0x3: Inst::JMP(Jb);
0x4: in_Al_Dx();
0x5: in_eAX_Dx();
0x6: out_Dx_Al();
0x7: out_Dx_eAX();
0x4: Inst::IN(rAb,rD);
0x5: Inst::IN(rAv,rD);
0x6: Inst::OUT(rD,rAb);
0x7: Inst::OUT(rD,rAv);
}
0x1E: decode OPCODE_OP_BOTTOM3 {
0x0: M5InternalError::error(

View file

@ -53,10 +53,28 @@
#
# Authors: Gabe Black
microcode = ""
#let {{
# class IN(Inst):
# "GenFault ${new UnimpInstFault}"
# class OUT(Inst):
# "GenFault ${new UnimpInstFault}"
#}};
microcode = '''
def macroop IN_R_I {
.adjust_imm trimImm(8)
limm t1, "IntAddrPrefixIO"
ld reg, intseg, [1, t1, t0], imm, addressSize=2
};
def macroop IN_R_R {
limm t1, "IntAddrPrefixIO"
zext t2, regm, 16, dataSize=2
ld reg, intseg, [1, t1, t2], addressSize=8
};
def macroop OUT_I_R {
.adjust_imm trimImm(8)
limm t1, "IntAddrPrefixIO"
st reg, intseg, [1, t1, t0], imm, addressSize=8
};
def macroop OUT_R_R {
limm t1, "IntAddrPrefixIO"
zext t2, reg, 16, dataSize=2
st regm, intseg, [1, t1, t2], addressSize=8
};
'''

View file

@ -142,6 +142,8 @@ def template MacroConstructor {{
: %(base_class)s("%(mnemonic)s", machInst, %(num_microops)s)
{
%(adjust_env)s;
%(adjust_imm)s;
%(adjust_disp)s;
%(do_modrm)s;
%(constructor)s;
//alloc_microops is the code that sets up the microops
@ -159,14 +161,30 @@ let {{
self.microops.append(microop)
def setAdjustEnv(self, val):
self.adjust_env = val
def adjustImm(self, val):
self.adjust_imm += val
def adjustDisp(self, val):
self.adjust_disp += val
def __init__(self, name):
super(X86Macroop, self).__init__(name)
self.directives = {
"adjust_env" : self.setAdjustEnv
"adjust_env" : self.setAdjustEnv,
"adjust_imm" : self.adjustImm,
"adjust_disp" : self.adjustDisp
}
self.declared = False
self.adjust_env = ""
self.doModRM = ""
self.adjust_imm = '''
uint64_t adjustedImm = IMMEDIATE;
//This is to pacify gcc in case the immediate isn't used.
adjustedImm = adjustedImm;
'''
self.adjust_disp = '''
uint64_t adjustedDisp = DISPLACEMENT;
//This is to pacify gcc in case the displacement isn't used.
adjustedDisp = adjustedDisp;
'''
def getAllocator(self, env):
return "new X86Macroop::%s(machInst, %s)" % (self.name, env.getAllocator())
def getDeclaration(self):
@ -198,6 +216,8 @@ let {{
{"code" : "", "num_microops" : numMicroops,
"alloc_microops" : allocMicroops,
"adjust_env" : self.adjust_env,
"adjust_imm" : self.adjust_imm,
"adjust_disp" : self.adjust_disp,
"do_modrm" : self.doModRM})
return MacroConstructor.subst(iop);
}};

View file

@ -88,8 +88,8 @@ let {{
"regm" : "env.regm",
"xmmlm" : "FLOATREG_XMM_LOW(env.regm)",
"xmmhm" : "FLOATREG_XMM_HIGH(env.regm)",
"imm" : "IMMEDIATE",
"disp" : "DISPLACEMENT",
"imm" : "adjustedImm",
"disp" : "adjustedDisp",
"seg" : "env.seg",
"scale" : "env.scale",
"index" : "env.index",
@ -135,6 +135,11 @@ let {{
env.dataSize = 8;
'''
def trimImm(width):
return "adjustedImm = adjustedImm & mask(%s);" % width
assembler.symbols["trimImm"] = trimImm
def labeler(labelStr):
return "label_%s" % labelStr

View file

@ -86,6 +86,7 @@ namespace X86ISA
const Addr IntAddrPrefixMask = ULL(0xffffffff00000000);
const Addr IntAddrPrefixCPUID = ULL(0x100000000);
const Addr IntAddrPrefixMSR = ULL(0x200000000);
const Addr IntAddrPrefixIO = ULL(0x300000000);
}
#endif //__ARCH_X86_X86TRAITS_HH__