gcc/libjava/gij.cc
Bryce McKinlay 2dc55bc99f Makefile.am: New friends for java/lang/Thread.h.
* Makefile.am: New friends for java/lang/Thread.h.
	* prims.cc (runFirst): Removed.
	(JvRunMain): Merged into _Jv_RunMain. Now just calls that.
	(_Jv_RunMain): Now takes either a klass or class name parameter.
	Create a gnu.gcj.runtime.FirstThread and attach the native thread
	to that, then run it using _Jv_ThreadRun. Remove special handling of
	jar files, instead pass is_jar parameter through to FirstThread.
	* gcj/javaprims.h: Add prototypes for _Jv_ThreadRun and new variant
	of _Jv_AttachCurrentThread.
	* gnu/gcj/runtime/FirstThread.java (FirstThread): Now extends Thread.
	(run): New method. Take care of looking up main class manifest
	attribute and calling forName if neccessary. Then call call_main.
	(call_main): New native method.
	* gnu/gcj/runtime/natFirstThread.cc (call_main): New function, code
	relocated from prims.cc. Look up and call main method.
	* java/lang/Thread.java (run_): Removed.
	* java/lang/natThread.cc (run_): Renamed to...
	(_Jv_ThreadRun): this. JVMPI notification code moved to ...
	(_Jv_NotifyThreadStart): here. New function.
	(countStackFrames, destroy, resume, suspend, stop): Throw
	UnsupportedOperationExceptions rather than JvFail'ing.
	(_Jv_AttachCurrentThread): New variant takes a Thread argument.
	Existing version wraps new variant.

From-SVN: r45182
2001-08-26 12:30:09 +01:00

141 lines
3.6 KiB
C++

/* Copyright (C) 1999, 2000, 2001 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
/* Author: Kresten Krab Thorup <krab@gnu.org> */
#include <config.h>
#include <jvm.h>
#include <gcj/cni.h>
#include <java-props.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <java/lang/System.h>
#include <java/util/Properties.h>
static void
help ()
{
printf ("Usage: gij [OPTION] ... CLASS [ARGS] ...\n");
printf (" to interpret Java bytecodes, or\n");
printf (" gij -jar [OPTION] ... JARFILE [ARGS] ...\n");
printf (" to execute a jar file\n\n");
printf (" -DVAR=VAL define property VAR with value VAL\n");
printf (" --help print this help, then exit\n");
printf (" --ms=NUMBER set initial heap size\n");
printf (" --mx=NUMBER set maximum heap size\n");
printf (" --version print version number, then exit\n");
printf ("\nSee http://gcc.gnu.org/java/ for information on reporting bugs\n");
exit (0);
}
static void
version ()
{
printf ("gij (GNU libgcj) version %s\n\n", VERSION);
printf ("Copyright (C) 2001 Free Software Foundation.\n");
printf ("This is free software; see the source for copying conditions. There is NO\n");
printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n");
exit (0);
}
int
main (int argc, const char **argv)
{
/* We rearrange ARGV so that all the -D options appear near the
beginning. */
int last_D_option = 0;
bool jar_mode = false;
int i;
for (i = 1; i < argc; ++i)
{
const char *arg = argv[i];
/* A non-option stops processing. */
if (arg[0] != '-')
break;
/* A "--" stops processing. */
if (! strcmp (arg, "--"))
{
++i;
break;
}
if (! strncmp (arg, "-D", 2))
{
argv[last_D_option++] = arg + 2;
continue;
}
if (! strcmp (arg, "-jar"))
{
jar_mode = true;
continue;
}
/* Allow both single or double hyphen for all remaining
options. */
if (arg[1] == '-')
++arg;
if (! strcmp (arg, "-help"))
help ();
else if (! strcmp (arg, "-version"))
version ();
/* FIXME: use getopt and avoid the ugliness here.
We at least need to handle the argument in a better way. */
else if (! strncmp (arg, "-ms=", 4))
_Jv_SetInitialHeapSize (arg + 4);
else if (! strcmp (arg, "-ms"))
{
if (i >= argc - 1)
{
no_arg:
fprintf (stderr, "gij: option requires an argument -- `%s'\n",
argv[i]);
fprintf (stderr, "Try `gij --help' for more information.\n");
exit (1);
}
_Jv_SetInitialHeapSize (argv[++i]);
}
else if (! strncmp (arg, "-mx=", 4))
_Jv_SetMaximumHeapSize (arg + 4);
else if (! strcmp (arg, "-mx"))
{
if (i >= argc - 1)
goto no_arg;
_Jv_SetMaximumHeapSize (argv[++i]);
}
else
{
fprintf (stderr, "gij: unrecognized option -- `%s'\n", argv[i]);
fprintf (stderr, "Try `gij --help' for more information.\n");
exit (1);
}
}
argv[last_D_option] = NULL;
_Jv_Compiler_Properties = argv;
if (argc - i < 1)
{
fprintf (stderr, "Usage: gij [OPTION] ... CLASS [ARGS] ...\n");
fprintf (stderr, " to interpret Java bytecodes, or\n");
fprintf (stderr, " gij -jar [OPTION] ... JARFILE [ARGS] ...\n");
fprintf (stderr, " to execute a jar file\n");
fprintf (stderr, "Try `gij --help' for more information.\n");
exit (1);
}
_Jv_RunMain (NULL, argv[i], argc - i, argv + i, jar_mode);
}