1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename vmintegration.info
@settitle GNU Classpath VM Integration Guide
@c %**end of header
@setchapternewpage none
@ifinfo
This file contains important information you will need to know if you
are going to write an interface between GNU Classpath and a Virtual
Machine.
Copyright (C) 1998-2002 Free Software Foundation, Inc.
@end ifinfo
@titlepage
@title GNU Classpath VM Integration Guide
@author John Keiser
@author C. Brian Jones
@author Mark Wielaard
@page
@vskip 0pt plus 1filll
Copyright @copyright{} 1998-2002 Free Software Foundation, Inc.
@sp 2
Permission is granted to make and distribute verbatim copies of
this document provided the copyright notice and this permission notice
are preserved on all copies.
Permission is granted to copy and distribute modified versions of this
document under the conditions for verbatim copying, provided that the
entire resulting derived work is distributed under the terms of a
permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions,
except that this permission notice may be stated in a translation
approved by the Free Software Foundation.
@end titlepage
@ifinfo
@node Top, Introduction, (dir), (dir)
@top GNU Classpath Hacker's Guide
This file contains important information you will need to know if you
are going to write an interface between GNU Classpath and a Virtual
Machine.
This document is incomplete, as we are still in alpha with the interface.
@end ifinfo
@menu
* Introduction:: An introduction to the Classpath project
* Initialization:: Initializing the classes
* Classpath Hooks:: Hooks from Classpath to the VM
* VM Hooks:: Hooks from the underlying VM to Classpath
@end menu
@node Introduction, Initialization, Top, Top
@comment node-name, next, previous, up
@chapter Introduction
The Classpath Project's ambition to be a 100% clean room implementation
of the standard Java class libraries cannot be fulfilled without some
level of integration with the Virtual Machine, the underlying machinery
that actually runs Java.
There are several VMs out there, here is a small list.
@itemize @bullet
@item @uref{http://www.japhar.org,Japhar}
Japhar was the first VM to use GNU Classpath. Today you can see that
sort of relationship in the source tree which denotes several Japhar
specific files as a reference implementation of those pieces. This VM
has been primarily tested against Linux and lacks garbage collections, a
JIT, and suffers recently from slow development.
@item @uref{http://www.intel.com/research/mrl/orp/,Intel's Open Runtime Platform}
Intel surprised us not long ago with the release of this rather advanced
VM that uses GNU Classpath for a set of class libraries and works on
Linux and Windows 2000.
@item @uref{http://www.sablevm.org/,SableVM}
The goal of this project is to build an efficient Java virtual machine
in C for the GNU/Linux operating system. SableVM implements the Java
virtual machine specification, second edition, and like the Intel VM
includes a special version of the GNU Classpath libraries.
@item @uref{http://www.kaffe.org,Kaffe}
Kaffe is an advanced VM and together with its own class libraries
provides a Java 1.1 compatible environment.
@item @uref{http://www.mozilla.org/projects/ef,Electrical Fire}
The Electrical File VM continues to be listed as a Mozilla project
though development has been somewhat quiet. A number of concepts from
EF were expected at one point to be rolled into Japhar, but that
development has not occured as of yet.
@item @uref{http://latte.snu.ac.kr/,LaTTe}
This VM project so far supports only Sun UltraSparc processors using the
proprietary Solaris 2.5.1 or higher operating system. LaTTe was derived
from Kaffe but claims a number of improvements.
@item @uref{http://gcc.gnu.org/java/,GNU Compiler for Java (GCJ)}
This is a portable, optimizing, ahead-of-time compiler for the Java
Programming Language. It can compile Java source code directly to native
machine code, Java source code to Java bytecode (class files), and Java
bytecode to native machine code. Compiled applications are linked with the
GCJ runtime, libgcj which is based on the GNU Classpath code, which provides
the core class libraries, a garbage collector, and a bytecode interpreter.
libgcj can dynamically load and interpret class files, resulting in mixed
compiled/interpreted applications.
GCJ is part of the GNU Compiler Collection (@uref{http://gcc.gnu.org/,GCC}).
On march 6 2000 the libgcj and GNU Classpath projects were officially merged
and there is active work on merging all the classes between the projects.
@item @uref{http://kissme.sourceforge.net/,Kissme}
This is a free Java Virtual Machine that is being developed on GNU/Linux
and can run console java applications. kissme also provides support for
orthogonally persistent java.
@end itemize
In the past integration efforts were focused mainly on Japhar with an eye
towards getting Electrical Fire to work. Most information contained in
this document is gleaned from these efforts. Recently more work has been
done on getting gcj, orp and kissme to work out of the box with GNU Classpath
but there is much to do before that becomes a reality.
@node Initialization, Classpath Hooks, Introduction, Top
@comment node-name, next, previous, up
@chapter Initialization
The order of initialization, as far as I can tell, doesn't matter just
yet. However, when we move to 1.2 support, it probably will matter, so
we'll have a note in here at that time.
The current initialization order is currently documented in the
Runtime.java source file.
@node Classpath Hooks, VM Hooks, Initialization, Top
@comment node-name, next, previous, up
@chapter Classpath Hooks
Several core classes must be implemented by the VM for Classpath to
work. These classes are:
@itemize @bullet
@item java.lang.Class
@item java.lang.Runtime
@item java.lang.Thread
@item java.lang.reflect.Constructor
@item java.lang.reflect.Method
@item java.lang.reflect.Field
@end itemize
You also need to implement some helper classes in java.lang that classes
from Classpath call out to to get certain VM-specific dirty work done:
@itemize @bullet
@item java.lang.VMObject
is the bridge between the low level Object facilities such
as makeing a clone, getting the class of the object and the wait/notify
semantics.
@item java.lang.VMClassLoader
provides methods for defining and resolving core and primitive classes.
@item java.lang.VMSystem
is used to initialize the System properties, the System.arraycopy
method and the identityHashCode of an Object.
@item java.lang.VMSecurityManager
provides the class context (stack trace) of the currently
executing thread and a way to get the currently active ClassLoader.
@item java.lang.VMThrowable
used to hold the VM state of a throwable, created when a Throwable is
created or the fillInStacktrace() method is called, when the actual stack
trace is needed (a lot of exceptions are never actually used), the
getStackTrace() method is used to create a real StackTraceElement array
for the exception.
@end itemize
Some of the classes you implement for the VM will need to call back to
package-private methods in Classpath:
@itemize @bullet
@item java.lang.ThreadGroup.addThread(Thread)
Call this method from Thread when a new Thread is created, to add it to
the group.
@item java.lang.ThreadGroup.removeThread(Thread)
Call this method from Thread when a Thread is stopped or destroyed.
@end itemize
@node VM Hooks, , Classpath Hooks, Top
@comment node-name, next, previous, up
@chapter VM Hooks
VMs need to do some dirty work; there are some things in the VM that
unfortunately are dependent on the internal structure of various
classes. This is a guide to all of the things the VM itself needs to
know about classes.
@itemize @bullet
@item java.lang.Class @*
You, the VM, get to create this Class, so you may define the internal
structure any way you wish. You probably have code somewhere to
translate your internal class structure into a Class object. That is
the only known place where this matters. Some VMs do not create the
Class object at the point where the class is defined; instead, they wait
until a Class object is actually used.
@item Array Classes @*
When you are creating an array class, you should set the ClassLoader of
the array class to the ClassLoader of its component type. Whenever you
add a class to a ClassLoader, you need to notify the ClassLoader and
add the new Class to its internal cache of classes. To do this, call
ClassLoader.addVMCreatedClass(Class). @emph{Note: this is written in
anticipation of 1.2 support and does not apply just yet.}
@item Primordial Class Loader @*
When the primordial class loader loads a class, it needs to tell
Classpath what it has done in order for security stuff to work right.
To do this, call the static method
ClassLoader.newPrimordialClass(Class).
Even the first few core classes need to do this; in order to do it,
simply call this method @emph{after} the initial class loading has been
done. No harm will come, as long as you follow the guidelines in the
@pxref{Initialization} section.
@emph{Note: this is written in anticipation of 1.2 support and does not
apply just yet.}
@item Top-level Exception Handler @*
Exceptions take care of themselves in Classpath; all you need to do in
the top-level exception handler is call Throwable.printStackTrace().
@item Security and Traces @*
There will eventually be a feature in the 1.2 security that keeps the
AccessController from having to evaluate @emph{all} of the
ProtectionDomains every time a security check is made. I think a common
case is a single method doing a lot of things that require security
checks. However, I don't want to bog down the method stack too much, so
this feature of the VM will have the AccessController for a thread
calling out to the VM to tell it how high it was on the stack when it
made the last security request. Every time the stack goes lower than
that number, the VM will decrement the number. The AccessController
will remember what the accumulated protection status was at every stack
level (an AccessControlContext) and use that aggregated information to
do the check. I am not sure, however, whether the savings are
substantial enough to outweigh the integer check and set after every
method call. I will investigate.
@item Threading @*
I figured I'd put this here because a VM guy might be wondering about it.
We implement ThreadGroup, but that class is almost entirely
VM-independent. The root ThreadGroup, a static field called
ThreadGroup.root, should be initialized by Classpath, but if you wish to
reinitialize it yourself, there should be no harm.
@end itemize
@bye
|