Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/libcrypto/aes/asm/aes-x86_64.pl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
die "can't locate x86_64-xlate.pl";

open OUT,"| \"$^X\" $xlate $flavour $output";
open OUT,"| \"$^X\" \"$xlate\" $flavour $output";
*STDOUT=*OUT;

$verticalspin=1; # unlike 32-bit version $verticalspin performs
Expand Down
2 changes: 1 addition & 1 deletion src/lib/libcrypto/aes/asm/aesni-x86_64.pl
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
die "can't locate x86_64-xlate.pl";

open OUT,"| \"$^X\" $xlate $flavour $output";
open OUT,"| \"$^X\" \"$xlate\" $flavour $output";
*STDOUT=*OUT;

$movkey = $PREFIX eq "aesni" ? "movups" : "movups";
Expand Down
2 changes: 1 addition & 1 deletion src/lib/libcrypto/bn/asm/modexp512-x86_64.pl
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
die "can't locate x86_64-xlate.pl";

open OUT,"| \"$^X\" $xlate $flavour $output";
open OUT,"| \"$^X\" \"$xlate\" $flavour $output";
*STDOUT=*OUT;

use strict;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/libcrypto/bn/asm/x86_64-mont.pl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
die "can't locate x86_64-xlate.pl";

open OUT,"| \"$^X\" $xlate $flavour $output";
open OUT,"| \"$^X\" \"$xlate\" $flavour $output";
*STDOUT=*OUT;

# int bn_mul_mont(
Expand Down
2 changes: 1 addition & 1 deletion src/lib/libcrypto/bn/asm/x86_64-mont5.pl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
die "can't locate x86_64-xlate.pl";

open OUT,"| \"$^X\" $xlate $flavour $output";
open OUT,"| \"$^X\" \"$xlate\" $flavour $output";
*STDOUT=*OUT;

# int bn_mul_mont_gather5(
Expand Down
2 changes: 1 addition & 1 deletion src/lib/libcrypto/modes/asm/ghash-x86_64.pl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
die "can't locate x86_64-xlate.pl";

open OUT,"| \"$^X\" $xlate $flavour $output";
open OUT,"| \"$^X\" \"$xlate\" $flavour $output";
*STDOUT=*OUT;

# common register layout
Expand Down
4 changes: 2 additions & 2 deletions src/lib/libcrypto/rc4/asm/rc4-x86_64.pl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
# achieves respectful 432MBps on 2.8GHz processor now. For reference.
# If executed on Xeon, current RC4_CHAR code-path is 2.7x faster than
# RC4_INT code-path. While if executed on Opteron, it's only 25%
# slower than the RC4_INT one [meaning that if CPU �-arch detection
# slower than the RC4_INT one [meaning that if CPU �-arch detection
# is not implemented, then this final RC4_CHAR code-path should be
# preferred, as it provides better *all-round* performance].

Expand Down Expand Up @@ -110,7 +110,7 @@
( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or
die "can't locate x86_64-xlate.pl";

open OUT,"| \"$^X\" $xlate $flavour $output";
open OUT,"| \"$^X\" \"$xlate\" $flavour $output";
*STDOUT=*OUT;

$dat="%rdi"; # arg1
Expand Down