Searched refs:xmm_prev_block_cipher (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_64.cpp3453 const XMMRegister xmm_prev_block_cipher = xmm1; // holds cipher of previous block local
3461 __ movdqu(xmm_prev_block_cipher, Address(rvec, 0x00)); // initialize with initial rvec
3493 __ pxor(xmm_result0, xmm_prev_block_cipher);
3494 __ movdqu(xmm_prev_block_cipher, Address(from, pos, Address::times_1, 0*AESBlockSize));
3495 __ pxor(xmm_result1, xmm_prev_block_cipher);
3496 __ movdqu(xmm_prev_block_cipher, Address(from, pos, Address::times_1, 1*AESBlockSize));
3497 __ pxor(xmm_result2, xmm_prev_block_cipher);
3498 __ movdqu(xmm_prev_block_cipher, Address(from, pos, Address::times_1, 2*AESBlockSize));
3499 __ pxor(xmm_result3, xmm_prev_block_cipher);
3500 __ movdqu(xmm_prev_block_cipher, Addres
3541 __ movdqu(Address(rvec, 0), xmm_prev_block_cipher); // final value of r stored in rvec of CipherBlockChaining object local
[all...]

Completed in 40 milliseconds