2002-09-13 19:53:22 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2007-11-18 02:28:33 +03:00
|
|
|
// $Id: resolve64.cc,v 1.12 2007-11-17 23:28:32 sshwarts Exp $
|
2002-09-13 19:53:22 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2001 MandrakeSoft S.A.
|
|
|
|
//
|
|
|
|
// MandrakeSoft S.A.
|
|
|
|
// 43, rue d'Aboukir
|
|
|
|
// 75002 Paris - France
|
|
|
|
// http://www.linux-mandrake.com/
|
|
|
|
// http://www.mandrakesoft.com/
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2007-11-18 02:28:33 +03:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2002-09-13 19:53:22 +04:00
|
|
|
|
|
|
|
|
|
|
|
#define NEED_CPU_REG_SHORTCUTS 1
|
|
|
|
#include "bochs.h"
|
2006-03-07 01:03:16 +03:00
|
|
|
#include "cpu.h"
|
2002-09-13 19:53:22 +04:00
|
|
|
#define LOG_THIS BX_CPU_THIS_PTR
|
|
|
|
|
|
|
|
|
2002-11-19 08:47:45 +03:00
|
|
|
#if BX_SUPPORT_X86_64
|
2002-09-13 19:53:22 +04:00
|
|
|
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve32Mod0Rip(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-11-13 20:30:54 +03:00
|
|
|
// RIP hasn't been bumped yet when this is called. must choose the saved value.
|
|
|
|
RMAddr(i) = (Bit32u) (BX_CPU_THIS_PTR prev_eip + i->ilen() + (Bit32s)i->displ32u());
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve64Mod0Rip(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-04-10 01:15:00 +04:00
|
|
|
// RIP hasn't been bumped yet when this is called. must choose the saved value.
|
2002-09-18 12:00:43 +04:00
|
|
|
RMAddr(i) = BX_CPU_THIS_PTR prev_eip + i->ilen() + (Bit32s)i->displ32u();
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
|
|
|
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve64Mod0Rm(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-11-13 20:30:54 +03:00
|
|
|
RMAddr(i) = BX_READ_64BIT_REG(i->rm());
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
|
|
|
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve64Mod0Base(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-11-13 20:30:54 +03:00
|
|
|
RMAddr(i) = BX_READ_64BIT_REG(i->sibBase());
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve64Mod0Disp(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-11-13 20:30:54 +03:00
|
|
|
RMAddr(i) = (Bit32s) i->displ32u();
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
|
|
|
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve64Mod0BaseIndex(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-11-13 20:30:54 +03:00
|
|
|
RMAddr(i) = BX_READ_64BIT_REG(i->sibBase()) + (BX_READ_64BIT_REG(i->sibIndex()) << i->sibScale());
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve64Mod0DispIndex(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-11-13 20:30:54 +03:00
|
|
|
RMAddr(i) = (BX_READ_64BIT_REG(i->sibIndex()) << i->sibScale()) + (Bit32s) i->displ32u();
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
2007-11-13 20:30:54 +03:00
|
|
|
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve64Mod1or2Rm(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-11-13 20:30:54 +03:00
|
|
|
RMAddr(i) = BX_READ_64BIT_REG(i->rm()) + (Bit32s) i->displ32u();
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
2007-11-13 20:30:54 +03:00
|
|
|
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve64Mod1or2Base(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-11-13 20:30:54 +03:00
|
|
|
RMAddr(i) = BX_READ_64BIT_REG(i->sibBase()) + (Bit32s) i->displ32u();
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
2007-11-13 20:30:54 +03:00
|
|
|
|
2003-03-17 03:41:01 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
2007-11-13 20:30:54 +03:00
|
|
|
BX_CPU_C::BxResolve64Mod1or2BaseIndex(bxInstruction_c *i)
|
2002-09-13 19:53:22 +04:00
|
|
|
{
|
2007-11-13 20:30:54 +03:00
|
|
|
RMAddr(i) = BX_READ_64BIT_REG(i->sibBase()) + (BX_READ_64BIT_REG(i->sibIndex()) << i->sibScale()) + (Bit32s) i->displ32u();
|
2002-09-13 19:53:22 +04:00
|
|
|
}
|
|
|
|
|
2002-11-19 08:47:45 +03:00
|
|
|
#endif /* if BX_SUPPORT_X86_64 */
|