1. 19 3月, 2010 1 次提交
  2. 17 3月, 2010 1 次提交
    • P
      Large page TLB flush · d4c430a8
      Paul Brook 提交于
      QEMU uses a fixed page size for the CPU TLB.  If the guest uses large
      pages then we effectively split these into multiple smaller pages, and
      populate the corresponding TLB entries on demand.
      
      When the guest invalidates the TLB by virtual address we must invalidate
      all entries covered by the large page.  However the address used to
      invalidate the entry may not be present in the QEMU TLB, so we do not
      know which regions to clear.
      
      Implementing a full vaiable size TLB is hard and slow, so just keep a
      simple address/mask pair to record which addresses may have been mapped by
      large pages.  If the guest invalidates this region then flush the
      whole TLB.
      Signed-off-by: NPaul Brook <paul@codesourcery.com>
      d4c430a8
  3. 13 3月, 2010 1 次提交
  4. 15 2月, 2010 1 次提交
  5. 10 10月, 2009 1 次提交
  6. 08 10月, 2009 1 次提交
  7. 02 10月, 2009 2 次提交
  8. 17 7月, 2009 1 次提交
  9. 25 4月, 2009 1 次提交
  10. 16 1月, 2009 2 次提交
  11. 05 1月, 2009 1 次提交
  12. 08 10月, 2008 2 次提交
  13. 06 9月, 2008 1 次提交
  14. 03 9月, 2008 1 次提交
  15. 10 6月, 2008 1 次提交
  16. 28 5月, 2008 1 次提交
  17. 13 5月, 2008 1 次提交
  18. 06 5月, 2008 1 次提交
  19. 03 5月, 2008 1 次提交
    • E
      CRIS updates: · b41f7df0
      edgar_igl 提交于
      * Support both the I and D MMUs and improve the accuracy of the MMU model.
      * Handle the automatic user/kernel stack pointer switching when leaving or entering user mode.
      * Move the CCS evaluation into helper funcs.
      * Make sure user-mode cannot change flags only writeable in kernel mode.
      * More conversion of the translator into TCG.
      * Handle exceptions while in a delayslot.
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4299 c046a42c-6fe2-441c-8c8c-71466251a162
      b41f7df0
  20. 14 3月, 2008 1 次提交
  21. 02 3月, 2008 1 次提交
  22. 28 2月, 2008 1 次提交
  23. 28 10月, 2007 1 次提交
  24. 14 10月, 2007 1 次提交
    • J
      Replace is_user variable with mmu_idx in softmmu core, · 6ebbf390
      j_mayer 提交于
        allowing support of more than 2 mmu access modes.
      Add backward compatibility is_user variable in targets code when needed.
      Implement per target cpu_mmu_index function, avoiding duplicated code
        and #ifdef TARGET_xxx in softmmu core functions.
      Implement per target mmu modes definitions. As an example, add PowerPC
        hypervisor mode definition and Alpha executive and kernel modes definitions.
      Optimize PowerPC case, precomputing mmu_idx when MSR register changes
        and using the same definition in code translation code.
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3384 c046a42c-6fe2-441c-8c8c-71466251a162
      6ebbf390
  25. 08 10月, 2007 1 次提交