HomeSort by relevance Sort by last modified time
    Searched refs:TARGET_PAGE_BITS (Results 1 - 16 of 16) sorted by null

  /external/qemu/
translate-all.h 27 (((TARGET_PHYS_ADDR_SPACE_BITS - TARGET_PAGE_BITS - 1) / L2_BITS) + 1)
cputlb.c 108 i = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
167 i = (vaddr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
217 p = phys_page_find(paddr >> TARGET_PAGE_BITS);
269 index = (vaddr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
308 page_index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
translate-all.c 81 ((L1_MAP_ADDR_SPACE_BITS - TARGET_PAGE_BITS) % L2_BITS)
91 #define V_L1_SHIFT (L1_MAP_ADDR_SPACE_BITS - TARGET_PAGE_BITS - V_L1_BITS)
466 pd[i].region_offset = (index + i) << TARGET_PAGE_BITS;
882 p = page_find(tb->page_addr[0] >> TARGET_PAGE_BITS);
887 p = page_find(tb->page_addr[1] >> TARGET_PAGE_BITS);
1062 p = page_find(start >> TARGET_PAGE_BITS);
    [all...]
exec.c 213 p = phys_page_find(addr >> TARGET_PAGE_BITS);
721 p = phys_page_find(addr >> TARGET_PAGE_BITS);
748 p = phys_page_find_alloc(addr >> TARGET_PAGE_BITS, 1);
788 p = phys_page_find(addr >> TARGET_PAGE_BITS);
    [all...]
kvm-all.c 330 size = ((mem->memory_size >> TARGET_PAGE_BITS) + 7) / 8;
349 unsigned nr = (phys_addr - mem->start_addr) >> TARGET_PAGE_BITS;
  /external/qemu/target-mips/
mips-defs.h 8 #define TARGET_PAGE_BITS 12
op_helper.c     [all...]
  /external/qemu/include/exec/
cpu-all.h 324 #define TARGET_PAGE_SIZE (1 << TARGET_PAGE_BITS)
504 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] == 0xff;
509 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS];
515 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] & dirty_flags;
520 ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] = 0xff;
526 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] |= dirty_flags;
536 len = length >> TARGET_PAGE_BITS;
538 p = ram_list.phys_dirty + (start >> TARGET_PAGE_BITS);
exec-all.h 209 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
210 return (tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK;
216 tmp = pc ^ (pc >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS));
217 return (((tmp >> (TARGET_PAGE_BITS - TB_JMP_PAGE_BITS)) & TB_JMP_PAGE_MASK)
poison.h 35 #pragma GCC poison TARGET_PAGE_BITS
softmmu_header.h 92 page_index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
113 page_index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
140 page_index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
cpu-common.h 56 #define IO_MEM_NB_ENTRIES (1 << (TARGET_PAGE_BITS - IO_MEM_SHIFT))
softmmu_template.h 150 int index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
232 int index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
362 int index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
438 int index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
  /external/qemu/target-arm/
cpu.h 780 #define TARGET_PAGE_BITS 12
785 #define TARGET_PAGE_BITS 10
  /external/qemu/target-i386/
cpu.h 1007 #define TARGET_PAGE_BITS 12
    [all...]
  /external/qemu/tcg/i386/
tcg-target.c     [all...]

Completed in 102 milliseconds