2008-05-10 22:10:53 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-25 00:54:04 +03:00
|
|
|
// $Id$
|
2008-05-10 22:10:53 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2015-01-25 23:58:04 +03:00
|
|
|
// Copyright (c) 2008-2015 Stanislav Shwartsman
|
2008-05-10 22:10:53 +04:00
|
|
|
// Written by Stanislav Shwartsman [sshwarts at sourceforge net]
|
|
|
|
//
|
|
|
|
// 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
|
2009-01-16 21:18:59 +03:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA B 02110-1301 USA
|
2008-05-10 22:10:53 +04:00
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#define NEED_CPU_REG_SHORTCUTS 1
|
|
|
|
#include "bochs.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#define LOG_THIS BX_CPU_THIS_PTR
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::write_linear_byte(unsigned s, Bit64u laddr, Bit8u data)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 1, CPL, BX_WRITE, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
Bit8u *hostAddr = (Bit8u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 1);
|
2008-05-10 22:10:53 +04:00
|
|
|
*hostAddr = data;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 22:19:02 +04:00
|
|
|
if (access_write_linear(laddr, 1, CPL, 0x0, (void *) &data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
2008-05-10 22:10:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::write_linear_word(unsigned s, Bit64u laddr, Bit16u data)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 1);
|
2008-08-10 23:40:47 +04:00
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
2008-09-08 19:45:57 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, (1 & BX_CPU_THIS_PTR alignment_check_mask));
|
2008-08-13 00:24:24 +04:00
|
|
|
#else
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
#endif
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 2, CPL, BX_WRITE, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
Bit16u *hostAddr = (Bit16u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 2);
|
2008-05-10 22:10:53 +04:00
|
|
|
WriteHostWordToLittleEndian(hostAddr, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_write_linear(laddr, 2, CPL, 0x1, (void *) &data) < 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2008-05-10 22:10:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::write_linear_dword(unsigned s, Bit64u laddr, Bit32u data)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 3);
|
2008-08-10 23:40:47 +04:00
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
2008-09-08 19:45:57 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, (3 & BX_CPU_THIS_PTR alignment_check_mask));
|
2008-08-13 00:24:24 +04:00
|
|
|
#else
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
#endif
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 4, CPL, BX_WRITE, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
Bit32u *hostAddr = (Bit32u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 4);
|
2008-05-10 22:10:53 +04:00
|
|
|
WriteHostDWordToLittleEndian(hostAddr, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-20 13:38:51 +04:00
|
|
|
if (! IsCanonical(laddr)) {
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_ERROR(("write_linear_dword(): canonical failure"));
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2008-05-10 22:10:53 +04:00
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_write_linear(laddr, 4, CPL, 0x3, (void *) &data) < 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2008-05-10 22:10:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::write_linear_qword(unsigned s, Bit64u laddr, Bit64u data)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 7);
|
2008-08-10 23:40:47 +04:00
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
2008-09-08 19:45:57 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, (7 & BX_CPU_THIS_PTR alignment_check_mask));
|
2008-08-13 00:24:24 +04:00
|
|
|
#else
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
#endif
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 8, CPL, BX_WRITE, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 8);
|
2008-05-10 22:10:53 +04:00
|
|
|
WriteHostQWordToLittleEndian(hostAddr, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-20 13:38:51 +04:00
|
|
|
if (! IsCanonical(laddr)) {
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_ERROR(("write_linear_qword(): canonical failure"));
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2008-05-10 22:10:53 +04:00
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_write_linear(laddr, 8, CPL, 0x7, (void *) &data) < 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2008-05-10 22:10:53 +04:00
|
|
|
}
|
|
|
|
|
2008-07-26 18:19:06 +04:00
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::write_linear_xmmword(unsigned s, Bit64u laddr, const BxPackedXmmRegister *data)
|
2008-07-26 18:19:06 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 15);
|
2008-08-13 00:24:24 +04:00
|
|
|
Bit64u lpf = LPFOf(laddr);
|
2008-07-26 18:19:06 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-07-26 18:19:06 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 16, CPL, BX_WRITE, (Bit8u*) data);
|
2008-07-26 18:19:06 +04:00
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 16);
|
2008-07-26 18:19:06 +04:00
|
|
|
WriteHostQWordToLittleEndian(hostAddr, data->xmm64u(0));
|
|
|
|
WriteHostQWordToLittleEndian(hostAddr+1, data->xmm64u(1));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_write_linear(laddr, 16, CPL, 0x0, (void *) data) < 0)
|
2013-12-22 01:56:55 +04:00
|
|
|
exception(int_number(s), 0);
|
2008-08-02 14:16:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::write_linear_xmmword_aligned(unsigned s, Bit64u laddr, const BxPackedXmmRegister *data)
|
2008-08-02 14:16:47 +04:00
|
|
|
{
|
2009-02-27 00:57:01 +03:00
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
2008-08-02 14:16:47 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, 15);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-08-02 14:16:47 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 16, CPL, BX_WRITE, (Bit8u*) data);
|
2008-08-02 14:16:47 +04:00
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 16);
|
2008-08-02 14:16:47 +04:00
|
|
|
WriteHostQWordToLittleEndian(hostAddr, data->xmm64u(0));
|
|
|
|
WriteHostQWordToLittleEndian(hostAddr+1, data->xmm64u(1));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (laddr & 15) {
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_ERROR(("write_linear_xmmword_aligned(): #GP misaligned access"));
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_GP_EXCEPTION, 0);
|
2008-08-02 14:16:47 +04:00
|
|
|
}
|
|
|
|
|
2014-07-20 22:19:02 +04:00
|
|
|
if (access_write_linear(laddr, 16, CPL, 0x0, (void *) data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
2008-07-26 18:19:06 +04:00
|
|
|
}
|
|
|
|
|
2011-03-19 23:09:34 +03:00
|
|
|
#if BX_SUPPORT_AVX
|
2014-10-21 01:08:29 +04:00
|
|
|
void BX_CPU_C::write_linear_ymmword(unsigned s, Bit64u laddr, const BxPackedYmmRegister *data)
|
2011-03-19 23:09:34 +03:00
|
|
|
{
|
2012-12-09 20:42:48 +04:00
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 31);
|
2011-03-19 23:09:34 +03:00
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2011-03-19 23:09:34 +03:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2012-12-09 20:42:48 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 32, CPL, BX_WRITE, (Bit8u*) data);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 32);
|
|
|
|
for (unsigned n = 0; n < 4; n++) {
|
2013-07-26 16:50:56 +04:00
|
|
|
WriteHostQWordToLittleEndian(hostAddr+n, data->ymm64u(n));
|
2011-03-19 23:09:34 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_write_linear(laddr, 32, CPL, 0x0, (void *) data) < 0)
|
2013-12-22 01:56:55 +04:00
|
|
|
exception(int_number(s), 0);
|
2011-03-19 23:09:34 +03:00
|
|
|
}
|
|
|
|
|
2014-10-21 01:08:29 +04:00
|
|
|
void BX_CPU_C::write_linear_ymmword_aligned(unsigned s, Bit64u laddr, const BxPackedYmmRegister *data)
|
2011-03-19 23:09:34 +03:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
2012-12-09 20:42:48 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, 31);
|
2011-03-19 23:09:34 +03:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2011-03-19 23:09:34 +03:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2012-12-09 20:42:48 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 32, CPL, BX_WRITE, (Bit8u*) data);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 32);
|
|
|
|
for (unsigned n = 0; n < 4; n++) {
|
2013-07-26 16:50:56 +04:00
|
|
|
WriteHostQWordToLittleEndian(hostAddr+n, data->ymm64u(n));
|
2011-03-19 23:09:34 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-09 20:42:48 +04:00
|
|
|
if (laddr & 31) {
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_ERROR(("write_linear_ymmword_aligned(): #GP misaligned access"));
|
2011-03-19 23:09:34 +03:00
|
|
|
exception(BX_GP_EXCEPTION, 0);
|
|
|
|
}
|
|
|
|
|
2014-07-20 22:19:02 +04:00
|
|
|
if (access_write_linear(laddr, 32, CPL, 0x0, (void *) data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
2011-03-19 23:09:34 +03:00
|
|
|
}
|
2013-07-26 16:50:56 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if BX_SUPPORT_EVEX
|
2014-10-21 01:08:29 +04:00
|
|
|
void BX_CPU_C::write_linear_zmmword(unsigned s, Bit64u laddr, const BxPackedZmmRegister *data)
|
2013-07-26 16:50:56 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 63);
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 64, CPL, BX_WRITE, (Bit8u*) data);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 64);
|
|
|
|
for (unsigned n = 0; n < 8; n++) {
|
|
|
|
WriteHostQWordToLittleEndian(hostAddr+n, data->zmm64u(n));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_write_linear(laddr, 64, CPL, 0x0, (void *) data) < 0)
|
2013-12-22 01:56:55 +04:00
|
|
|
exception(int_number(s), 0);
|
2013-07-26 16:50:56 +04:00
|
|
|
}
|
|
|
|
|
2014-10-21 01:08:29 +04:00
|
|
|
void BX_CPU_C::write_linear_zmmword_aligned(unsigned s, Bit64u laddr, const BxPackedZmmRegister *data)
|
2013-07-26 16:50:56 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, 63);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 64, CPL, BX_WRITE, (Bit8u*) data);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 64);
|
|
|
|
for (unsigned n = 0; n < 8; n++) {
|
|
|
|
WriteHostQWordToLittleEndian(hostAddr+n, data->zmm64u(n));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (laddr & 63) {
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_ERROR(("write_linear_zmmword_aligned(): #GP misaligned access"));
|
2013-07-26 16:50:56 +04:00
|
|
|
exception(BX_GP_EXCEPTION, 0);
|
|
|
|
}
|
|
|
|
|
2014-07-20 22:19:02 +04:00
|
|
|
if (access_write_linear(laddr, 64, CPL, 0x0, (void *) data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
2013-07-26 16:50:56 +04:00
|
|
|
}
|
2011-03-19 23:09:34 +03:00
|
|
|
#endif
|
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
Bit8u BX_CPP_AttrRegparmN(2)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::read_linear_byte(unsigned s, Bit64u laddr)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
Bit8u data;
|
|
|
|
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
Bit8u *hostAddr = (Bit8u*) (hostPageAddr | pageOffset);
|
|
|
|
data = *hostAddr;
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 1, CPL, BX_READ, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 22:19:02 +04:00
|
|
|
if (access_read_linear(laddr, 1, CPL, BX_READ, 0x0, (void *) &data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bit16u BX_CPP_AttrRegparmN(2)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::read_linear_word(unsigned s, Bit64u laddr)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
Bit16u data;
|
|
|
|
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 1);
|
2008-08-10 23:40:47 +04:00
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
2008-09-08 19:45:57 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, (1 & BX_CPU_THIS_PTR alignment_check_mask));
|
2008-08-13 00:24:24 +04:00
|
|
|
#else
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
#endif
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
Bit16u *hostAddr = (Bit16u*) (hostPageAddr | pageOffset);
|
|
|
|
ReadHostWordFromLittleEndian(hostAddr, data);
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 2, CPL, BX_READ, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_read_linear(laddr, 2, CPL, BX_READ, 0x1, (void *) &data) < 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2009-06-20 13:38:51 +04:00
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bit32u BX_CPP_AttrRegparmN(2)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::read_linear_dword(unsigned s, Bit64u laddr)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
Bit32u data;
|
|
|
|
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 3);
|
2008-08-10 23:40:47 +04:00
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
2008-09-08 19:45:57 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, (3 & BX_CPU_THIS_PTR alignment_check_mask));
|
2008-08-13 00:24:24 +04:00
|
|
|
#else
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
#endif
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
Bit32u *hostAddr = (Bit32u*) (hostPageAddr | pageOffset);
|
|
|
|
ReadHostDWordFromLittleEndian(hostAddr, data);
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 4, CPL, BX_READ, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_read_linear(laddr, 4, CPL, BX_READ, 0x3, (void *) &data) < 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2009-06-20 13:38:51 +04:00
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bit64u BX_CPP_AttrRegparmN(2)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::read_linear_qword(unsigned s, Bit64u laddr)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
Bit64u data;
|
|
|
|
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 7);
|
2008-08-10 23:40:47 +04:00
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
2008-09-08 19:45:57 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, (7 & BX_CPU_THIS_PTR alignment_check_mask));
|
2008-08-13 00:24:24 +04:00
|
|
|
#else
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
#endif
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
ReadHostQWordFromLittleEndian(hostAddr, data);
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 8, CPL, BX_READ, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_read_linear(laddr, 8, CPL, BX_READ, 0x7, (void *) &data) < 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2009-06-20 13:38:51 +04:00
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2008-07-26 18:19:06 +04:00
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::read_linear_xmmword(unsigned s, Bit64u laddr, BxPackedXmmRegister *data)
|
2008-07-26 18:19:06 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 15);
|
2008-08-13 00:24:24 +04:00
|
|
|
Bit64u lpf = LPFOf(laddr);
|
2008-07-26 18:19:06 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
2008-07-26 18:19:06 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
2008-09-17 00:57:16 +04:00
|
|
|
ReadHostQWordFromLittleEndian(hostAddr, data->xmm64u(0));
|
|
|
|
ReadHostQWordFromLittleEndian(hostAddr+1, data->xmm64u(1));
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 16, CPL, BX_READ, (Bit8u*) data);
|
2008-07-26 18:19:06 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_read_linear(laddr, 16, CPL, BX_READ, 0x0, (void *) data) < 0)
|
2013-12-22 01:56:55 +04:00
|
|
|
exception(int_number(s), 0);
|
2008-07-26 18:19:06 +04:00
|
|
|
}
|
|
|
|
|
2008-08-02 14:16:47 +04:00
|
|
|
void BX_CPP_AttrRegparmN(3)
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_CPU_C::read_linear_xmmword_aligned(unsigned s, Bit64u laddr, BxPackedXmmRegister *data)
|
2008-08-02 14:16:47 +04:00
|
|
|
{
|
2009-02-27 00:57:01 +03:00
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
2008-08-02 14:16:47 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, 15);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
2008-08-02 14:16:47 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
2008-09-17 00:57:16 +04:00
|
|
|
ReadHostQWordFromLittleEndian(hostAddr, data->xmm64u(0));
|
|
|
|
ReadHostQWordFromLittleEndian(hostAddr+1, data->xmm64u(1));
|
2012-03-20 22:26:04 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 16, CPL, BX_READ, (Bit8u*) data);
|
2008-08-02 14:16:47 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (laddr & 15) {
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_ERROR(("read_linear_xmmword_aligned(): #GP misaligned access"));
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(BX_GP_EXCEPTION, 0);
|
2008-08-02 14:16:47 +04:00
|
|
|
}
|
|
|
|
|
2014-07-20 22:19:02 +04:00
|
|
|
if (access_read_linear(laddr, 16, CPL, BX_READ, 0x0, (void *) data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
2008-08-02 14:16:47 +04:00
|
|
|
}
|
|
|
|
|
2011-03-19 23:09:34 +03:00
|
|
|
#if BX_SUPPORT_AVX
|
2014-10-21 01:08:29 +04:00
|
|
|
void BX_CPU_C::read_linear_ymmword(unsigned s, Bit64u laddr, BxPackedYmmRegister *data)
|
2011-03-19 23:09:34 +03:00
|
|
|
{
|
2012-12-09 20:42:48 +04:00
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 31);
|
2011-03-19 23:09:34 +03:00
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
2011-03-19 23:09:34 +03:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2012-12-09 20:42:48 +04:00
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
for (unsigned n=0; n < 4; n++) {
|
2013-07-26 16:50:56 +04:00
|
|
|
ReadHostQWordFromLittleEndian(hostAddr+n, data->ymm64u(n));
|
2011-03-19 23:09:34 +03:00
|
|
|
}
|
2012-12-09 20:42:48 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 32, CPL, BX_READ, (Bit8u*) data);
|
2011-03-19 23:09:34 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_read_linear(laddr, 32, CPL, BX_READ, 0x0, (void *) data) < 0)
|
2013-12-22 01:56:55 +04:00
|
|
|
exception(int_number(s), 0);
|
2011-03-19 23:09:34 +03:00
|
|
|
}
|
|
|
|
|
2014-10-21 01:08:29 +04:00
|
|
|
void BX_CPU_C::read_linear_ymmword_aligned(unsigned s, Bit64u laddr, BxPackedYmmRegister *data)
|
2011-03-19 23:09:34 +03:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
2012-12-09 20:42:48 +04:00
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, 31);
|
2011-03-19 23:09:34 +03:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
2011-03-19 23:09:34 +03:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2012-12-09 20:42:48 +04:00
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
for (unsigned n=0; n < 4; n++) {
|
2013-07-26 16:50:56 +04:00
|
|
|
ReadHostQWordFromLittleEndian(hostAddr+n, data->ymm64u(n));
|
2011-03-19 23:09:34 +03:00
|
|
|
}
|
2012-12-09 20:42:48 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 32, CPL, BX_READ, (Bit8u*) data);
|
2011-03-19 23:09:34 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-09 20:42:48 +04:00
|
|
|
if (laddr & 31) {
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_ERROR(("read_linear_ymmword_aligned(): #GP misaligned access"));
|
2011-03-19 23:09:34 +03:00
|
|
|
exception(BX_GP_EXCEPTION, 0);
|
|
|
|
}
|
|
|
|
|
2014-07-20 22:19:02 +04:00
|
|
|
if (access_read_linear(laddr, 32, CPL, BX_READ, 0x0, (void *) data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
2011-03-19 23:09:34 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-07-26 16:50:56 +04:00
|
|
|
#if BX_SUPPORT_EVEX
|
2014-10-21 01:08:29 +04:00
|
|
|
void BX_CPU_C::read_linear_zmmword(unsigned s, Bit64u laddr, BxPackedZmmRegister *data)
|
2013-07-26 16:50:56 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 63);
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
for (unsigned n=0; n < 8; n++) {
|
|
|
|
ReadHostQWordFromLittleEndian(hostAddr+n, data->zmm64u(n));
|
|
|
|
}
|
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 64, CPL, BX_READ, (Bit8u*) data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_read_linear(laddr, 64, CPL, BX_READ, 0x0, (void *) data) < 0)
|
2013-12-22 01:56:55 +04:00
|
|
|
exception(int_number(s), 0);
|
2013-07-26 16:50:56 +04:00
|
|
|
}
|
|
|
|
|
2014-10-21 01:08:29 +04:00
|
|
|
void BX_CPU_C::read_linear_zmmword_aligned(unsigned s, Bit64u laddr, BxPackedZmmRegister *data)
|
2013-07-26 16:50:56 +04:00
|
|
|
{
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, 63);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us read access
|
|
|
|
// from this CPL.
|
|
|
|
if (tlbEntry->accessBits & (0x01 << USER_PL)) {
|
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
for (unsigned n=0; n < 8; n++) {
|
|
|
|
ReadHostQWordFromLittleEndian(hostAddr+n, data->zmm64u(n));
|
|
|
|
}
|
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, (tlbEntry->ppf | pageOffset), 64, CPL, BX_READ, (Bit8u*) data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (laddr & 63) {
|
2014-10-21 01:08:29 +04:00
|
|
|
BX_ERROR(("read_linear_zmmword_aligned(): #GP misaligned access"));
|
2013-07-26 16:50:56 +04:00
|
|
|
exception(BX_GP_EXCEPTION, 0);
|
|
|
|
}
|
|
|
|
|
2014-07-20 22:19:02 +04:00
|
|
|
if (access_read_linear(laddr, 64, CPL, BX_READ, 0x0, (void *) data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
2013-07-26 16:50:56 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
// special Read-Modify-Write operations //
|
|
|
|
// address translation info is kept across read/write calls //
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
Bit8u BX_CPP_AttrRegparmN(2)
|
2015-01-25 23:58:04 +03:00
|
|
|
BX_CPU_C::read_RMW_linear_byte(unsigned s, bx_address laddr)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
Bit8u data;
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
2015-01-25 23:58:04 +03:00
|
|
|
bx_address lpf = LPFOf(laddr);
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2008-05-10 22:10:53 +04:00
|
|
|
Bit8u *hostAddr = (Bit8u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 1);
|
2008-05-10 22:10:53 +04:00
|
|
|
data = *hostAddr;
|
|
|
|
BX_CPU_THIS_PTR address_xlation.pages = (bx_ptr_equiv_t) hostAddr;
|
2011-09-23 02:08:18 +04:00
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1 = pAddr;
|
2013-07-24 22:54:18 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 1, CPL, BX_RW, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 22:19:02 +04:00
|
|
|
if (access_read_linear(laddr, 1, CPL, BX_RW, 0x0, (void *) &data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bit16u BX_CPP_AttrRegparmN(2)
|
2015-01-25 23:58:04 +03:00
|
|
|
BX_CPU_C::read_RMW_linear_word(unsigned s, bx_address laddr)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
Bit16u data;
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 1);
|
2008-08-10 23:40:47 +04:00
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
2015-01-25 23:58:04 +03:00
|
|
|
bx_address lpf = AlignedAccessLPFOf(laddr, (1 & BX_CPU_THIS_PTR alignment_check_mask));
|
2008-08-13 00:24:24 +04:00
|
|
|
#else
|
2015-01-25 23:58:04 +03:00
|
|
|
bx_address lpf = LPFOf(laddr);
|
2008-08-13 00:24:24 +04:00
|
|
|
#endif
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2008-05-10 22:10:53 +04:00
|
|
|
Bit16u *hostAddr = (Bit16u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 2);
|
2008-05-10 22:10:53 +04:00
|
|
|
ReadHostWordFromLittleEndian(hostAddr, data);
|
|
|
|
BX_CPU_THIS_PTR address_xlation.pages = (bx_ptr_equiv_t) hostAddr;
|
2011-09-23 02:08:18 +04:00
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1 = pAddr;
|
2013-07-24 22:54:18 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 2, CPL, BX_RW, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_read_linear(laddr, 2, CPL, BX_RW, 0x1, (void *) &data) < 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2009-06-20 13:38:51 +04:00
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bit32u BX_CPP_AttrRegparmN(2)
|
2015-01-25 23:58:04 +03:00
|
|
|
BX_CPU_C::read_RMW_linear_dword(unsigned s, bx_address laddr)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
Bit32u data;
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 3);
|
2008-08-10 23:40:47 +04:00
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
2015-01-25 23:58:04 +03:00
|
|
|
bx_address lpf = AlignedAccessLPFOf(laddr, (3 & BX_CPU_THIS_PTR alignment_check_mask));
|
2008-08-13 00:24:24 +04:00
|
|
|
#else
|
2015-01-25 23:58:04 +03:00
|
|
|
bx_address lpf = LPFOf(laddr);
|
2008-08-13 00:24:24 +04:00
|
|
|
#endif
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2008-05-10 22:10:53 +04:00
|
|
|
Bit32u *hostAddr = (Bit32u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 4);
|
2008-05-10 22:10:53 +04:00
|
|
|
ReadHostDWordFromLittleEndian(hostAddr, data);
|
|
|
|
BX_CPU_THIS_PTR address_xlation.pages = (bx_ptr_equiv_t) hostAddr;
|
2011-09-23 02:08:18 +04:00
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1 = pAddr;
|
2013-07-24 22:54:18 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 4, CPL, BX_RW, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_read_linear(laddr, 4, CPL, BX_RW, 0x3, (void *) &data) < 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2009-06-20 13:38:51 +04:00
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bit64u BX_CPP_AttrRegparmN(2)
|
2015-01-25 23:58:04 +03:00
|
|
|
BX_CPU_C::read_RMW_linear_qword(unsigned s, bx_address laddr)
|
2008-05-10 22:10:53 +04:00
|
|
|
{
|
|
|
|
Bit64u data;
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 7);
|
2008-08-10 23:40:47 +04:00
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
2015-01-25 23:58:04 +03:00
|
|
|
bx_address lpf = AlignedAccessLPFOf(laddr, (7 & BX_CPU_THIS_PTR alignment_check_mask));
|
2008-08-13 00:24:24 +04:00
|
|
|
#else
|
2015-01-25 23:58:04 +03:00
|
|
|
bx_address lpf = LPFOf(laddr);
|
2008-08-13 00:24:24 +04:00
|
|
|
#endif
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
2013-01-16 21:28:20 +04:00
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
2008-05-10 22:10:53 +04:00
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
2011-01-04 19:17:20 +03:00
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
2008-05-10 22:10:53 +04:00
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
2011-01-04 19:17:20 +03:00
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 8);
|
2008-05-10 22:10:53 +04:00
|
|
|
ReadHostQWordFromLittleEndian(hostAddr, data);
|
|
|
|
BX_CPU_THIS_PTR address_xlation.pages = (bx_ptr_equiv_t) hostAddr;
|
2011-09-23 02:08:18 +04:00
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1 = pAddr;
|
2013-07-24 22:54:18 +04:00
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 8, CPL, BX_RW, (Bit8u*) &data);
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 10:40:42 +04:00
|
|
|
if (access_read_linear(laddr, 8, CPL, BX_RW, 0x7, (void *) &data) < 0)
|
2010-03-14 18:51:27 +03:00
|
|
|
exception(int_number(s), 0);
|
2009-06-20 13:38:51 +04:00
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2015-01-25 23:58:04 +03:00
|
|
|
void BX_CPP_AttrRegparmN(1)
|
|
|
|
BX_CPU_C::write_RMW_linear_byte(Bit8u val8)
|
2013-08-04 23:37:04 +04:00
|
|
|
{
|
2015-01-25 23:58:04 +03:00
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1, 1, BX_WRITE, 0, (Bit8u*) &val8);
|
2013-08-04 23:37:04 +04:00
|
|
|
|
2015-01-25 23:58:04 +03:00
|
|
|
if (BX_CPU_THIS_PTR address_xlation.pages > 2) {
|
|
|
|
// Pages > 2 means it stores a host address for direct access.
|
|
|
|
Bit8u *hostAddr = (Bit8u *) BX_CPU_THIS_PTR address_xlation.pages;
|
|
|
|
*hostAddr = val8;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// address_xlation.pages must be 1
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1, 1, &val8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1)
|
|
|
|
BX_CPU_C::write_RMW_linear_word(Bit16u val16)
|
|
|
|
{
|
|
|
|
if (BX_CPU_THIS_PTR address_xlation.pages > 2) {
|
|
|
|
// Pages > 2 means it stores a host address for direct access.
|
|
|
|
Bit16u *hostAddr = (Bit16u *) BX_CPU_THIS_PTR address_xlation.pages;
|
|
|
|
WriteHostWordToLittleEndian(hostAddr, val16);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1, 2, BX_WRITE, 0, (Bit8u*) &val16);
|
|
|
|
}
|
|
|
|
else if (BX_CPU_THIS_PTR address_xlation.pages == 1) {
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1, 2, &val16);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1, 2, BX_WRITE, 0, (Bit8u*) &val16);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#ifdef BX_LITTLE_ENDIAN
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1, 1, &val16);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1, 1, BX_WRITE, 0, (Bit8u*) &val16);
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress2, 1, ((Bit8u *) &val16) + 1);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress2, 1, BX_WRITE, 0, ((Bit8u*) &val16)+1);
|
|
|
|
#else
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1, 1, ((Bit8u *) &val16) + 1);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1, 1, BX_WRITE, 0, ((Bit8u*) &val16)+1);
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress2, 1, &val16);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress2, 1, BX_WRITE, 0, (Bit8u*) &val16);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1)
|
|
|
|
BX_CPU_C::write_RMW_linear_dword(Bit32u val32)
|
|
|
|
{
|
|
|
|
if (BX_CPU_THIS_PTR address_xlation.pages > 2) {
|
|
|
|
// Pages > 2 means it stores a host address for direct access.
|
|
|
|
Bit32u *hostAddr = (Bit32u *) BX_CPU_THIS_PTR address_xlation.pages;
|
|
|
|
WriteHostDWordToLittleEndian(hostAddr, val32);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1, 4, BX_WRITE, 0, (Bit8u*) &val32);
|
|
|
|
}
|
|
|
|
else if (BX_CPU_THIS_PTR address_xlation.pages == 1) {
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1, 4, &val32);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1, 4, BX_WRITE, 0, (Bit8u*) &val32);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#ifdef BX_LITTLE_ENDIAN
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len1, &val32);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len1, BX_WRITE, 0, (Bit8u*) &val32);
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress2,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len2,
|
|
|
|
((Bit8u *) &val32) + BX_CPU_THIS_PTR address_xlation.len1);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress2,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len2, BX_WRITE, 0,
|
|
|
|
((Bit8u *) &val32) + BX_CPU_THIS_PTR address_xlation.len1);
|
|
|
|
#else
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len1,
|
|
|
|
((Bit8u *) &val32) + (4 - BX_CPU_THIS_PTR address_xlation.len1));
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len1, BX_WRITE, 0,
|
|
|
|
((Bit8u *) &val32) + (4 - BX_CPU_THIS_PTR address_xlation.len1));
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress2,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len2, &val32);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress2,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len2, BX_WRITE, 0, (Bit8u*) &val32);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPP_AttrRegparmN(1)
|
|
|
|
BX_CPU_C::write_RMW_linear_qword(Bit64u val64)
|
|
|
|
{
|
|
|
|
if (BX_CPU_THIS_PTR address_xlation.pages > 2) {
|
|
|
|
// Pages > 2 means it stores a host address for direct access.
|
|
|
|
Bit64u *hostAddr = (Bit64u *) BX_CPU_THIS_PTR address_xlation.pages;
|
|
|
|
WriteHostQWordToLittleEndian(hostAddr, val64);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1, 8, BX_WRITE, 0, (Bit8u*) &val64);
|
|
|
|
}
|
|
|
|
else if (BX_CPU_THIS_PTR address_xlation.pages == 1) {
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1, 8, &val64);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1, 8, BX_WRITE, 0, (Bit8u*) &val64);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#ifdef BX_LITTLE_ENDIAN
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len1, &val64);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len1, BX_WRITE, 0, (Bit8u*) &val64);
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress2,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len2,
|
|
|
|
((Bit8u *) &val64) + BX_CPU_THIS_PTR address_xlation.len1);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress2,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len2, BX_WRITE, 0,
|
|
|
|
((Bit8u *) &val64) + BX_CPU_THIS_PTR address_xlation.len1);
|
|
|
|
#else
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress1,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len1,
|
|
|
|
((Bit8u *) &val64) + (8 - BX_CPU_THIS_PTR address_xlation.len1));
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len1, BX_WRITE, 0,
|
|
|
|
((Bit8u *) &val64) + (8 - BX_CPU_THIS_PTR address_xlation.len1));
|
|
|
|
access_write_physical(BX_CPU_THIS_PTR address_xlation.paddress2,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len2, &val64);
|
|
|
|
BX_DBG_PHY_MEMORY_ACCESS(BX_CPU_ID,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress2,
|
|
|
|
BX_CPU_THIS_PTR address_xlation.len2, BX_WRITE, 0, (Bit8u*) &val64);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if BX_SUPPORT_X86_64
|
|
|
|
|
|
|
|
void BX_CPU_C::read_RMW_linear_dqword_aligned_64(unsigned s, Bit64u laddr, Bit64u *hi, Bit64u *lo)
|
|
|
|
{
|
2013-08-04 23:37:04 +04:00
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 0);
|
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, 15);
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
|
|
|
if (tlbEntry->accessBits & (0x04 << USER_PL)) {
|
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 16);
|
|
|
|
ReadHostQWordFromLittleEndian(hostAddr, *lo);
|
2013-08-04 23:47:19 +04:00
|
|
|
ReadHostQWordFromLittleEndian(hostAddr + 1, *hi);
|
2013-08-04 23:37:04 +04:00
|
|
|
BX_CPU_THIS_PTR address_xlation.pages = (bx_ptr_equiv_t) hostAddr;
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1 = pAddr;
|
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 8, CPL, BX_RW, (Bit8u*) lo);
|
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr + 8, pAddr + 8, 8, CPL, BX_RW, (Bit8u*) hi);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (laddr & 15) {
|
|
|
|
BX_ERROR(("read_RMW_virtual_dqword_aligned_64(): #GP misaligned access"));
|
|
|
|
exception(BX_GP_EXCEPTION, 0);
|
|
|
|
}
|
|
|
|
|
2014-09-14 22:13:08 +04:00
|
|
|
BxPackedXmmRegister data;
|
|
|
|
if (access_read_linear(laddr, 16, CPL, BX_RW, 0x0, (void *) &data) < 0)
|
|
|
|
exception(int_number(s), 0);
|
2014-10-02 22:53:41 +04:00
|
|
|
|
|
|
|
*lo = data.xmm64u(0);
|
|
|
|
*hi = data.xmm64u(1);
|
2013-08-04 23:37:04 +04:00
|
|
|
}
|
|
|
|
|
2014-10-21 23:11:21 +04:00
|
|
|
void BX_CPU_C::write_RMW_linear_dqword(Bit64u hi, Bit64u lo)
|
2013-08-04 23:37:04 +04:00
|
|
|
{
|
2015-01-25 23:58:04 +03:00
|
|
|
write_RMW_linear_qword(lo);
|
2013-08-04 23:37:04 +04:00
|
|
|
|
|
|
|
BX_CPU_THIS_PTR address_xlation.paddress1 += 8;
|
|
|
|
if (BX_CPU_THIS_PTR address_xlation.pages > 2) {
|
|
|
|
// Pages > 2 means it stores a host address for direct access
|
|
|
|
BX_CPU_THIS_PTR address_xlation.pages += 8;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
BX_ASSERT(BX_CPU_THIS_PTR address_xlation.pages == 1);
|
|
|
|
}
|
|
|
|
|
2015-01-25 23:58:04 +03:00
|
|
|
write_RMW_linear_qword(hi);
|
2013-08-04 23:37:04 +04:00
|
|
|
}
|
|
|
|
|
2008-05-10 22:10:53 +04:00
|
|
|
#endif
|
2015-01-25 23:58:04 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// Write data to new stack, these methods are required for emulation
|
|
|
|
// correctness but not performance critical.
|
|
|
|
//
|
|
|
|
|
|
|
|
void BX_CPU_C::write_new_stack_word(bx_address laddr, unsigned curr_pl, Bit16u data)
|
|
|
|
{
|
|
|
|
bx_bool user = (curr_pl == 3);
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 1);
|
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, (1 & BX_CPU_THIS_PTR alignment_check_mask));
|
|
|
|
#else
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
#endif
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
|
|
|
if (tlbEntry->accessBits & (0x04 << user)) {
|
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 2, curr_pl, BX_WRITE, (Bit8u*) &data);
|
|
|
|
Bit16u *hostAddr = (Bit16u*) (hostPageAddr | pageOffset);
|
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 2);
|
|
|
|
WriteHostWordToLittleEndian(hostAddr, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (access_write_linear(laddr, 2, curr_pl, 0x1, (void *) &data) < 0)
|
|
|
|
exception(BX_SS_EXCEPTION, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPU_C::write_new_stack_dword(bx_address laddr, unsigned curr_pl, Bit32u data)
|
|
|
|
{
|
|
|
|
bx_bool user = (curr_pl == 3);
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 3);
|
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, (3 & BX_CPU_THIS_PTR alignment_check_mask));
|
|
|
|
#else
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
#endif
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
|
|
|
if (tlbEntry->accessBits & (0x04 << user)) {
|
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 4, curr_pl, BX_WRITE, (Bit8u*) &data);
|
|
|
|
Bit32u *hostAddr = (Bit32u*) (hostPageAddr | pageOffset);
|
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 4);
|
|
|
|
WriteHostDWordToLittleEndian(hostAddr, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (access_write_linear(laddr, 4, curr_pl, 0x3, (void *) &data) < 0)
|
|
|
|
exception(BX_SS_EXCEPTION, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BX_CPU_C::write_new_stack_qword(bx_address laddr, unsigned curr_pl, Bit64u data)
|
|
|
|
{
|
|
|
|
bx_bool user = (curr_pl == 3);
|
|
|
|
unsigned tlbIndex = BX_TLB_INDEX_OF(laddr, 7);
|
|
|
|
#if BX_SUPPORT_ALIGNMENT_CHECK && BX_CPU_LEVEL >= 4
|
|
|
|
Bit64u lpf = AlignedAccessLPFOf(laddr, (7 & BX_CPU_THIS_PTR alignment_check_mask));
|
|
|
|
#else
|
|
|
|
Bit64u lpf = LPFOf(laddr);
|
|
|
|
#endif
|
|
|
|
bx_TLB_entry *tlbEntry = &BX_CPU_THIS_PTR TLB.entry[tlbIndex];
|
|
|
|
if (tlbEntry->lpf == lpf) {
|
|
|
|
// See if the TLB entry privilege level allows us write access
|
|
|
|
// from this CPL.
|
|
|
|
if (tlbEntry->accessBits & (0x04 << user)) {
|
|
|
|
bx_hostpageaddr_t hostPageAddr = tlbEntry->hostPageAddr;
|
|
|
|
Bit32u pageOffset = PAGE_OFFSET(laddr);
|
|
|
|
bx_phy_address pAddr = tlbEntry->ppf | pageOffset;
|
|
|
|
BX_NOTIFY_LIN_MEMORY_ACCESS(laddr, pAddr, 8, curr_pl, BX_WRITE, (Bit8u*) &data);
|
|
|
|
Bit64u *hostAddr = (Bit64u*) (hostPageAddr | pageOffset);
|
|
|
|
pageWriteStampTable.decWriteStamp(pAddr, 8);
|
|
|
|
WriteHostQWordToLittleEndian(hostAddr, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (access_write_linear(laddr, 8, curr_pl, 0x7, (void *) &data) < 0)
|
|
|
|
exception(BX_SS_EXCEPTION, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// assuming the write happens in 32-bit mode
|
|
|
|
void BX_CPU_C::write_new_stack_word(bx_segment_reg_t *seg, Bit32u offset, unsigned curr_pl, Bit16u data)
|
|
|
|
{
|
|
|
|
Bit32u laddr;
|
|
|
|
|
|
|
|
if (seg->cache.valid & SegAccessWOK) {
|
|
|
|
if (offset < seg->cache.u.segment.limit_scaled) {
|
|
|
|
accessOK:
|
|
|
|
laddr = (Bit32u)(seg->cache.u.segment.base) + offset;
|
|
|
|
write_new_stack_word(laddr, curr_pl, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// add error code when segment violation occurs when pushing into new stack
|
|
|
|
if (!write_virtual_checks(seg, offset, 2)) {
|
|
|
|
BX_ERROR(("write_new_stack_word(): segment limit violation"));
|
|
|
|
exception(BX_SS_EXCEPTION,
|
|
|
|
seg->selector.rpl != CPL ? (seg->selector.value & 0xfffc) : 0);
|
|
|
|
}
|
|
|
|
goto accessOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// assuming the write happens in 32-bit mode
|
|
|
|
void BX_CPU_C::write_new_stack_dword(bx_segment_reg_t *seg, Bit32u offset, unsigned curr_pl, Bit32u data)
|
|
|
|
{
|
|
|
|
Bit32u laddr;
|
|
|
|
|
|
|
|
if (seg->cache.valid & SegAccessWOK) {
|
|
|
|
if (offset < (seg->cache.u.segment.limit_scaled-2)) {
|
|
|
|
accessOK:
|
|
|
|
laddr = (Bit32u)(seg->cache.u.segment.base) + offset;
|
|
|
|
write_new_stack_dword(laddr, curr_pl, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// add error code when segment violation occurs when pushing into new stack
|
|
|
|
if (!write_virtual_checks(seg, offset, 4)) {
|
|
|
|
BX_ERROR(("write_new_stack_dword(): segment limit violation"));
|
|
|
|
exception(BX_SS_EXCEPTION,
|
|
|
|
seg->selector.rpl != CPL ? (seg->selector.value & 0xfffc) : 0);
|
|
|
|
}
|
|
|
|
goto accessOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// assuming the write happens in 32-bit mode
|
|
|
|
void BX_CPU_C::write_new_stack_qword(bx_segment_reg_t *seg, Bit32u offset, unsigned curr_pl, Bit64u data)
|
|
|
|
{
|
|
|
|
Bit32u laddr;
|
|
|
|
|
|
|
|
if (seg->cache.valid & SegAccessWOK) {
|
|
|
|
if (offset <= (seg->cache.u.segment.limit_scaled-7)) {
|
|
|
|
accessOK:
|
|
|
|
laddr = (Bit32u)(seg->cache.u.segment.base) + offset;
|
|
|
|
write_new_stack_qword(laddr, curr_pl, data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// add error code when segment violation occurs when pushing into new stack
|
|
|
|
if (!write_virtual_checks(seg, offset, 8)) {
|
|
|
|
BX_ERROR(("write_new_stack_qword(): segment limit violation"));
|
|
|
|
exception(BX_SS_EXCEPTION,
|
|
|
|
seg->selector.rpl != CPL ? (seg->selector.value & 0xfffc) : 0);
|
|
|
|
}
|
|
|
|
goto accessOK;
|
|
|
|
}
|