--- old/src/hotspot/share/interpreter/abstractInterpreter.hpp 2018-09-25 19:23:46.000000000 +0300 +++ new/src/hotspot/share/interpreter/abstractInterpreter.hpp 2018-09-25 19:23:45.000000000 +0300 @@ -1,5 +1,6 @@ /* * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015-2018, Azul Systems, Inc. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -89,6 +90,15 @@ java_lang_Float_floatToRawIntBits, // implementation of java.lang.Float.floatToRawIntBits() java_lang_Double_longBitsToDouble, // implementation of java.lang.Double.longBitsToDouble() java_lang_Double_doubleToRawLongBits, // implementation of java.lang.Double.doubleToRawLongBits() +#ifdef AARCH32 + com_sun_crypto_provider_AESCrypt_encryptBlock, // implementation of com/sun/crypto/provider/AESCrypt/encryptBlock() + com_sun_crypto_provider_AESCrypt_decryptBlock, // implementation of com/sun/crypto/provider/AESCrypt/decryptBlock() + com_sun_crypto_provider_CipherBlockChaining_encrypt, // implementation of com/sun/crypto/provider/CipherBlockChaining/encrypt() + com_sun_crypto_provider_CipherBlockChaining_decrypt, // implementation of com/sun/crypto/provider/CipherBlockChaining/decrypt() + sun_security_provider_SHA_implCompress, // implementation of sun/security/provider/SHA2/implCompress() + sun_security_provider_SHA2_implCompress, // implementation of sun/security/provider/SHA2/implCompress() + sun_security_provider_SHA5_implCompress, // implementation of sun/security/provider/SHA5/implCompress() +#endif number_of_method_entries, invalid = -1 }; @@ -155,6 +165,13 @@ // the compiled version to the intrinsic version. static bool can_be_compiled(const methodHandle& m) { switch (m->intrinsic_id()) { +#ifdef AARCH32 + case vmIntrinsics::_aescrypt_encryptBlock: + case vmIntrinsics::_aescrypt_decryptBlock: + case vmIntrinsics::_sha_implCompress: + case vmIntrinsics::_sha2_implCompress: + case vmIntrinsics::_sha5_implCompress: +#endif // AARCH32 case vmIntrinsics::_dsin : // fall thru case vmIntrinsics::_dcos : // fall thru case vmIntrinsics::_dtan : // fall thru