3 # ====================================================================
4 # Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
5 # project. The module is, however, dual licensed under OpenSSL and
6 # CRYPTOGAMS licenses depending on where you obtain it. For further
7 # details see http://www.openssl.org/~appro/cryptogams/.
8 # ====================================================================
12 # The module implements "4-bit" GCM GHASH function and underlying
13 # single multiplication operation in GF(2^128). "4-bit" means that it
14 # uses 256 bytes per-key table [+128 bytes shared table]. Performance
15 # was measured to be ~18 cycles per processed byte on z10, which is
16 # almost 40% better than gcc-generated code. It should be noted that
17 # 18 cycles is worse result than expected: loop is scheduled for 12
18 # and the result should be close to 12. In the lack of instruction-
19 # level profiling data it's impossible to tell why...
23 # Adapt for -m31 build. If kernel supports what's called "highgprs"
24 # feature on Linux [see /proc/cpuinfo], it's possible to use 64-bit
25 # instructions and achieve "64-bit" performance even in 31-bit legacy
26 # application context. The feature is not specific to any particular
27 # processor, as long as it's "z-CPU". Latter implies that the code
28 # remains z/Architecture specific. On z990 it was measured to perform
29 # 2.8x better than 32-bit code generated by gcc 4.3.
33 # Support for hardware KIMD-GHASH is verified to produce correct
34 # result and therefore is engaged. On z196 it was measured to process
35 # 8KB buffer ~7 faster than software implementation. It's not as
36 # impressive for smaller buffer sizes and for smallest 16-bytes buffer
37 # it's actually almost 2 times slower. Which is the reason why
38 # KIMD-GHASH is not used in gcm_gmult_4bit.
42 if ($flavour =~ /3[12]/) {
50 while (($output=shift) && ($output!~/^\w[\w\-]*\.\w+$/)) {}
51 open STDOUT
,">$output";
58 $Xi="%r2"; # argument block
63 $rem0="%r6"; # variables
82 $code.=<<___
if(!$softonly && 0); # hardware is slow for single block...
83 larl
%r1,OPENSSL_s390xcap_P
85 tmhl
%r0,0x4000 # check for message-security-assist
89 .long
0xb93e0004 # kimd %r0,%r4
91 tmhh
%r1,0x4000 # check for function 65
93 stg
%r0,16($sp) # arrange 16 bytes of zero input
95 lghi
%r0,65 # function 65
96 la
%r1,0($Xi) # H lies right after Xi in gcm128_context
99 .long
0xb93e0004 # kimd %r0,$inp
100 brc
1,.-4 # pay attention to "partial completion"
106 stm
${g
} %r6,%r14,6*$SIZE_T($sp)
111 larl
$rem_4bit,rem_4bit
113 lg
$Zlo,8+1($Xi) # Xi
115 .type gcm_gmult_4bit
,\
@function
116 .size gcm_gmult_4bit
,(.-gcm_gmult_4bit
)
118 .globl gcm_ghash_4bit
122 $code.=<<___
if(!$softonly);
123 larl
%r1,OPENSSL_s390xcap_P
125 tmhl
%r0,0x4000 # check for message-security-assist
129 .long
0xb93e0004 # kimd %r0,%r4
131 tmhh
%r1,0x4000 # check for function 65
133 lghi
%r0,65 # function 65
134 la
%r1,0($Xi) # H lies right after Xi in gcm128_context
135 .long
0xb93e0004 # kimd %r0,$inp
136 brc
1,.-4 # pay attention to "partial completion"
141 $code.=<<___
if ($flavour =~ /3[12]/);
145 stm
${g
} %r6,%r14,6*$SIZE_T($sp)
150 larl
$rem_4bit,rem_4bit
152 lg
$Zlo,8+1($Xi) # Xi
156 xg
$Zhi,0($inp) # Xi ^= inp
165 srlg
$xi,$Zlo,8 # extract second byte
171 lg
$Zlo,8($nlo,$Htbl)
172 lg
$Zhi,0($nlo,$Htbl)
183 xg
$Zlo,8($nhi,$Htbl)
184 xg
$Zhi,0($nhi,$Htbl)
194 xg
$Zlo,8($nlo,$Htbl)
197 xg
$Zhi,0($nlo,$Htbl)
199 xg
$Zhi,0($rem0,$rem_4bit)
209 xg
$Zlo,8($nhi,$Htbl)
210 xg
$Zhi,0($nhi,$Htbl)
212 xg
$Zhi,0($rem1,$rem_4bit)
216 brct
$cnt,.Lghash_inner
221 xg
$Zlo,8($nlo,$Htbl)
222 xg
$Zhi,0($nlo,$Htbl)
224 xg
$Zhi,0($rem0,$rem_4bit)
231 xg
$Zlo,8($nhi,$Htbl)
232 xg
$Zhi,0($nhi,$Htbl)
234 xg
$Zhi,0($rem1,$rem_4bit)
236 lg
$tmp,0($xi,$rem_4bit)
238 sllg
$tmp,$tmp,4 # correct last rem_4bit[rem]
244 lm
${g
} %r6,%r14,6*$SIZE_T($sp)
246 .type gcm_ghash_4bit
,\
@function
247 .size gcm_ghash_4bit
,(.-gcm_ghash_4bit
)
251 .long
`0x0000<<12`,0,`0x1C20<<12`,0,`0x3840<<12`,0,`0x2460<<12`,0
252 .long
`0x7080<<12`,0,`0x6CA0<<12`,0,`0x48C0<<12`,0,`0x54E0<<12`,0
253 .long
`0xE100<<12`,0,`0xFD20<<12`,0,`0xD940<<12`,0,`0xC560<<12`,0
254 .long
`0x9180<<12`,0,`0x8DA0<<12`,0,`0xA9C0<<12`,0,`0xB5E0<<12`,0
255 .type rem_4bit
,\
@object
256 .size rem_4bit
,(.-rem_4bit
)
257 .string
"GHASH for s390x, CRYPTOGAMS by <appro\@openssl.org>"
260 $code =~ s/\`([^\`]*)\`/eval $1/gem;