--- old/src/hotspot/share/runtime/stubRoutines.hpp 2018-10-31 14:22:39.748955012 +0100 +++ new/src/hotspot/share/runtime/stubRoutines.hpp 2018-10-31 14:22:39.630955106 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. + * 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 @@ -196,6 +196,9 @@ static address _vectorizedMismatch; + static address _setBit; + static address _clrBit; + static address _dexp; static address _dlog; static address _dlog10; @@ -371,6 +374,9 @@ 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; }