8215354: x86_32 build failures after JDK-8214074 (Ghash optimization using AVX instructions)

Reviewed-by: thartmann
This commit is contained in:
Aleksey Shipilev 2018-12-13 16:14:07 +01:00
parent ebdf83f88e
commit c998ead188

@ -29,6 +29,7 @@
#include "runtime/stubRoutines.hpp"
#include "macroAssembler_x86.hpp"
#ifdef _LP64
// Multiply 128 x 128 bits, using 4 pclmulqdq operations
void MacroAssembler::schoolbookAAD(int i, Register htbl, XMMRegister data,
XMMRegister tmp0, XMMRegister tmp1, XMMRegister tmp2, XMMRegister tmp3) {
@ -319,4 +320,5 @@ void MacroAssembler::avx_ghash(Register input_state, Register htbl,
vpxor(xmm1, xmm1, xmm1, Assembler::AVX_128bit);
vpxor(xmm3, xmm3, xmm3, Assembler::AVX_128bit);
vpxor(xmm15, xmm15, xmm15, Assembler::AVX_128bit);
}
}
#endif // _LP64