< prev index next >

src/cpu/ppc/vm/vm_version_ppc.cpp

Print this page

        

*** 158,168 **** 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) { --- 158,167 ----
*** 179,200 **** 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 (UseSHA) { warning("SHA instructions are not available on this CPU"); FLAG_SET_DEFAULT(UseSHA, false); } if (UseSHA1Intrinsics || UseSHA256Intrinsics || UseSHA512Intrinsics) { --- 178,187 ----
< prev index next >