blob: 1f7ee9ec5a814a2dea4be41f19a5527ac12f1bfc [file] [log] [blame]
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +00001/*
2 * Copyright (c) 1994, 2000, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26/*
27 * Link foreign methods. This first half of this file contains the
28 * machine independent dynamic linking routines.
29 * See "BUILD_PLATFORM"/java/lang/linker_md.c to see
30 * the implementation of this shared dynamic linking
31 * interface.
32 *
33 * NOTE - source in this file is POSIX.1 compliant, host
34 * specific code lives in the platform specific
35 * code tree.
36 */
37
38#include "jni.h"
39#include "jni_util.h"
40#include "jvm.h"
41
42#include "java_lang_Runtime.h"
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010043#include "JNIHelp.h"
44
45#define NATIVE_METHOD(className, functionName, signature) \
46{ #functionName, signature, (void*)(className ## _ ## functionName) }
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000047
48JNIEXPORT jlong JNICALL
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010049Runtime_freeMemory(JNIEnv *env, jobject this)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000050{
51 return JVM_FreeMemory();
52}
53
54JNIEXPORT jlong JNICALL
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010055Runtime_totalMemory(JNIEnv *env, jobject this)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000056{
57 return JVM_TotalMemory();
58}
59
60JNIEXPORT jlong JNICALL
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010061Runtime_maxMemory(JNIEnv *env, jobject this)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000062{
63 return JVM_MaxMemory();
64}
65
66JNIEXPORT void JNICALL
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010067Runtime_gc(JNIEnv *env, jobject this)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000068{
69 JVM_GC();
70}
71
72JNIEXPORT void JNICALL
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010073Runtime_nativeExit(JNIEnv *env, jclass this, jint status)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000074{
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010075 JVM_Exit(status);
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000076}
77
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010078JNIEXPORT jstring JNICALL
79Runtime_nativeLoad(JNIEnv* env, jclass ignored, jstring javaFilename, jobject javaLoader,
Dimitry Ivanovb1dfc872015-12-10 20:58:03 -080080 jstring javaLibrarySearchPath, jstring javaLibraryPermittedPath)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000081{
Dimitry Ivanovb1dfc872015-12-10 20:58:03 -080082 return JVM_NativeLoad(env, javaFilename, javaLoader,
83 javaLibrarySearchPath, javaLibraryPermittedPath);
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000084}
85
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010086static JNINativeMethod gMethods[] = {
Przemyslaw Szczepaniak9a35a0c2015-09-28 16:24:00 +010087 NATIVE_METHOD(Runtime, freeMemory, "!()J"),
88 NATIVE_METHOD(Runtime, totalMemory, "!()J"),
89 NATIVE_METHOD(Runtime, maxMemory, "!()J"),
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010090 NATIVE_METHOD(Runtime, gc, "()V"),
91 NATIVE_METHOD(Runtime, nativeExit, "(I)V"),
Dimitry Ivanovb1dfc872015-12-10 20:58:03 -080092 NATIVE_METHOD(Runtime, nativeLoad,
93 "(Ljava/lang/String;Ljava/lang/ClassLoader;Ljava/lang/String;Ljava/lang/String;)"
94 "Ljava/lang/String;"),
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010095};
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000096
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010097void register_java_lang_Runtime(JNIEnv* env) {
98 jniRegisterNativeMethods(env, "java/lang/Runtime", gMethods, NELEM(gMethods));
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000099}