src/share/vm/ci/ciCPCache.cpp

Wed, 06 Jan 2010 14:22:39 -0800

author
never
date
Wed, 06 Jan 2010 14:22:39 -0800
changeset 1577
4ce7240d622c
parent 1573
dd57230ba8fe
child 1730
3cf667df43ef
permissions
-rw-r--r--

6914300: ciEnv should export all well known classes
Reviewed-by: kvn, twisti

twisti@1572 1 /*
twisti@1572 2 * Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
twisti@1572 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
twisti@1572 4 *
twisti@1572 5 * This code is free software; you can redistribute it and/or modify it
twisti@1572 6 * under the terms of the GNU General Public License version 2 only, as
twisti@1572 7 * published by the Free Software Foundation.
twisti@1572 8 *
twisti@1572 9 * This code is distributed in the hope that it will be useful, but WITHOUT
twisti@1572 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
twisti@1572 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
twisti@1572 12 * version 2 for more details (a copy is included in the LICENSE file that
twisti@1572 13 * accompanied this code).
twisti@1572 14 *
twisti@1572 15 * You should have received a copy of the GNU General Public License version
twisti@1572 16 * 2 along with this work; if not, write to the Free Software Foundation,
twisti@1572 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
twisti@1572 18 *
twisti@1572 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
twisti@1572 20 * CA 95054 USA or visit www.sun.com if you need additional information or
twisti@1572 21 * have any questions.
twisti@1572 22 *
twisti@1572 23 */
twisti@1572 24
twisti@1572 25 #include "incls/_precompiled.incl"
twisti@1572 26 #include "incls/_ciCPCache.cpp.incl"
twisti@1572 27
twisti@1572 28 // ciCPCache
twisti@1572 29
twisti@1572 30 // ------------------------------------------------------------------
twisti@1572 31 // ciCPCache::get_f1_offset
twisti@1572 32 size_t ciCPCache::get_f1_offset(int index) {
twisti@1572 33 // Calculate the offset from the constantPoolCacheOop to the f1
twisti@1572 34 // field.
twisti@1572 35 ByteSize f1_offset =
twisti@1572 36 constantPoolCacheOopDesc::entry_offset(index) +
twisti@1572 37 ConstantPoolCacheEntry::f1_offset();
twisti@1572 38
twisti@1572 39 return in_bytes(f1_offset);
twisti@1572 40 }
twisti@1572 41
twisti@1573 42
twisti@1572 43 // ------------------------------------------------------------------
twisti@1572 44 // ciCPCache::print
twisti@1572 45 //
twisti@1572 46 // Print debugging information about the cache.
twisti@1572 47 void ciCPCache::print() {
twisti@1572 48 Unimplemented();
twisti@1572 49 }

mercurial