Searched refs:ram_list (Results 1 - 3 of 3) sorted by relevance

/vbox/src/recompiler/
H A Dcpu-all.h1059 if (RT_UNLIKELY( ((addr) >> TARGET_PAGE_BITS) >= ram_list.phys_dirty_size)) { \
1066 if (RT_UNLIKELY( ((addr) >> TARGET_PAGE_BITS) >= ram_list.phys_dirty_size)) { \
1073 AssertMsgReturn(((addr) >> TARGET_PAGE_BITS) < ram_list.phys_dirty_size, ("%#RGp\n", (RTGCPHYS)(addr)), (rv));
1075 AssertMsgReturnVoid(((addr) >> TARGET_PAGE_BITS) < ram_list.phys_dirty_size, ("%#RGp\n", (RTGCPHYS)(addr)));
1083 extern RAMList ram_list;
1114 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] == 0xff;
1120 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS];
1127 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] & dirty_flags;
1133 ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] = 0xff;
1140 return ram_list
[all...]
H A Dexec.c143 RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list) }; variable
3082 if (QLIST_EMPTY(&ram_list.blocks))
3085 QLIST_FOREACH(block, &ram_list.blocks, next) {
3090 QLIST_FOREACH(next_block, &ram_list.blocks, next) {
3108 QLIST_FOREACH(block, &ram_list.blocks, next)
3131 QLIST_FOREACH(block, &ram_list.blocks, next) {
3144 QLIST_INSERT_HEAD(&ram_list.blocks, new_block, next);
3146 ram_list.phys_dirty = qemu_realloc(ram_list
[all...]
H A DVBoxRecompiler.c493 * Initializes ram_list.phys_dirty and ram_list.phys_dirty_size.
504 AssertLogRelReturn(QLIST_EMPTY(&ram_list.blocks), VERR_INTERNAL_ERROR_2);
511 ram_list.phys_dirty_size = cb >> PAGE_SHIFT;
512 AssertMsg(((RTGCPHYS)ram_list.phys_dirty_size << PAGE_SHIFT) == cb, ("%RGp\n", cb));
516 ram_list.phys_dirty = MMR3HeapAlloc(pVM, MM_TAG_REM, ram_list.phys_dirty_size);
517 AssertLogRelMsgReturn(ram_list.phys_dirty, ("Failed to allocate %u bytes of dirty page map bytes\n", ram_list.phys_dirty_size), VERR_NO_MEMORY);
524 uint32_t cbBitmapAligned = RT_ALIGN_32(ram_list
[all...]

Completed in 1713 milliseconds