1. 08 5月, 2011 2 次提交
  2. 20 4月, 2011 2 次提交
  3. 10 4月, 2011 1 次提交
  4. 13 3月, 2011 1 次提交
  5. 09 2月, 2011 1 次提交
  6. 26 1月, 2011 1 次提交
  7. 13 1月, 2011 1 次提交
  8. 11 1月, 2011 2 次提交
  9. 07 1月, 2011 2 次提交
  10. 30 10月, 2010 1 次提交
  11. 14 10月, 2010 1 次提交
    • B
      cris: avoid a write only variable · 03e654c0
      Blue Swirl 提交于
      Compiling with GCC 4.6.0 20100925 produced a warning:
      In file included from /src/qemu/target-cris/translate.c:3154:0:
      /src/qemu/target-cris/translate_v10.c: In function 'dec10_prep_move_m':
      /src/qemu/target-cris/translate_v10.c:111:22: error: variable 'rd' set but not used [-Werror=unused-but-set-variable]
      
      Fix by deleting rd, adjust the only user.
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      03e654c0
  12. 08 10月, 2010 1 次提交
  13. 02 10月, 2010 1 次提交
  14. 19 9月, 2010 1 次提交
  15. 18 9月, 2010 2 次提交
  16. 16 9月, 2010 1 次提交
  17. 05 7月, 2010 3 次提交
  18. 03 7月, 2010 3 次提交
  19. 16 6月, 2010 3 次提交
  20. 10 6月, 2010 1 次提交
  21. 22 5月, 2010 1 次提交
  22. 20 5月, 2010 1 次提交
  23. 26 4月, 2010 1 次提交
  24. 19 3月, 2010 1 次提交
  25. 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
  26. 13 3月, 2010 2 次提交
  27. 07 3月, 2010 1 次提交
  28. 21 2月, 2010 1 次提交