source: branches/generic-class-file/abcl/src/org/armedbear/lisp/jvm-class-file.lisp @ 12885

Last change on this file since 12885 was 12885, checked in by ehuelsmann, 13 years ago

Move byte-sequence writing routines to jvm-class-file.lisp.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 49.2 KB
Line 
1;;; jvm-class-file.lisp
2;;;
3;;; Copyright (C) 2010 Erik Huelsmann
4;;; $Id: jvm-class-file.lisp 12885 2010-08-09 15:16:05Z ehuelsmann $
5;;;
6;;; This program is free software; you can redistribute it and/or
7;;; modify it under the terms of the GNU General Public License
8;;; as published by the Free Software Foundation; either version 2
9;;; of the License, or (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with this program; if not, write to the Free Software
18;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19;;;
20;;; As a special exception, the copyright holders of this library give you
21;;; permission to link this library with independent modules to produce an
22;;; executable, regardless of the license terms of these independent
23;;; modules, and to copy and distribute the resulting executable under
24;;; terms of your choice, provided that you also meet, for each linked
25;;; independent module, the terms and conditions of the license of that
26;;; module.  An independent module is a module which is not derived from
27;;; or based on this library.  If you modify this library, you may extend
28;;; this exception to your version of the library, but you are not
29;;; obligated to do so.  If you do not wish to do so, delete this
30;;; exception statement from your version.
31
32(in-package "JVM")
33
34#|
35
36The general design of the class-file writer is to have generic
37- human readable - representations of the class being generated
38during the construction and manipulation phases.
39
40After completing the creation/manipulation of the class, all its
41components will be finalized. This process translates readable
42(e.g. string) representations to indices to be stored on disc.
43
44The only thing to be done after finalization is sending the
45output to a stream ("writing").
46
47
48Finalization happens highest-level first. As an example, take a
49method with exception handlers. The exception handlers are stored
50as attributes in the class file structure. They are children of the
51method's Code attribute. In this example, the body of the Code
52attribute (the higher level) gets finalized before the attributes.
53The reason to do so is that the exceptions need to refer to labels
54(offsets) in the Code segment.
55
56
57|#
58
59
60(defun map-primitive-type (type)
61  "Maps a symbolic primitive type name to its Java string representation."
62  (case type
63    (:int        "I")
64    (:long       "J")
65    (:float      "F")
66    (:double     "D")
67    (:boolean    "Z")
68    (:char       "C")
69    (:byte       "B")
70    (:short      "S")
71    ((nil :void) "V")))
72
73
74#|
75
76The `class-name' facility helps to abstract from "this instruction takes
77a reference" and "this instruction takes a class name". We simply pass
78the class name around and the instructions themselves know which
79representation to use.
80
81|#
82
83(defstruct (class-name (:conc-name class-)
84                       (:constructor %make-class-name))
85  "Used for class identification.
86
87The caller should instantiate only one `class-name' per class, as they are
88used as class identifiers and compared using EQ.
89
90Some instructions need a class argument, others need a reference identifier.
91This class is used to abstract from the difference."
92  name-internal
93  ref
94  array-class ;; cached array class reference
95  ;; keeping a reference to the associated array class allows class
96  ;; name comparisons to be EQ: all classes should exist only once,
97  )
98
99(defun make-class-name (name)
100  "Creates a `class-name' structure for the class or interface `name'.
101
102`name' should be specified using Java representation, which is converted
103to 'internal' (JVM) representation by this function."
104  (setf name (substitute #\/ #\. name))
105  (%make-class-name :name-internal name
106                    :ref (concatenate 'string "L" name ";")))
107
108(defun class-array (class-name)
109  "Returns a class-name representing an array of `class-name'.
110For multi-dimensional arrays, call this function multiple times, using
111its own result.
112
113This function can be called multiple times on the same `class-name' without
114violating the 'only one instance' requirement: the returned value is cached
115and used on successive calls."
116  (unless (class-array-class class-name)
117    ;; Alessio Stalla found by dumping a class file that the JVM uses
118    ;; the same representation (ie '[L<class-name>;') in CHECKCAST as
119    ;; it does in field references, meaning the class name and class ref
120    ;; are identified by the same string
121    (let ((name-and-ref (concatenate 'string "[" (class-ref class-name))))
122      (setf (class-array-class class-name)
123            (%make-class-name :name-internal name-and-ref
124                              :ref name-and-ref))))
125  (class-array-class class-name))
126
127(defmacro define-class-name (symbol java-dotted-name &optional documentation)
128  "Convenience macro to define constants for `class-name' structures,
129initialized from the `java-dotted-name'."
130  `(defconstant ,symbol (make-class-name ,java-dotted-name)
131     ,documentation))
132
133(define-class-name +java-object+ "java.lang.Object")
134(define-class-name +java-string+ "java.lang.String")
135(define-class-name +java-system+ "java.lang.System")
136(define-class-name +lisp-object+ "org.armedbear.lisp.LispObject")
137(defconstant +lisp-object-array+ (class-array +lisp-object+))
138(define-class-name +lisp-simple-string+ "org.armedbear.lisp.SimpleString")
139(define-class-name +lisp+ "org.armedbear.lisp.Lisp")
140(define-class-name +lisp-nil+ "org.armedbear.lisp.Nil")
141(define-class-name +lisp-class+ "org.armedbear.lisp.LispClass")
142(define-class-name +lisp-symbol+ "org.armedbear.lisp.Symbol")
143(define-class-name +lisp-thread+ "org.armedbear.lisp.LispThread")
144(define-class-name +lisp-closure-binding+ "org.armedbear.lisp.ClosureBinding")
145(defconstant +closure-binding-array+ (class-array +lisp-closure-binding+))
146(define-class-name +lisp-integer+ "org.armedbear.lisp.LispInteger")
147(define-class-name +lisp-fixnum+ "org.armedbear.lisp.Fixnum")
148(defconstant +lisp-fixnum-array+ (class-array +lisp-fixnum+))
149(define-class-name +lisp-bignum+ "org.armedbear.lisp.Bignum")
150(define-class-name +lisp-single-float+ "org.armedbear.lisp.SingleFloat")
151(define-class-name +lisp-double-float+ "org.armedbear.lisp.DoubleFloat")
152(define-class-name +lisp-cons+ "org.armedbear.lisp.Cons")
153(define-class-name +lisp-load+ "org.armedbear.lisp.Load")
154(define-class-name +lisp-character+ "org.armedbear.lisp.LispCharacter")
155(defconstant +lisp-character-array+ (class-array +lisp-character+))
156(define-class-name +lisp-structure-object+ "org.armedbear.lisp.StructureObject")
157(define-class-name +lisp-simple-vector+ "org.armedbear.lisp.SimpleVector")
158(define-class-name +lisp-abstract-string+ "org.armedbear.lisp.AbstractString")
159(define-class-name +lisp-abstract-vector+ "org.armedbear.lisp.AbstractVector")
160(define-class-name +lisp-abstract-bit-vector+
161    "org.armedbear.lisp.AbstractBitVector")
162(define-class-name +lisp-environment+ "org.armedbear.lisp.Environment")
163(define-class-name +lisp-special-binding+ "org.armedbear.lisp.SpecialBinding")
164(define-class-name +lisp-special-bindings-mark+
165    "org.armedbear.lisp.SpecialBindingsMark")
166(define-class-name +lisp-throw+ "org.armedbear.lisp.Throw")
167(define-class-name +lisp-return+ "org.armedbear.lisp.Return")
168(define-class-name +lisp-go+ "org.armedbear.lisp.Go")
169(define-class-name +lisp-primitive+ "org.armedbear.lisp.Primitive")
170(define-class-name +lisp-eql-hash-table+ "org.armedbear.lisp.EqlHashTable")
171(define-class-name +lisp-hash-table+ "org.armedbear.lisp.HashTable")
172(define-class-name +lisp-package+ "org.armedbear.lisp.Package")
173(define-class-name +lisp-readtable+ "org.armedbear.lisp.Readtable")
174(define-class-name +lisp-stream+ "org.armedbear.lisp.Stream")
175(define-class-name +lisp-closure+ "org.armedbear.lisp.Closure")
176(define-class-name +lisp-compiled-closure+ "org.armedbear.lisp.CompiledClosure")
177(define-class-name +lisp-closure-parameter+
178    "org.armedbear.lisp.Closure$Parameter")
179(defconstant +lisp-closure-parameter-array+
180  (class-array +lisp-closure-parameter+))
181
182#|
183
184Lisp-side descriptor representation:
185
186 - list: a list starting with a method return value, followed by
187     the argument types
188 - keyword: the primitive type associated with that keyword
189 - class-name structure instance: the class-ref value
190
191The latter two can be converted to a Java representation using
192the `internal-field-ref' function, the former is to be fed to
193`descriptor'.
194
195|#
196
197(defun internal-field-type (field-type)
198  "Returns a string containing the JVM-internal representation
199of `field-type', which should either be a symbol identifying a primitive
200type, or a `class-name' structure identifying a class or interface."
201  (if (symbolp field-type)
202      (map-primitive-type field-type)
203      (class-name-internal field-type)))
204
205(defun internal-field-ref (field-type)
206  "Returns a string containing the JVM-internal representation of a reference
207to `field-type', which should either be a symbol identifying a primitive
208type, or a `class-name' structure identifying a class or interface."
209  (if (symbolp field-type)
210      (map-primitive-type field-type)
211      (class-ref field-type)))
212
213(defun descriptor (return-type &rest argument-types)
214  "Returns a string describing the `return-type' and `argument-types'
215in JVM-internal representation."
216  (let* ((arg-strings (mapcar #'internal-field-ref argument-types))
217         (ret-string (internal-field-ref return-type))
218         (size (+ 2 (reduce #'+ arg-strings
219                            :key #'length
220                            :initial-value (length ret-string))))
221         (str (make-array size :fill-pointer 0 :element-type 'character)))
222    (with-output-to-string (s str)
223      (princ #\( s)
224      (dolist (arg-string arg-strings)
225        (princ arg-string s))
226      (princ #\) s)
227      (princ ret-string s))
228    str)
229;;  (format nil "(~{~A~})~A"
230;;          (internal-field-ref return-type))
231  )
232
233(defun descriptor-stack-effect (return-type &rest argument-types)
234  "Returns the effect on the stack position of the `argument-types' and
235`return-type' of a method call.
236
237If the method consumes an implicit `this' argument, this function does not
238take that effect into account."
239  (flet ((type-stack-effect (arg)
240           (case arg
241             ((:long :double) 2)
242             ((nil :void) 0)
243             (otherwise 1))))
244    (+ (reduce #'- argument-types
245               :key #'type-stack-effect
246               :initial-value 0)
247       (type-stack-effect return-type))))
248
249
250(defstruct pool
251  ;; `index' contains the index of the last allocated slot (0 == empty)
252  ;; "A constant pool entry is considered valid if it has
253  ;; an index greater than 0 (zero) and less than pool-count"
254  (index 0)
255  entries-list
256  ;; the entries hash stores raw values, except in case of string and
257  ;; utf8, because both are string values
258  (entries (make-hash-table :test #'equal :size 2048 :rehash-size 2.0)))
259
260
261(defstruct constant
262  "Structure to be included in all constant sub-types."
263  tag
264  index)
265
266(defparameter +constant-type-map+
267  '((:class          7 1)
268    (:field-ref      9 1)
269    (:method-ref    10 1)
270    ;; (:interface-method-ref 11)
271    (:string         8 1)
272    (:integer        3 1)
273    (:float          4 1)
274    (:long           5 2)
275    (:double         6 2)
276    (:name-and-type 12 1)
277    (:utf8           1 1)))
278
279(defstruct (constant-class (:constructor make-constant-class (index name-index))
280                           (:include constant
281                                     (tag 7)))
282  "Structure holding information on a 'class' type item in the constant pool."
283  name-index)
284
285(defstruct (constant-member-ref (:constructor
286                                 %make-constant-member-ref
287                                     (tag index class-index name/type-index))
288                                (:include constant))
289  "Structure holding information on a member reference type item
290(a field, method or interface method reference) in the constant pool."
291  class-index
292  name/type-index)
293
294(declaim (inline make-constant-field-ref make-constant-method-ref
295                 make-constant-interface-method-ref))
296(defun make-constant-field-ref (index class-index name/type-index)
297  "Creates a `constant-member-ref' instance containing a field reference."
298  (%make-constant-member-ref 9 index class-index name/type-index))
299
300(defun make-constant-method-ref (index class-index name/type-index)
301  "Creates a `constant-member-ref' instance containing a method reference."
302  (%make-constant-member-ref 10 index class-index name/type-index))
303
304(defun make-constant-interface-method-ref (index class-index name/type-index)
305  "Creates a `constant-member-ref' instance containing an
306interface-method reference."
307  (%make-constant-member-ref 11 index class-index name/type-index))
308
309(defstruct (constant-string (:constructor
310                             make-constant-string (index value-index))
311                            (:include constant
312                                      (tag 8)))
313  "Structure holding information on a 'string' type item in the constant pool."
314  value-index)
315
316(defstruct (constant-float/int (:constructor
317                                %make-constant-float/int (tag index value))
318                               (:include constant))
319  "Structure holding information on a 'float' or 'integer' type item
320in the constant pool."
321  value)
322
323(declaim (inline make-constant-float make-constant-int))
324(defun make-constant-float (index value)
325  "Creates a `constant-float/int' structure instance containing a float."
326  (%make-constant-float/int 4 index value))
327
328(defun make-constant-int (index value)
329  "Creates a `constant-float/int' structure instance containing an int."
330  (%make-constant-float/int 3 index value))
331
332(defstruct (constant-double/long (:constructor
333                                  %make-constant-double/long (tag index value))
334                                 (:include constant))
335  "Structure holding information on a 'double' or 'long' type item
336in the constant pool."
337  value)
338
339(declaim (inline make-constant-double make-constant-float))
340(defun make-constant-double (index value)
341  "Creates a `constant-double/long' structure instance containing a double."
342  (%make-constant-double/long 6 index value))
343
344(defun make-constant-long (index value)
345  "Creates a `constant-double/long' structure instance containing a long."
346  (%make-constant-double/long 5 index value))
347
348(defstruct (constant-name/type (:constructor
349                                make-constant-name/type (index
350                                                         name-index
351                                                         descriptor-index))
352                               (:include constant
353                                         (tag 12)))
354  "Structure holding information on a 'name-and-type' type item in the
355constant pool; this type of element is used by 'member-ref' type items."
356  name-index
357  descriptor-index)
358
359(defstruct (constant-utf8 (:constructor make-constant-utf8 (index value))
360                          (:include constant
361                                    (tag 1)))
362  "Structure holding information on a 'utf8' type item in the constant pool;
363
364This type of item is used for text representation of identifiers
365and string contents."
366  value)
367
368
369(defun pool-add-class (pool class)
370  "Returns the index of the constant-pool class item for `class'.
371
372`class' must be an instance of `class-name'."
373  (let ((entry (gethash class (pool-entries pool))))
374    (unless entry
375      (let ((utf8 (pool-add-utf8 pool (class-name-internal class))))
376        (setf entry
377              (make-constant-class (incf (pool-index pool)) utf8)
378              (gethash class (pool-entries pool)) entry))
379      (push entry (pool-entries-list pool)))
380    (constant-index entry)))
381
382(defun pool-add-field-ref (pool class name type)
383  "Returns the index of the constant-pool item which denotes a reference
384to the `name' field of the `class', being of `type'.
385
386`class' should be an instance of `class-name'.
387`name' is a string.
388`type' is a field-type (see `internal-field-type')"
389  (let ((entry (gethash (acons name type class) (pool-entries pool))))
390    (unless entry
391      (let ((c (pool-add-class pool class))
392            (n/t (pool-add-name/type pool name type)))
393        (setf entry (make-constant-field-ref (incf (pool-index pool)) c n/t)
394            (gethash (acons name type class) (pool-entries pool)) entry))
395      (push entry (pool-entries-list pool)))
396    (constant-index entry)))
397
398(defun pool-add-method-ref (pool class name type)
399  "Returns the index of the constant-pool item which denotes a reference
400to the method with `name' in `class', which is of `type'.
401
402Here, `type' is a method descriptor, which defines the argument types
403and return type. `class' is an instance of `class-name'."
404  (let ((entry (gethash (acons name type class) (pool-entries pool))))
405    (unless entry
406      (let ((c (pool-add-class pool class))
407            (n/t (pool-add-name/type pool name type)))
408        (setf entry (make-constant-method-ref (incf (pool-index pool)) c n/t)
409              (gethash (acons name type class) (pool-entries pool)) entry))
410      (push entry (pool-entries-list pool)))
411    (constant-index entry)))
412
413(defun pool-add-interface-method-ref (pool class name type)
414  "Returns the index of the constant-pool item which denotes a reference to
415the method `name' in the interface `class', which is of `type'.
416
417See `pool-add-method-ref' for remarks."
418  (let ((entry (gethash (acons name type class) (pool-entries pool))))
419    (unless entry
420      (let ((c (pool-add-class pool class))
421            (n/t (pool-add-name/type pool name type)))
422        (setf entry
423            (make-constant-interface-method-ref (incf (pool-index pool)) c n/t)
424            (gethash (acons name type class) (pool-entries pool)) entry))
425      (push entry (pool-entries-list pool)))
426    (constant-index entry)))
427
428(defun pool-add-string (pool string)
429  "Returns the index of the constant-pool item denoting the string."
430  (let ((entry (gethash (cons 8 string) ;; 8 == string-tag
431                        (pool-entries pool))))
432    (unless entry
433      (let ((utf8 (pool-add-utf8 pool string)))
434        (setf entry (make-constant-string (incf (pool-index pool)) utf8)
435              (gethash (cons 8 string) (pool-entries pool)) entry))
436      (push entry (pool-entries-list pool)))
437    (constant-index entry)))
438
439(defun pool-add-int (pool int)
440  "Returns the index of the constant-pool item denoting the int."
441  (let ((entry (gethash (cons 3 int) (pool-entries pool))))
442    (unless entry
443      (setf entry (make-constant-int (incf (pool-index pool)) int)
444            (gethash (cons 3 int) (pool-entries pool)) entry)
445      (push entry (pool-entries-list pool)))
446    (constant-index entry)))
447
448(defun pool-add-float (pool float)
449  "Returns the index of the constant-pool item denoting the float."
450  (let ((entry (gethash (cons 4 float) (pool-entries pool))))
451    (unless entry
452      (setf entry (make-constant-float (incf (pool-index pool))
453                                       (sys::%float-bits float))
454            (gethash (cons 4 float) (pool-entries pool)) entry)
455      (push entry (pool-entries-list pool)))
456    (constant-index entry)))
457
458(defun pool-add-long (pool long)
459  "Returns the index of the constant-pool item denoting the long."
460  (let ((entry (gethash (cons 5 long) (pool-entries pool))))
461    (unless entry
462      (setf entry (make-constant-long (incf (pool-index pool)) long)
463            (gethash (cons 5 long) (pool-entries pool)) entry)
464      (push entry (pool-entries-list pool))
465      (incf (pool-index pool))) ;; double index increase; long takes 2 slots
466    (constant-index entry)))
467
468(defun pool-add-double (pool double)
469  "Returns the index of the constant-pool item denoting the double."
470  (let ((entry (gethash (cons 6 double) (pool-entries pool))))
471    (unless entry
472      (setf entry (make-constant-double (incf (pool-index pool))
473                                        (sys::%float-bits double))
474            (gethash (cons 6 double) (pool-entries pool)) entry)
475      (push entry (pool-entries-list pool))
476      (incf (pool-index pool))) ;; double index increase; 'double' takes 2 slots
477    (constant-index entry)))
478
479(defun pool-add-name/type (pool name type)
480  "Returns the index of the constant-pool item denoting
481the name/type identifier."
482  (let ((entry (gethash (cons name type) (pool-entries pool)))
483        (internal-type (if (listp type)
484                           (apply #'descriptor type)
485                           (internal-field-ref type))))
486    (unless entry
487      (let ((n (pool-add-utf8 pool name))
488            (i-t (pool-add-utf8 pool internal-type)))
489        (setf entry (make-constant-name/type (incf (pool-index pool)) n i-t)
490              (gethash (cons name type) (pool-entries pool)) entry))
491      (push entry (pool-entries-list pool)))
492    (constant-index entry)))
493
494(defun pool-add-utf8 (pool utf8-as-string)
495  "Returns the index of the textual value that will be stored in the
496class file as UTF-8 encoded data."
497  (let ((entry (gethash (cons 11 utf8-as-string) ;; 11 == utf8
498                        (pool-entries pool))))
499    (unless entry
500      (setf entry (make-constant-utf8 (incf (pool-index pool)) utf8-as-string)
501            (gethash (cons 11 utf8-as-string) (pool-entries pool)) entry)
502      (push entry (pool-entries-list pool)))
503    (constant-index entry)))
504
505(defstruct (class-file (:constructor
506                        !make-class-file (class superclass access-flags)))
507  "Holds the components of a class file."
508  (constants (make-pool))
509  access-flags
510  class
511  superclass
512  ;; support for implementing interfaces not yet available
513  ;; interfaces
514  fields
515  methods
516  attributes)
517
518(defun class-add-field (class field)
519  "Adds a `field' created by `make-field'."
520  (push field (class-file-fields class)))
521
522(defun class-field (class name)
523  "Finds a field by name." ;; ### strictly speaking, a field is uniquely
524  ;; identified by its name and type, not by the name alone.
525  (find name (class-file-fields class)
526        :test #'string= :key #'field-name))
527
528(defun class-add-method (class method)
529  "Adds a `method' to `class'; the method must have been created using
530`make-method'."
531  (push method (class-file-methods class)))
532
533(defun class-methods-by-name (class name)
534  "Returns all methods which have `name'."
535  (remove name (class-file-methods class)
536          :test-not #'string= :key #'method-name))
537
538(defun class-method (class name return &rest args)
539  "Return the method which is (uniquely) identified by its name AND descriptor."
540  (let ((return-and-args (cons return args)))
541    (find-if #'(lambda (c)
542                 (and (string= (method-name c) name)
543                      (equal (method-descriptor c) return-and-args)))
544             (class-file-methods class))))
545
546(defun class-add-attribute (class attribute)
547  "Adds `attribute' to the class; attributes must be instances of
548structure classes which include the `attribute' structure class."
549  (push attribute (class-file-attributes class)))
550
551(defun class-attribute (class name)
552  "Returns the attribute which is named `name'."
553  (find name (class-file-attributes class)
554        :test #'string= :key #'attribute-name))
555
556
557(defun finalize-class-file (class)
558  "Transforms the representation of the class-file from one
559which allows easy modification to one which works best for serialization.
560
561The class can't be modified after finalization."
562
563  ;; constant pool contains constants finalized on addition;
564  ;; no need for additional finalization
565
566  (setf (class-file-access-flags class)
567        (map-flags (class-file-access-flags class)))
568  (setf (class-file-superclass class)
569        (pool-add-class (class-file-constants class)
570                        (class-file-superclass class))
571        (class-file-class class)
572        (pool-add-class (class-file-constants class)
573                        (class-file-class class)))
574  ;;  (finalize-interfaces)
575  (dolist (field (class-file-fields class))
576    (finalize-field field class))
577  (dolist (method (class-file-methods class))
578    (finalize-method method class))
579  ;; top-level attributes (no parent attributes to refer to)
580  (finalize-attributes (class-file-attributes class) nil class))
581
582
583(declaim (inline write-u1 write-u2 write-u4 write-s4))
584(defun write-u1 (n stream)
585  (declare (optimize speed))
586  (declare (type (unsigned-byte 8) n))
587  (declare (type stream stream))
588  (write-8-bits n stream))
589
590(defknown write-u2 (t t) t)
591(defun write-u2 (n stream)
592  (declare (optimize speed))
593  (declare (type (unsigned-byte 16) n))
594  (declare (type stream stream))
595  (write-8-bits (logand (ash n -8) #xFF) stream)
596  (write-8-bits (logand n #xFF) stream))
597
598(defknown write-u4 (integer stream) t)
599(defun write-u4 (n stream)
600  (declare (optimize speed))
601  (declare (type (unsigned-byte 32) n))
602  (write-u2 (logand (ash n -16) #xFFFF) stream)
603  (write-u2 (logand n #xFFFF) stream))
604
605(declaim (ftype (function (t t) t) write-s4))
606(defun write-s4 (n stream)
607  (declare (optimize speed))
608  (cond ((minusp n)
609         (write-u4 (1+ (logxor (- n) #xFFFFFFFF)) stream))
610        (t
611         (write-u4 n stream))))
612
613(declaim (ftype (function (t t t) t) write-ascii))
614(defun write-ascii (string length stream)
615  (declare (type string string))
616  (declare (type (unsigned-byte 16) length))
617  (declare (type stream stream))
618  (write-u2 length stream)
619  (dotimes (i length)
620    (declare (type (unsigned-byte 16) i))
621    (write-8-bits (char-code (char string i)) stream)))
622
623
624(declaim (ftype (function (t t) t) write-utf8))
625(defun write-utf8 (string stream)
626  (declare (optimize speed))
627  (declare (type string string))
628  (declare (type stream stream))
629  (let ((length (length string))
630        (must-convert nil))
631    (declare (type fixnum length))
632    (dotimes (i length)
633      (declare (type fixnum i))
634      (unless (< 0 (char-code (char string i)) #x80)
635        (setf must-convert t)
636        (return)))
637    (if must-convert
638        (let ((octets (make-array (* length 2)
639                                  :element-type '(unsigned-byte 8)
640                                  :adjustable t
641                                  :fill-pointer 0)))
642          (declare (type (vector (unsigned-byte 8)) octets))
643          (dotimes (i length)
644            (declare (type fixnum i))
645            (let* ((c (char string i))
646                   (n (char-code c)))
647              (cond ((zerop n)
648                     (vector-push-extend #xC0 octets)
649                     (vector-push-extend #x80 octets))
650                    ((< 0 n #x80)
651                     (vector-push-extend n octets))
652                    (t
653                     (let ((char-octets (char-to-utf8 c)))
654                       (dotimes (j (length char-octets))
655                         (declare (type fixnum j))
656                         (vector-push-extend (svref char-octets j) octets)))))))
657          (write-u2 (length octets) stream)
658          (dotimes (i (length octets))
659            (declare (type fixnum i))
660            (write-8-bits (aref octets i) stream)))
661        (write-ascii string length stream))))
662
663
664(defun !write-class-file (class stream)
665  "Serializes `class' to `stream', after it has been finalized."
666
667  ;; header
668  (write-u4 #xCAFEBABE stream)
669  (write-u2 3 stream)
670  (write-u2 45 stream)
671
672   ;; constants pool
673  (write-constants (class-file-constants class) stream)
674  ;; flags
675  (write-u2  (class-file-access-flags class) stream)
676  ;; class name
677
678  (write-u2 (class-file-class class) stream)
679  ;; superclass
680  (write-u2 (class-file-superclass class) stream)
681
682  ;; interfaces
683  (write-u2 0 stream)
684
685  ;; fields
686  (write-u2 (length (class-file-fields class)) stream)
687  (dolist (field (class-file-fields class))
688    (write-field field stream))
689
690  ;; methods
691  (write-u2 (length (class-file-methods class)) stream)
692  (dolist (method (class-file-methods class))
693    (!write-method method stream))
694
695  ;; attributes
696  (write-attributes (class-file-attributes class) stream))
697
698
699(defvar *jvm-class-debug-pool* nil
700  "When bound to a non-NIL value, enables output to *standard-output*
701to allow debugging output of the constant section of the class file.")
702
703(defun write-constants (constants stream)
704  "Writes the constant section given in `constants' to the class file `stream'."
705  (let ((pool-index 0))
706    (write-u2 (1+ (pool-index constants)) stream)
707    (when *jvm-class-debug-pool*
708      (sys::%format t "pool count ~A~%" (pool-index constants)))
709    (dolist (entry (reverse (pool-entries-list constants)))
710      (incf pool-index)
711      (let ((tag (constant-tag entry)))
712        (when *jvm-class-debug-pool*
713          (print-constant entry t))
714        (write-u1 tag stream)
715        (case tag
716          (1                            ; UTF8
717           (write-utf8 (constant-utf8-value entry) stream))
718          ((3 4)                        ; float int
719           (write-u4 (constant-float/int-value entry) stream))
720          ((5 6)                        ; long double
721           (write-u4 (logand (ash (constant-double/long-value entry) -32)
722                             #xFFFFffff) stream)
723           (write-u4 (logand (constant-double/long-value entry) #xFFFFffff)
724                     stream))
725          ((9 10 11)           ; fieldref methodref InterfaceMethodref
726           (write-u2 (constant-member-ref-class-index entry) stream)
727           (write-u2 (constant-member-ref-name/type-index entry) stream))
728          (12                           ; nameAndType
729           (write-u2 (constant-name/type-name-index entry) stream)
730           (write-u2 (constant-name/type-descriptor-index entry) stream))
731          (7                            ; class
732           (write-u2 (constant-class-name-index entry) stream))
733          (8                            ; string
734           (write-u2 (constant-string-value-index entry) stream))
735          (t
736           (error "write-constant-pool-entry unhandled tag ~D~%" tag)))))))
737
738
739(defun print-constant (entry stream)
740  "Debugging helper to print the content of a constant-pool entry."
741  (let ((tag (constant-tag entry))
742        (index (constant-index entry)))
743    (sys::%format stream "pool element ~a, tag ~a, " index tag)
744    (case tag
745      (1     (sys::%format t "utf8: ~a~%" (constant-utf8-value entry)))
746      ((3 4) (sys::%format t "f/i: ~a~%" (constant-float/int-value entry)))
747      ((5 6) (sys::%format t "d/l: ~a~%" (constant-double/long-value entry)))
748      ((9 10 11) (sys::%format t "ref: ~a,~a~%"
749                               (constant-member-ref-class-index entry)
750                               (constant-member-ref-name/type-index entry)))
751      (12 (sys::%format t "n/t: ~a,~a~%"
752                        (constant-name/type-name-index entry)
753                        (constant-name/type-descriptor-index entry)))
754      (7 (sys::%format t "cls: ~a~%" (constant-class-name-index entry)))
755      (8 (sys::%format t "str: ~a~%" (constant-string-value-index entry))))))
756
757
758#|
759
760ABCL doesn't use interfaces, so don't implement it here at this time
761
762(defstruct interface)
763
764|#
765
766
767(defparameter +access-flags-map+
768  '((:public       #x0001)
769    (:private      #x0002)
770    (:protected    #x0004)
771    (:static       #x0008)
772    (:final        #x0010)
773    (:volatile     #x0040)
774    (:synchronized #x0020)
775    (:transient    #x0080)
776    (:native       #x0100)
777    (:abstract     #x0400)
778    (:strict       #x0800))
779  "List of keyword symbols used for human readable representation of (access)
780flags and their binary values.")
781
782(defun map-flags (flags)
783  "Calculates the bitmap of the flags from a list of symbols."
784  (reduce #'(lambda (y x)
785              (logior (or (when (member (car x) flags)
786                            (second x))
787                          0) y))
788          +access-flags-map+
789          :initial-value 0))
790
791(defstruct (field (:constructor %make-field))
792  "Holds information on the properties of fields in the class(-file)."
793  access-flags
794  name
795  descriptor
796  attributes)
797
798(defun make-field (name type &key (flags '(:public)))
799  "Creates a field for addition to a class file."
800  (%make-field :access-flags flags
801               :name name
802               :descriptor type))
803
804(defun field-add-attribute (field attribute)
805  "Adds an attribute to a field."
806  (push attribute (field-attributes field)))
807
808(defun field-attribute (field name)
809  "Retrieves an attribute named `name' of `field'.
810
811Returns NIL if the attribute isn't found."
812  (find name (field-attributes field)
813        :test #'string= :key #'attribute-name))
814
815(defun finalize-field (field class)
816  "Prepares `field' for serialization."
817  (let ((pool (class-file-constants class)))
818    (setf (field-access-flags field)
819          (map-flags (field-access-flags field))
820          (field-descriptor field)
821          (pool-add-utf8 pool (internal-field-ref (field-descriptor field)))
822          (field-name field)
823          (pool-add-utf8 pool (field-name field))))
824  (finalize-attributes (field-attributes field) nil class))
825
826(defun write-field (field stream)
827  "Writes classfile representation of `field' to `stream'."
828  (write-u2 (field-access-flags field) stream)
829  (write-u2 (field-name field) stream)
830  (write-u2 (field-descriptor field) stream)
831  (write-attributes (field-attributes field) stream))
832
833
834(defstruct (method (:constructor %!make-method))
835  "Holds information on the properties of methods in the class(-file)."
836  access-flags
837  name
838  descriptor
839  attributes)
840
841
842(defun map-method-name (name)
843  "Methods should be identified by strings containing their names, or,
844be one of two keyword identifiers to identify special methods:
845
846 * :class-constructor
847 * :constructor
848"
849  (cond
850    ((eq name :class-constructor)
851     "<clinit>")
852    ((eq name :constructor)
853     "<init>")
854    (t name)))
855
856(defun !make-method (name return args &key (flags '(:public)))
857  "Creates a method for addition to a class file."
858  (%!make-method :descriptor (cons return args)
859                :access-flags flags
860                :name name))
861
862(defun method-add-attribute (method attribute)
863  "Add `attribute' to the list of attributes of `method',
864returning `attribute'."
865  (push attribute (method-attributes method))
866  attribute)
867
868(defun method-add-code (method)
869  "Creates an (empty) 'Code' attribute for the method,
870returning the created attribute."
871  (method-add-attribute
872   method
873   (make-code-attribute (+ (length (cdr (method-descriptor method)))
874                           (if (member :static (method-access-flags method))
875                               0 1))))) ;; 1 == implicit 'this'
876
877(defun method-ensure-code (method)
878  "Ensures the existence of a 'Code' attribute for the method,
879returning the attribute."
880  (let ((code (method-attribute method "Code")))
881    (if (null code)
882        (method-add-code method)
883        code)))
884
885(defun method-attribute (method name)
886  "Returns the first attribute of `method' with `name'."
887  (find name (method-attributes method)
888        :test #'string= :key #'attribute-name))
889
890
891(defun finalize-method (method class)
892  "Prepares `method' for serialization."
893  (let ((pool (class-file-constants class)))
894    (setf (method-access-flags method)
895          (map-flags (method-access-flags method))
896          (method-descriptor method)
897          (pool-add-utf8 pool (apply #'descriptor (method-descriptor method)))
898          (method-name method)
899          (pool-add-utf8 pool (map-method-name (method-name method)))))
900  (finalize-attributes (method-attributes method) nil class))
901
902
903(defun !write-method (method stream)
904  "Write class file representation of `method' to `stream'."
905  (write-u2 (method-access-flags method) stream)
906  (write-u2 (method-name method) stream)
907  (sys::%format t "method-name: ~a~%" (method-name method))
908  (write-u2 (method-descriptor method) stream)
909  (write-attributes (method-attributes method) stream))
910
911(defstruct attribute
912  "Parent attribute structure to be included into other attributes, mainly
913to define common fields.
914
915Having common fields allows common driver code for
916finalizing and serializing attributes."
917  name
918
919  ;; not in the class file:
920  finalizer  ;; function of 3 arguments: the attribute, parent and class-file
921  writer     ;; function of 2 arguments: the attribute and the output stream
922  )
923
924(defun finalize-attributes (attributes att class)
925  "Prepare `attributes' (a list) of attribute `att' list for serialization."
926  (dolist (attribute attributes)
927    ;; assure header: make sure 'name' is in the pool
928    (setf (attribute-name attribute)
929          (pool-add-utf8 (class-file-constants class)
930                         (attribute-name attribute)))
931    ;; we're saving "root" attributes: attributes which have no parent
932    (funcall (attribute-finalizer attribute) attribute att class)))
933
934(defun write-attributes (attributes stream)
935  "Writes the `attributes' to `stream'."
936  (write-u2 (length attributes) stream)
937  (dolist (attribute attributes)
938    (write-u2 (attribute-name attribute) stream)
939    ;; set up a bulk catcher for (UNSIGNED-BYTE 8)
940    ;; since we need to know the attribute length (excluding the header)
941    (let ((local-stream (sys::%make-byte-array-output-stream)))
942      (funcall (attribute-writer attribute) attribute local-stream)
943      (let ((array (sys::%get-output-stream-array local-stream)))
944        (write-u4 (length array) stream)
945        (write-sequence array stream)))))
946
947
948
949(defstruct (code-attribute (:conc-name code-)
950                           (:include attribute
951                                     (name "Code")
952                                     (finalizer #'!finalize-code)
953                                     (writer #'!write-code))
954                           (:constructor %make-code-attribute))
955  "The attribute containing the actual JVM byte code;
956an attribute of a method."
957  max-stack
958  max-locals
959  code
960  exception-handlers
961  attributes
962
963  ;; fields not in the class file start here
964
965  ;; labels contains offsets into the code array after it's finalized
966  labels ;; an alist
967
968  (current-local 0)) ;; used for handling nested WITH-CODE-TO-METHOD blocks
969
970
971
972(defun code-label-offset (code label)
973  "Retrieves the `label' offset within a `code' attribute after the
974attribute has been finalized."
975  (cdr (assoc label (code-labels code))))
976
977(defun (setf code-label-offset) (offset code label)
978  "Sets the `label' offset within a `code' attribute after the attribute
979has been finalized."
980  (setf (code-labels code)
981        (acons label offset (code-labels code))))
982
983(defun !finalize-code (code parent class)
984  "Prepares the `code' attribute for serialization, within method `parent'."
985  (declare (ignore parent))
986  (let ((c (resolve-instructions (coerce (reverse (code-code code)) 'vector))))
987    (setf (code-max-stack code) (analyze-stack c))
988    (multiple-value-bind
989          (c labels)
990        (code-bytes c)
991      (setf (code-code code) c
992            (code-labels code) labels)))
993
994  (dolist (exception (code-exception-handlers code))
995    (setf (exception-start-pc exception)
996          (code-label-offset code (exception-start-pc exception))
997          (exception-end-pc exception)
998          (code-label-offset code (exception-end-pc exception))
999          (exception-handler-pc exception)
1000          (code-label-offset code (exception-handler-pc exception))
1001          (exception-catch-type exception)
1002          (if (null (exception-catch-type exception))
1003              0  ;; generic 'catch all' class index number
1004              (pool-add-class (class-file-constants class)
1005                              (exception-catch-type exception)))))
1006
1007  (finalize-attributes (code-attributes code) code class))
1008
1009(defun !write-code (code stream)
1010  "Writes the attribute `code' to `stream'."
1011  (sys::%format t "max-stack: ~a~%" (code-max-stack code))
1012  (write-u2 (code-max-stack code) stream)
1013  (sys::%format t "max-locals: ~a~%" (code-max-locals code))
1014  (write-u2 (code-max-locals code) stream)
1015  (let ((code-array (code-code code)))
1016    (sys::%format t "length: ~a~%" (length code-array))
1017    (write-u4 (length code-array) stream)
1018    (dotimes (i (length code-array))
1019      (write-u1 (svref code-array i) stream)))
1020
1021  (write-u2 (length (code-exception-handlers code)) stream)
1022  (dolist (exception (reverse (code-exception-handlers code)))
1023    (sys::%format t "start-pc: ~a~%" (exception-start-pc exception))
1024    (write-u2 (exception-start-pc exception) stream)
1025    (sys::%format t "end-pc: ~a~%" (exception-end-pc exception))
1026    (write-u2 (exception-end-pc exception) stream)
1027    (sys::%format t "handler-pc: ~a~%" (exception-handler-pc exception))
1028    (write-u2 (exception-handler-pc exception) stream)
1029    (write-u2 (exception-catch-type exception) stream))
1030
1031  (write-attributes (code-attributes code) stream))
1032
1033(defun make-code-attribute (arg-count)
1034  "Creates an empty 'Code' attribute for a method which takes
1035`arg-count` parameters, including the implicit `this` parameter."
1036  (%make-code-attribute :max-locals arg-count))
1037
1038(defun code-add-attribute (code attribute)
1039  "Adds `attribute' to `code', returning `attribute'."
1040  (push attribute (code-attributes code))
1041  attribute)
1042
1043(defun code-attribute (code name)
1044  "Returns an attribute of `code' identified by `name'."
1045  (find name (code-attributes code)
1046        :test #'string= :key #'attribute-name))
1047
1048
1049(defun code-add-exception-handler (code start end handler type)
1050  "Adds an exception handler to `code' protecting the region from
1051labels `start' to `end' (inclusive) from exception `type' - where
1052a value of NIL indicates all types. Upon an exception of the given
1053type, control is transferred to label `handler'."
1054  (push (make-exception :start-pc start
1055                        :end-pc end
1056                        :handler-pc handler
1057                        :catch-type type)
1058        (code-exception-handlers code)))
1059
1060(defstruct exception
1061  "Exception handler information.
1062
1063After finalization, the fields contain offsets instead of labels."
1064  start-pc    ;; label target
1065  end-pc      ;; label target
1066  handler-pc  ;; label target
1067  catch-type  ;; a string for a specific type, or NIL for all
1068  )
1069
1070
1071(defstruct (constant-value-attribute (:conc-name constant-value-)
1072                                     (:include attribute
1073                                               (name "ConstantValue")
1074                                               ;; finalizer
1075                                               ;; writer
1076                                               ))
1077  "An attribute of a field of primitive type.
1078
1079"
1080 
1081  )
1082
1083
1084(defstruct (checked-exceptions-attribute
1085             (:conc-name checked-)
1086             (:include attribute
1087                       (name "Exceptions")
1088                       (finalizer #'finalize-checked-exceptions)
1089                       (writer #'write-checked-exceptions)))
1090  "An attribute of `code-attribute', "
1091  table ;; a list of checked classes corresponding to Java's 'throws'
1092)
1093
1094(defun finalize-checked-exceptions (checked-exceptions code class)
1095  (declare (ignorable code class))
1096
1097  "Prepare `checked-exceptions' for serialization."
1098  (setf (checked-table checked-exceptions)
1099        (mapcar #'(lambda (exception)
1100                    (pool-add-class (class-file-constants class)
1101                                    exception))
1102                (checked-table checked-exceptions))))
1103
1104(defun write-checked-exceptions (checked-exceptions stream)
1105  "Write `checked-exceptions' to `stream' in class file representation."
1106  (write-u2 (length (checked-table checked-exceptions)) stream)
1107  (dolist (exception (reverse (checked-table checked-exceptions)))
1108    (write-u2 exception stream)))
1109
1110;; Can't be used yet: serialization missing
1111(defstruct (deprecated-attribute (:include attribute
1112                                           (name "Deprecated")
1113                                           (finalizer (constantly nil))
1114                                           (writer (constantly nil))))
1115  ;; finalizer and writer need to do nothing: Deprecated attributes are empty
1116  "An attribute of a class file, field or method, indicating the element
1117to which it has been attached has been superseded.")
1118
1119(defvar *current-code-attribute* nil)
1120
1121(defun save-code-specials (code)
1122  (setf (code-code code) *code*
1123        (code-max-locals code) *registers-allocated*
1124;;        (code-exception-handlers code) *handlers*
1125        (code-current-local code) *register*))
1126
1127(defun restore-code-specials (code)
1128  (setf *code* (code-code code)
1129;;        *handlers* (code-exception-handlers code)
1130        *registers-allocated* (code-max-locals code)
1131        *register* (code-current-local code)))
1132
1133(defmacro with-code-to-method ((class-file method &key (safe-nesting t))
1134             &body body)
1135  (let ((m (gensym))
1136        (c (gensym)))
1137    `(progn
1138       ,@(when safe-nesting
1139           `((when *current-code-attribute*
1140               (save-code-specials *current-code-attribute*))))
1141       (let* ((,m ,method)
1142              (,c (method-ensure-code ,method))
1143              (*pool* (class-file-constants ,class-file))
1144              (*code* (code-code ,c))
1145              (*registers-allocated* (code-max-locals ,c))
1146              (*register* (code-current-local ,c))
1147              (*current-code-attribute* ,c))
1148         ,@body
1149         (setf (code-code ,c) *code*
1150         (code-current-local ,c) *register*
1151;;               (code-exception-handlers ,c) *handlers*
1152               (code-max-locals ,c) *registers-allocated*))
1153       ,@(when safe-nesting
1154           `((when *current-code-attribute*
1155               (restore-code-specials *current-code-attribute*)))))))
1156
1157
1158(defstruct (source-file-attribute (:conc-name source-)
1159                                  (:include attribute
1160                                            (name "SourceFile")
1161                                            (finalizer #'finalize-source-file)
1162                                            (writer #'write-source-file)))
1163  "An attribute of the class file indicating which source file
1164it was compiled from."
1165  filename)
1166
1167(defun finalize-source-file (source-file code class)
1168  (declare (ignorable code class))
1169  (setf (source-filename source-file)
1170        (pool-add-utf8 (class-file-constants class)
1171                       (source-filename source-file))))
1172
1173(defun write-source-file (source-file stream)
1174  (write-u2 (source-filename source-file) stream))
1175
1176
1177(defstruct (synthetic-attribute (:include attribute
1178                                          (name "Synthetic")
1179                                          (finalizer (constantly nil))
1180                                          (writer (constantly nil))))
1181  ;; finalizer and writer need to do nothing: Synthetic attributes are empty
1182  "An attribute of a class file, field or method to mark that it wasn't
1183included in the sources - but was generated artificially.")
1184
1185
1186(defstruct (line-numbers-attribute
1187             (:conc-name line-numbers-)
1188             (:include attribute
1189                       (name "LineNumberTable")
1190                       (finalizer #'finalize-line-numbers)
1191                       (writer #'write-line-numbers)))
1192  "An attribute of `code-attribute', containing a mapping of offsets
1193within the code section to the line numbers in the source file."
1194  table ;; a list of line-number structures, in reverse order
1195  )
1196
1197(defstruct line-number
1198  start-pc  ;; a label, before finalization
1199  line)
1200
1201(defun finalize-line-numbers (line-numbers code class)
1202  (declare (ignorable code class))
1203  (dolist (line-number (line-numbers-table line-numbers))
1204    (setf (line-number-start-pc line-number)
1205          (code-label-offset code (line-number-start-pc line-number)))))
1206
1207(defun write-line-numbers (line-numbers stream)
1208  (write-u2 (length (line-numbers-table line-numbers)) stream)
1209  (dolist (line-number (reverse (line-numbers-table line-numbers)))
1210    (write-u2 (line-number-start-pc line-number) stream)
1211    (write-u2 (line-number-line line-number) stream)))
1212
1213
1214
1215(defstruct (local-variables-attribute
1216             (:conc-name local-var-)
1217             (:include attribute
1218                       (name "LocalVariableTable")
1219                       (finalizer #'finalize-local-variables)
1220                       (writer #'write-local-variables)))
1221  "An attribute of the `code-attribute', containing a table of local variable
1222names, their type and their scope of validity."
1223  table ;; a list of local-variable structures, in reverse order
1224  )
1225
1226(defstruct (local-variable (:conc-name local-))
1227  start-pc  ;; a label, before finalization
1228  length    ;; a label (at the ending position) before finalization
1229  name
1230  descriptor
1231  index ;; The index of the variable inside the block of locals
1232  )
1233
1234(defun finalize-local-variables (local-variables code class)
1235  (dolist (local-variable (local-var-table local-variables))
1236    (setf (local-start-pc local-variable)
1237          (code-label-offset code (local-start-pc local-variable))
1238          (local-length local-variable)
1239          ;; calculate 'length' from the distance between 2 labels
1240          (- (code-label-offset code (local-length local-variable))
1241             (local-start-pc local-variable))
1242          (local-name local-variable)
1243          (pool-add-utf8 (class-file-constants class)
1244                         (local-name local-variable))
1245          (local-descriptor local-variable)
1246          (pool-add-utf8 (class-file-constants class)
1247                         (local-descriptor local-variable)))))
1248
1249(defun write-local-variables (local-variables stream)
1250  (write-u2 (length (local-var-table local-variables)) stream)
1251  (dolist (local-variable (reverse (local-var-table local-variables)))
1252    (write-u2 (local-start-pc local-variable) stream)
1253    (write-u2 (local-length local-variable) stream)
1254    (write-u2 (local-name local-variable) stream)
1255    (write-u2 (local-descriptor local-variable) stream)
1256    (write-u2 (local-index local-variable) stream)))
1257
1258#|
1259
1260;; this is the minimal sequence we need to support:
1261
1262;;  create a class file structure
1263;;  add methods
1264;;  add code to the methods, switching from one method to the other
1265;;  finalize the methods, one by one
1266;;  write the class file
1267
1268to support the sequence above, we probably need to
1269be able to
1270
1271- find methods by signature
1272- find the method's code attribute
1273- add code to the code attribute
1274- finalize the code attribute contents (blocking it for further addition)
1275-
1276
1277
1278|#
1279
Note: See TracBrowser for help on using the repository browser.