Changeset 94082 in vbox for trunk/src/libs/openssl-3.0.1/crypto/ec/asm
- Timestamp:
- Mar 3, 2022 7:17:34 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150325
- Location:
- trunk/src/libs/openssl-3.0.1
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.1
- Property svn:mergeinfo
-
old new 12 12 /vendor/openssl/1.1.1c:131722-131725 13 13 /vendor/openssl/1.1.1k:145841-145843 14 /vendor/openssl/3.0.1:150323-150324 15 /vendor/openssl/current:147554-150322
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.1/crypto/ec/asm/ecp_nistz256-armv4.pl
r91772 r94082 2 2 # Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved. 3 3 # 4 # Licensed under the OpenSSL license(the "License"). You may not use4 # Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 # this file except in compliance with the License. You can obtain a copy 6 6 # in the file LICENSE in the source distribution or at … … 34 34 # operation. Keep in mind that +200% means 3x improvement. 35 35 36 $flavour = shift; 37 if ($flavour=~/\w[\w\-]*\.\w+$/) { $output=$flavour; undef $flavour; } 38 else { while (($output=shift) && ($output!~/\w[\w\-]*\.\w+$/)) {} } 36 # $output is the last argument if it looks like a file (it has an extension) 37 # $flavour is the first argument if it doesn't look like a file 38 $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 39 $flavour = $#ARGV >= 0 && $ARGV[0] !~ m|\.| ? shift : undef; 39 40 40 41 if ($flavour && $flavour ne "void") { … … 44 45 die "can't locate arm-xlate.pl"; 45 46 46 open STDOUT,"| \"$^X\" $xlate $flavour $output"; 47 open STDOUT,"| \"$^X\" $xlate $flavour \"$output\"" 48 or die "can't call $xlate: $!"; 47 49 } else { 48 open STDOUT,">$output";50 $output and open STDOUT,">$output"; 49 51 } 50 52 … … 52 54 #include "arm_arch.h" 53 55 54 .text55 56 #if defined(__thumb2__) 56 57 .syntax unified … … 81 82 82 83 $code.=<<___; 84 .rodata 83 85 .globl ecp_nistz256_precomputed 84 86 .type ecp_nistz256_precomputed,%object … … 105 107 $code.=<<___; 106 108 .size ecp_nistz256_precomputed,.-ecp_nistz256_precomputed 109 110 .text 107 111 .align 5 108 112 .LRR: @ 2^512 mod P precomputed for NIST P256 polynomial -
trunk/src/libs/openssl-3.0.1/crypto/ec/asm/ecp_nistz256-armv8.pl
r91772 r94082 2 2 # Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved. 3 3 # 4 # Licensed under the OpenSSL license(the "License"). You may not use4 # Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 # this file except in compliance with the License. You can obtain a copy 6 6 # in the file LICENSE in the source distribution or at … … 32 32 # operation. Keep in mind that +400% means 5x improvement. 33 33 34 $flavour = shift; 35 while (($output=shift) && ($output!~/\w[\w\-]*\.\w+$/)) {} 34 # $output is the last argument if it looks like a file (it has an extension) 35 # $flavour is the first argument if it doesn't look like a file 36 $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 37 $flavour = $#ARGV >= 0 && $ARGV[0] !~ m|\.| ? shift : undef; 36 38 37 39 $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; … … 40 42 die "can't locate arm-xlate.pl"; 41 43 42 open OUT,"| \"$^X\" $xlate $flavour $output"; 44 open OUT,"| \"$^X\" $xlate $flavour \"$output\"" 45 or die "can't call $xlate: $!"; 43 46 *STDOUT=*OUT; 44 47 … … 1480 1483 //////////////////////////////////////////////////////////////////////// 1481 1484 // void ecp_nistz256_ord_sqr_mont(uint64_t res[4], uint64_t a[4], 1482 // int rep);1485 // uint64_t rep); 1483 1486 .globl ecp_nistz256_ord_sqr_mont 1484 1487 .type ecp_nistz256_ord_sqr_mont,%function … … 1646 1649 ldp x4,x5,[$inp] // X 1647 1650 ldp x6,x7,[$inp,#16] 1648 st r w4,[$out,#64*0-4]1651 stur w4,[$out,#64*0-4] 1649 1652 lsr x4,x4,#32 1650 1653 str w5,[$out,#64*1-4] … … 1662 1665 ldp x4,x5,[$inp,#32] // Y 1663 1666 ldp x6,x7,[$inp,#48] 1664 st r w4,[$out,#64*0-4]1667 stur w4,[$out,#64*0-4] 1665 1668 lsr x4,x4,#32 1666 1669 str w5,[$out,#64*1-4] … … 1678 1681 ldp x4,x5,[$inp,#64] // Z 1679 1682 ldp x6,x7,[$inp,#80] 1680 st r w4,[$out,#64*0-4]1683 stur w4,[$out,#64*0-4] 1681 1684 lsr x4,x4,#32 1682 1685 str w5,[$out,#64*1-4] -
trunk/src/libs/openssl-3.0.1/crypto/ec/asm/ecp_nistz256-ppc64.pl
r91772 r94082 2 2 # Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved. 3 3 # 4 # Licensed under the OpenSSL license(the "License"). You may not use4 # Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 # this file except in compliance with the License. You can obtain a copy 6 6 # in the file LICENSE in the source distribution or at … … 26 26 # POWER8 +220-340% 27 27 28 $flavour = shift; 29 while (($output=shift) && ($output!~/\w[\w\-]*\.\w+$/)) {} 28 # $output is the last argument if it looks like a file (it has an extension) 29 # $flavour is the first argument if it doesn't look like a file 30 $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 31 $flavour = $#ARGV >= 0 && $ARGV[0] !~ m|\.| ? shift : undef; 30 32 31 33 $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; … … 34 36 die "can't locate ppc-xlate.pl"; 35 37 36 open OUT,"| \"$^X\" $xlate $flavour $output"; 38 open OUT,"| \"$^X\" $xlate $flavour \"$output\"" 39 or die "can't call $xlate: $!"; 37 40 *STDOUT=*OUT; 38 41 … … 1920 1923 ################################################################################ 1921 1924 # void ecp_nistz256_ord_sqr_mont(uint64_t res[4], uint64_t a[4], 1922 # int rep);1925 # uint64_t rep); 1923 1926 .globl ecp_nistz256_ord_sqr_mont 1924 1927 .align 5 -
trunk/src/libs/openssl-3.0.1/crypto/ec/asm/ecp_nistz256-sparcv9.pl
r91772 r94082 1 1 #! /usr/bin/env perl 2 # Copyright 2015-202 0The OpenSSL Project Authors. All Rights Reserved.2 # Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 # 4 # Licensed under the OpenSSL license(the "License"). You may not use4 # Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 # this file except in compliance with the License. You can obtain a copy 6 6 # in the file LICENSE in the source distribution or at … … 32 32 # operation. Keep in mind that +200% means 3x improvement. 33 33 34 $output = pop; 35 open STDOUT,">$output"; 36 37 $code.=<<___; 38 #include "sparc_arch.h" 34 $output = pop and open STDOUT,">$output"; 35 36 $code.=<<___; 37 #ifndef __ASSEMBLER__ 38 # define __ASSEMBLER__ 1 39 #endif 40 #include "crypto/sparc_arch.h" 39 41 40 42 #define LOCALS (STACK_BIAS+STACK_FRAME) -
trunk/src/libs/openssl-3.0.1/crypto/ec/asm/ecp_nistz256-x86.pl
r91772 r94082 2 2 # Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved. 3 3 # 4 # Licensed under the OpenSSL license(the "License"). You may not use4 # Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 # this file except in compliance with the License. You can obtain a copy 6 6 # in the file LICENSE in the source distribution or at … … 43 43 require "x86asm.pl"; 44 44 45 $output=pop; 46 open STDOUT,">$output"; 45 $output=pop and open STDOUT,">$output"; 47 46 48 47 &asm_init($ARGV[0],$ARGV[$#ARGV] eq "386"); -
trunk/src/libs/openssl-3.0.1/crypto/ec/asm/ecp_nistz256-x86_64.pl
r91772 r94082 4 4 # Copyright (c) 2015 CloudFlare, Inc. 5 5 # 6 # Licensed under the OpenSSL license(the "License"). You may not use6 # Licensed under the Apache License 2.0 (the "License"). You may not use 7 7 # this file except in compliance with the License. You can obtain a copy 8 8 # in the file LICENSE in the source distribution or at … … 41 41 # Keep in mind that +100% means 2x improvement. 42 42 43 $flavour = shift; 44 $output = shift; 45 if ($flavour =~ /\./) { $output = $flavour; undef $flavour; } 43 # $output is the last argument if it looks like a file (it has an extension) 44 # $flavour is the first argument if it doesn't look like a file 45 $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 46 $flavour = $#ARGV >= 0 && $ARGV[0] !~ m|\.| ? shift : undef; 46 47 47 48 $win64=0; $win64=1 if ($flavour =~ /[nm]asm|mingw64/ || $output =~ /\.asm$/); … … 52 53 die "can't locate x86_64-xlate.pl"; 53 54 54 open OUT,"| \"$^X\" \"$xlate\" $flavour \"$output\""; 55 open OUT,"| \"$^X\" \"$xlate\" $flavour \"$output\"" 56 or die "can't call $xlate: $!"; 55 57 *STDOUT=*OUT; 56 58 … … 827 829 # uint64_t res[4], 828 830 # uint64_t a[4], 829 # int rep);831 # uint64_t rep); 830 832 831 833 .globl ecp_nistz256_ord_sqr_mont -
trunk/src/libs/openssl-3.0.1/crypto/ec/asm/x25519-ppc64.pl
r91772 r94082 2 2 # Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved. 3 3 # 4 # Licensed under the OpenSSL license(the "License"). You may not use4 # Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 # this file except in compliance with the License. You can obtain a copy 6 6 # in the file LICENSE in the source distribution or at … … 28 28 # from 12% to 30% improvement was measured... 29 29 30 $flavour = shift; 31 while (($output=shift) && ($output!~/\w[\w\-]*\.\w+$/)) {} 30 # $output is the last argument if it looks like a file (it has an extension) 31 # $flavour is the first argument if it doesn't look like a file 32 $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 33 $flavour = $#ARGV >= 0 && $ARGV[0] !~ m|\.| ? shift : undef; 32 34 33 35 $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; … … 36 38 die "can't locate ppc-xlate.pl"; 37 39 38 open OUT,"| \"$^X\" $xlate $flavour $output"; 40 open OUT,"| \"$^X\" $xlate $flavour \"$output\"" 41 or die "can't call $xlate: $!"; 39 42 *STDOUT=*OUT; 40 43 -
trunk/src/libs/openssl-3.0.1/crypto/ec/asm/x25519-x86_64.pl
r91772 r94082 2 2 # Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved. 3 3 # 4 # Licensed under the OpenSSL license(the "License"). You may not use4 # Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 # this file except in compliance with the License. You can obtain a copy 6 6 # in the file LICENSE in the source distribution or at … … 62 62 # 2^51 radix; 63 63 64 $flavour = shift; 65 $output = shift; 66 if ($flavour =~ /\./) { $output = $flavour; undef $flavour; } 64 # $output is the last argument if it looks like a file (it has an extension) 65 # $flavour is the first argument if it doesn't look like a file 66 $output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef; 67 $flavour = $#ARGV >= 0 && $ARGV[0] !~ m|\.| ? shift : undef; 67 68 68 69 $win64=0; $win64=1 if ($flavour =~ /[nm]asm|mingw64/ || $output =~ /\.asm$/); … … 73 74 die "can't locate x86_64-xlate.pl"; 74 75 75 open OUT,"| \"$^X\" \"$xlate\" $flavour \"$output\""; 76 open OUT,"| \"$^X\" \"$xlate\" $flavour \"$output\"" 77 or die "can't call $xlate: $!"; 76 78 *STDOUT=*OUT; 77 79
Note:
See TracChangeset
for help on using the changeset viewer.