2016-04-20 10:10:43 +08:00
|
|
|
#! /usr/bin/env perl
|
2020-04-23 20:55:52 +08:00
|
|
|
# Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2016-04-20 10:10:43 +08:00
|
|
|
#
|
2018-12-06 21:03:01 +08:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-04-20 10:10:43 +08:00
|
|
|
# this file except in compliance with the License. You can obtain a copy
|
|
|
|
# in the file LICENSE in the source distribution or at
|
|
|
|
# https://www.openssl.org/source/license.html
|
|
|
|
|
2015-01-05 18:25:10 +08:00
|
|
|
|
Unify all assembler file generators
They now generally conform to the following argument sequence:
script.pl "$(PERLASM_SCHEME)" [ C preprocessor arguments ... ] \
$(PROCESSOR) <output file>
However, in the spirit of being able to use these scripts manually,
they also allow for no argument, or for only the flavour, or for only
the output file. This is done by only using the last argument as
output file if it's a file (it has an extension), and only using the
first argument as flavour if it isn't a file (it doesn't have an
extension).
While we're at it, we make all $xlate calls the same, i.e. the $output
argument is always quoted, and we always die on error when trying to
start $xlate.
There's a perl lesson in this, regarding operator priority...
This will always succeed, even when it fails:
open FOO, "something" || die "ERR: $!";
The reason is that '||' has higher priority than list operators (a
function is essentially a list operator and gobbles up everything
following it that isn't lower priority), and since a non-empty string
is always true, so that ends up being exactly the same as:
open FOO, "something";
This, however, will fail if "something" can't be opened:
open FOO, "something" or die "ERR: $!";
The reason is that 'or' has lower priority that list operators,
i.e. it's performed after the 'open' call.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9884)
2019-09-13 06:06:46 +08:00
|
|
|
# $output is the last argument if it looks like a file (it has an extension)
|
|
|
|
# $flavour is the first argument if it doesn't look like a file
|
|
|
|
$output = $#ARGV >= 0 && $ARGV[$#ARGV] =~ m|\.\w+$| ? pop : undef;
|
|
|
|
$flavour = $#ARGV >= 0 && $ARGV[0] !~ m|\.| ? shift : undef;
|
2015-01-05 18:25:10 +08:00
|
|
|
|
|
|
|
$0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1;
|
|
|
|
( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or
|
|
|
|
( $xlate="${dir}perlasm/arm-xlate.pl" and -f $xlate) or
|
|
|
|
die "can't locate arm-xlate.pl";
|
|
|
|
|
Unify all assembler file generators
They now generally conform to the following argument sequence:
script.pl "$(PERLASM_SCHEME)" [ C preprocessor arguments ... ] \
$(PROCESSOR) <output file>
However, in the spirit of being able to use these scripts manually,
they also allow for no argument, or for only the flavour, or for only
the output file. This is done by only using the last argument as
output file if it's a file (it has an extension), and only using the
first argument as flavour if it isn't a file (it doesn't have an
extension).
While we're at it, we make all $xlate calls the same, i.e. the $output
argument is always quoted, and we always die on error when trying to
start $xlate.
There's a perl lesson in this, regarding operator priority...
This will always succeed, even when it fails:
open FOO, "something" || die "ERR: $!";
The reason is that '||' has higher priority than list operators (a
function is essentially a list operator and gobbles up everything
following it that isn't lower priority), and since a non-empty string
is always true, so that ends up being exactly the same as:
open FOO, "something";
This, however, will fail if "something" can't be opened:
open FOO, "something" or die "ERR: $!";
The reason is that 'or' has lower priority that list operators,
i.e. it's performed after the 'open' call.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9884)
2019-09-13 06:06:46 +08:00
|
|
|
open OUT,"| \"$^X\" $xlate $flavour \"$output\""
|
|
|
|
or die "can't call $xlate: $!";
|
2015-01-05 18:25:10 +08:00
|
|
|
*STDOUT=*OUT;
|
|
|
|
|
|
|
|
$code.=<<___;
|
2014-06-01 23:21:06 +08:00
|
|
|
#include "arm_arch.h"
|
|
|
|
|
|
|
|
.text
|
|
|
|
.arch armv8-a+crypto
|
|
|
|
|
|
|
|
.align 5
|
2015-01-05 18:25:10 +08:00
|
|
|
.globl _armv7_neon_probe
|
2014-06-01 23:21:06 +08:00
|
|
|
.type _armv7_neon_probe,%function
|
|
|
|
_armv7_neon_probe:
|
|
|
|
orr v15.16b, v15.16b, v15.16b
|
|
|
|
ret
|
|
|
|
.size _armv7_neon_probe,.-_armv7_neon_probe
|
|
|
|
|
2015-01-05 18:25:10 +08:00
|
|
|
.globl _armv7_tick
|
2014-06-01 23:21:06 +08:00
|
|
|
.type _armv7_tick,%function
|
|
|
|
_armv7_tick:
|
2015-01-05 18:25:10 +08:00
|
|
|
#ifdef __APPLE__
|
|
|
|
mrs x0, CNTPCT_EL0
|
|
|
|
#else
|
2014-06-01 23:21:06 +08:00
|
|
|
mrs x0, CNTVCT_EL0
|
2015-01-05 18:25:10 +08:00
|
|
|
#endif
|
2014-06-01 23:21:06 +08:00
|
|
|
ret
|
|
|
|
.size _armv7_tick,.-_armv7_tick
|
|
|
|
|
2015-01-05 18:25:10 +08:00
|
|
|
.globl _armv8_aes_probe
|
2014-06-01 23:21:06 +08:00
|
|
|
.type _armv8_aes_probe,%function
|
|
|
|
_armv8_aes_probe:
|
|
|
|
aese v0.16b, v0.16b
|
|
|
|
ret
|
|
|
|
.size _armv8_aes_probe,.-_armv8_aes_probe
|
|
|
|
|
2015-01-05 18:25:10 +08:00
|
|
|
.globl _armv8_sha1_probe
|
2014-06-01 23:21:06 +08:00
|
|
|
.type _armv8_sha1_probe,%function
|
|
|
|
_armv8_sha1_probe:
|
|
|
|
sha1h s0, s0
|
|
|
|
ret
|
|
|
|
.size _armv8_sha1_probe,.-_armv8_sha1_probe
|
|
|
|
|
2015-01-05 18:25:10 +08:00
|
|
|
.globl _armv8_sha256_probe
|
2014-06-01 23:21:06 +08:00
|
|
|
.type _armv8_sha256_probe,%function
|
|
|
|
_armv8_sha256_probe:
|
|
|
|
sha256su0 v0.4s, v0.4s
|
|
|
|
ret
|
|
|
|
.size _armv8_sha256_probe,.-_armv8_sha256_probe
|
2018-02-11 19:29:06 +08:00
|
|
|
|
2015-01-05 18:25:10 +08:00
|
|
|
.globl _armv8_pmull_probe
|
2014-06-01 23:21:06 +08:00
|
|
|
.type _armv8_pmull_probe,%function
|
|
|
|
_armv8_pmull_probe:
|
|
|
|
pmull v0.1q, v0.1d, v0.1d
|
|
|
|
ret
|
|
|
|
.size _armv8_pmull_probe,.-_armv8_pmull_probe
|
2016-05-15 21:37:46 +08:00
|
|
|
|
2018-02-11 19:29:06 +08:00
|
|
|
.globl _armv8_sha512_probe
|
|
|
|
.type _armv8_sha512_probe,%function
|
|
|
|
_armv8_sha512_probe:
|
|
|
|
.long 0xcec08000 // sha512su0 v0.2d,v0.2d
|
|
|
|
ret
|
|
|
|
.size _armv8_sha512_probe,.-_armv8_sha512_probe
|
|
|
|
|
2020-04-28 10:33:50 +08:00
|
|
|
.globl _armv8_cpuid_probe
|
|
|
|
.type _armv8_cpuid_probe,%function
|
|
|
|
_armv8_cpuid_probe:
|
|
|
|
mrs x0, midr_el1
|
|
|
|
ret
|
|
|
|
.size _armv8_cpuid_probe,.-_armv8_cpuid_probe
|
|
|
|
|
2016-05-15 21:37:46 +08:00
|
|
|
.globl OPENSSL_cleanse
|
|
|
|
.type OPENSSL_cleanse,%function
|
|
|
|
.align 5
|
|
|
|
OPENSSL_cleanse:
|
|
|
|
cbz x1,.Lret // len==0?
|
|
|
|
cmp x1,#15
|
|
|
|
b.hi .Lot // len>15
|
|
|
|
nop
|
|
|
|
.Little:
|
|
|
|
strb wzr,[x0],#1 // store byte-by-byte
|
|
|
|
subs x1,x1,#1
|
|
|
|
b.ne .Little
|
|
|
|
.Lret: ret
|
|
|
|
|
|
|
|
.align 4
|
|
|
|
.Lot: tst x0,#7
|
|
|
|
b.eq .Laligned // inp is aligned
|
|
|
|
strb wzr,[x0],#1 // store byte-by-byte
|
|
|
|
sub x1,x1,#1
|
|
|
|
b .Lot
|
|
|
|
|
|
|
|
.align 4
|
|
|
|
.Laligned:
|
|
|
|
str xzr,[x0],#8 // store word-by-word
|
|
|
|
sub x1,x1,#8
|
|
|
|
tst x1,#-8
|
|
|
|
b.ne .Laligned // len>=8
|
|
|
|
cbnz x1,.Little // len!=0?
|
|
|
|
ret
|
|
|
|
.size OPENSSL_cleanse,.-OPENSSL_cleanse
|
2016-05-15 23:01:15 +08:00
|
|
|
|
|
|
|
.globl CRYPTO_memcmp
|
|
|
|
.type CRYPTO_memcmp,%function
|
|
|
|
.align 4
|
|
|
|
CRYPTO_memcmp:
|
|
|
|
eor w3,w3,w3
|
|
|
|
cbz x2,.Lno_data // len==0?
|
2018-05-20 18:13:16 +08:00
|
|
|
cmp x2,#16
|
|
|
|
b.ne .Loop_cmp
|
|
|
|
ldp x8,x9,[x0]
|
|
|
|
ldp x10,x11,[x1]
|
|
|
|
eor x8,x8,x10
|
|
|
|
eor x9,x9,x11
|
|
|
|
orr x8,x8,x9
|
|
|
|
mov x0,#1
|
|
|
|
cmp x8,#0
|
|
|
|
csel x0,xzr,x0,eq
|
|
|
|
ret
|
|
|
|
|
|
|
|
.align 4
|
2016-05-15 23:01:15 +08:00
|
|
|
.Loop_cmp:
|
|
|
|
ldrb w4,[x0],#1
|
|
|
|
ldrb w5,[x1],#1
|
|
|
|
eor w4,w4,w5
|
|
|
|
orr w3,w3,w4
|
|
|
|
subs x2,x2,#1
|
|
|
|
b.ne .Loop_cmp
|
|
|
|
|
|
|
|
.Lno_data:
|
|
|
|
neg w0,w3
|
|
|
|
lsr w0,w0,#31
|
|
|
|
ret
|
|
|
|
.size CRYPTO_memcmp,.-CRYPTO_memcmp
|
2015-01-05 18:25:10 +08:00
|
|
|
___
|
|
|
|
|
|
|
|
print $code;
|
2020-02-17 10:17:53 +08:00
|
|
|
close STDOUT or die "error closing STDOUT: $!";
|