hotspot/src/share/vm/prims/jvm_misc.hpp
author ysr
Thu, 03 Dec 2009 15:01:57 -0800
changeset 4461 c17c526d36ef
parent 3261 c7d5aae8d3f7
child 5547 f4b087cbb361
permissions -rw-r--r--
6906727: UseCompressedOops: some card-marking fixes related to object arrays Summary: Introduced a new write_ref_array(HeapWords* start, size_t count) method that does the requisite MemRegion range calculation so (some of the) clients of the erstwhile write_ref_array(MemRegion mr) do not need to worry. This removed all external uses of array_size(), which was also simplified and made private. Asserts were added to catch other possible issues. Further, less essential, fixes stemming from this investigation are deferred to CR 6904516 (to follow shortly in hs17). Reviewed-by: kvn, coleenp, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2269
diff changeset
     2
 * Copyright 1998-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// Useful entry points shared by JNI and JVM interface.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// We do not allow real JNI or JVM entry point to call each other.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
jclass find_class_from_class_loader(JNIEnv* env, symbolHandle name, jboolean init, Handle loader, Handle protection_domain, jboolean throwError, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
2269
ee9da33d43ab 6603316: Improve instrumentation for classes loaded at startup
acorn
parents: 1
diff changeset
    30
void trace_class_resolution(klassOop to_class);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
 * Support for Serialization and RMI. Currently used by HotSpot only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
void JNICALL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
JVM_SetPrimitiveFieldValues(JNIEnv *env, jclass cb, jobject obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
                            jlongArray fieldIDs, jcharArray typecodes, jbyteArray data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
void JNICALL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
JVM_GetPrimitiveFieldValues(JNIEnv *env, jclass cb, jobject obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
                            jlongArray fieldIDs, jcharArray typecodes, jbyteArray data);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
 * Support for -Xcheck:jni
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
extern struct JNINativeInterface_* jni_functions_nocheck();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
extern struct JNINativeInterface_* jni_functions_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
 * Support for swappable jni function table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
extern struct JNINativeInterface_* jni_functions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
extern void copy_jni_function_table(const struct JNINativeInterface_* new_function_table);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// Support for fast JNI accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  typedef jboolean (JNICALL *GetBooleanField_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      (JNIEnv *env, jobject obj, jfieldID fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  typedef jbyte (JNICALL *GetByteField_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
      (JNIEnv *env, jobject obj, jfieldID fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  typedef jchar (JNICALL *GetCharField_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      (JNIEnv *env, jobject obj, jfieldID fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  typedef jshort (JNICALL *GetShortField_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      (JNIEnv *env, jobject obj, jfieldID fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  typedef jint (JNICALL *GetIntField_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      (JNIEnv *env, jobject obj, jfieldID fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  typedef jlong (JNICALL *GetLongField_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      (JNIEnv *env, jobject obj, jfieldID fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  typedef jfloat (JNICALL *GetFloatField_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      (JNIEnv *env, jobject obj, jfieldID fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  typedef jdouble (JNICALL *GetDoubleField_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    (JNIEnv *env, jobject obj, jfieldID fieldID);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
void    quicken_jni_functions();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
address jni_GetBooleanField_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
address jni_GetByteField_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
address jni_GetCharField_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
address jni_GetShortField_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
address jni_GetIntField_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
address jni_GetLongField_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
address jni_GetFloatField_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
address jni_GetDoubleField_addr();