mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Minor PPC assembler updates.
This commit is contained in:
parent
fe716ba686
commit
c09a0318b7
@ -98,6 +98,7 @@ $nlo="r25";
|
||||
$nhi="r0";
|
||||
|
||||
$code=<<___;
|
||||
.machine any
|
||||
.text
|
||||
|
||||
.globl .bn_mul_mont
|
||||
|
@ -58,7 +58,8 @@ my $text = sub {
|
||||
my $machine = sub {
|
||||
my $junk = shift;
|
||||
my $arch = shift;
|
||||
$arch = "ppc970" if ($arch eq "any" and $flavour =~ /osx/);
|
||||
if ($arch eq "any" and $flavour =~ /osx/)
|
||||
{ $arch = ($flavour =~ /64/) ? "ppc970-64" : "ppc970"; }
|
||||
".machine $arch";
|
||||
};
|
||||
|
||||
|
@ -62,10 +62,10 @@ sub BODY_00_19 {
|
||||
my ($i,$a,$b,$c,$d,$e,$f)=@_;
|
||||
my $j=$i+1;
|
||||
$code.=<<___ if ($i==0);
|
||||
lwz @X[$i],$i*4($inp)
|
||||
lwz @X[$i],`$i*4`($inp)
|
||||
___
|
||||
$code.=<<___ if ($i<15);
|
||||
lwz @X[$j],$j*4($inp)
|
||||
lwz @X[$j],`$j*4`($inp)
|
||||
add $f,$K,$e
|
||||
rotlwi $e,$a,5
|
||||
add $f,$f,@X[$i]
|
||||
@ -149,6 +149,7 @@ ___
|
||||
}
|
||||
|
||||
$code=<<___;
|
||||
.machine any
|
||||
.text
|
||||
|
||||
.globl .sha1_block_asm_data_order
|
||||
|
Loading…
x
Reference in New Issue
Block a user