Path: blob/master/src/hotspot/share/oops/constantPool.inline.hpp
40951 views
/*1* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_OOPS_CONSTANTPOOL_INLINE_HPP25#define SHARE_OOPS_CONSTANTPOOL_INLINE_HPP2627#include "oops/constantPool.hpp"2829#include "oops/cpCache.inline.hpp"30#include "runtime/atomic.hpp"3132inline CPSlot ConstantPool::slot_at(int which) const {33assert(is_within_bounds(which), "index out of bounds");34assert(!tag_at(which).is_unresolved_klass() && !tag_at(which).is_unresolved_klass_in_error(), "Corrupted constant pool");35// Uses volatile because the klass slot changes without a lock.36intptr_t adr = Atomic::load_acquire(obj_at_addr(which));37assert(adr != 0 || which == 0, "cp entry for klass should not be zero");38return CPSlot(adr);39}4041inline Klass* ConstantPool::resolved_klass_at(int which) const { // Used by Compiler42guarantee(tag_at(which).is_klass(), "Corrupted constant pool");43// Must do an acquire here in case another thread resolved the klass44// behind our back, lest we later load stale values thru the oop.45CPKlassSlot kslot = klass_slot_at(which);46assert(tag_at(kslot.name_index()).is_symbol(), "sanity");4748Klass** adr = resolved_klasses()->adr_at(kslot.resolved_klass_index());49return Atomic::load_acquire(adr);50}5152#endif // SHARE_OOPS_CONSTANTPOOL_INLINE_HPP535455