1999-04-07 16:42:40 +02:00
|
|
|
// javaprims.h - Main external header file for libgcj. -*- c++ -*-
|
|
|
|
|
2000-03-07 20:55:28 +01:00
|
|
|
/* Copyright (C) 1998, 1999 Free Software Foundation
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
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. */
|
|
|
|
|
|
|
|
#ifndef __JAVAPRIMS_H__
|
|
|
|
#define __JAVAPRIMS_H__
|
|
|
|
|
1999-08-12 19:31:34 +02:00
|
|
|
// FIXME: this is a hack until we get a proper gcjh.
|
|
|
|
// It is needed to work around system header files that define TRUE
|
|
|
|
// and FALSE.
|
|
|
|
#undef TRUE
|
|
|
|
#define TRUE TRUE
|
|
|
|
#undef FALSE
|
|
|
|
#define FALSE FALSE
|
|
|
|
|
1999-04-07 16:42:40 +02:00
|
|
|
// To force selection of correct types that will mangle consistently
|
|
|
|
// across platforms.
|
|
|
|
extern "Java"
|
|
|
|
{
|
|
|
|
typedef __java_byte jbyte;
|
|
|
|
typedef __java_short jshort;
|
|
|
|
typedef __java_int jint;
|
|
|
|
typedef __java_long jlong;
|
|
|
|
typedef __java_float jfloat;
|
|
|
|
typedef __java_double jdouble;
|
|
|
|
typedef __java_char jchar;
|
|
|
|
typedef __java_boolean jboolean;
|
|
|
|
typedef jint jsize;
|
|
|
|
|
|
|
|
// The following class declarations are automatically generated by
|
|
|
|
// the `classes.pl' script.
|
|
|
|
namespace java
|
|
|
|
{
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
class BufferedInputStream;
|
|
|
|
class BufferedOutputStream;
|
|
|
|
class BufferedReader;
|
|
|
|
class BufferedWriter;
|
|
|
|
class ByteArrayInputStream;
|
|
|
|
class ByteArrayOutputStream;
|
|
|
|
class CharArrayReader;
|
|
|
|
class CharArrayWriter;
|
|
|
|
class CharConversionException;
|
|
|
|
class DataInput;
|
|
|
|
class DataInputStream;
|
|
|
|
class DataOutput;
|
|
|
|
class DataOutputStream;
|
|
|
|
class EOFException;
|
|
|
|
class File;
|
|
|
|
class FileDescriptor;
|
|
|
|
class FileInputStream;
|
|
|
|
class FileNotFoundException;
|
|
|
|
class FileOutputStream;
|
|
|
|
class FileReader;
|
|
|
|
class FileWriter;
|
|
|
|
class FilenameFilter;
|
|
|
|
class FilterInputStream;
|
|
|
|
class FilterOutputStream;
|
|
|
|
class FilterReader;
|
|
|
|
class FilterWriter;
|
|
|
|
class IOException;
|
|
|
|
class InputStream;
|
|
|
|
class InputStreamReader;
|
|
|
|
class InterruptedIOException;
|
|
|
|
class LineNumberInputStream;
|
|
|
|
class LineNumberReader;
|
|
|
|
class OutputStream;
|
|
|
|
class OutputStreamWriter;
|
|
|
|
class PipedInputStream;
|
|
|
|
class PipedOutputStream;
|
|
|
|
class PipedReader;
|
|
|
|
class PipedWriter;
|
|
|
|
class PrintStream;
|
|
|
|
class PrintWriter;
|
|
|
|
class PushbackInputStream;
|
|
|
|
class PushbackReader;
|
|
|
|
class RandomAccessFile;
|
|
|
|
class Reader;
|
|
|
|
class SequenceInputStream;
|
|
|
|
class Serializable;
|
|
|
|
class StreamTokenizer;
|
|
|
|
class StringBufferInputStream;
|
|
|
|
class StringReader;
|
|
|
|
class StringWriter;
|
|
|
|
class SyncFailedException;
|
|
|
|
class UTFDataFormatException;
|
|
|
|
class UnsupportedEncodingException;
|
|
|
|
class Writer;
|
1999-09-11 00:03:10 +02:00
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
namespace lang
|
|
|
|
{
|
|
|
|
class AbstractMethodError;
|
|
|
|
class ArithmeticException;
|
|
|
|
class ArrayIndexOutOfBoundsException;
|
|
|
|
class ArrayStoreException;
|
|
|
|
class Boolean;
|
|
|
|
class Byte;
|
|
|
|
class Character;
|
|
|
|
class Class;
|
|
|
|
class ClassCastException;
|
|
|
|
class ClassCircularityError;
|
|
|
|
class ClassFormatError;
|
|
|
|
class ClassLoader;
|
|
|
|
class ClassNotFoundException;
|
|
|
|
class CloneNotSupportedException;
|
|
|
|
class Cloneable;
|
|
|
|
class Comparable;
|
|
|
|
class Compiler;
|
1999-05-12 13:23:44 +02:00
|
|
|
class ConcreteProcess;
|
1999-04-07 16:42:40 +02:00
|
|
|
class Double;
|
|
|
|
class Error;
|
|
|
|
class Exception;
|
|
|
|
class ExceptionInInitializerError;
|
|
|
|
class Float;
|
|
|
|
class IllegalAccessError;
|
|
|
|
class IllegalAccessException;
|
|
|
|
class IllegalArgumentException;
|
|
|
|
class IllegalMonitorStateException;
|
|
|
|
class IllegalStateException;
|
|
|
|
class IllegalThreadStateException;
|
|
|
|
class IncompatibleClassChangeError;
|
|
|
|
class IndexOutOfBoundsException;
|
|
|
|
class InstantiationError;
|
|
|
|
class InstantiationException;
|
|
|
|
class Integer;
|
|
|
|
class InternalError;
|
|
|
|
class InterruptedException;
|
|
|
|
class LinkageError;
|
|
|
|
class Long;
|
|
|
|
class Math;
|
|
|
|
class NegativeArraySizeException;
|
|
|
|
class NoClassDefFoundError;
|
|
|
|
class NoSuchFieldError;
|
|
|
|
class NoSuchFieldException;
|
|
|
|
class NoSuchMethodError;
|
|
|
|
class NoSuchMethodException;
|
|
|
|
class NullPointerException;
|
|
|
|
class Number;
|
|
|
|
class NumberFormatException;
|
|
|
|
class Object;
|
|
|
|
class OutOfMemoryError;
|
|
|
|
class Process;
|
|
|
|
class Runnable;
|
|
|
|
class Runtime;
|
|
|
|
class RuntimeException;
|
|
|
|
class SecurityException;
|
|
|
|
class SecurityManager;
|
|
|
|
class Short;
|
|
|
|
class StackOverflowError;
|
|
|
|
class String;
|
|
|
|
class StringBuffer;
|
|
|
|
class StringIndexOutOfBoundsException;
|
|
|
|
class System;
|
|
|
|
class Thread;
|
|
|
|
class ThreadDeath;
|
|
|
|
class ThreadGroup;
|
|
|
|
class Throwable;
|
|
|
|
class UnknownError;
|
|
|
|
class UnsatisfiedLinkError;
|
|
|
|
class UnsupportedOperationException;
|
|
|
|
class VerifyError;
|
|
|
|
class VirtualMachineError;
|
|
|
|
class Void;
|
|
|
|
namespace reflect
|
|
|
|
{
|
|
|
|
class AccessibleObject;
|
|
|
|
class Array;
|
|
|
|
class Constructor;
|
|
|
|
class Field;
|
|
|
|
class InvocationTargetException;
|
|
|
|
class Member;
|
|
|
|
class Method;
|
|
|
|
class Modifier;
|
1999-09-11 00:03:10 +02:00
|
|
|
}
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
|
|
|
|
namespace util
|
|
|
|
{
|
|
|
|
class BitSet;
|
|
|
|
class Calendar;
|
|
|
|
class ConcurrentModificationException;
|
|
|
|
class Date;
|
|
|
|
class Dictionary;
|
|
|
|
class EmptyStackException;
|
|
|
|
class Enumeration;
|
|
|
|
class EventListener;
|
|
|
|
class EventObject;
|
|
|
|
class GregorianCalendar;
|
|
|
|
class Hashtable;
|
|
|
|
class HashtableEntry;
|
|
|
|
class HashtableEnumeration;
|
|
|
|
class ListResourceBundle;
|
|
|
|
class Locale;
|
|
|
|
class MissingResourceException;
|
|
|
|
class NoSuchElementException;
|
|
|
|
class Observable;
|
|
|
|
class Observer;
|
|
|
|
class Properties;
|
1999-05-12 13:23:44 +02:00
|
|
|
class PropertyResourceBundle;
|
1999-04-07 16:42:40 +02:00
|
|
|
class Random;
|
|
|
|
class ResourceBundle;
|
|
|
|
class SimpleTimeZone;
|
|
|
|
class Stack;
|
|
|
|
class StringTokenizer;
|
|
|
|
class TimeZone;
|
|
|
|
class TooManyListenersException;
|
|
|
|
class Vector;
|
|
|
|
class VectorEnumeration;
|
1999-08-18 18:34:28 +02:00
|
|
|
namespace jar
|
|
|
|
{
|
|
|
|
class JarEntry;
|
|
|
|
class JarFile;
|
|
|
|
class JarInputStream;
|
1999-09-11 00:03:10 +02:00
|
|
|
}
|
1999-08-18 18:34:28 +02:00
|
|
|
|
1999-04-07 16:42:40 +02:00
|
|
|
namespace zip
|
|
|
|
{
|
|
|
|
class Adler32;
|
|
|
|
class CRC32;
|
1999-05-18 17:33:03 +02:00
|
|
|
class CheckedInputStream;
|
|
|
|
class CheckedOutputStream;
|
1999-04-07 16:42:40 +02:00
|
|
|
class Checksum;
|
1999-05-18 17:33:03 +02:00
|
|
|
class DataFormatException;
|
1999-04-07 16:42:40 +02:00
|
|
|
class Deflater;
|
|
|
|
class DeflaterOutputStream;
|
1999-05-18 17:33:03 +02:00
|
|
|
class GZIPInputStream;
|
|
|
|
class GZIPOutputStream;
|
|
|
|
class Inflater;
|
1999-05-12 13:23:44 +02:00
|
|
|
class InflaterInputStream;
|
1999-04-07 16:42:40 +02:00
|
|
|
class ZipConstants;
|
|
|
|
class ZipEntry;
|
|
|
|
class ZipEnumeration;
|
|
|
|
class ZipException;
|
|
|
|
class ZipFile;
|
1999-05-12 13:23:44 +02:00
|
|
|
class ZipInputStream;
|
1999-04-07 16:42:40 +02:00
|
|
|
class ZipOutputStream;
|
1999-09-11 00:03:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-04-07 16:42:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct java::lang::Object* jobject;
|
|
|
|
typedef class java::lang::Class* jclass;
|
|
|
|
typedef class java::lang::Throwable* jthrowable;
|
|
|
|
typedef class java::lang::String* jstring;
|
|
|
|
struct _Jv_JNIEnv;
|
|
|
|
|
|
|
|
typedef struct _Jv_Field *jfieldID;
|
|
|
|
typedef struct _Jv_Method *jmethodID;
|
|
|
|
|
1999-12-06 07:33:56 +01:00
|
|
|
extern "C" jobject _Jv_AllocObject (jclass, jint) __attribute__((__malloc__));
|
1999-04-07 16:42:40 +02:00
|
|
|
extern "C" jboolean _Jv_IsInstanceOf(jobject, jclass);
|
1999-12-06 07:33:56 +01:00
|
|
|
extern "C" jstring _Jv_AllocString(jsize) __attribute__((__malloc__));
|
|
|
|
extern "C" jstring _Jv_NewString (const jchar*, jsize)
|
|
|
|
__attribute__((__malloc__));
|
1999-04-07 16:42:40 +02:00
|
|
|
extern "C" jchar* _Jv_GetStringChars (jstring str);
|
|
|
|
extern "C" jint _Jv_MonitorEnter (jobject);
|
|
|
|
extern "C" jint _Jv_MonitorExit (jobject);
|
1999-12-06 07:33:56 +01:00
|
|
|
extern "C" jstring _Jv_NewStringLatin1(const char*, jsize)
|
|
|
|
__attribute__((__malloc__));
|
1999-04-07 16:42:40 +02:00
|
|
|
extern "C" jsize _Jv_GetStringUTFLength (jstring);
|
|
|
|
extern "C" jsize _Jv_GetStringUTFRegion (jstring, jsize, jsize, char *);
|
|
|
|
|
|
|
|
extern "C" void _Jv_Throw (void *) __attribute__ ((__noreturn__));
|
1999-11-19 20:13:42 +01:00
|
|
|
extern "C" void _Jv_Sjlj_Throw (void *) __attribute__ ((__noreturn__));
|
1999-12-06 07:33:56 +01:00
|
|
|
extern "C" void* _Jv_Malloc (jsize) __attribute__((__malloc__));
|
resolve.cc (_Jv_SearchMethodInClass): New function.
2000-03-07 Bryce McKinlay <bryce@albatross.co.nz>
* resolve.cc (_Jv_SearchMethodInClass): New function.
(_Jv_ResolvePoolEntry): Search superinterfaces for interface
methods.
* java/lang/Class.h (_Jv_SearchMethodInClass): New prototype.
2000-03-07 Bryce McKinlay <bryce@albatross.co.nz>
* java/lang/Class.h (union _Jv_IDispatchTable): New declaration.
(struct _Jv_ifaces): New declaration.
JV_CLASS: New macro definition.
(getComponentType): Relocate below isArray() for inlining.
(getModifiers): Declare `inline'.
(getSuperclass): Ditto.
(isArray): Ditto.
(isPrimitive): Ditto.
(_Jv_IsAssignableFrom): New prototype.
(_Jv_LookupInterfaceMethodIdx): New prototype. Predeclare with "C"
linkage.
(_Jv_InitClass): Move from natClass.cc. Declare `inline'.
Check for JV_STATE_DONE before invoking initializeClass().
(_Jv_PrepareConstantTimeTables): New prototype.
(_Jv_GetInterfaces): Ditto.
(_Jv_GenerateITable): Ditto.
(_Jv_GetMethodString): Ditto.
(_Jv_AppendPartialITable): Ditto.
(_Jv_FindIIndex): Ditto.
depth, ancestors, idt: New class fields.
* java/lang/natClass.cc (isAssignableFrom): Move functionality to
inline function `_Jv_IsAssignableFrom'. Use that function.
(isInstance): Declare `inline'.
(initializeClass): Get lock on class before checking `state'. Unlock
before calling resolveClass0. Call _Jv_PrepareConstantTimeTables
with the lock held.
(_Jv_LookupInterfaceMethod): Use _Jv_GetMessageString.
(_Jv_IsAssignableFrom): New inline function. Test assignability
using class->depth and ancestor table.
(_Jv_IsInstanceOf): Use _Jv_IsAssignableFrom.
(_Jv_CheckCast): Move from prims.cc. Use JV_CLASS and
_Jv_IsAssignableFrom.
(_Jv_CheckArrayStore): Ditto.
(_Jv_LookupInterfaceMethodIdx): New function.
INITIAL_IOFFSETS_LEN, INITIAL_IFACES_LEN: New #defines.
(_Jv_PrepareConstantTimeTables): New function.
(_Jv_IndexOf): Ditto.
(_Jv_GetInterfaces): Ditto.
(_Jv_GenerateITable): Ditto.
(_Jv_GetMethodString): Ditto.
(_Jv_AppendPartialITable): Ditto.
iindex_mutex, iindex_mutex_initialized: New static fields.
(_Jv_FindIIndex): New function.
* java/lang/natClassLoader.cc (_Jv_NewClass): Set new jclass fields.
* prims.cc (_Jv_CheckCast): Moved to natClass.cc.
(_Jv_CheckArrayStore): Ditto.
(JvNewCharArray, JvNewBooleanArray, JvNewByteArray, JvNewShortArray,
JvNewIntArray, JvNewLongArray, JvNewFloatArray, JvNewDoubleArray):
Moved to gcj/array.h.
(_Jv_Realloc): New function.
* gcj/cni.h: Move _Jv_PrimClass definitions to gcj/array.h.
* gcj/array.h: _Jv_PrimClass definitions moved from gcj/cni.h.
(JvNewCharArray, JvNewBooleanArray, JvNewByteArray,
JvNewShortArray, JvNewIntArray, JvNewLongArray, JvNewFloatArray,
JvNewDoubleArray): Implementations moved from prims.cc and
declared `inline'.
* gcj/javaprims.h (_Jv_Realloc): Prototype.
* include/jvm.h (_Jv_LookupInterfaceMethodIdx): Prototype.
From-SVN: r32382
2000-03-07 10:52:56 +01:00
|
|
|
extern "C" void* _Jv_Realloc (void *, jsize);
|
1999-04-07 16:42:40 +02:00
|
|
|
extern "C" void _Jv_Free (void*);
|
|
|
|
|
|
|
|
typedef unsigned short _Jv_ushort __attribute__((__mode__(__HI__)));
|
|
|
|
typedef unsigned int _Jv_uint __attribute__((__mode__(__SI__)));
|
|
|
|
|
[multiple changes]
Mon Aug 9 18:33:38 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* Makefile: Rebuilt.
* Makefile.am (toolexeclibdir): Add $(MULTISUBDIR) even for native
builds.
* java/net/natPlainSocketImpl.cc: Include <sys/select.h> only if
present.
* configure: Rebuilt.
* configure.in: Properly align --help output, fix capitalization
and punctuation.
* acinclude.m4: Likewise.
1999-08-09 Kresten Krab Thorup <krab@gnu.org>
* include/javaprims.h (_Jv_word, _Jv_word2): New types.
* include/java-interp.h (_Jv_InterpMethodInvocation): Use _Jv_word.
(_Jv_callInterpretedMethod): Unused. Remove.
(_Jv_InterpMethod::run,run_normal,run_synch_object,run_synch_class):
Use ffi_raw.
* include/java-cpool.h (_Jv_get, _Jv_put): Remove.
(_Jv_{store,load}{Indexes,Int,Float,Long,Double}): Use _Jv_word.
* boehm.cc (_Jv_MarkObj): Use _Jv_word.
* interpret.cc: use _Jv_word.
* defineclass.cc: use_Jv_word.
* resolve.cc: Use _Jv_word.
(_Jv_ResolvePoolEntry): Return _Jv_word.
* java/lang/Class.h (_Jv_Constants): Use _Jv_word for cpool.
* java/lang/natClassLoader.cc (_Jv_InternClassStrings): Use _Jv_word.
* interpret.cc (gnu::gcj::runtime::MethodInvocation::continue1):
Change comment.
From-SVN: r28641
1999-08-10 07:32:23 +02:00
|
|
|
typedef union {
|
|
|
|
jobject o;
|
|
|
|
jint i; // Also stores smaller integral types.
|
|
|
|
jfloat f;
|
|
|
|
jint ia[1]; // Half of _Jv_word2.
|
|
|
|
void* p;
|
|
|
|
|
[multiple changes]
2000-03-26 Tom Tromey <tromey@cygnus.com>
* java/lang/mprec.h: Use SIZEOF_VOID_P.
* interpret.cc: Use SIZEOF_VOID_P.
* include/java-cpool.h (_Jv_storeLong): Use SIZEOF_VOID_P.
(_Jv_loadLong): Likewise.
(_Jv_storeDouble): Likewise.
* configure: Rebuilt.
* configure.in: Check size of void*.
* resolve.cc (ncode): Use FFI_PREP_RAW_CLOSURE and FFI_RAW_SIZE.
2000-03-26 Hans Boehm <boehm@acm.org>
* include/java-cpool.h (_Jv_storeLong, _Jv_loadLong,
_Jv_storeDouble, _Jv_loadDouble): Define differently on 64 bit
machine.
* java/lang/ieeefp.h: Define __IEEE_BIG_ENDIAN or
__IEEE_LITTLE_ENDIAN appropriately on IA64.
* java/lang/mprec.h: Don't define Pack_32 on 64 bit machine.
* javaprims.h (_Jv_word): Added `l' and `d' entries in 64 bit
case.
* resolve.cc (FFI_PREP_RAW_CLOSURE): New define.
(FFI_RAW_SIZE): Likewise.
(_Jv_InterpMethod::ncode): Use them.
* interpret.cc (PUSHL, PUSHD, POPL, POPD, LOADL, LOADD, STOREL,
STORED): Define differently on a 64 bit machine.
(continue1): Use ffi_java_raw_call when appropriate.
From-SVN: r32754
2000-03-26 22:33:04 +02:00
|
|
|
// We use __LP64__ and not SIZEOF_VOID_P here because we want
|
|
|
|
// something that will be predefined by the compiler. FIXME -- this
|
|
|
|
// definition probably shouldn't appear here anyway.
|
|
|
|
#ifdef __LP64__
|
|
|
|
// We can safely put a long or a double in here without increasing
|
|
|
|
// the size of _Jv_Word; we take advantage of this in the interpreter.
|
|
|
|
jlong l;
|
|
|
|
jdouble d;
|
|
|
|
#endif
|
|
|
|
|
[multiple changes]
Mon Aug 9 18:33:38 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* Makefile: Rebuilt.
* Makefile.am (toolexeclibdir): Add $(MULTISUBDIR) even for native
builds.
* java/net/natPlainSocketImpl.cc: Include <sys/select.h> only if
present.
* configure: Rebuilt.
* configure.in: Properly align --help output, fix capitalization
and punctuation.
* acinclude.m4: Likewise.
1999-08-09 Kresten Krab Thorup <krab@gnu.org>
* include/javaprims.h (_Jv_word, _Jv_word2): New types.
* include/java-interp.h (_Jv_InterpMethodInvocation): Use _Jv_word.
(_Jv_callInterpretedMethod): Unused. Remove.
(_Jv_InterpMethod::run,run_normal,run_synch_object,run_synch_class):
Use ffi_raw.
* include/java-cpool.h (_Jv_get, _Jv_put): Remove.
(_Jv_{store,load}{Indexes,Int,Float,Long,Double}): Use _Jv_word.
* boehm.cc (_Jv_MarkObj): Use _Jv_word.
* interpret.cc: use _Jv_word.
* defineclass.cc: use_Jv_word.
* resolve.cc: Use _Jv_word.
(_Jv_ResolvePoolEntry): Return _Jv_word.
* java/lang/Class.h (_Jv_Constants): Use _Jv_word for cpool.
* java/lang/natClassLoader.cc (_Jv_InternClassStrings): Use _Jv_word.
* interpret.cc (gnu::gcj::runtime::MethodInvocation::continue1):
Change comment.
From-SVN: r28641
1999-08-10 07:32:23 +02:00
|
|
|
jclass clazz;
|
|
|
|
jstring string;
|
|
|
|
struct _Jv_Field *field;
|
|
|
|
struct _Jv_Utf8Const *utf8;
|
|
|
|
struct _Jv_ResolvedMethod *rmethod;
|
|
|
|
} _Jv_word;
|
|
|
|
|
|
|
|
typedef union {
|
|
|
|
jint ia[2];
|
|
|
|
jlong l;
|
|
|
|
jdouble d;
|
|
|
|
} _Jv_word2;
|
|
|
|
|
1999-04-07 16:42:40 +02:00
|
|
|
struct _Jv_Utf8Const
|
|
|
|
{
|
|
|
|
_Jv_ushort hash;
|
|
|
|
_Jv_ushort length; /* In bytes, of data portion, without final '\0'. */
|
|
|
|
char data[1]; /* In Utf8 format, with final '\0'. */
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __JAVAPRIMS_H__ */
|