< prev index next >

src/hotspot/share/interpreter/abstractInterpreter.cpp

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.
*** 169,178 **** --- 169,180 ---- // Note: This test must come _after_ the test for native methods, // otherwise we will run into problems with JDK 1.2, see also // TemplateInterpreterGenerator::generate_method_entry() for // for details. switch (m->intrinsic_id()) { + case vmIntrinsics::_setBit: return java_lang_System_setBit; + case vmIntrinsics::_clrBit: return java_lang_System_clrBit; case vmIntrinsics::_dsin : return java_lang_math_sin ; case vmIntrinsics::_dcos : return java_lang_math_cos ; case vmIntrinsics::_dtan : return java_lang_math_tan ; case vmIntrinsics::_dabs : return java_lang_math_abs ; case vmIntrinsics::_dsqrt : return java_lang_math_sqrt ;
< prev index next >