< prev index next >

src/cpu/ppc/vm/vm_version_ppc.cpp

Print this page

        

*** 172,182 **** FLAG_SET_DEFAULT(UseCRC32Intrinsics, true); } } // The AES intrinsic stubs require AES instruction support. - #if defined(VM_LITTLE_ENDIAN) if (has_vcipher()) { if (FLAG_IS_DEFAULT(UseAES)) { UseAES = true; } } else if (UseAES) { --- 172,181 ----
*** 193,214 **** if (!FLAG_IS_DEFAULT(UseAESIntrinsics)) warning("AES intrinsics are not available on this CPU"); FLAG_SET_DEFAULT(UseAESIntrinsics, false); } - #else - if (UseAES) { - warning("AES instructions are not available on this CPU"); - FLAG_SET_DEFAULT(UseAES, false); - } - if (UseAESIntrinsics) { - if (!FLAG_IS_DEFAULT(UseAESIntrinsics)) - warning("AES intrinsics are not available on this CPU"); - FLAG_SET_DEFAULT(UseAESIntrinsics, false); - } - #endif - if (has_vshasig()) { if (FLAG_IS_DEFAULT(UseSHA)) { UseSHA = true; } } else if (UseSHA) { --- 192,201 ----
< prev index next >