# HG changeset patch # User kvn # Date 1352222575 28800 # Node ID dbeaeee28bc2bad8c9fe87ec703a4cacc1ef1f70 # Parent 64672b22ef05acd325064fa2b6e484d129f2203e 8002294: assert(VM_Version::supports_ssse3()) failed Summary: Add missing UseSSE check for AES intrinsics. Reviewed-by: roland, twisti diff -r 64672b22ef05 -r dbeaeee28bc2 src/cpu/x86/vm/vm_version_x86.cpp --- a/src/cpu/x86/vm/vm_version_x86.cpp Fri Nov 02 12:30:46 2012 -0700 +++ b/src/cpu/x86/vm/vm_version_x86.cpp Tue Nov 06 09:22:55 2012 -0800 @@ -488,8 +488,8 @@ } // The AES intrinsic stubs require AES instruction support (of course) - // but also require AVX mode for misaligned SSE access - if (UseAES && (UseAVX > 0)) { + // but also require AVX and sse3 modes for instructions it use. + if (UseAES && (UseAVX > 0) && (UseSSE > 2)) { if (FLAG_IS_DEFAULT(UseAESIntrinsics)) { UseAESIntrinsics = true; }