< prev index next >

src/hotspot/share/ci/ciSymbol.cpp

Print this page

*** 1,7 **** /* ! * Copyright (c) 1999, 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. --- 1,7 ---- /* ! * Copyright (c) 1999, 2019, 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.
*** 103,112 **** --- 103,118 ---- int ciSymbol::utf8_length() { GUARDED_VM_ENTRY(return get_symbol()->utf8_length();) } // ------------------------------------------------------------------ + // ciSymbol::is_Q_signature + bool ciSymbol::is_Q_signature() { + GUARDED_VM_ENTRY(return get_symbol()->is_Q_signature();) + } + + // ------------------------------------------------------------------ // ciSymbol::print_impl // // Implementation of the print method void ciSymbol::print_impl(outputStream* st) { st->print(" value=");
< prev index next >