1. 29 11月, 2018 8 次提交
  2. 28 11月, 2018 3 次提交
    • B
      Merge pull request #1398 from Adenilson/bigInt01 · 987f4187
      Behdad Esfahbod 提交于
      Optimize harfbuzz big integer conversions
      987f4187
    • B
      Comment · 4e2a03b6
      Behdad Esfahbod 提交于
      4e2a03b6
    • A
      Optimize harfbuzz big integer conversions · 4a719a7f
      Adenilson Cavalcanti 提交于
      Profiling showed that type conversions were adding considerable cycles in time
      spent doing text shaping.
      
      The idea is to optimize it using native processor instructions to help Blink
      layout performance.
      
      Doing further investigation revelead that compilers may not use the
      proper instruction on ARM 32bits builds (i.e. REV16).
      
      One way to insure that the generated ASM was ideal for both gcc/clang
      was using __builtin_bswap16.
      
      Added bonus is that we no longer need to test for CPU architecture.
      4a719a7f
  3. 26 11月, 2018 6 次提交
  4. 25 11月, 2018 23 次提交