< prev index next >

src/hotspot/share/c1/c1_Runtime1.cpp

Print this page

        

*** 1,7 **** --- 1,8 ---- /* * 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 324,333 **** --- 325,344 ---- #ifdef JFR_HAVE_INTRINSICS FUNCTION_CASE(entry, JFR_TIME_FUNCTION); #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()); FUNCTION_CASE(entry, StubRoutines::dlog10()); FUNCTION_CASE(entry, StubRoutines::dpow());
< prev index next >