Bochs/bochs/cpu/tlb.h
Stanislav Shwartsman e351aaa28a update (c) for tlb.h
2017-03-31 07:34:44 +00:00

151 lines
4.5 KiB
C
Executable File

/////////////////////////////////////////////////////////////////////////
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2015-2017 Stanislav Shwartsman
// 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
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA B 02110-1301 USA
//
/////////////////////////////////////////////////////////////////////////
#ifndef BX_TLB_H
#define BX_TLB_H
// BX_TLB_SIZE: Number of entries in TLB
// BX_TLB_INDEX_OF(lpf): This macro is passed the linear page frame
// (top 20 bits of the linear address. It must map these bits to
// one of the TLB cache slots, given the size of BX_TLB_SIZE.
// There will be a many-to-one mapping to each TLB cache slot.
// When there are collisions, the old entry is overwritten with
// one for the newest access.
#define BX_TLB_SIZE 1024
#define BX_TLB_MASK ((BX_TLB_SIZE-1) << 12)
#define BX_TLB_INDEX_OF(lpf, len) ((((unsigned)(lpf) + (len)) & BX_TLB_MASK) >> 12)
typedef bx_ptr_equiv_t bx_hostpageaddr_t;
#if BX_SUPPORT_X86_64
#define BX_INVALID_TLB_ENTRY BX_CONST64(0xffffffffffffffff)
#else
#define BX_INVALID_TLB_ENTRY 0xffffffff
#endif
// accessBits
#define TLB_SysReadOK (0x01)
#define TLB_UserReadOK (0x02)
#define TLB_SysWriteOK (0x04)
#define TLB_UserWriteOK (0x08)
#define TLB_SysExecuteOK (0x10)
#define TLB_UserExecuteOK (0x20)
#if BX_SUPPORT_PKEYS
// check if page from a TLB entry can be written
#define isWriteOK(tlbEntry, user) \
(tlbEntry->accessBits & (0x04 << (user)) & BX_CPU_THIS_PTR wr_pkey[tlbEntry->pkey])
// check if page from a TLB entry can be read
#define isReadOK(tlbEntry, user) \
(tlbEntry->accessBits & (0x01 << (user)) & BX_CPU_THIS_PTR rd_pkey[tlbEntry->pkey])
#else // protection keys are not enabled
// check if page from a TLB entry can be written
#define isWriteOK(tlbEntry, user) \
(tlbEntry->accessBits & (0x04 << (user)))
// check if page from a TLB entry can be read
#define isReadOK(tlbEntry, user) \
(tlbEntry->accessBits & (0x01 << (user)))
#endif
enum {
BX_MEMTYPE_UC = 0,
BX_MEMTYPE_WC = 1,
BX_MEMTYPE_RESERVED2 = 2,
BX_MEMTYPE_RESERVED3 = 3,
BX_MEMTYPE_WT = 4,
BX_MEMTYPE_WP = 5,
BX_MEMTYPE_WB = 6,
BX_MEMTYPE_UC_WEAK = 7, // PAT only
BX_MEMTYPE_INVALID = 8
};
typedef unsigned BxMemtype;
// avoid wasting cycles to determine memory type if not required
#if BX_SUPPORT_MEMTYPE
#define MEMTYPE(memtype) (memtype)
#else
#define MEMTYPE(memtype) (BX_MEMTYPE_UC)
#endif
typedef struct {
bx_address lpf; // linear page frame
bx_phy_address ppf; // physical page frame
bx_hostpageaddr_t hostPageAddr;
Bit32u accessBits;
#if BX_SUPPORT_PKEYS
Bit32u pkey;
#endif
Bit32u lpf_mask; // linear address mask of the page size
#if BX_SUPPORT_MEMTYPE
Bit32u memtype; // keep it Bit32u for alignment
#endif
BX_CPP_INLINE bx_bool valid() const { return lpf != BX_INVALID_TLB_ENTRY; }
BX_CPP_INLINE void invalidate() {
lpf = BX_INVALID_TLB_ENTRY;
accessBits = 0;
}
BX_CPP_INLINE Bit32u get_memtype() const { return MEMTYPE(memtype); }
} bx_TLB_entry;
#if BX_SUPPORT_X86_64
#define LPF_MASK BX_CONST64(0xfffffffffffff000)
#else
#define LPF_MASK (0xfffff000)
#endif
#if BX_PHY_ADDRESS_LONG
#define PPF_MASK BX_CONST64(0xfffffffffffff000)
#else
#define PPF_MASK (0xfffff000)
#endif
BX_CPP_INLINE Bit32u PAGE_OFFSET(bx_address laddr)
{
return (Bit32u)(laddr) & 0xfff;
}
BX_CPP_INLINE bx_address LPFOf(bx_address laddr) { return laddr & LPF_MASK; }
BX_CPP_INLINE bx_address PPFOf(bx_phy_address paddr) { return paddr & PPF_MASK; }
BX_CPP_INLINE bx_address AlignedAccessLPFOf(bx_address laddr, unsigned alignment_mask)
{
return laddr & (LPF_MASK | alignment_mask);
}
#define BX_TLB_ENTRY_OF(lpf, len) (&BX_CPU_THIS_PTR TLB.entry[BX_TLB_INDEX_OF((lpf), (len))])
#endif