--- old/src/hotspot/share/c1/c1_Runtime1.cpp 2018-09-25 19:23:38.000000000 +0300 +++ new/src/hotspot/share/c1/c1_Runtime1.cpp 2018-09-25 19:23:38.000000000 +0300 @@ -1,5 +1,6 @@ /* * Copyright (c) 1999, 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 @@ -326,6 +327,16 @@ #endif FUNCTION_CASE(entry, StubRoutines::updateBytesCRC32()); FUNCTION_CASE(entry, StubRoutines::updateBytesCRC32C()); +#ifdef AARCH32 + FUNCTION_CASE(entry, StubRoutines::aescrypt_encryptBlock()); + FUNCTION_CASE(entry, StubRoutines::aescrypt_decryptBlock()); + FUNCTION_CASE(entry, StubRoutines::cipherBlockChaining_encryptAESCrypt_special()); + FUNCTION_CASE(entry, StubRoutines::cipherBlockChaining_decryptAESCrypt_special()); + FUNCTION_CASE(entry, StubRoutines::updateBytesCRC32()); + FUNCTION_CASE(entry, StubRoutines::sha1_implCompress()); + FUNCTION_CASE(entry, StubRoutines::sha256_implCompress()); + FUNCTION_CASE(entry, StubRoutines::sha512_implCompress()); +#endif FUNCTION_CASE(entry, StubRoutines::vectorizedMismatch()); FUNCTION_CASE(entry, StubRoutines::dexp()); FUNCTION_CASE(entry, StubRoutines::dlog());