< prev index next >

src/hotspot/share/runtime/stubRoutines.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2017, Oracle and/or its affiliates. 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. --- 1,7 ---- /* ! * Copyright (c) 1997, 2018, Oracle and/or its affiliates. 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.
*** 194,203 **** --- 194,206 ---- static address _montgomeryMultiply; static address _montgomerySquare; static address _vectorizedMismatch; + static address _setBit; + static address _clrBit; + static address _dexp; static address _dlog; static address _dlog10; static address _dpow; static address _dsin;
*** 369,378 **** --- 372,384 ---- static address montgomeryMultiply() { return _montgomeryMultiply; } static address montgomerySquare() { return _montgomerySquare; } static address vectorizedMismatch() { return _vectorizedMismatch; } + static address setBit() { return _setBit; } + static address clrBit() { return _clrBit; } + static address dexp() { return _dexp; } static address dlog() { return _dlog; } static address dlog10() { return _dlog10; } static address dpow() { return _dpow; } static address dsin() { return _dsin; }
< prev index next >