src/share/vm/ci/ciField.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/ci/ciField.hpp	Fri Aug 12 04:58:46 2011
--- new/src/share/vm/ci/ciField.hpp	Fri Aug 12 04:58:46 2011

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 1999, 2011, 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.
*** 176,185 **** --- 176,187 ---- bool is_static () { return flags().is_static(); } bool is_final () { return flags().is_final(); } bool is_volatile () { return flags().is_volatile(); } bool is_transient () { return flags().is_transient(); } + bool is_call_site_target() { return ((holder() == CURRENT_ENV->CallSite_klass()) && (name() == ciSymbol::target_name())); } + // Debugging output void print(); void print_name_on(outputStream* st); };

src/share/vm/ci/ciField.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File