1. 31 5月, 2020 1 次提交
  2. 27 2月, 2020 1 次提交
  3. 11 9月, 2018 1 次提交
  4. 01 7月, 2018 1 次提交
  5. 25 6月, 2018 1 次提交
  6. 04 6月, 2018 1 次提交
  7. 29 5月, 2018 1 次提交
  8. 10 5月, 2018 1 次提交
  9. 01 5月, 2018 1 次提交
  10. 23 4月, 2018 1 次提交
  11. 05 12月, 2017 4 次提交
  12. 13 11月, 2017 1 次提交
  13. 12 11月, 2017 1 次提交
  14. 30 10月, 2017 1 次提交
  15. 18 10月, 2017 1 次提交
  16. 13 10月, 2017 1 次提交
  17. 21 7月, 2017 1 次提交
    • A
      x86_64 assembly pack: "optimize" for Knights Landing, add AVX-512 results. · 64d92d74
      Andy Polyakov 提交于
      "Optimize" is in quotes because it's rather a "salvage operation"
      for now. Idea is to identify processor capability flags that
      drive Knights Landing to suboptimial code paths and mask them.
      Two flags were identified, XSAVE and ADCX/ADOX. Former affects
      choice of AES-NI code path specific for Silvermont (Knights Landing
      is of Silvermont "ancestry"). And 64-bit ADCX/ADOX instructions are
      effectively mishandled at decode time. In both cases we are looking
      at ~2x improvement.
      
      AVX-512 results cover even Skylake-X :-)
      
      Hardware used for benchmarking courtesy of Atos, experiments run by
      Romain Dolbeau <romain.dolbeau@atos.net>. Kudos!
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      64d92d74
  18. 06 7月, 2017 1 次提交
  19. 12 5月, 2017 1 次提交
  20. 16 2月, 2017 1 次提交
  21. 13 2月, 2017 1 次提交
  22. 06 2月, 2017 1 次提交
  23. 24 10月, 2016 1 次提交
  24. 11 10月, 2016 1 次提交
    • D
      Remove trailing whitespace from some files. · 609b0852
      David Benjamin 提交于
      The prevailing style seems to not have trailing whitespace, but a few
      lines do. This is mostly in the perlasm files, but a few C files got
      them after the reformat. This is the result of:
      
        find . -name '*.pl' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.c' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
        find . -name '*.h' | xargs sed -E -i '' -e 's/( |'$'\t'')*$//'
      
      Then bn_prime.h was excluded since this is a generated file.
      
      Note mkerr.pl has some changes in a heredoc for some help output, but
      other lines there lack trailing whitespace too.
      Reviewed-by: NKurt Roeckx <kurt@openssl.org>
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      609b0852
  25. 03 9月, 2016 1 次提交
  26. 16 8月, 2016 1 次提交
  27. 06 8月, 2016 1 次提交
  28. 01 7月, 2016 1 次提交
    • A
      SPARC assembly pack: enforce V8+ ABI constraints. · f198cc43
      Andy Polyakov 提交于
      Even though it's hard to imagine, it turned out that upper half of
      arguments passed to V8+ subroutine can be non-zero.
      
      ["n" pseudo-instructions, such as srln being srl in 32-bit case and
      srlx in 64-bit one, were implemented in binutils 2.10. It's assumed
      that Solaris assembler implemented it around same time, i.e. 2000.]
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      f198cc43
  29. 27 6月, 2016 1 次提交
  30. 15 6月, 2016 1 次提交
  31. 29 5月, 2016 1 次提交
  32. 21 5月, 2016 1 次提交
  33. 25 4月, 2016 1 次提交
  34. 11 3月, 2016 1 次提交
    • R
      Fix some assembler generating scripts for better unification · a5aa63a4
      Richard Levitte 提交于
      Some of these scripts would recognise an output parameter if it looks
      like a file path.  That works both in both the classic and new build
      schemes.  Some fo these scripts would only recognise it if it's a
      basename (i.e. no directory component).  Those need to be corrected,
      as the output parameter in the new build scheme is more likely to
      contain a directory component than not.
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      a5aa63a4
  35. 09 3月, 2016 1 次提交
  36. 08 3月, 2016 1 次提交
  37. 28 2月, 2016 1 次提交