VirtualBox

source: vbox/trunk/src/VBox/VMM/PGMPhysRWTmpl.h@ 16560

Last change on this file since 16560 was 13146, checked in by vboxsync, 16 years ago

#1865: Renamed PGMPhysReadGCPhys -> PGMPhysSimpleReadGCPhys, PGMPhysWriteGCPhys -> PGMPhysSimpleWriteGCPhys, PGMPhysReadGCPtrSafe -> PGMPhysReadGCPtr and PGMPhysWriteGCPtrSafe -> PGMPhysWriteGCPtr. This puts PGMPhysRead/Write and PGMPhysRead/WriteGCPtr in the same group.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.9 KB
Line 
1/* $Id: PGMPhysRWTmpl.h 13146 2008-10-09 22:58:12Z vboxsync $ */
2/** @file
3 * PGM - Page Manager and Monitor, Physical Memory Access Template.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/**
24 * Read physical memory. (one byte/word/dword)
25 *
26 * This API respects access handlers and MMIO. Use PGMPhysSimpleReadGCPhys() if you
27 * want to ignore those.
28 *
29 * @param pVM VM Handle.
30 * @param GCPhys Physical address start reading from.
31 */
32VMMDECL(PGMPHYS_DATATYPE) PGMPHYSFN_READNAME(PVM pVM, RTGCPHYS GCPhys)
33{
34 uint32_t iCacheIndex;
35
36 Assert(VM_IS_EMT(pVM));
37
38#ifdef PGM_PHYSMEMACCESS_CACHING
39 if (pVM->pgm.s.fPhysCacheFlushPending)
40 {
41 pVM->pgm.s.pgmphysreadcache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
42 pVM->pgm.s.pgmphyswritecache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
43 pVM->pgm.s.fPhysCacheFlushPending = false;
44 }
45 else
46 if ( ASMBitTest(&pVM->pgm.s.pgmphysreadcache.aEntries, (iCacheIndex = ((GCPhys >> PAGE_SHIFT) & PGM_MAX_PHYSCACHE_ENTRIES_MASK)))
47 && pVM->pgm.s.pgmphysreadcache.Entry[iCacheIndex].GCPhys == PHYS_PAGE_ADDRESS(GCPhys)
48#if PGMPHYS_DATASIZE != 1
49 && PHYS_PAGE_ADDRESS(GCPhys) == PHYS_PAGE_ADDRESS(GCPhys + sizeof(PGMPHYS_DATATYPE) - 1) /** (GCPhys & PAGE_OFFSET_MASK) <= PAGE_SIZE - sizeof(PGMPHYS_DATATYPE) */
50#endif
51 )
52 {
53 RTGCPHYS off = GCPhys - pVM->pgm.s.pgmphysreadcache.Entry[iCacheIndex].GCPhys;
54 return *(PGMPHYS_DATATYPE *)(pVM->pgm.s.pgmphysreadcache.Entry[iCacheIndex].pbR3 + off);
55 }
56#endif /* PGM_PHYSMEMACCESS_CACHING */
57 PGMPHYS_DATATYPE val;
58
59 PGMPhysRead(pVM, GCPhys, &val, sizeof(val));
60 return val;
61}
62
63
64/**
65 * Write to physical memory. (one byte/word/dword)
66 *
67 * This API respects access handlers and MMIO. Use PGMPhysSimpleReadGCPhys() if you
68 * want to ignore those.
69 *
70 * @param pVM VM Handle.
71 * @param GCPhys Physical address to write to.
72 * @param val What to write.
73 */
74VMMDECL(void) PGMPHYSFN_WRITENAME(PVM pVM, RTGCPHYS GCPhys, PGMPHYS_DATATYPE val)
75{
76 uint32_t iCacheIndex;
77
78 Assert(VM_IS_EMT(pVM));
79
80#ifdef PGM_PHYSMEMACCESS_CACHING
81 if (pVM->pgm.s.fPhysCacheFlushPending)
82 {
83 pVM->pgm.s.pgmphysreadcache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
84 pVM->pgm.s.pgmphyswritecache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
85 pVM->pgm.s.fPhysCacheFlushPending = false;
86 }
87 else
88 if ( ASMBitTest(&pVM->pgm.s.pgmphyswritecache.aEntries, (iCacheIndex = ((GCPhys >> PAGE_SHIFT) & PGM_MAX_PHYSCACHE_ENTRIES_MASK)))
89 && pVM->pgm.s.pgmphyswritecache.Entry[iCacheIndex].GCPhys == PHYS_PAGE_ADDRESS(GCPhys)
90#if PGMPHYS_DATASIZE != 1
91 && PHYS_PAGE_ADDRESS(GCPhys) == PHYS_PAGE_ADDRESS(GCPhys + sizeof(val) - 1)
92#endif
93 )
94 {
95 RTGCPHYS off = GCPhys - pVM->pgm.s.pgmphyswritecache.Entry[iCacheIndex].GCPhys;
96 *(PGMPHYS_DATATYPE *)(pVM->pgm.s.pgmphyswritecache.Entry[iCacheIndex].pbR3 + off) = val;
97 return;
98 }
99#endif /* PGM_PHYSMEMACCESS_CACHING */
100 return PGMPhysWrite(pVM, GCPhys, &val, sizeof(val));
101}
102
103#undef PGMPHYSFN_READNAME
104#undef PGMPHYSFN_WRITENAME
105#undef PGMPHYS_DATATYPE
106#undef PGMPHYS_DATASIZE
107
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use