1. 29 6月, 2012 1 次提交
  2. 22 6月, 2012 1 次提交
  3. 14 4月, 2012 1 次提交
  4. 15 3月, 2012 1 次提交
  5. 29 2月, 2012 1 次提交
  6. 11 1月, 2012 1 次提交
    • A
      target-i386: fix SSE rounding and flush to zero · 2355c16e
      Aurelien Jarno 提交于
      SSE rounding and flush to zero control has never been implemented. However
      given that softfloat-native was using a single state for FPU and SSE and
      given that glibc is setting both FPU and SSE state in fesetround(), this
      was working correctly up to the switch to softfloat.
      
      Fix that by adding an update_sse_status() function similar to
      update_fpu_status(), and callin git on write to mxcsr.
      Signed-off-by: NAurelien Jarno <aurelien@aurel32.net>
      2355c16e
  7. 25 10月, 2011 1 次提交
  8. 01 10月, 2011 1 次提交
  9. 02 9月, 2011 1 次提交
  10. 07 8月, 2011 1 次提交
  11. 30 7月, 2011 1 次提交
    • B
      exec.h cleanup · 3e457172
      Blue Swirl 提交于
      Move softmmu_exec.h include directives from target-*/exec.h to
      target-*/op_helper.c. Move also various other stuff only used in
      op_helper.c there.
      
      Define global env in dyngen-exec.h.
      
      For i386, move wrappers for segment and FPU helpers from user-exec.c
      to op_helper.c. Implement raise_exception_err_env() to handle dynamic
      CPUState. Move the function declarations to cpu.h since they can be
      used outside of op_helper.c context.
      
      LM32, s390x, UniCore32: remove unused cpu_halted(), regs_to_env() and
      env_to_regs().
      
      ARM: make raise_exception() static.
      
      Convert
      #include "exec.h"
      to
      #include "cpu.h"
      #include "dyngen-exec.h"
      and remove now unused target-*/exec.h.
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      3e457172
  12. 27 6月, 2011 3 次提交
  13. 03 6月, 2011 2 次提交
  14. 25 4月, 2011 10 次提交
  15. 20 4月, 2011 1 次提交
  16. 18 4月, 2011 1 次提交
  17. 14 10月, 2010 1 次提交
    • B
      i386: avoid a write only variable · 4581cbcd
      Blue Swirl 提交于
      Compiling with GCC 4.6.0 20100925 produced warnings:
      /src/qemu/target-i386/op_helper.c: In function 'switch_tss':
      /src/qemu/target-i386/op_helper.c:283:53: error: variable 'new_trap' set but not used [-Werror=unused-but-set-variable]
      
      Fix by adding a dummy cast so that the variable is not unused. Add also
      pointer to docs.
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      4581cbcd
  18. 23 8月, 2010 1 次提交
  19. 03 7月, 2010 1 次提交
  20. 01 7月, 2010 1 次提交
  21. 19 6月, 2010 1 次提交
  22. 09 4月, 2010 1 次提交
  23. 01 3月, 2010 2 次提交
  24. 23 10月, 2009 1 次提交
  25. 05 10月, 2009 1 次提交
  26. 04 10月, 2009 1 次提交
    • A
      target-i386: add RDTSCP support · 1b050077
      Andre Przywara 提交于
      RDTSCP reads the time stamp counter and atomically also the content
      of a 32-bit MSR, which can be freely set by the OS. This allows CPU
      local data to be queried by userspace.
      Linux uses this to allow a fast implementation of the getcpu()
      syscall, which uses the vsyscall page to avoid a context switch.
      AMD CPUs since K8RevF and Intel CPUs since Nehalem support this
      instruction.
      RDTSCP is guarded by the RDTSCP CPUID bit (Fn8000_0001:EDX[27]).
      Signed-off-by: NAndre Przywara <andre.przywara@amd.com>
      Signed-off-by: NAurelien Jarno <aurelien@aurel32.net>
      1b050077
  27. 02 10月, 2009 1 次提交