1. 24 2月, 2013 3 次提交
  2. 16 2月, 2013 2 次提交
  3. 29 12月, 2012 1 次提交
  4. 08 12月, 2012 1 次提交
  5. 07 12月, 2012 1 次提交
  6. 17 11月, 2012 2 次提交
  7. 03 11月, 2012 1 次提交
  8. 28 10月, 2012 4 次提交
  9. 20 10月, 2012 1 次提交
  10. 08 10月, 2012 1 次提交
  11. 07 10月, 2012 3 次提交
  12. 26 9月, 2012 2 次提交
  13. 22 9月, 2012 2 次提交
  14. 20 9月, 2012 1 次提交
  15. 12 9月, 2012 1 次提交
  16. 22 6月, 2012 1 次提交
  17. 24 3月, 2012 1 次提交
  18. 18 3月, 2012 1 次提交
  19. 17 3月, 2012 2 次提交
    • S
      w64: Fix data type of next_tb and tcg_qemu_tb_exec · 69784eae
      Stefan Weil 提交于
      next_tb is the numeric value of a tcg target (= QEMU host) address.
      
      Using tcg_target_ulong instead of unsigned long shows this and makes
      the code portable for hosts with an unusual size of long (w64).
      
      The type cast '(long)(next_tb & ~3)' was not needed (casting
      unsigned long to long does not change the bits, and nor does
      casting long to pointer for most (= all non w64) hosts.
      It is removed here.
      
      Macro or function tcg_qemu_tb_exec is used to set next_tb.
      The function also returns next_tb. Therefore tcg_qemu_tb_exec
      must return a tcg_target_ulong.
      Signed-off-by: NStefan Weil <sw@weilnetz.de>
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      69784eae
    • K
      Fix large memory chunks allocation with tcg_malloc. · 4055299e
      Kirill Batuzov 提交于
      An attempt to allocate a large memory chunk after a small one resulted in
      circular links in list of pools.  It caused the same memory being
      allocated twice for different arrays.
      
      Now pools for large memory chunks are kept in separate list and are
      freed during pool reset because current allocator can not reuse them.
      Signed-off-by: NKirill Batuzov <batuzovk@ispras.ru>
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      4055299e
  20. 04 3月, 2012 1 次提交
  21. 14 12月, 2011 1 次提交
  22. 02 12月, 2011 1 次提交
  23. 01 11月, 2011 2 次提交
  24. 14 10月, 2011 1 次提交
  25. 01 10月, 2011 2 次提交
  26. 22 8月, 2011 1 次提交