Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xing Lin
qemu
Commits
04c504cc
Commit
04c504cc
authored
Aug 21, 2005
by
bellard
Browse files
use ram_addr_t
git-svn-id:
svn://svn.savannah.nongnu.org/qemu/trunk@1543
c046a42c-6fe2-441c-8c8c-71466251a162
parent
ff7b8f5b
Changes
1
Hide whitespace changes
Inline
Side-by-side
cpu-all.h
View file @
04c504cc
...
...
@@ -708,7 +708,6 @@ extern uint8_t *phys_ram_dirty;
#define IO_MEM_RAM (0 << IO_MEM_SHIFT)
/* hardcoded offset */
#define IO_MEM_ROM (1 << IO_MEM_SHIFT)
/* hardcoded offset */
#define IO_MEM_UNASSIGNED (2 << IO_MEM_SHIFT)
#define IO_MEM_CODE (3 << IO_MEM_SHIFT)
/* used internally, never use directly */
#define IO_MEM_NOTDIRTY (4 << IO_MEM_SHIFT)
/* used internally, never use directly */
typedef
void
CPUWriteMemoryFunc
(
void
*
opaque
,
target_phys_addr_t
addr
,
uint32_t
value
);
...
...
@@ -743,27 +742,29 @@ void stl_phys(target_phys_addr_t addr, uint32_t val);
int
cpu_memory_rw_debug
(
CPUState
*
env
,
target_ulong
addr
,
uint8_t
*
buf
,
int
len
,
int
is_write
);
#define VGA_DIRTY_FLAG 0x01
#define VGA_DIRTY_FLAG 0x01
#define CODE_DIRTY_FLAG 0x02
/* read dirty bit (return 0 or 1) */
static
inline
int
cpu_physical_memory_is_dirty
(
target_ulong
addr
)
static
inline
int
cpu_physical_memory_is_dirty
(
ram_addr_t
addr
)
{
return
phys_ram_dirty
[
addr
>>
TARGET_PAGE_BITS
]
==
0xff
;
}
static
inline
int
cpu_physical_memory_get_dirty
(
target_ulong
addr
,
static
inline
int
cpu_physical_memory_get_dirty
(
ram_addr_t
addr
,
int
dirty_flags
)
{
return
phys_ram_dirty
[
addr
>>
TARGET_PAGE_BITS
]
&
dirty_flags
;
}
static
inline
void
cpu_physical_memory_set_dirty
(
target_ulong
addr
)
static
inline
void
cpu_physical_memory_set_dirty
(
ram_addr_t
addr
)
{
phys_ram_dirty
[
addr
>>
TARGET_PAGE_BITS
]
=
0xff
;
}
void
cpu_physical_memory_reset_dirty
(
target_ulong
start
,
target_ulong
end
,
void
cpu_physical_memory_reset_dirty
(
ram_addr_t
start
,
ram_addr_t
end
,
int
dirty_flags
);
void
cpu_tlb_update_dirty
(
CPUState
*
env
);
void
dump_exec_info
(
FILE
*
f
,
int
(
*
cpu_fprintf
)(
FILE
*
f
,
const
char
*
fmt
,
...));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment