blob: ad734fd9b265ab5120f40312a56f583946603ae7 [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
Steven Morelandcab01ac2017-07-18 16:18:36 -070042#include <nativehelper/JNIHelp.h>
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010043
Igor Murashkinfa5b5652017-02-16 15:49:18 -080044#include "nativehelper/jni_macros.h"
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000045
46JNIEXPORT jlong JNICALL
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010047Runtime_freeMemory(JNIEnv *env, jobject this)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000048{
49 return JVM_FreeMemory();
50}
51
52JNIEXPORT jlong JNICALL
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010053Runtime_totalMemory(JNIEnv *env, jobject this)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000054{
55 return JVM_TotalMemory();
56}
57
58JNIEXPORT jlong JNICALL
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010059Runtime_maxMemory(JNIEnv *env, jobject this)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000060{
61 return JVM_MaxMemory();
62}
63
64JNIEXPORT void JNICALL
Pete Gillin84803a42018-02-15 17:11:19 +000065Runtime_nativeGc(JNIEnv *env, jobject this)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000066{
67 JVM_GC();
68}
69
70JNIEXPORT void JNICALL
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010071Runtime_nativeExit(JNIEnv *env, jclass this, jint status)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000072{
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010073 JVM_Exit(status);
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000074}
75
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010076JNIEXPORT jstring JNICALL
Dimitry Ivanov68858c92016-02-24 11:33:47 -080077Runtime_nativeLoad(JNIEnv* env, jclass ignored, jstring javaFilename,
Andreas Gampe8dff75b2017-12-28 16:52:34 -080078 jobject javaLoader)
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000079{
Andreas Gampe8dff75b2017-12-28 16:52:34 -080080 return JVM_NativeLoad(env, javaFilename, javaLoader);
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000081}
82
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010083static JNINativeMethod gMethods[] = {
Igor Murashkinfa5b5652017-02-16 15:49:18 -080084 FAST_NATIVE_METHOD(Runtime, freeMemory, "()J"),
85 FAST_NATIVE_METHOD(Runtime, totalMemory, "()J"),
86 FAST_NATIVE_METHOD(Runtime, maxMemory, "()J"),
Pete Gillin84803a42018-02-15 17:11:19 +000087 NATIVE_METHOD(Runtime, nativeGc, "()V"),
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010088 NATIVE_METHOD(Runtime, nativeExit, "(I)V"),
Dimitry Ivanovb1dfc872015-12-10 20:58:03 -080089 NATIVE_METHOD(Runtime, nativeLoad,
Andreas Gampe8dff75b2017-12-28 16:52:34 -080090 "(Ljava/lang/String;Ljava/lang/ClassLoader;)"
Dimitry Ivanovb1dfc872015-12-10 20:58:03 -080091 "Ljava/lang/String;"),
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010092};
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000093
Piotr Jastrzebskide626ec2015-05-19 12:16:00 +010094void register_java_lang_Runtime(JNIEnv* env) {
95 jniRegisterNativeMethods(env, "java/lang/Runtime", gMethods, NELEM(gMethods));
Piotr Jastrzebski51b1b692015-02-16 15:01:09 +000096}