1. 18 1月, 2016 1 次提交
  2. 15 1月, 2016 1 次提交
  3. 13 1月, 2016 4 次提交
  4. 12 1月, 2016 15 次提交
  5. 09 1月, 2016 1 次提交
  6. 07 1月, 2016 8 次提交
  7. 04 1月, 2016 4 次提交
  8. 01 1月, 2016 3 次提交
  9. 31 12月, 2015 1 次提交
  10. 30 12月, 2015 1 次提交
    • J
      x86: use emms after ff_int32_to_float_fmul_scalar_sse · 8563f988
      Janne Grunau 提交于
      Intel's Instruction Set Reference (as of September 2015) clearly states
      that cvtpi2ps switches to MMX state. Actual CPUs do not switch if the
      source is a memory location. The Instruction Set Reference from 1999
      (Order Number 243191) describes this behaviour but all later versions
      I've seen have make no distinction whether MMX registers or memory is
      used as source.
      The documentation for the matching SSE2 instruction to convert to double
      (cvtpi2pd) was fixed (see the valgrind bug
      https://bugs.kde.org/show_bug.cgi?id=210264).
      
      It will take time to get a clarification and fixes in place. In the
      meantime it makes sense to change ff_int32_to_float_fmul_scalar_sse to
      be correct according to the documentation. The vast majority of users
      will have SSE2 so a change to the SSE version has little effect.
      
      Fixes fate-checkasm on x86 valgrind targets.
      
      Valgrind 'bug' reported as https://bugs.kde.org/show_bug.cgi?id=357059
      8563f988
  11. 29 12月, 2015 1 次提交
    • J
      checkasm: x86: post commit review fixes · f0f54117
      Janne Grunau 提交于
      Check the full FPU tag word instead of only the lower half and simplify
      the comparison.
      Use upper-case function base name as macro name to instantiate both
      checked_call variants.
      f0f54117