home *** CD-ROM | disk | FTP | other *** search
- kaffe-0.5p4-nx3, 17.07.96
-
- This is the third release of kaffe-0.5pl4 with NEXTSTEP patches.
-
- Changes in nx3 compared to nx1:
-
- * NEXTSTEP/m68k support by Ralf E. Stranzenbach <ralf@reswi.ruhr.de>
- * threading bug fix by Thomas Katzlberger <katzlbt@vuse.vanderbilt.edu>
-
-
- kaffe is a JIT and interpreting virtual machine to run Java(tm) code:
-
- "This is Kaffe, a virtual machine design to execute Java bytecode.
- This machine can be configured in two modes. In one mode it operates as
- a pure bytecode interpreter (not unlike Javasoft's machine); in the second
- mode if performs "just-in-time" code conversion from the abstract code to
- the host machine's native code. This will ultimately allow execution of
- Java code at the same speed as standard compiled code but while maintaining
- the advantages and flexibility of code independence."
-
-
- kaffe 0.5pl4 comes with support for NEXTSTEP (i386 and sparc), but the
- support is broken. This distribution includes fixes that hopefully will be
- incorporated in the next general kaffe release. See below for the patches
- applied to the p4 source distribution.
-
- The Intel version can be compiled as interpreter or JIT (just-in-time
- compiler, faster!), the SPARC and the m68k port currently only supports interpreter mode. I'm still hoping that somebody volunteers for an HPPA
- port!
-
- kaffe's primary site is ftp://ftp.sarc.city.ac.uk/pub/kaffe. There's also a
- WWW page on kaffe: http://www.sarc.city.ac.uk/~tim/kaffe
-
-
- COMPILATION:
-
- To compile kaffe, you need GNU make. With the patch applied, compilation
- should be rather straightforward (configure; make; make install).
-
-
- INSTALLATION:
-
- Verbose instructions can be found in the source distribution. The binary
- distribution are intended to be unpacked in /usr. They will populate
- the /usr/local tree (/usr/local/bin, /usr/local/lib and
- /usr/local/share/kaffe). Finally, you have to set the environment variables
- CLASSPATH and KAFFEHOME. If you did install in /usr/local, this whould be
-
- CLASSPATH=.:/usr/local/share/kaffe/classes.zip
- KAFFEHOME=/usr/local/share/kaffe
-
-
- NOTES and KNOWN BUGS:
-
- Starting with nx3, the i386 JIT port seems to be quite useable. All examples
- in test that I tried did work; I managed to start and run W3C's jigsaw WWW
- server.
-
- The sparc and the m68k port run fine with all tests I tried, but they fail
- to run jigsaw yet.
-
- kaffe tends to terminate the calling shell in certain circumstances. AFAIK
- this only affects sh and csh, but not zsh. This is a general bug in 0.5p4.
-
- The dynamic loading of libraries is currently disabled for NEXTSTEP. You'll
- have to recompile kaffe for things like sawt.
-
- I'm now going to try and compile sawt (Free, simple AWT clone) for NEXTSTEP
- and X11.
-
-
- Gregor Hoffleit <flight@mathi.uni-heidelberg.de>
-
-
-
-
-
-
- %%%
- %%% patch for kaffe-0.5p4 and NEXTSTEP 3.3 (i386 and sparc, m68k)
- %%% patch release kaffe-0.5p4-nx3
- %%%
- %%% - unpack
- %%% - patch -p <...
- %%% - ./configure
- %%% - gmake
-
- %%% Release status:
- %%% - NEXTSTEP executables statically linked
- %%% - javac,javadoc are not executable
- %%% - W3C's jigsaw server works with kaffe and NEXTSTEP/i386!
-
- %%% Changes in nx3:
- %%% - threading bug fix in kaffevm/threadCalls.c by
- %%% Thomas Katzlberger <katzlbt@vuse.vanderbilt.edu>
- %%% Changes in nx2:
- %%% - added NEXTSTEP/m68k port by Ralf E. Stranzenbach <ralf@reswi.ruhr.de>
- %%% - fixed a typo in kaffevm/threadCalls.c
-
-
-
- diff -urN /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/kaffevm/jit/funcs.c ./kaffevm/jit/funcs.c
- --- /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/kaffevm/jit/funcs.c Sat Jul 20 05:33:30 1996
- +++ ./kaffevm/jit/funcs.c Fri Sep 6 10:58:47 1996
- @@ -27,7 +27,11 @@
- extern int isStatic;
- extern nativecode* CODEPC;
-
- +#ifdef NeXT
- +#define define_insn(n, i) void i(sequence* s)
- +#else
- #define define_insn(n, i) void i##(sequence* s)
- +#endif
-
- #define OUT (*CODEPC++)
-
- diff -urN /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/lib/native/java.io/File.c ./lib/native/java.io/File.c
- --- /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/lib/native/java.io/File.c Fri Aug 16 15:14:01 1996
- +++ ./lib/native/java.io/File.c Fri Sep 6 12:13:53 1996
- @@ -33,6 +33,9 @@
- # if defined(HAVE_NDIR_H)
- # include <ndir.h>
- # endif
- +# if defined(NeXT)
- +# include <sys/dir.h>
- +# endif
- #endif
- /* This may nolonger be necessary */
- #if defined(HAVE_DIR_H)
-
- diff -urN /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/kaffevm/threadCalls.c ./kaffevm/threadCalls.c
- --- /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/kaffevm/threadCalls.c Wed Aug 21 22:17:59 1996
- +++ ./kaffevm/threadCalls.c Wed Sep 11 19:49:44 1996
- @@ -95,7 +95,7 @@
- int
- threadedFileDescriptor(int fd)
- {
- -#if !defined(NO_READ_THEADING) && !defined(NO_WRITE_THREADING)
- +#if !defined(NO_READ_THREADING) && !defined(NO_WRITE_THREADING)
- int r;
- int on = 1;
- int pid;
- @@ -216,7 +216,7 @@
- int r;
-
- for (;;) {
- -#if defined(NO_READ_THREADING)
- +#if !defined(NO_READ_THREADING)
- blockOnFile(fd, TH_READ);
- #endif
- r = read(fd, buf, len);
- @@ -240,7 +240,7 @@
-
- ptr = buf;
- do {
- -#if defined(NO_WRITE_THREADING)
- +#if !defined(NO_WRITE_THREADING)
- blockOnFile(fd, TH_WRITE);
- #endif
- r = write(fd, ptr, len);
-
-
- %%%
- %%% NEXTSTEP m68k port by Ralf E. Stranzenbach <ralf@reswi.ruhr.de>.
- %%%
-
-
- diff -urN /private/tmp/O_kaffe-0_5p4/kaffe-0.5p4/config/m68k/nextstep3/md.c ./config/m68k/nextstep3/md.c
- --- /private/tmp/O_kaffe-0_5p4/kaffe-0.5p4/config/m68k/nextstep3/md.c Thu Jan 1 01:00:00 1970
- +++ ./config/m68k/nextstep3/md.c Fri Sep 6 16:23:06 1996
- @@ -0,0 +1,12 @@
- +/*
- + * m68k/nextstep3/md.c
- + * NEXTSTEP m68k specific functions.
- + *
- + * Copyright (c) 1996 Systems Architecture Research Centre,
- + * City University, London, UK.
- + *
- + * See the file "license.terms" for information on usage and redistribution
- + * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- + *
- + * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, May 1996.
- + */
- diff -urN /private/tmp/O_kaffe-0_5p4/kaffe-0.5p4/config/m68k/nextstep3/md.h ./config/m68k/nextstep3/md.h
- --- /private/tmp/O_kaffe-0_5p4/kaffe-0.5p4/config/m68k/nextstep3/md.h Thu Jan 1 01:00:00 1970
- +++ ./config/m68k/nextstep3/md.h Wed Sep 11 19:33:57 1996
- @@ -0,0 +1,54 @@
- +/*
- + * m68k/nextstep3/md.h
- + * NEXTSTEP m68k specific functions.
- + *
- + * Copyright (c) 1996 Matthias Hopf <mshopf@informatik.uni-erlangen.de>
- + *
- + * Permission granted for Tim Wilkinson to include this source in his
- + * Kaffe system, Copyright (c) 1996 Systems Architecture Research Centre,
- + * City University, London, UK.
- + *
- + * See the file "license.terms" for information on usage and redistribution
- + * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- + */
- +
- +#ifndef __m68k_nextstep3_md_h
- +#define __m68k_nextstep3_md_h
- +
- +
- +#include "m68k/nextstep3/threads.h"
- +
- +#if 0
- +#undef THREADINFO
- +/* we should use StackSwap instead of native code, but that would be too complicated and extra overhead... */
- +#define THREADINFO(ee) \
- + do { \
- + int stacksize; \
- + M68K_THREADINFO (ee); \
- + (ee)->stackBase = FindTask(NULL)->tc_SPLower; /* not NULL on Amiga!!! This is the absolute minimum stack base of this task! */ \
- + stacksize = (ee)->stackEnd - (ee)->stackBase; \
- + if (stacksize < threadStackSize) \
- + { \
- + fprintf (stderr, "stack size too low - stack left (%d) < stack needed (%d)\n", stacksize, threadStackSize); \
- + exit (20); \
- + } \
- + } while (0)
- +
- +#undef THREADSWITCH
- +/* we *should* surround this with Forbid()/Permit() (Task struct stack consistency), but overhead is too high. */
- +#define THREADSWITCH(to, from) \
- + do { \
- + struct Task *task; /* perhaps this should be saved in ctx */ \
- + task = FindTask (NULL); /* write stack information into system structures */ \
- + task->tc_SPLower = (to)->stackBase; \
- + task->tc_SPUpper = (to)->stackEnd; \
- +DBG( printf ("setting task stack info from %x to %x\n", (to)->stackBase, (to)->stackEnd); ) \
- + M68K_THREADSWITCH(to, from); \
- + } while (0)
- +#endif
- +
- +#if defined(TRANSLATOR)
- +#include "m68k/jit-md.h"
- +#endif
- +
- +#endif
- diff -urN /private/tmp/O_kaffe-0_5p4/kaffe-0.5p4/config/m68k/nextstep3/threads.h ./config/m68k/nextstep3/threads.h
- --- /private/tmp/O_kaffe-0_5p4/kaffe-0.5p4/config/m68k/nextstep3/threads.h Thu Jan 1 01:00:00 1970
- +++ ./config/m68k/nextstep3/threads.h Wed Sep 11 19:34:14 1996
- @@ -0,0 +1,107 @@
- +/*
- + * m68k/threads.h
- + * m68k thread handling.
- + *
- + * Copyright (c) 1996 Matthias Hopf <mshopf@informatik.uni-erlangen.de>
- + *
- + * Permission granted for Tim Wilkinson to include this source in his
- + * Kaffe system, Copyright (c) 1996 Systems Architecture Research Centre,
- + * City University, London, UK.
- + *
- + * See the file "license.terms" for information on usage and redistribution
- + * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- + */
- +
- +#ifndef __m68k_threads_h
- +#define __m68k_threads_h
- +
- +/**/
- +/* Thread handling */
- +/**/
- +
- +/* NOTE! a6 is asumed to be the frame pointer (only for frame counting). */
- +
- +/*
- + * Stack of waiting thread:
- + * + 64... Thread stack
- + * + 60 pc (return address)
- + * + 56 a6 (frame pointer) (56=14*4)
- + * + 52 a5
- + * ...
- + * + 32 a0
- + * ...
- + * + 4 d0
- + * SPReg + 0 d0
- + */
- +
- +#define USE_INTERNAL_THREADS
- +
- +#define THREADSTACKSIZE (32 * 1024)
- +
- +#define M68K_THREADSWITCH(to, from) \
- + asm(" \
- + pea _1:l \n\
- + movml d0-d7/a0-a6, a7@- \n\
- + movel a7, %0@ \n\
- + movel %1, a7 \n\
- + movml a7@+,d0-d7/a0-a6 \n\
- + rts \n\
- + _1: "\
- + : : "a" (&from->restorePoint), "a" (to->restorePoint))
- +
- +#define M68K_THREADINIT(to, func) \
- + asm(" \
- + moveq #0, d0 \n\
- + movel %2, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- \n\
- + movel d0, %0@- "\
- + : "=a" (to->restorePoint) : "0" (to->stackEnd), "g" (func) : "d0", "d1")
- +
- +#define M68K_THREADINFO(ee) \
- + do { \
- + void** ptr; \
- + int i; \
- + asm("movel a6, %0" : "=r" (ptr)); \
- + for (i = 0; i != 2; i++) { \
- + ptr = (void**)*ptr; \
- + } \
- + (ee)->restorePoint = 0; \
- + (ee)->stackBase = NULL; \
- + (ee)->stackEnd = (void*)ptr; \
- + } while(0)
- +
- +#define M68K_THREADFRAMES(tid, cnt) \
- + do { \
- + void** ptr; \
- + cnt = 0; \
- + if (tid == currentThread) { \
- + asm("movel a6,%0" : "=r" (ptr));\
- + } \
- + else { \
- + ptr = ((void***)tid->PrivateInfo->restorePoint)[13];\
- + } \
- + while (*ptr != 0) { \
- + cnt++; \
- + ptr = (void**)*ptr; \
- + } \
- + } while (0)
- +
- +#define THREADSWITCH(to, from) M68K_THREADSWITCH(to, from)
- +#define THREADINIT(to, func) M68K_THREADINIT(to, func)
- +#define THREADINFO(ee) M68K_THREADINFO(ee)
- +#define THREADFRAMES(tid,cnt) M68K_THREADFRAMES(tid, cnt)
- +
- +#endif
- diff -urN /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/configure ./configure
- --- /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/configure Thu Sep 5 09:59:55 1996
- +++ ./configure Fri Sep 6 11:38:46 1996
- @@ -705,6 +705,13 @@
- VPATHSEP=" "
- ;;
-
- +m68k-nextstep3)
- + host_cpu=m68k
- + host_os=nextstep3
- + KAFFEVMFLAGS=-DNO_SHARED_LIBRARIES
- + NOSHAREDLIBS="-L../lib/native -L../lib/net -lkaffe_native -lkaffe_net"
- + ;;
- +
-
- *)
- { echo "configure: error: Configuration $host_cpu-$host_os not supported" 1>&2; exit 1; }
- diff -urN /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/configure.in ./configure.in
- --- /tmp/O_1_kaffe-0_5p4/kaffe-0.5p4/configure.in Sat Aug 31 01:00:32 1996
- +++ ./configure.in Fri Sep 6 11:35:23 1996
- @@ -193,6 +193,13 @@
- VPATHSEP=" "
- ;;
-
- +m68k-nextstep3)
- + host_cpu=m68k
- + host_os=nextstep3
- + KAFFEVMFLAGS=-DNO_SHARED_LIBRARIES
- + NOSHAREDLIBS="-L../lib/native -L../lib/net -lkaffe_native -lkaffe_net"
- + ;;
- +
- dnl =======================================================================
- dnl = End of configurations
- dnl =======================================================================
-