mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 12:24:19 +00:00
use AVX instructions for XOR in AES-CBC if applicable
This commit is contained in:
parent
0edc149ecc
commit
38d85a49e7
13
Crypto.h
13
Crypto.h
@ -76,7 +76,18 @@ namespace crypto
|
|||||||
|
|
||||||
void operator^=(const ChipherBlock& other) // XOR
|
void operator^=(const ChipherBlock& other) // XOR
|
||||||
{
|
{
|
||||||
#if defined(__x86_64__) || defined(__SSE__) // for Intel x84 or with SSE
|
#if defined(__AVX__) // AVX
|
||||||
|
__asm__
|
||||||
|
(
|
||||||
|
"vmovups (%[buf]), %%xmm0 \n"
|
||||||
|
"vmovups (%[other]), %%xmm1 \n"
|
||||||
|
"vxorps %%xmm0, %%xmm1, %%xmm0 \n"
|
||||||
|
"vmovups %%xmm0, (%[buf]) \n"
|
||||||
|
:
|
||||||
|
: [buf]"r"(buf), [other]"r"(other.buf)
|
||||||
|
: "%xmm0", "%xmm1", "memory"
|
||||||
|
);
|
||||||
|
#elif defined(__SSE__) // SSE
|
||||||
__asm__
|
__asm__
|
||||||
(
|
(
|
||||||
"movups (%[buf]), %%xmm0 \n"
|
"movups (%[buf]), %%xmm0 \n"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user