1. 25 Aug, 2016 1 commit
  2. 24 Aug, 2016 3 commits
  3. 23 Aug, 2016 1 commit
  4. 22 Aug, 2016 2 commits
  5. 08 Aug, 2016 1 commit
  6. 04 Aug, 2016 1 commit
  7. 02 Aug, 2016 2 commits
  8. 26 Jul, 2016 2 commits
  9. 20 Jul, 2016 1 commit
  10. 19 Jul, 2016 2 commits
  11. 18 Jul, 2016 2 commits
  12. 15 Jul, 2016 1 commit
  13. 14 Jul, 2016 2 commits
  14. 13 Jul, 2016 4 commits
  15. 12 Jul, 2016 1 commit
  16. 11 Jul, 2016 1 commit
  17. 08 Jul, 2016 1 commit
  18. 07 Jul, 2016 1 commit
  19. 06 Jul, 2016 2 commits
  20. 28 Jun, 2016 1 commit
  21. 24 Jun, 2016 4 commits
  22. 20 Jun, 2016 1 commit
  23. 17 Jun, 2016 1 commit
  24. 16 Jun, 2016 1 commit
  25. 14 Jun, 2016 1 commit
    • Frank Barchard's avatar
      android_full_debug x86 fix - use +rm for width count · fd3e676e
      Frank Barchard authored
      Work around for android full debug build runnign out of registers.
      5 functions were running out of registers causing the compiler error
      error: 'asm' operand has impossible constraints
      These functions mostly have 4 pointers, a counter (width) and a tempory
      eax register.  With fpic and debug using stackframes, 2 registers are
      unavailable.  So a total of 8 registers are used.
      Although fpic and stack frame dont apply to assembly, the compiler
      reserves 2 registers.  The optimized version builds, so its likely
      freeing up the registers once it knows they are not used.
      These functions used to build, so compile options and/or compiler may
      have updated.. likely fpic was turned on.
      An attribute can be done to disable each, and will avoid using the
      2 GPR registers, but they are still reserved and unavailable in debug
      builds on current compilers (gcc 4.9 and clang 3.8).
      
      R=dhrosa@google.com
      BUG=libyuv:602
      
      Review URL: https://codereview.chromium.org/2066933002 .
      fd3e676e