]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/sha/asm/sha1-s390x.pl
Also check for errors in x86_64-xlate.pl.
[thirdparty/openssl.git] / crypto / sha / asm / sha1-s390x.pl
CommitLineData
6aa36e8e
RS
1#! /usr/bin/env perl
2# Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved.
3#
a598ed0d 4# Licensed under the Apache License 2.0 (the "License"). You may not use
6aa36e8e
RS
5# this file except in compliance with the License. You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
a2a54ffc
AP
9
10# ====================================================================
e3713c36 11# Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
a2a54ffc
AP
12# project. The module is, however, dual licensed under OpenSSL and
13# CRYPTOGAMS licenses depending on where you obtain it. For further
14# details see http://www.openssl.org/~appro/cryptogams/.
15# ====================================================================
16
17# SHA1 block procedure for s390x.
18
19# April 2007.
20#
21# Performance is >30% better than gcc 3.3 generated code. But the real
22# twist is that SHA1 hardware support is detected and utilized. In
251718e4 23# which case performance can reach further >4.5x for larger chunks.
a2a54ffc 24
8626230a
AP
25# January 2009.
26#
27# Optimize Xupdate for amount of memory references and reschedule
28# instructions to favour dual-issue z10 pipeline. On z10 hardware is
29# "only" ~2.3x faster than software.
30
e822c756
AP
31# November 2010.
32#
33# Adapt for -m31 build. If kernel supports what's called "highgprs"
34# feature on Linux [see /proc/cpuinfo], it's possible to use 64-bit
35# instructions and achieve "64-bit" performance even in 31-bit legacy
36# application context. The feature is not specific to any particular
37# processor, as long as it's "z-CPU". Latter implies that the code
d900a015 38# remains z/Architecture specific. On z990 it was measured to perform
da3bd277 39# 23% better than code generated by gcc 4.3.
e822c756 40
a2a54ffc
AP
41$kimdfunc=1; # magic function code for kimd instruction
42
1aa89a7a
RL
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;
e822c756
AP
47
48if ($flavour =~ /3[12]/) {
49 $SIZE_T=4;
50 $g="";
51} else {
52 $SIZE_T=8;
53 $g="g";
54}
55
1aa89a7a 56$output and open STDOUT,">$output";
a2a54ffc 57
8626230a
AP
58$K_00_39="%r0"; $K=$K_00_39;
59$K_40_79="%r1";
60$ctx="%r2"; $prefetch="%r2";
a2a54ffc
AP
61$inp="%r3";
62$len="%r4";
63
64$A="%r5";
65$B="%r6";
66$C="%r7";
67$D="%r8";
68$E="%r9"; @V=($A,$B,$C,$D,$E);
8626230a
AP
69$t0="%r10";
70$t1="%r11";
71@X=("%r12","%r13","%r14");
a2a54ffc
AP
72$sp="%r15";
73
e822c756
AP
74$stdframe=16*$SIZE_T+4*8;
75$frame=$stdframe+16*4;
a2a54ffc 76
a2a54ffc
AP
77sub Xupdate {
78my $i=shift;
79
8626230a 80$code.=<<___ if ($i==15);
e822c756 81 lg $prefetch,$stdframe($sp) ### Xupdate(16) warm-up
8626230a
AP
82 lr $X[0],$X[2]
83___
a2a54ffc 84return if ($i&1); # Xupdate is vectorized and executed every 2nd cycle
8626230a
AP
85$code.=<<___ if ($i<16);
86 lg $X[0],`$i*4`($inp) ### Xload($i)
87 rllg $X[1],$X[0],32
a2a54ffc 88___
8626230a
AP
89$code.=<<___ if ($i>=16);
90 xgr $X[0],$prefetch ### Xupdate($i)
e822c756
AP
91 lg $prefetch,`$stdframe+4*(($i+2)%16)`($sp)
92 xg $X[0],`$stdframe+4*(($i+8)%16)`($sp)
8626230a
AP
93 xgr $X[0],$prefetch
94 rll $X[0],$X[0],1
95 rllg $X[1],$X[0],32
96 rll $X[1],$X[1],1
97 rllg $X[0],$X[1],32
98 lr $X[2],$X[1] # feedback
a2a54ffc 99___
8626230a 100$code.=<<___ if ($i<=70);
e822c756 101 stg $X[0],`$stdframe+4*($i%16)`($sp)
a2a54ffc 102___
8626230a 103unshift(@X,pop(@X));
a2a54ffc 104}
8626230a
AP
105
106sub BODY_00_19 {
107my ($i,$a,$b,$c,$d,$e)=@_;
108my $xi=$X[1];
109
110 &Xupdate($i);
a2a54ffc 111$code.=<<___;
8626230a
AP
112 alr $e,$K ### $i
113 rll $t1,$a,5
114 lr $t0,$d
115 xr $t0,$c
116 alr $e,$t1
117 nr $t0,$b
118 alr $e,$xi
119 xr $t0,$d
120 rll $b,$b,30
121 alr $e,$t0
a2a54ffc
AP
122___
123}
124
a2a54ffc
AP
125sub BODY_20_39 {
126my ($i,$a,$b,$c,$d,$e)=@_;
8626230a 127my $xi=$X[1];
a2a54ffc
AP
128
129 &Xupdate($i);
130$code.=<<___;
8626230a
AP
131 alr $e,$K ### $i
132 rll $t1,$a,5
a2a54ffc 133 lr $t0,$b
8626230a 134 alr $e,$t1
a2a54ffc 135 xr $t0,$c
8626230a 136 alr $e,$xi
a2a54ffc 137 xr $t0,$d
a2a54ffc 138 rll $b,$b,30
8626230a 139 alr $e,$t0
a2a54ffc
AP
140___
141}
142
143sub BODY_40_59 {
144my ($i,$a,$b,$c,$d,$e)=@_;
8626230a 145my $xi=$X[1];
a2a54ffc
AP
146
147 &Xupdate($i);
148$code.=<<___;
8626230a
AP
149 alr $e,$K ### $i
150 rll $t1,$a,5
a2a54ffc 151 lr $t0,$b
8626230a 152 alr $e,$t1
a2a54ffc 153 or $t0,$c
a2a54ffc 154 lr $t1,$b
8626230a 155 nr $t0,$d
a2a54ffc 156 nr $t1,$c
8626230a 157 alr $e,$xi
a2a54ffc 158 or $t0,$t1
a2a54ffc 159 rll $b,$b,30
8626230a 160 alr $e,$t0
a2a54ffc
AP
161___
162}
163
164$code.=<<___;
bc4e831c
PS
165#include "s390x_arch.h"
166
a2a54ffc 167.text
8626230a
AP
168.align 64
169.type Ktable,\@object
170Ktable: .long 0x5a827999,0x6ed9eba1,0x8f1bbcdc,0xca62c1d6
171 .skip 48 #.long 0,0,0,0,0,0,0,0,0,0,0,0
172.size Ktable,.-Ktable
a2a54ffc
AP
173.globl sha1_block_data_order
174.type sha1_block_data_order,\@function
175sha1_block_data_order:
176___
177$code.=<<___ if ($kimdfunc);
91fdacb2 178 larl %r1,OPENSSL_s390xcap_P
bc4e831c 179 lg %r0,S390X_KIMD(%r1) # check kimd capabilities
a2a54ffc
AP
180 tmhh %r0,`0x8000>>$kimdfunc`
181 jz .Lsoftware
182 lghi %r0,$kimdfunc
183 lgr %r1,$ctx
184 lgr %r2,$inp
185 sllg %r3,$len,6
186 .long 0xb93e0002 # kimd %r0,%r2
251718e4 187 brc 1,.-4 # pay attention to "partial completion"
a2a54ffc 188 br %r14
f06d0072 189.align 16
a2a54ffc
AP
190.Lsoftware:
191___
192$code.=<<___;
8626230a 193 lghi %r1,-$frame
e822c756
AP
194 st${g} $ctx,`2*$SIZE_T`($sp)
195 stm${g} %r6,%r15,`6*$SIZE_T`($sp)
a2a54ffc 196 lgr %r0,$sp
8626230a 197 la $sp,0(%r1,$sp)
e822c756 198 st${g} %r0,0($sp)
a2a54ffc 199
8626230a 200 larl $t0,Ktable
a2a54ffc
AP
201 llgf $A,0($ctx)
202 llgf $B,4($ctx)
203 llgf $C,8($ctx)
204 llgf $D,12($ctx)
205 llgf $E,16($ctx)
206
8626230a
AP
207 lg $K_00_39,0($t0)
208 lg $K_40_79,8($t0)
209
a2a54ffc 210.Lloop:
8626230a
AP
211 rllg $K_00_39,$K_00_39,32
212___
213for ($i=0;$i<20;$i++) { &BODY_00_19($i,@V); unshift(@V,pop(@V)); }
214$code.=<<___;
215 rllg $K_00_39,$K_00_39,32
a2a54ffc 216___
a2a54ffc 217for (;$i<40;$i++) { &BODY_20_39($i,@V); unshift(@V,pop(@V)); }
8626230a
AP
218$code.=<<___; $K=$K_40_79;
219 rllg $K_40_79,$K_40_79,32
220___
a2a54ffc 221for (;$i<60;$i++) { &BODY_40_59($i,@V); unshift(@V,pop(@V)); }
8626230a
AP
222$code.=<<___;
223 rllg $K_40_79,$K_40_79,32
224___
a2a54ffc
AP
225for (;$i<80;$i++) { &BODY_20_39($i,@V); unshift(@V,pop(@V)); }
226$code.=<<___;
227
e822c756 228 l${g} $ctx,`$frame+2*$SIZE_T`($sp)
8626230a 229 la $inp,64($inp)
a2a54ffc
AP
230 al $A,0($ctx)
231 al $B,4($ctx)
232 al $C,8($ctx)
233 al $D,12($ctx)
234 al $E,16($ctx)
235 st $A,0($ctx)
236 st $B,4($ctx)
237 st $C,8($ctx)
238 st $D,12($ctx)
239 st $E,16($ctx)
e822c756 240 brct${g} $len,.Lloop
a2a54ffc 241
e822c756 242 lm${g} %r6,%r15,`$frame+6*$SIZE_T`($sp)
a2a54ffc
AP
243 br %r14
244.size sha1_block_data_order,.-sha1_block_data_order
245.string "SHA1 block transform for s390x, CRYPTOGAMS by <appro\@openssl.org>"
246___
247
248$code =~ s/\`([^\`]*)\`/eval $1/gem;
249
250print $code;
a21314db 251close STDOUT or die "error closing STDOUT: $!";