PGMPhysRWTmpl.h revision fa92c704624def98d3c4aca86d65182effb98e04
/* $Id$ */
/** @file
* PGM - Page Manager and Monitor, Physical Memory Access Template.
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
/**
*
* This API respects access handlers and MMIO. Use PGMPhysSimpleReadGCPhys() if you
* want to ignore those.
*
* @param pVM VM Handle.
* @param GCPhys Physical address start reading from.
*/
{
#ifdef PGM_PHYSMEMACCESS_CACHING
{
pVM->pgm.s.pgmphysreadcache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
pVM->pgm.s.pgmphyswritecache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
}
else
if ( ASMBitTest(&pVM->pgm.s.pgmphysreadcache.aEntries, (iCacheIndex = ((GCPhys >> PAGE_SHIFT) & PGM_MAX_PHYSCACHE_ENTRIES_MASK)))
#if PGMPHYS_DATASIZE != 1
&& PHYS_PAGE_ADDRESS(GCPhys) == PHYS_PAGE_ADDRESS(GCPhys + sizeof(PGMPHYS_DATATYPE) - 1) /** (GCPhys & PAGE_OFFSET_MASK) <= PAGE_SIZE - sizeof(PGMPHYS_DATATYPE) */
#endif
)
{
}
#endif /* PGM_PHYSMEMACCESS_CACHING */
return val;
}
/**
*
* This API respects access handlers and MMIO. Use PGMPhysSimpleReadGCPhys() if you
* want to ignore those.
*
* @param pVM VM Handle.
* @param GCPhys Physical address to write to.
* @param val What to write.
*/
{
#ifdef PGM_PHYSMEMACCESS_CACHING
{
pVM->pgm.s.pgmphysreadcache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
pVM->pgm.s.pgmphyswritecache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
}
else
if ( ASMBitTest(&pVM->pgm.s.pgmphyswritecache.aEntries, (iCacheIndex = ((GCPhys >> PAGE_SHIFT) & PGM_MAX_PHYSCACHE_ENTRIES_MASK)))
#if PGMPHYS_DATASIZE != 1
#endif
)
{
return;
}
#endif /* PGM_PHYSMEMACCESS_CACHING */
}