src/share/vm/prims/jni.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2009, 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) 1997, 2010, 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.
*** 20,31 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! # include "incls/_precompiled.incl" ! # include "incls/_jni.cpp.incl" static jint CurrentVersion = JNI_VERSION_1_6; // The DT_RETURN_MARK macros create a scoped object to fire the dtrace --- 20,95 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #include "precompiled.hpp" ! #include "classfile/classLoader.hpp" ! #include "classfile/javaClasses.hpp" ! #include "classfile/symbolTable.hpp" ! #include "classfile/systemDictionary.hpp" ! #include "classfile/vmSymbols.hpp" ! #include "interpreter/linkResolver.hpp" ! #include "memory/allocation.inline.hpp" ! #include "memory/gcLocker.inline.hpp" ! #include "memory/oopFactory.hpp" ! #include "memory/universe.inline.hpp" ! #include "oops/instanceKlass.hpp" ! #include "oops/instanceOop.hpp" ! #include "oops/markOop.hpp" ! #include "oops/methodOop.hpp" ! #include "oops/objArrayKlass.hpp" ! #include "oops/objArrayOop.hpp" ! #include "oops/oop.inline.hpp" ! #include "oops/symbolOop.hpp" ! #include "oops/typeArrayKlass.hpp" ! #include "oops/typeArrayOop.hpp" ! #include "prims/jni.h" ! #include "prims/jniCheck.hpp" ! #include "prims/jniFastGetField.hpp" ! #include "prims/jvm.h" ! #include "prims/jvm_misc.hpp" ! #include "prims/jvmtiExport.hpp" ! #include "prims/jvmtiThreadState.hpp" ! #include "runtime/compilationPolicy.hpp" ! #include "runtime/fieldDescriptor.hpp" ! #include "runtime/fprofiler.hpp" ! #include "runtime/handles.inline.hpp" ! #include "runtime/interfaceSupport.hpp" ! #include "runtime/java.hpp" ! #include "runtime/javaCalls.hpp" ! #include "runtime/jfieldIDWorkaround.hpp" ! #include "runtime/reflection.hpp" ! #include "runtime/sharedRuntime.hpp" ! #include "runtime/signature.hpp" ! #include "runtime/vm_operations.hpp" ! #include "services/runtimeService.hpp" ! #include "utilities/defaultStream.hpp" ! #include "utilities/dtrace.hpp" ! #include "utilities/events.hpp" ! #include "utilities/histogram.hpp" ! #ifdef TARGET_ARCH_x86 ! # include "jniTypes_x86.hpp" ! #endif ! #ifdef TARGET_ARCH_sparc ! # include "jniTypes_sparc.hpp" ! #endif ! #ifdef TARGET_ARCH_zero ! # include "jniTypes_zero.hpp" ! #endif ! #ifdef TARGET_OS_FAMILY_linux ! # include "os_linux.inline.hpp" ! # include "thread_linux.inline.hpp" ! #endif ! #ifdef TARGET_OS_FAMILY_solaris ! # include "os_solaris.inline.hpp" ! # include "thread_solaris.inline.hpp" ! #endif ! #ifdef TARGET_OS_FAMILY_windows ! # include "os_windows.inline.hpp" ! # include "thread_windows.inline.hpp" ! #endif static jint CurrentVersion = JNI_VERSION_1_6; // The DT_RETURN_MARK macros create a scoped object to fire the dtrace