Merge with trank @ 137446
[official-gcc.git] / gcc / java / verify-impl.c
blob69fb031022b1cf1df8d6cb4b3569a178860a8013
1 /* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation
3 This file is part of libgcj.
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
9 /* Written by Tom Tromey <tromey@redhat.com> */
11 /* Uncomment this to enable debugging output. */
12 /* #define VERIFY_DEBUG */
14 #include "config.h"
16 #include "verify.h"
18 /* Hack to work around namespace pollution from java-tree.h. */
19 #undef current_class
21 #ifdef VERIFY_DEBUG
22 #include <stdio.h>
23 #endif /* VERIFY_DEBUG */
25 /* This is used to mark states which are not scheduled for
26 verification. */
27 #define INVALID_STATE ((state *) -1)
29 static void ATTRIBUTE_PRINTF_1
30 debug_print (const char *fmt ATTRIBUTE_UNUSED, ...)
32 #ifdef VERIFY_DEBUG
33 va_list ap;
34 va_start (ap, fmt);
35 vfprintf (stderr, fmt, ap);
36 va_end (ap);
37 #endif /* VERIFY_DEBUG */
40 /* This started as a fairly ordinary verifier, and for the most part
41 it remains so. It works in the obvious way, by modeling the effect
42 of each opcode as it is encountered. For most opcodes, this is a
43 straightforward operation.
45 This verifier does not do type merging. It used to, but this
46 results in difficulty verifying some relatively simple code
47 involving interfaces, and it pushed some verification work into the
48 interpreter.
50 Instead of merging reference types, when we reach a point where two
51 flows of control merge, we simply keep the union of reference types
52 from each branch. Then, when we need to verify a fact about a
53 reference on the stack (e.g., that it is compatible with the
54 argument type of a method), we check to ensure that all possible
55 types satisfy the requirement.
57 Another area this verifier differs from the norm is in its handling
58 of subroutines. The JVM specification has some confusing things to
59 say about subroutines. For instance, it makes claims about not
60 allowing subroutines to merge and it rejects recursive subroutines.
61 For the most part these are red herrings; we used to try to follow
62 these things but they lead to problems. For example, the notion of
63 "being in a subroutine" is not well-defined: is an exception
64 handler in a subroutine? If you never execute the `ret' but
65 instead `goto 1' do you remain in the subroutine?
67 For clarity on what is really required for type safety, read
68 "Simple Verification Technique for Complex Java Bytecode
69 Subroutines" by Alessandro Coglio. Among other things this paper
70 shows that recursive subroutines are not harmful to type safety.
71 We implement something similar to what he proposes. Note that this
72 means that this verifier will accept code that is rejected by some
73 other verifiers.
75 For those not wanting to read the paper, the basic observation is
76 that we can maintain split states in subroutines. We maintain one
77 state for each calling `jsr'. In other words, we re-verify a
78 subroutine once for each caller, using the exact types held by the
79 callers (as opposed to the old approach of merging types and
80 keeping a bitmap registering what did or did not change). This
81 approach lets us continue to verify correctly even when a
82 subroutine is exited via `goto' or `athrow' and not `ret'.
84 In some other areas the JVM specification is (mildly) incorrect,
85 so we diverge. For instance, you cannot
86 violate type safety by allocating an object with `new' and then
87 failing to initialize it, no matter how one branches or where one
88 stores the uninitialized reference. See "Improving the official
89 specification of Java bytecode verification" by Alessandro Coglio.
91 Note that there's no real point in enforcing that padding bytes or
92 the mystery byte of invokeinterface must be 0, but we do that
93 regardless.
95 The verifier is currently neither completely lazy nor eager when it
96 comes to loading classes. It tries to represent types by name when
97 possible, and then loads them when it needs to verify a fact about
98 the type. Checking types by name is valid because we only use
99 names which come from the current class' constant pool. Since all
100 such names are looked up using the same class loader, there is no
101 danger that we might be fooled into comparing different types with
102 the same name.
104 In the future we plan to allow for a completely lazy mode of
105 operation, where the verifier will construct a list of type
106 assertions to be checked later.
108 Some test cases for the verifier live in the "verify" module of the
109 Mauve test suite. However, some of these are presently
110 (2004-01-20) believed to be incorrect. (More precisely the notion
111 of "correct" is not well-defined, and this verifier differs from
112 others while remaining type-safe.) Some other tests live in the
113 libgcj test suite.
115 This verifier is also written to be pluggable. This means that it
116 is intended for use in a variety of environments, not just libgcj.
117 As a result the verifier expects a number of type and method
118 declarations to be declared in "verify.h". The intent is that you
119 recompile the verifier for your particular environment. This
120 approach was chosen so that operations could be inlined in verify.h
121 as much as possible.
123 See the verify.h that accompanies this copy of the verifier to see
124 what types, preprocessor defines, and functions must be declared.
125 The interface is ad hoc, but was defined so that it could be
126 implemented to connect to a pure C program.
129 #define FLAG_INSN_START 1
130 #define FLAG_BRANCH_TARGET 2
131 #define FLAG_INSN_SEEN 4
133 struct state;
134 struct type;
135 struct ref_intersection;
137 typedef struct state state;
138 typedef struct type type;
139 typedef struct ref_intersection ref_intersection;
141 /*typedef struct state_list state_list;*/
143 typedef struct state_list
145 state *val;
146 struct state_list *next;
147 } state_list;
149 typedef struct vfy_string_list
151 vfy_string val;
152 struct vfy_string_list *next;
153 } vfy_string_list;
155 typedef struct verifier_context
157 /* The current PC. */
158 int PC;
159 /* The PC corresponding to the start of the current instruction. */
160 int start_PC;
162 /* The current state of the stack, locals, etc. */
163 state *current_state;
165 /* At each branch target we keep a linked list of all the states we
166 can process at that point. We'll only have multiple states at a
167 given PC if they both have different return-address types in the
168 same stack or local slot. This array is indexed by PC and holds
169 the list of all such states. */
170 state_list **states;
172 /* We keep a linked list of all the states which we must reverify.
173 This is the head of the list. */
174 state *next_verify_state;
176 /* We keep some flags for each instruction. The values are the
177 FLAG_* constants defined above. This is an array indexed by PC. */
178 char *flags;
180 /* The bytecode itself. */
181 const unsigned char *bytecode;
182 /* The exceptions. */
183 vfy_exception *exception;
185 /* Defining class. */
186 vfy_jclass current_class;
187 /* This method. */
188 vfy_method *current_method;
190 /* A linked list of utf8 objects we allocate. */
191 vfy_string_list *utf8_list;
193 /* A linked list of all ref_intersection objects we allocate. */
194 ref_intersection *isect_list;
195 } verifier_context;
197 /* The current verifier's state data. This is maintained by
198 {push/pop}_verifier_context to provide a shorthand form to access
199 the verification state. */
200 static GTY(()) verifier_context *vfr;
202 /* Local function declarations. */
203 bool type_initialized (type *t);
204 int ref_count_dimensions (ref_intersection *ref);
206 static void
207 verify_fail_pc (const char *s, int pc)
209 vfy_fail (s, pc, vfr->current_class, vfr->current_method);
212 static void
213 verify_fail (const char *s)
215 verify_fail_pc (s, vfr->PC);
218 /* This enum holds a list of tags for all the different types we
219 need to handle. Reference types are treated specially by the
220 type class. */
221 typedef enum type_val
223 void_type,
225 /* The values for primitive types are chosen to correspond to values
226 specified to newarray. */
227 boolean_type = 4,
228 char_type = 5,
229 float_type = 6,
230 double_type = 7,
231 byte_type = 8,
232 short_type = 9,
233 int_type = 10,
234 long_type = 11,
236 /* Used when overwriting second word of a double or long in the
237 local variables. Also used after merging local variable states
238 to indicate an unusable value. */
239 unsuitable_type,
240 return_address_type,
241 /* This is the second word of a two-word value, i.e., a double or
242 a long. */
243 continuation_type,
245 /* Everything after `reference_type' must be a reference type. */
246 reference_type,
247 null_type,
248 uninitialized_reference_type
249 } type_val;
251 /* This represents a merged class type. Some verifiers (including
252 earlier versions of this one) will compute the intersection of
253 two class types when merging states. However, this loses
254 critical information about interfaces implemented by the various
255 classes. So instead we keep track of all the actual classes that
256 have been merged. */
257 struct ref_intersection
259 /* Whether or not this type has been resolved. */
260 bool is_resolved;
262 /* Actual type data. */
263 union
265 /* For a resolved reference type, this is a pointer to the class. */
266 vfy_jclass klass;
267 /* For other reference types, this it the name of the class. */
268 vfy_string name;
269 } data;
271 /* Link to the next reference in the intersection. */
272 ref_intersection *ref_next;
274 /* This is used to keep track of all the allocated
275 ref_intersection objects, so we can free them.
276 FIXME: we should allocate these in chunks. */
277 ref_intersection *alloc_next;
280 static ref_intersection *
281 make_ref (void)
283 ref_intersection *new_ref =
284 (ref_intersection *) vfy_alloc (sizeof (ref_intersection));
286 new_ref->alloc_next = vfr->isect_list;
287 vfr->isect_list = new_ref;
288 return new_ref;
291 static ref_intersection *
292 clone_ref (ref_intersection *dup)
294 ref_intersection *new_ref = make_ref ();
296 new_ref->is_resolved = dup->is_resolved;
297 new_ref->data = dup->data;
298 return new_ref;
301 static void
302 resolve_ref (ref_intersection *ref)
304 if (ref->is_resolved)
305 return;
306 ref->data.klass = vfy_find_class (vfr->current_class, ref->data.name);
307 ref->is_resolved = true;
310 static bool
311 refs_equal (ref_intersection *ref1, ref_intersection *ref2)
313 if (! ref1->is_resolved && ! ref2->is_resolved
314 && vfy_strings_equal (ref1->data.name, ref2->data.name))
315 return true;
316 if (! ref1->is_resolved)
317 resolve_ref (ref1);
318 if (! ref2->is_resolved)
319 resolve_ref (ref2);
320 return ref1->data.klass == ref2->data.klass;
323 /* Merge REF1 type into REF2, returning the result. This will
324 return REF2 if all the classes in THIS already appear in
325 REF2. */
326 static ref_intersection *
327 merge_refs (ref_intersection *ref1, ref_intersection *ref2)
329 ref_intersection *tail = ref2;
330 for (; ref1 != NULL; ref1 = ref1->ref_next)
332 bool add = true;
333 ref_intersection *iter;
334 for (iter = ref2; iter != NULL; iter = iter->ref_next)
336 if (refs_equal (ref1, iter))
338 add = false;
339 break;
343 if (add)
345 ref_intersection *new_tail = clone_ref (ref1);
346 new_tail->ref_next = tail;
347 tail = new_tail;
350 return tail;
353 /* See if an object of type SOURCE can be assigned to an object of
354 type TARGET. This might resolve classes in one chain or the other. */
355 static bool
356 ref_compatible (ref_intersection *target, ref_intersection *source)
358 for (; target != NULL; target = target->ref_next)
360 ref_intersection *source_iter = source;
362 for (; source_iter != NULL; source_iter = source_iter->ref_next)
364 /* Avoid resolving if possible. */
365 if (! target->is_resolved
366 && ! source_iter->is_resolved
367 && vfy_strings_equal (target->data.name,
368 source_iter->data.name))
369 continue;
371 if (! target->is_resolved)
372 resolve_ref (target);
373 if (! source_iter->is_resolved)
374 resolve_ref (source_iter);
376 if (! vfy_is_assignable_from (target->data.klass,
377 source_iter->data.klass))
378 return false;
382 return true;
385 static bool
386 ref_isarray (ref_intersection *ref)
388 /* assert (ref_next == NULL); */
389 if (ref->is_resolved)
390 return vfy_is_array (ref->data.klass);
391 else
392 return vfy_string_bytes (ref->data.name)[0] == '[';
395 static bool
396 ref_isinterface (ref_intersection *ref)
398 /* assert (ref_next == NULL); */
399 if (! ref->is_resolved)
400 resolve_ref (ref);
401 return vfy_is_interface (ref->data.klass);
404 static bool
405 ref_isabstract (ref_intersection *ref)
407 /* assert (ref_next == NULL); */
408 if (! ref->is_resolved)
409 resolve_ref (ref);
410 return vfy_is_abstract (ref->data.klass);
413 static vfy_jclass
414 ref_getclass (ref_intersection *ref)
416 if (! ref->is_resolved)
417 resolve_ref (ref);
418 return ref->data.klass;
422 ref_count_dimensions (ref_intersection *ref)
424 int ndims = 0;
425 if (ref->is_resolved)
427 vfy_jclass k = ref->data.klass;
428 while (vfy_is_array (k))
430 k = vfy_get_component_type (k);
431 ++ndims;
434 else
436 const char *p = vfy_string_bytes (ref->data.name);
437 while (*p++ == '[')
438 ++ndims;
440 return ndims;
443 /* Return the type_val corresponding to a primitive signature
444 character. For instance `I' returns `int.class'. */
445 static type_val
446 get_type_val_for_signature (char sig)
448 type_val rt;
449 switch (sig)
451 case 'Z':
452 rt = boolean_type;
453 break;
454 case 'B':
455 rt = byte_type;
456 break;
457 case 'C':
458 rt = char_type;
459 break;
460 case 'S':
461 rt = short_type;
462 break;
463 case 'I':
464 rt = int_type;
465 break;
466 case 'J':
467 rt = long_type;
468 break;
469 case 'F':
470 rt = float_type;
471 break;
472 case 'D':
473 rt = double_type;
474 break;
475 case 'V':
476 rt = void_type;
477 break;
478 default:
479 verify_fail ("invalid signature");
480 return null_type;
482 return rt;
485 /* Return the type_val corresponding to a primitive class. */
486 static type_val
487 get_type_val_for_primtype (vfy_jclass k)
489 return get_type_val_for_signature (vfy_get_primitive_char (k));
492 /* The `type' class is used to represent a single type in the verifier. */
493 struct type
495 /* The type key. */
496 type_val key;
498 /* For reference types, the representation of the type. */
499 ref_intersection *klass;
501 /* This is used in two situations.
503 First, when constructing a new object, it is the PC of the
504 `new' instruction which created the object. We use the special
505 value UNINIT to mean that this is uninitialized. The special
506 value SELF is used for the case where the current method is
507 itself the <init> method. the special value EITHER is used
508 when we may optionally allow either an uninitialized or
509 initialized reference to match.
511 Second, when the key is return_address_type, this holds the PC
512 of the instruction following the `jsr'. */
513 int pc;
515 #define UNINIT -2
516 #define SELF -1
517 #define EITHER -3
520 /* Make a new instance given the type tag. We assume a generic
521 `reference_type' means Object. */
522 static void
523 init_type_from_tag (type *t, type_val k)
525 t->key = k;
526 /* For reference_type, if KLASS==NULL then that means we are
527 looking for a generic object of any kind, including an
528 uninitialized reference. */
529 t->klass = NULL;
530 t->pc = UNINIT;
533 /* Make a type for the given type_val tag K. */
534 static type
535 make_type (type_val k)
537 type t;
538 init_type_from_tag (&t, k);
539 return t;
542 /* Make a new instance given a class. */
543 static void
544 init_type_from_class (type *t, vfy_jclass k)
546 t->key = reference_type;
547 t->klass = make_ref ();
548 t->klass->is_resolved = true;
549 t->klass->data.klass = k;
550 t->klass->ref_next = NULL;
551 t->pc = UNINIT;
554 static type
555 make_type_from_class (vfy_jclass k)
557 type t;
558 init_type_from_class (&t, k);
559 return t;
562 static void
563 init_type_from_string (type *t, vfy_string n)
565 t->key = reference_type;
566 t->klass = make_ref ();
567 t->klass->is_resolved = false;
568 t->klass->data.name = n;
569 t->klass->ref_next = NULL;
570 t->pc = UNINIT;
573 static type
574 make_type_from_string (vfy_string n)
576 type t;
577 init_type_from_string (&t, n);
578 return t;
581 /* Promote a numeric type. */
582 static void
583 vfy_promote_type (type *t)
585 if (t->key == boolean_type || t->key == char_type
586 || t->key == byte_type || t->key == short_type)
587 t->key = int_type;
589 #define promote_type vfy_promote_type
591 /* Mark this type as the uninitialized result of `new'. */
592 static void
593 type_set_uninitialized (type *t, int npc)
595 if (t->key == reference_type)
596 t->key = uninitialized_reference_type;
597 else
598 verify_fail ("internal error in type::uninitialized");
599 t->pc = npc;
602 /* Mark this type as now initialized. */
603 static void
604 type_set_initialized (type *t, int npc)
606 if (npc != UNINIT && t->pc == npc && t->key == uninitialized_reference_type)
608 t->key = reference_type;
609 t->pc = UNINIT;
613 /* Mark this type as a particular return address. */
614 static void type_set_return_address (type *t, int npc)
616 t->pc = npc;
619 /* Return true if this type and type OTHER are considered
620 mergeable for the purposes of state merging. This is related
621 to subroutine handling. For this purpose two types are
622 considered unmergeable if they are both return-addresses but
623 have different PCs. */
624 static bool
625 type_state_mergeable_p (type *t1, type *t2)
627 return (t1->key != return_address_type
628 || t2->key != return_address_type
629 || t1->pc == t2->pc);
632 /* Return true if an object of type K can be assigned to a variable
633 of type T. Handle various special cases too. Might modify
634 T or K. Note however that this does not perform numeric
635 promotion. */
636 static bool
637 types_compatible (type *t, type *k)
639 /* Any type is compatible with the unsuitable type. */
640 if (k->key == unsuitable_type)
641 return true;
643 if (t->key < reference_type || k->key < reference_type)
644 return t->key == k->key;
646 /* The `null' type is convertible to any initialized reference
647 type. */
648 if (t->key == null_type)
649 return k->key != uninitialized_reference_type;
650 if (k->key == null_type)
651 return t->key != uninitialized_reference_type;
653 /* A special case for a generic reference. */
654 if (t->klass == NULL)
655 return true;
656 if (k->klass == NULL)
657 verify_fail ("programmer error in type::compatible");
659 /* Handle the special 'EITHER' case, which is only used in a
660 special case of 'putfield'. Note that we only need to handle
661 this on the LHS of a check. */
662 if (! type_initialized (t) && t->pc == EITHER)
664 /* If the RHS is uninitialized, it must be an uninitialized
665 'this'. */
666 if (! type_initialized (k) && k->pc != SELF)
667 return false;
669 else if (type_initialized (t) != type_initialized (k))
671 /* An initialized type and an uninitialized type are not
672 otherwise compatible. */
673 return false;
675 else
677 /* Two uninitialized objects are compatible if either:
678 * The PCs are identical, or
679 * One PC is UNINIT. */
680 if (type_initialized (t))
682 if (t->pc != k->pc && t->pc != UNINIT && k->pc != UNINIT)
683 return false;
687 return ref_compatible (t->klass, k->klass);
690 /* Return true if two types are equal. Only valid for reference
691 types. */
692 static bool
693 types_equal (type *t1, type *t2)
695 if ((t1->key != reference_type && t1->key != uninitialized_reference_type)
696 || (t2->key != reference_type
697 && t2->key != uninitialized_reference_type))
698 return false;
699 /* Only single-ref types are allowed. */
700 if (t1->klass->ref_next || t2->klass->ref_next)
701 return false;
702 return refs_equal (t1->klass, t2->klass);
705 static bool
706 type_isvoid (type *t)
708 return t->key == void_type;
711 static bool
712 type_iswide (type *t)
714 return t->key == long_type || t->key == double_type;
717 /* Return number of stack or local variable slots taken by this type. */
718 static int
719 type_depth (type *t)
721 return type_iswide (t) ? 2 : 1;
724 static bool
725 type_isarray (type *t)
727 /* We treat null_type as not an array. This is ok based on the
728 current uses of this method. */
729 if (t->key == reference_type)
730 return ref_isarray (t->klass);
731 return false;
734 static bool
735 type_isnull (type *t)
737 return t->key == null_type;
740 static bool
741 type_isinterface (type *t)
743 if (t->key != reference_type)
744 return false;
745 return ref_isinterface (t->klass);
748 static bool
749 type_isabstract (type *t)
751 if (t->key != reference_type)
752 return false;
753 return ref_isabstract (t->klass);
756 /* Return the element type of an array. */
757 static type
758 type_array_element (type *t)
760 type et;
761 vfy_jclass k;
763 if (t->key != reference_type)
764 verify_fail ("programmer error in type::element_type()");
766 k = vfy_get_component_type (ref_getclass (t->klass));
767 if (vfy_is_primitive (k))
768 init_type_from_tag (&et, get_type_val_for_primtype (k));
769 else
770 init_type_from_class (&et, k);
771 return et;
774 /* Return the array type corresponding to an initialized
775 reference. We could expand this to work for other kinds of
776 types, but currently we don't need to. */
777 static type
778 type_to_array (type *t)
780 type at;
781 vfy_jclass k;
783 if (t->key != reference_type)
784 verify_fail ("internal error in type::to_array()");
786 k = ref_getclass (t->klass);
787 init_type_from_class (&at, vfy_get_array_class (k));
788 return at;
791 static bool
792 type_isreference (type *t)
794 return t->key >= reference_type;
797 static int
798 type_get_pc (type *t)
800 return t->pc;
803 bool
804 type_initialized (type *t)
806 return t->key == reference_type || t->key == null_type;
809 static void
810 type_verify_dimensions (type *t, int ndims)
812 /* The way this is written, we don't need to check isarray(). */
813 if (t->key != reference_type)
814 verify_fail ("internal error in verify_dimensions:"
815 " not a reference type");
817 if (ref_count_dimensions (t->klass) < ndims)
818 verify_fail ("array type has fewer dimensions"
819 " than required");
822 /* Merge OLD_TYPE into this. On error throw exception. Return
823 true if the merge caused a type change. */
824 static bool
825 merge_types (type *t, type *old_type, bool local_semantics)
827 bool changed = false;
828 bool refo = type_isreference (old_type);
829 bool refn = type_isreference (t);
830 if (refo && refn)
832 if (old_type->key == null_type)
834 else if (t->key == null_type)
836 *t = *old_type;
837 changed = true;
839 else if (type_initialized (t) != type_initialized (old_type))
840 verify_fail ("merging initialized and uninitialized types");
841 else
843 ref_intersection *merged;
844 if (! type_initialized (t))
846 if (t->pc == UNINIT)
847 t->pc = old_type->pc;
848 else if (old_type->pc == UNINIT)
850 else if (t->pc != old_type->pc)
851 verify_fail ("merging different uninitialized types");
854 merged = merge_refs (old_type->klass, t->klass);
855 if (merged != t->klass)
857 t->klass = merged;
858 changed = true;
862 else if (refo || refn || t->key != old_type->key)
864 if (local_semantics)
866 /* If we already have an `unsuitable' type, then we
867 don't need to change again. */
868 if (t->key != unsuitable_type)
870 t->key = unsuitable_type;
871 changed = true;
874 else
875 verify_fail ("unmergeable type");
877 return changed;
880 #ifdef VERIFY_DEBUG
881 static void
882 type_print (type *t)
884 char c = '?';
885 switch (t->key)
887 case boolean_type: c = 'Z'; break;
888 case byte_type: c = 'B'; break;
889 case char_type: c = 'C'; break;
890 case short_type: c = 'S'; break;
891 case int_type: c = 'I'; break;
892 case long_type: c = 'J'; break;
893 case float_type: c = 'F'; break;
894 case double_type: c = 'D'; break;
895 case void_type: c = 'V'; break;
896 case unsuitable_type: c = '-'; break;
897 case return_address_type: c = 'r'; break;
898 case continuation_type: c = '+'; break;
899 case reference_type: c = 'L'; break;
900 case null_type: c = '@'; break;
901 case uninitialized_reference_type: c = 'U'; break;
903 debug_print ("%c", c);
905 #endif /* VERIFY_DEBUG */
907 /* This class holds all the state information we need for a given
908 location. */
909 struct state
911 /* The current top of the stack, in terms of slots. */
912 int stacktop;
913 /* The current depth of the stack. This will be larger than
914 STACKTOP when wide types are on the stack. */
915 int stackdepth;
916 /* The stack. */
917 type *stack;
918 /* The local variables. */
919 type *locals;
920 /* We keep track of the type of `this' specially. This is used to
921 ensure that an instance initializer invokes another initializer
922 on `this' before returning. We must keep track of this
923 specially because otherwise we might be confused by code which
924 assigns to locals[0] (overwriting `this') and then returns
925 without really initializing. */
926 type this_type;
928 /* The PC for this state. This is only valid on states which are
929 permanently attached to a given PC. For an object like
930 `current_state', which is used transiently, this has no
931 meaning. */
932 int pc;
933 /* We keep a linked list of all states requiring reverification.
934 If this is the special value INVALID_STATE then this state is
935 not on the list. NULL marks the end of the linked list. */
936 state *next;
939 /* NO_NEXT is the PC value meaning that a new state must be
940 acquired from the verification list. */
941 #define NO_NEXT -1
943 static void
944 init_state_with_stack (state *s, int max_stack, int max_locals)
946 int i;
947 s->stacktop = 0;
948 s->stackdepth = 0;
949 s->stack = (type *) vfy_alloc (max_stack * sizeof (type));
950 for (i = 0; i < max_stack; ++i)
951 init_type_from_tag (&s->stack[i], unsuitable_type);
952 s->locals = (type *) vfy_alloc (max_locals * sizeof (type));
953 for (i = 0; i < max_locals; ++i)
954 init_type_from_tag (&s->locals[i], unsuitable_type);
955 init_type_from_tag (&s->this_type, unsuitable_type);
956 s->pc = NO_NEXT;
957 s->next = INVALID_STATE;
960 static void
961 copy_state (state *s, state *copy, int max_stack, int max_locals)
963 int i;
964 s->stacktop = copy->stacktop;
965 s->stackdepth = copy->stackdepth;
966 for (i = 0; i < max_stack; ++i)
967 s->stack[i] = copy->stack[i];
968 for (i = 0; i < max_locals; ++i)
969 s->locals[i] = copy->locals[i];
971 s->this_type = copy->this_type;
972 /* Don't modify `next' or `pc'. */
975 static void
976 copy_state_with_stack (state *s, state *orig, int max_stack, int max_locals)
978 init_state_with_stack (s, max_stack, max_locals);
979 copy_state (s, orig, max_stack, max_locals);
982 /* Allocate a new state, copying ORIG. */
983 static state *
984 make_state_copy (state *orig, int max_stack, int max_locals)
986 state *s = (state *) vfy_alloc (sizeof (state));
987 copy_state_with_stack (s, orig, max_stack, max_locals);
988 return s;
991 static state *
992 make_state (int max_stack, int max_locals)
994 state *s = (state *) vfy_alloc (sizeof (state));
995 init_state_with_stack (s, max_stack, max_locals);
996 return s;
999 static void
1000 free_state (state *s)
1002 if (s->stack != NULL)
1003 vfy_free (s->stack);
1004 if (s->locals != NULL)
1005 vfy_free (s->locals);
1008 /* Modify this state to reflect entry to an exception handler. */
1009 static void
1010 state_set_exception (state *s, type *t, int max_stack)
1012 int i;
1013 s->stackdepth = 1;
1014 s->stacktop = 1;
1015 s->stack[0] = *t;
1016 for (i = s->stacktop; i < max_stack; ++i)
1017 init_type_from_tag (&s->stack[i], unsuitable_type);
1020 /* Merge STATE_OLD into this state. Destructively modifies this
1021 state. Returns true if the new state was in fact changed.
1022 Will throw an exception if the states are not mergeable. */
1023 static bool
1024 merge_states (state *s, state *state_old, int max_locals)
1026 int i;
1027 bool changed = false;
1029 /* Special handling for `this'. If one or the other is
1030 uninitialized, then the merge is uninitialized. */
1031 if (type_initialized (&s->this_type))
1032 s->this_type = state_old->this_type;
1034 /* Merge stacks. */
1035 if (state_old->stacktop != s->stacktop) /* FIXME stackdepth instead? */
1036 verify_fail ("stack sizes differ");
1037 for (i = 0; i < state_old->stacktop; ++i)
1039 if (merge_types (&s->stack[i], &state_old->stack[i], false))
1040 changed = true;
1043 /* Merge local variables. */
1044 for (i = 0; i < max_locals; ++i)
1046 if (merge_types (&s->locals[i], &state_old->locals[i], true))
1047 changed = true;
1050 return changed;
1053 /* Ensure that `this' has been initialized. */
1054 static void
1055 state_check_this_initialized (state *s)
1057 if (type_isreference (&s->this_type) && ! type_initialized (&s->this_type))
1058 verify_fail ("`this' is uninitialized");
1061 /* Set type of `this'. */
1062 static void
1063 state_set_this_type (state *s, type *k)
1065 s->this_type = *k;
1068 /* Mark each `new'd object we know of that was allocated at PC as
1069 initialized. */
1070 static void
1071 state_set_initialized (state *s, int pc, int max_locals)
1073 int i;
1074 for (i = 0; i < s->stacktop; ++i)
1075 type_set_initialized (&s->stack[i], pc);
1076 for (i = 0; i < max_locals; ++i)
1077 type_set_initialized (&s->locals[i], pc);
1078 type_set_initialized (&s->this_type, pc);
1081 /* This tests to see whether two states can be considered "merge
1082 compatible". If both states have a return-address in the same
1083 slot, and the return addresses are different, then they are not
1084 compatible and we must not try to merge them. */
1085 static bool
1086 state_mergeable_p (state *s, state *other, int max_locals)
1089 int i;
1091 /* This is tricky: if the stack sizes differ, then not only are
1092 these not mergeable, but in fact we should give an error, as
1093 we've found two execution paths that reach a branch target
1094 with different stack depths. FIXME stackdepth instead? */
1095 if (s->stacktop != other->stacktop)
1096 verify_fail ("stack sizes differ");
1098 for (i = 0; i < s->stacktop; ++i)
1099 if (! type_state_mergeable_p (&s->stack[i], &other->stack[i]))
1100 return false;
1101 for (i = 0; i < max_locals; ++i)
1102 if (! type_state_mergeable_p (&s->locals[i], &other->locals[i]))
1103 return false;
1104 return true;
1107 static void
1108 state_reverify (state *s)
1110 if (s->next == INVALID_STATE)
1112 s->next = vfr->next_verify_state;
1113 vfr->next_verify_state = s;
1117 #ifdef VERIFY_DEBUG
1118 static void
1119 debug_print_state (state *s, const char *leader, int pc, int max_stack,
1120 int max_locals)
1122 int i;
1123 debug_print ("%s [%4d]: [stack] ", leader, pc);
1124 for (i = 0; i < s->stacktop; ++i)
1125 type_print (&s->stack[i]);
1126 for (; i < max_stack; ++i)
1127 debug_print (".");
1128 debug_print (" [local] ");
1129 for (i = 0; i < max_locals; ++i)
1130 type_print (&s->locals[i]);
1131 debug_print (" | %p\n", s);
1133 #else
1134 static void
1135 debug_print_state (state *s ATTRIBUTE_UNUSED,
1136 const char *leader ATTRIBUTE_UNUSED,
1137 int pc ATTRIBUTE_UNUSED, int max_stack ATTRIBUTE_UNUSED,
1138 int max_locals ATTRIBUTE_UNUSED)
1141 #endif /* VERIFY_DEBUG */
1143 static type
1144 pop_raw (void)
1146 type r;
1147 state *s = vfr->current_state;
1148 if (s->stacktop <= 0)
1149 verify_fail ("stack empty");
1150 r = s->stack[--s->stacktop];
1151 s->stackdepth -= type_depth (&r);
1152 if (s->stackdepth < 0)
1153 verify_fail_pc ("stack empty", vfr->start_PC);
1154 return r;
1157 static type
1158 pop32 (void)
1160 type r = pop_raw ();
1161 if (type_iswide (&r))
1162 verify_fail ("narrow pop of wide type");
1163 return r;
1166 static type
1167 vfy_pop_type_t (type match)
1169 type t;
1170 vfy_promote_type (&match);
1171 t = pop_raw ();
1172 if (! types_compatible (&match, &t))
1173 verify_fail ("incompatible type on stack");
1174 return t;
1177 static type
1178 vfy_pop_type (type_val match)
1180 type t = make_type (match);
1181 return vfy_pop_type_t (t);
1184 #define pop_type vfy_pop_type
1185 #define pop_type_t vfy_pop_type_t
1187 /* Pop a reference which is guaranteed to be initialized. MATCH
1188 doesn't have to be a reference type; in this case this acts like
1189 pop_type. */
1190 static type
1191 pop_init_ref_t (type match)
1193 type t = pop_raw ();
1194 if (type_isreference (&t) && ! type_initialized (&t))
1195 verify_fail ("initialized reference required");
1196 else if (! types_compatible (&match, &t))
1197 verify_fail ("incompatible type on stack");
1198 return t;
1201 static type
1202 pop_init_ref (type_val match)
1204 type t = make_type (match);
1205 return pop_init_ref_t (t);
1208 /* Pop a reference type or a return address. */
1209 static type
1210 pop_ref_or_return (void)
1212 type t = pop_raw ();
1213 if (! type_isreference (&t) && t.key != return_address_type)
1214 verify_fail ("expected reference or return address on stack");
1215 return t;
1218 static void
1219 vfy_push_type_t (type t)
1221 int depth;
1222 state *s = vfr->current_state;
1223 /* If T is a numeric type like short, promote it to int. */
1224 promote_type (&t);
1226 depth = type_depth (&t);
1228 if (s->stackdepth + depth > vfr->current_method->max_stack)
1229 verify_fail ("stack overflow");
1230 s->stack[s->stacktop++] = t;
1231 s->stackdepth += depth;
1234 static void
1235 vfy_push_type (type_val tval)
1237 type t = make_type (tval);
1238 vfy_push_type_t (t);
1241 #define push_type vfy_push_type
1242 #define push_type_t vfy_push_type_t
1244 static void
1245 set_variable (int index, type t)
1247 int depth;
1248 state *s = vfr->current_state;
1249 /* If T is a numeric type like short, promote it to int. */
1250 promote_type (&t);
1252 depth = type_depth (&t);
1253 if (index > vfr->current_method->max_locals - depth)
1254 verify_fail ("invalid local variable");
1255 s->locals[index] = t;
1257 if (depth == 2)
1258 init_type_from_tag (&s->locals[index + 1], continuation_type);
1259 if (index > 0 && type_iswide (&s->locals[index - 1]))
1260 init_type_from_tag (&s->locals[index - 1], unsuitable_type);
1263 static type
1264 get_variable_t (int index, type *t)
1266 state *s = vfr->current_state;
1267 int depth = type_depth (t);
1268 if (index > vfr->current_method->max_locals - depth)
1269 verify_fail ("invalid local variable");
1270 if (! types_compatible (t, &s->locals[index]))
1271 verify_fail ("incompatible type in local variable");
1272 if (depth == 2)
1274 type cont = make_type (continuation_type);
1275 if (! types_compatible (&s->locals[index + 1], &cont))
1276 verify_fail ("invalid local variable");
1278 return s->locals[index];
1281 static type
1282 get_variable (int index, type_val v)
1284 type t = make_type (v);
1285 return get_variable_t (index, &t);
1288 /* Make sure ARRAY is an array type and that its elements are
1289 compatible with type ELEMENT. Returns the actual element type. */
1290 static type
1291 require_array_type_t (type array, type element)
1293 type t;
1294 /* An odd case. Here we just pretend that everything went ok. If
1295 the requested element type is some kind of reference, return
1296 the null type instead. */
1297 if (type_isnull (&array))
1298 return type_isreference (&element) ? make_type (null_type) : element;
1300 if (! type_isarray (&array))
1301 verify_fail ("array required");
1303 t = type_array_element (&array);
1304 if (! types_compatible (&element, &t))
1306 /* Special case for byte arrays, which must also be boolean
1307 arrays. */
1308 bool ok = true;
1309 if (element.key == byte_type)
1311 type e2 = make_type (boolean_type);
1312 ok = types_compatible (&e2, &t);
1314 if (! ok)
1315 verify_fail ("incompatible array element type");
1318 /* Return T and not ELEMENT, because T might be specialized. */
1319 return t;
1322 static type
1323 require_array_type (type array, type_val element)
1325 type t = make_type (element);
1326 return require_array_type_t (array, t);
1329 static jint
1330 get_byte (void)
1332 if (vfr->PC >= vfr->current_method->code_length)
1333 verify_fail ("premature end of bytecode");
1334 return (jint) vfr->bytecode[vfr->PC++] & 0xff;
1337 static jint
1338 get_ushort (void)
1340 jint b1 = get_byte ();
1341 jint b2 = get_byte ();
1342 return (jint) ((b1 << 8) | b2) & 0xffff;
1345 static jint
1346 get_short (void)
1348 signed char b1 = (signed char) get_byte ();
1349 jint b2 = get_byte ();
1350 jshort s = (b1 << 8) | b2;
1351 return (jint) s;
1354 static jint
1355 get_int (void)
1357 jint b1 = get_byte ();
1358 jint b2 = get_byte ();
1359 jint b3 = get_byte ();
1360 jint b4 = get_byte ();
1361 jword result = (b1 << 24) | (b2 << 16) | (b3 << 8) | b4;
1362 /* In the compiler, 'jint' might have more than 32 bits, so we must
1363 sign extend. */
1364 return WORD_TO_INT (result);
1367 static int
1368 compute_jump (int offset)
1370 int npc = vfr->start_PC + offset;
1371 if (npc < 0 || npc >= vfr->current_method->code_length)
1372 verify_fail_pc ("branch out of range", vfr->start_PC);
1373 return npc;
1376 /* Add a new state to the state list at NPC. */
1377 static state *
1378 add_new_state (int npc, state *old_state)
1380 state_list *nlink;
1381 vfy_method *current_method = vfr->current_method;
1382 state *new_state = make_state_copy (old_state, current_method->max_stack,
1383 current_method->max_locals);
1384 debug_print ("== New state in add_new_state\n");
1385 debug_print_state (new_state, "New", npc, current_method->max_stack,
1386 current_method->max_locals);
1388 nlink = (state_list *) vfy_alloc (sizeof (state_list));
1389 nlink->val = new_state;
1390 nlink->next = vfr->states[npc];
1391 vfr->states[npc] = nlink;
1392 new_state->pc = npc;
1393 return new_state;
1396 /* Merge the indicated state into the state at the branch target and
1397 schedule a new PC if there is a change. NPC is the PC of the
1398 branch target, and FROM_STATE is the state at the source of the
1399 branch. This method returns true if the destination state
1400 changed and requires reverification, false otherwise. */
1401 static void
1402 merge_into (int npc, state *from_state)
1404 /* Iterate over all target states and merge our state into each,
1405 if applicable. FIXME one improvement we could make here is
1406 "state destruction". Merging a new state into an existing one
1407 might cause a return_address_type to be merged to
1408 unsuitable_type. In this case the resulting state may now be
1409 mergeable with other states currently held in parallel at this
1410 location. So in this situation we could pairwise compare and
1411 reduce the number of parallel states. */
1412 state_list *iter;
1413 bool applicable = false;
1414 for (iter = vfr->states[npc]; iter != NULL; iter = iter->next)
1416 state *new_state = iter->val;
1417 vfy_method *current_method = vfr->current_method;
1419 if (state_mergeable_p (new_state, from_state,
1420 current_method->max_locals))
1422 bool changed;
1423 applicable = true;
1425 debug_print ("== Merge states in merge_into\n");
1426 debug_print_state (from_state, "Frm", vfr->start_PC, current_method->max_stack,
1427 current_method->max_locals);
1428 debug_print_state (new_state, " To", npc, current_method->max_stack,
1429 current_method->max_locals);
1430 changed = merge_states (new_state, from_state,
1431 current_method->max_locals);
1432 debug_print_state (new_state, "New", npc, current_method->max_stack,
1433 current_method->max_locals);
1435 if (changed)
1436 state_reverify (new_state);
1440 if (! applicable)
1442 /* Either we don't yet have a state at NPC, or we have a
1443 return-address type that is in conflict with all existing
1444 state. So, we need to create a new entry. */
1445 state *new_state = add_new_state (npc, from_state);
1446 /* A new state added in this way must always be reverified. */
1447 state_reverify (new_state);
1451 static void
1452 push_jump (int offset)
1454 int npc = compute_jump (offset);
1455 /* According to the JVM Spec, we need to check for uninitialized
1456 objects here. However, this does not actually affect type
1457 safety, and the Eclipse java compiler generates code that
1458 violates this constraint. */
1459 merge_into (npc, vfr->current_state);
1462 static void
1463 push_exception_jump (type t, int pc)
1465 state s;
1466 /* According to the JVM Spec, we need to check for uninitialized
1467 objects here. However, this does not actually affect type
1468 safety, and the Eclipse java compiler generates code that
1469 violates this constraint. */
1470 copy_state_with_stack (&s, vfr->current_state,
1471 vfr->current_method->max_stack,
1472 vfr->current_method->max_locals);
1473 if (vfr->current_method->max_stack < 1)
1474 verify_fail ("stack overflow at exception handler");
1475 state_set_exception (&s, &t, vfr->current_method->max_stack);
1476 merge_into (pc, &s);
1477 /* FIXME: leak.. need free_state or GC */
1480 static state *
1481 pop_jump (void)
1483 state *new_state = vfr->next_verify_state;
1484 if (new_state == INVALID_STATE)
1485 verify_fail ("programmer error in pop_jump");
1486 if (new_state != NULL)
1488 vfr->next_verify_state = new_state->next;
1489 new_state->next = INVALID_STATE;
1491 return new_state;
1494 static void
1495 invalidate_pc (void)
1497 vfr->PC = NO_NEXT;
1500 static void
1501 note_branch_target (int pc)
1503 /* Don't check `pc <= PC', because we've advanced PC after
1504 fetching the target and we haven't yet checked the next
1505 instruction. */
1506 if (pc < vfr->PC && ! (vfr->flags[pc] & FLAG_INSN_START))
1507 verify_fail_pc ("branch not to instruction start", vfr->start_PC);
1508 vfr->flags[pc] |= FLAG_BRANCH_TARGET;
1511 static void
1512 skip_padding (void)
1514 while ((vfr->PC % 4) > 0)
1515 if (get_byte () != 0)
1516 verify_fail ("found nonzero padding byte");
1519 /* Do the work for a `ret' instruction. INDEX is the index into the
1520 local variables. */
1521 static void
1522 handle_ret_insn (int index)
1524 type ret = make_type (return_address_type);
1525 type ret_addr = get_variable_t (index, &ret);
1526 /* It would be nice if we could do this. However, the JVM Spec
1527 doesn't say that this is what happens. It is implied that
1528 reusing a return address is invalid, but there's no actual
1529 prohibition against it. */
1530 /* set_variable (index, unsuitable_type); */
1532 int npc = type_get_pc (&ret_addr);
1533 /* We might be returning to a `jsr' that is at the end of the
1534 bytecode. This is ok if we never return from the called
1535 subroutine, but if we see this here it is an error. */
1536 if (npc >= vfr->current_method->code_length)
1537 verify_fail ("fell off end");
1539 /* According to the JVM Spec, we need to check for uninitialized
1540 objects here. However, this does not actually affect type
1541 safety, and the Eclipse java compiler generates code that
1542 violates this constraint. */
1543 merge_into (npc, vfr->current_state);
1544 invalidate_pc ();
1547 static void handle_jsr_insn (int offset)
1549 type ret_addr;
1550 int npc = compute_jump (offset);
1552 /* According to the JVM Spec, we need to check for uninitialized
1553 objects here. However, this does not actually affect type
1554 safety, and the Eclipse java compiler generates code that
1555 violates this constraint. */
1557 /* Modify our state as appropriate for entry into a subroutine. */
1558 ret_addr = make_type (return_address_type);
1559 type_set_return_address (&ret_addr, vfr->PC);
1560 vfy_push_type_t (ret_addr);
1561 merge_into (npc, vfr->current_state);
1562 invalidate_pc ();
1565 static vfy_jclass
1566 construct_primitive_array_type (type_val prim)
1568 vfy_jclass k = NULL;
1569 switch (prim)
1571 case boolean_type:
1572 case char_type:
1573 case float_type:
1574 case double_type:
1575 case byte_type:
1576 case short_type:
1577 case int_type:
1578 case long_type:
1579 k = vfy_get_primitive_type ((int) prim);
1580 break;
1582 /* These aren't used here but we call them out to avoid
1583 warnings. */
1584 case void_type:
1585 case unsuitable_type:
1586 case return_address_type:
1587 case continuation_type:
1588 case reference_type:
1589 case null_type:
1590 case uninitialized_reference_type:
1591 default:
1592 verify_fail ("unknown type in construct_primitive_array_type");
1594 k = vfy_get_array_class (k);
1595 return k;
1598 /* This pass computes the location of branch targets and also
1599 instruction starts. */
1600 static void
1601 branch_prepass (void)
1603 int i, pc;
1604 vfr->flags = (char *) vfy_alloc (vfr->current_method->code_length);
1606 for (i = 0; i < vfr->current_method->code_length; ++i)
1607 vfr->flags[i] = 0;
1609 vfr->PC = 0;
1610 while (vfr->PC < vfr->current_method->code_length)
1612 java_opcode opcode;
1613 /* Set `start_PC' early so that error checking can have the
1614 correct value. */
1615 vfr->start_PC = vfr->PC;
1616 vfr->flags[vfr->PC] |= FLAG_INSN_START;
1618 opcode = (java_opcode) vfr->bytecode[vfr->PC++];
1619 switch (opcode)
1621 case op_nop:
1622 case op_aconst_null:
1623 case op_iconst_m1:
1624 case op_iconst_0:
1625 case op_iconst_1:
1626 case op_iconst_2:
1627 case op_iconst_3:
1628 case op_iconst_4:
1629 case op_iconst_5:
1630 case op_lconst_0:
1631 case op_lconst_1:
1632 case op_fconst_0:
1633 case op_fconst_1:
1634 case op_fconst_2:
1635 case op_dconst_0:
1636 case op_dconst_1:
1637 case op_iload_0:
1638 case op_iload_1:
1639 case op_iload_2:
1640 case op_iload_3:
1641 case op_lload_0:
1642 case op_lload_1:
1643 case op_lload_2:
1644 case op_lload_3:
1645 case op_fload_0:
1646 case op_fload_1:
1647 case op_fload_2:
1648 case op_fload_3:
1649 case op_dload_0:
1650 case op_dload_1:
1651 case op_dload_2:
1652 case op_dload_3:
1653 case op_aload_0:
1654 case op_aload_1:
1655 case op_aload_2:
1656 case op_aload_3:
1657 case op_iaload:
1658 case op_laload:
1659 case op_faload:
1660 case op_daload:
1661 case op_aaload:
1662 case op_baload:
1663 case op_caload:
1664 case op_saload:
1665 case op_istore_0:
1666 case op_istore_1:
1667 case op_istore_2:
1668 case op_istore_3:
1669 case op_lstore_0:
1670 case op_lstore_1:
1671 case op_lstore_2:
1672 case op_lstore_3:
1673 case op_fstore_0:
1674 case op_fstore_1:
1675 case op_fstore_2:
1676 case op_fstore_3:
1677 case op_dstore_0:
1678 case op_dstore_1:
1679 case op_dstore_2:
1680 case op_dstore_3:
1681 case op_astore_0:
1682 case op_astore_1:
1683 case op_astore_2:
1684 case op_astore_3:
1685 case op_iastore:
1686 case op_lastore:
1687 case op_fastore:
1688 case op_dastore:
1689 case op_aastore:
1690 case op_bastore:
1691 case op_castore:
1692 case op_sastore:
1693 case op_pop:
1694 case op_pop2:
1695 case op_dup:
1696 case op_dup_x1:
1697 case op_dup_x2:
1698 case op_dup2:
1699 case op_dup2_x1:
1700 case op_dup2_x2:
1701 case op_swap:
1702 case op_iadd:
1703 case op_isub:
1704 case op_imul:
1705 case op_idiv:
1706 case op_irem:
1707 case op_ishl:
1708 case op_ishr:
1709 case op_iushr:
1710 case op_iand:
1711 case op_ior:
1712 case op_ixor:
1713 case op_ladd:
1714 case op_lsub:
1715 case op_lmul:
1716 case op_ldiv:
1717 case op_lrem:
1718 case op_lshl:
1719 case op_lshr:
1720 case op_lushr:
1721 case op_land:
1722 case op_lor:
1723 case op_lxor:
1724 case op_fadd:
1725 case op_fsub:
1726 case op_fmul:
1727 case op_fdiv:
1728 case op_frem:
1729 case op_dadd:
1730 case op_dsub:
1731 case op_dmul:
1732 case op_ddiv:
1733 case op_drem:
1734 case op_ineg:
1735 case op_i2b:
1736 case op_i2c:
1737 case op_i2s:
1738 case op_lneg:
1739 case op_fneg:
1740 case op_dneg:
1741 case op_i2l:
1742 case op_i2f:
1743 case op_i2d:
1744 case op_l2i:
1745 case op_l2f:
1746 case op_l2d:
1747 case op_f2i:
1748 case op_f2l:
1749 case op_f2d:
1750 case op_d2i:
1751 case op_d2l:
1752 case op_d2f:
1753 case op_lcmp:
1754 case op_fcmpl:
1755 case op_fcmpg:
1756 case op_dcmpl:
1757 case op_dcmpg:
1758 case op_monitorenter:
1759 case op_monitorexit:
1760 case op_ireturn:
1761 case op_lreturn:
1762 case op_freturn:
1763 case op_dreturn:
1764 case op_areturn:
1765 case op_return:
1766 case op_athrow:
1767 case op_arraylength:
1768 break;
1770 case op_bipush:
1771 case op_ldc:
1772 case op_iload:
1773 case op_lload:
1774 case op_fload:
1775 case op_dload:
1776 case op_aload:
1777 case op_istore:
1778 case op_lstore:
1779 case op_fstore:
1780 case op_dstore:
1781 case op_astore:
1782 case op_ret:
1783 case op_newarray:
1784 get_byte ();
1785 break;
1787 case op_iinc:
1788 case op_sipush:
1789 case op_ldc_w:
1790 case op_ldc2_w:
1791 case op_getstatic:
1792 case op_getfield:
1793 case op_putfield:
1794 case op_putstatic:
1795 case op_new:
1796 case op_anewarray:
1797 case op_instanceof:
1798 case op_checkcast:
1799 case op_invokespecial:
1800 case op_invokestatic:
1801 case op_invokevirtual:
1802 get_short ();
1803 break;
1805 case op_multianewarray:
1806 get_short ();
1807 get_byte ();
1808 break;
1810 case op_jsr:
1811 case op_ifeq:
1812 case op_ifne:
1813 case op_iflt:
1814 case op_ifge:
1815 case op_ifgt:
1816 case op_ifle:
1817 case op_if_icmpeq:
1818 case op_if_icmpne:
1819 case op_if_icmplt:
1820 case op_if_icmpge:
1821 case op_if_icmpgt:
1822 case op_if_icmple:
1823 case op_if_acmpeq:
1824 case op_if_acmpne:
1825 case op_ifnull:
1826 case op_ifnonnull:
1827 case op_goto:
1828 note_branch_target (compute_jump (get_short ()));
1829 break;
1831 case op_tableswitch:
1833 jint low, hi;
1834 skip_padding ();
1835 note_branch_target (compute_jump (get_int ()));
1836 low = get_int ();
1837 hi = get_int ();
1838 if (low > hi)
1839 verify_fail_pc ("invalid tableswitch", vfr->start_PC);
1840 for (i = low; i <= hi; ++i)
1841 note_branch_target (compute_jump (get_int ()));
1843 break;
1845 case op_lookupswitch:
1847 int npairs;
1848 skip_padding ();
1849 note_branch_target (compute_jump (get_int ()));
1850 npairs = get_int ();
1851 if (npairs < 0)
1852 verify_fail_pc ("too few pairs in lookupswitch", vfr->start_PC);
1853 while (npairs-- > 0)
1855 get_int ();
1856 note_branch_target (compute_jump (get_int ()));
1859 break;
1861 case op_invokeinterface:
1862 get_short ();
1863 get_byte ();
1864 get_byte ();
1865 break;
1867 case op_wide:
1869 opcode = (java_opcode) get_byte ();
1870 get_short ();
1871 if (opcode == op_iinc)
1872 get_short ();
1874 break;
1876 case op_jsr_w:
1877 case op_goto_w:
1878 note_branch_target (compute_jump (get_int ()));
1879 break;
1881 #if 0
1882 /* These are unused here, but we call them out explicitly
1883 so that -Wswitch-enum doesn't complain. */
1884 case op_putfield_1:
1885 case op_putfield_2:
1886 case op_putfield_4:
1887 case op_putfield_8:
1888 case op_putfield_a:
1889 case op_putstatic_1:
1890 case op_putstatic_2:
1891 case op_putstatic_4:
1892 case op_putstatic_8:
1893 case op_putstatic_a:
1894 case op_getfield_1:
1895 case op_getfield_2s:
1896 case op_getfield_2u:
1897 case op_getfield_4:
1898 case op_getfield_8:
1899 case op_getfield_a:
1900 case op_getstatic_1:
1901 case op_getstatic_2s:
1902 case op_getstatic_2u:
1903 case op_getstatic_4:
1904 case op_getstatic_8:
1905 case op_getstatic_a:
1906 #endif /* VFY_FAST_OPCODES */
1907 default:
1908 verify_fail_pc ("unrecognized instruction in branch_prepass",
1909 vfr->start_PC);
1912 /* See if any previous branch tried to branch to the middle of
1913 this instruction. */
1914 for (pc = vfr->start_PC + 1; pc < vfr->PC; ++pc)
1916 if ((vfr->flags[pc] & FLAG_BRANCH_TARGET))
1917 verify_fail_pc ("branch to middle of instruction", pc);
1921 /* Verify exception handlers. */
1922 for (i = 0; i < vfr->current_method->exc_count; ++i)
1924 int handler, start, end, htype;
1925 vfy_get_exception (vfr->exception, i, &handler, &start, &end, &htype);
1926 if (! (vfr->flags[handler] & FLAG_INSN_START))
1927 verify_fail_pc ("exception handler not at instruction start",
1928 handler);
1929 if (! (vfr->flags[start] & FLAG_INSN_START))
1930 verify_fail_pc ("exception start not at instruction start", start);
1931 if (end != vfr->current_method->code_length
1932 && ! (vfr->flags[end] & FLAG_INSN_START))
1933 verify_fail_pc ("exception end not at instruction start", end);
1935 vfr->flags[handler] |= FLAG_BRANCH_TARGET;
1939 static void
1940 check_pool_index (int index)
1942 if (index < 0 || index >= vfy_get_constants_size (vfr->current_class))
1943 verify_fail_pc ("constant pool index out of range", vfr->start_PC);
1946 static type
1947 check_class_constant (int index)
1949 type t = { 0, 0, 0 };
1950 vfy_constants *pool;
1952 check_pool_index (index);
1953 pool = vfy_get_constants (vfr->current_class);
1954 if (vfy_tag (pool, index) == JV_CONSTANT_ResolvedClass)
1955 init_type_from_class (&t, vfy_get_pool_class (pool, index));
1956 else if (vfy_tag (pool, index) == JV_CONSTANT_Class)
1957 init_type_from_string (&t, vfy_get_pool_string (pool, index));
1958 else
1959 verify_fail_pc ("expected class constant", vfr->start_PC);
1960 return t;
1963 static type
1964 check_constant (int index)
1966 type t = { 0, 0, 0 };
1967 vfy_constants *pool;
1969 check_pool_index (index);
1970 pool = vfy_get_constants (vfr->current_class);
1971 if (vfy_tag (pool, index) == JV_CONSTANT_ResolvedString
1972 || vfy_tag (pool, index) == JV_CONSTANT_String)
1973 init_type_from_class (&t, vfy_string_type ());
1974 else if (vfy_tag (pool, index) == JV_CONSTANT_Integer)
1975 init_type_from_tag (&t, int_type);
1976 else if (vfy_tag (pool, index) == JV_CONSTANT_Float)
1977 init_type_from_tag (&t, float_type);
1978 else if (vfy_tag (pool, index) == JV_CONSTANT_Class
1979 || vfy_tag (pool, index) == JV_CONSTANT_ResolvedClass)
1980 /* FIXME: should only allow this for 1.5 bytecode. */
1981 init_type_from_class (&t, vfy_class_type ());
1982 else
1983 verify_fail_pc ("String, int, or float constant expected", vfr->start_PC);
1984 return t;
1987 static type
1988 check_wide_constant (int index)
1990 type t = { 0, 0, 0 };
1991 vfy_constants *pool;
1993 check_pool_index (index);
1994 pool = vfy_get_constants (vfr->current_class);
1995 if (vfy_tag (pool, index) == JV_CONSTANT_Long)
1996 init_type_from_tag (&t, long_type);
1997 else if (vfy_tag (pool, index) == JV_CONSTANT_Double)
1998 init_type_from_tag (&t, double_type);
1999 else
2000 verify_fail_pc ("long or double constant expected", vfr->start_PC);
2001 return t;
2004 /* Helper for both field and method. These are laid out the same in
2005 the constant pool. */
2006 static type
2007 handle_field_or_method (int index, int expected,
2008 vfy_string *name, vfy_string *fmtype)
2010 vfy_uint_16 class_index, name_and_type_index;
2011 vfy_uint_16 name_index, desc_index;
2012 vfy_constants *pool;
2014 check_pool_index (index);
2015 pool = vfy_get_constants (vfr->current_class);
2016 if (vfy_tag (pool, index) != expected)
2017 verify_fail_pc ("didn't see expected constant", vfr->start_PC);
2018 /* Once we know we have a Fieldref or Methodref we assume that it
2019 is correctly laid out in the constant pool. I think the code
2020 in defineclass.cc guarantees this. */
2021 vfy_load_indexes (pool, index, &class_index, &name_and_type_index);
2022 vfy_load_indexes (pool, name_and_type_index, &name_index, &desc_index);
2024 *name = vfy_get_pool_string (pool, name_index);
2025 *fmtype = vfy_get_pool_string (pool, desc_index);
2027 return check_class_constant (class_index);
2030 /* Return field's type, compute class' type if requested. If
2031 PUTFIELD is true, use the special 'putfield' semantics. */
2032 static type
2033 check_field_constant (int index, type *class_type, bool putfield)
2035 vfy_string name, field_type;
2036 const char *typec;
2037 int len;
2038 type t;
2040 type ct = handle_field_or_method (index,
2041 JV_CONSTANT_Fieldref,
2042 &name, &field_type);
2043 if (class_type)
2044 *class_type = ct;
2045 typec = vfy_string_bytes (field_type);
2046 len = vfy_string_length (field_type);
2047 if (typec[0] == '[' || typec[0] == 'L')
2048 init_type_from_string (&t, field_type);
2049 else
2050 init_type_from_tag (&t, get_type_val_for_signature (typec[0]));
2052 /* We have an obscure special case here: we can use `putfield' on a
2053 field declared in this class, even if `this' has not yet been
2054 initialized. */
2055 if (putfield
2056 && ! type_initialized (&vfr->current_state->this_type)
2057 && vfr->current_state->this_type.pc == SELF
2058 && types_equal (&vfr->current_state->this_type, &ct)
2059 && vfy_class_has_field (vfr->current_class, name, field_type))
2060 /* Note that we don't actually know whether we're going to match
2061 against 'this' or some other object of the same type. So,
2062 here we set things up so that it doesn't matter. This relies
2063 on knowing what our caller is up to. */
2064 type_set_uninitialized (class_type, EITHER);
2066 return t;
2069 static type
2070 check_method_constant (int index, bool is_interface,
2071 vfy_string *method_name,
2072 vfy_string *method_signature)
2074 return handle_field_or_method (index,
2075 (is_interface
2076 ? JV_CONSTANT_InterfaceMethodref
2077 : JV_CONSTANT_Methodref),
2078 method_name, method_signature);
2081 static const char *
2082 get_one_type (const char *p, type *t)
2084 const char *start = p;
2085 vfy_jclass k;
2086 type_val rt;
2087 char v;
2089 int arraycount = 0;
2090 while (*p == '[')
2092 ++arraycount;
2093 ++p;
2096 v = *p++;
2098 if (v == 'L')
2100 vfy_string name;
2101 while (*p != ';')
2102 ++p;
2103 ++p;
2104 name = vfy_get_string (start, p - start);
2105 *t = make_type_from_string (name);
2106 return p;
2109 /* Casting to jchar here is ok since we are looking at an ASCII
2110 character. */
2111 rt = get_type_val_for_signature (v);
2113 if (arraycount == 0)
2115 /* Callers of this function eventually push their arguments on
2116 the stack. So, promote them here. */
2117 type new_t = make_type (rt);
2118 vfy_promote_type (&new_t);
2119 *t = new_t;
2120 return p;
2123 k = construct_primitive_array_type (rt);
2124 while (--arraycount > 0)
2125 k = vfy_get_array_class (k);
2126 *t = make_type_from_class (k);
2127 return p;
2130 static void
2131 compute_argument_types (vfy_string signature, type *types)
2133 int i;
2134 const char *p = vfy_string_bytes (signature);
2136 /* Skip `('. */
2137 ++p;
2139 i = 0;
2140 while (*p != ')')
2141 p = get_one_type (p, &types[i++]);
2144 static type
2145 compute_return_type (vfy_string signature)
2147 const char *p = vfy_string_bytes (signature);
2148 type t;
2149 while (*p != ')')
2150 ++p;
2151 ++p;
2152 get_one_type (p, &t);
2153 return t;
2156 static void
2157 check_return_type (type onstack)
2159 type rt = compute_return_type (vfy_get_signature (vfr->current_method));
2160 if (! types_compatible (&rt, &onstack))
2161 verify_fail ("incompatible return type");
2164 /* Initialize the stack for the new method. Returns true if this
2165 method is an instance initializer. */
2166 static bool
2167 initialize_stack (void)
2169 int arg_count, i;
2170 int var = 0;
2171 bool is_init = vfy_strings_equal (vfy_get_method_name (vfr->current_method),
2172 vfy_init_name());
2173 bool is_clinit = vfy_strings_equal (vfy_get_method_name (vfr->current_method),
2174 vfy_clinit_name());
2176 if (! vfy_is_static (vfr->current_method))
2178 type kurr = make_type_from_class (vfr->current_class);
2179 if (is_init)
2181 type_set_uninitialized (&kurr, SELF);
2182 is_init = true;
2184 else if (is_clinit)
2185 verify_fail ("<clinit> method must be static");
2186 set_variable (0, kurr);
2187 state_set_this_type (vfr->current_state, &kurr);
2188 ++var;
2190 else
2192 if (is_init)
2193 verify_fail ("<init> method must be non-static");
2196 /* We have to handle wide arguments specially here. */
2197 arg_count = vfy_count_arguments (vfy_get_signature (vfr->current_method));
2199 type *arg_types = (type *) vfy_alloc (arg_count * sizeof (type));
2200 compute_argument_types (vfy_get_signature (vfr->current_method), arg_types);
2201 for (i = 0; i < arg_count; ++i)
2203 set_variable (var, arg_types[i]);
2204 ++var;
2205 if (type_iswide (&arg_types[i]))
2206 ++var;
2208 vfy_free (arg_types);
2211 return is_init;
2214 static void
2215 verify_instructions_0 (void)
2217 int i;
2218 bool this_is_init;
2220 vfr->current_state = make_state (vfr->current_method->max_stack,
2221 vfr->current_method->max_locals);
2223 vfr->PC = 0;
2224 vfr->start_PC = 0;
2226 /* True if we are verifying an instance initializer. */
2227 this_is_init = initialize_stack ();
2229 vfr->states = (state_list **) vfy_alloc (sizeof (state_list *)
2230 * vfr->current_method->code_length);
2232 for (i = 0; i < vfr->current_method->code_length; ++i)
2233 vfr->states[i] = NULL;
2235 vfr->next_verify_state = NULL;
2237 while (true)
2239 java_opcode opcode;
2241 /* If the PC was invalidated, get a new one from the work list. */
2242 if (vfr->PC == NO_NEXT)
2244 state *new_state = pop_jump ();
2245 /* If it is null, we're done. */
2246 if (new_state == NULL)
2247 break;
2249 vfr->PC = new_state->pc;
2250 debug_print ("== State pop from pending list\n");
2251 /* Set up the current state. */
2252 copy_state (vfr->current_state, new_state,
2253 vfr->current_method->max_stack, vfr->current_method->max_locals);
2255 else
2257 /* We only have to do this checking in the situation where
2258 control flow falls through from the previous instruction.
2259 Otherwise merging is done at the time we push the branch.
2260 Note that we'll catch the off-the-end problem just
2261 below. */
2262 if (vfr->PC < vfr->current_method->code_length
2263 && vfr->states[vfr->PC] != NULL)
2265 /* We've already visited this instruction. So merge
2266 the states together. It is simplest, but not most
2267 efficient, to just always invalidate the PC here. */
2268 merge_into (vfr->PC, vfr->current_state);
2269 invalidate_pc ();
2270 continue;
2274 /* Control can't fall off the end of the bytecode. We need to
2275 check this in both cases, not just the fall-through case,
2276 because we don't check to see whether a `jsr' appears at
2277 the end of the bytecode until we process a `ret'. */
2278 if (vfr->PC >= vfr->current_method->code_length)
2279 verify_fail ("fell off end");
2280 vfr->flags[vfr->PC] |= FLAG_INSN_SEEN;
2282 /* We only have to keep saved state at branch targets. If
2283 we're at a branch target and the state here hasn't been set
2284 yet, we set it now. You might notice that `ret' targets
2285 won't necessarily have FLAG_BRANCH_TARGET set. This
2286 doesn't matter, since those states will be filled in by
2287 merge_into. */
2288 /* Note that other parts of the compiler assume that there is a
2289 label with a type map at PC=0. */
2290 if (vfr->states[vfr->PC] == NULL
2291 && (vfr->PC == 0 || (vfr->flags[vfr->PC] & FLAG_BRANCH_TARGET) != 0))
2292 add_new_state (vfr->PC, vfr->current_state);
2294 /* Set this before handling exceptions so that debug output is
2295 sane. */
2296 vfr->start_PC = vfr->PC;
2298 /* Update states for all active exception handlers. Ordinarily
2299 there are not many exception handlers. So we simply run
2300 through them all. */
2301 for (i = 0; i < vfr->current_method->exc_count; ++i)
2303 int hpc, start, end, htype;
2304 vfy_get_exception (vfr->exception, i, &hpc, &start, &end, &htype);
2305 if (vfr->PC >= start && vfr->PC < end)
2307 type handler = make_type_from_class (vfy_throwable_type ());
2308 if (htype != 0)
2309 handler = check_class_constant (htype);
2310 push_exception_jump (handler, hpc);
2315 debug_print_state (vfr->current_state, " ", vfr->PC,
2316 vfr->current_method->max_stack,
2317 vfr->current_method->max_locals);
2318 opcode = (java_opcode) vfr->bytecode[vfr->PC++];
2319 switch (opcode)
2321 case op_nop:
2322 break;
2324 case op_aconst_null:
2325 push_type (null_type);
2326 break;
2328 case op_iconst_m1:
2329 case op_iconst_0:
2330 case op_iconst_1:
2331 case op_iconst_2:
2332 case op_iconst_3:
2333 case op_iconst_4:
2334 case op_iconst_5:
2335 push_type (int_type);
2336 break;
2338 case op_lconst_0:
2339 case op_lconst_1:
2340 push_type (long_type);
2341 break;
2343 case op_fconst_0:
2344 case op_fconst_1:
2345 case op_fconst_2:
2346 push_type (float_type);
2347 break;
2349 case op_dconst_0:
2350 case op_dconst_1:
2351 push_type (double_type);
2352 break;
2354 case op_bipush:
2355 get_byte ();
2356 push_type (int_type);
2357 break;
2359 case op_sipush:
2360 get_short ();
2361 push_type (int_type);
2362 break;
2364 case op_ldc:
2365 push_type_t (check_constant (get_byte ()));
2366 break;
2367 case op_ldc_w:
2368 push_type_t (check_constant (get_ushort ()));
2369 break;
2370 case op_ldc2_w:
2371 push_type_t (check_wide_constant (get_ushort ()));
2372 break;
2374 case op_iload:
2375 push_type_t (get_variable (get_byte (), int_type));
2376 break;
2377 case op_lload:
2378 push_type_t (get_variable (get_byte (), long_type));
2379 break;
2380 case op_fload:
2381 push_type_t (get_variable (get_byte (), float_type));
2382 break;
2383 case op_dload:
2384 push_type_t (get_variable (get_byte (), double_type));
2385 break;
2386 case op_aload:
2387 push_type_t (get_variable (get_byte (), reference_type));
2388 break;
2390 case op_iload_0:
2391 case op_iload_1:
2392 case op_iload_2:
2393 case op_iload_3:
2394 push_type_t (get_variable (opcode - op_iload_0, int_type));
2395 break;
2396 case op_lload_0:
2397 case op_lload_1:
2398 case op_lload_2:
2399 case op_lload_3:
2400 push_type_t (get_variable (opcode - op_lload_0, long_type));
2401 break;
2402 case op_fload_0:
2403 case op_fload_1:
2404 case op_fload_2:
2405 case op_fload_3:
2406 push_type_t (get_variable (opcode - op_fload_0, float_type));
2407 break;
2408 case op_dload_0:
2409 case op_dload_1:
2410 case op_dload_2:
2411 case op_dload_3:
2412 push_type_t (get_variable (opcode - op_dload_0, double_type));
2413 break;
2414 case op_aload_0:
2415 case op_aload_1:
2416 case op_aload_2:
2417 case op_aload_3:
2418 push_type_t (get_variable (opcode - op_aload_0, reference_type));
2419 break;
2420 case op_iaload:
2421 pop_type (int_type);
2422 push_type_t (require_array_type (pop_init_ref (reference_type),
2423 int_type));
2424 break;
2425 case op_laload:
2426 pop_type (int_type);
2427 push_type_t (require_array_type (pop_init_ref (reference_type),
2428 long_type));
2429 break;
2430 case op_faload:
2431 pop_type (int_type);
2432 push_type_t (require_array_type (pop_init_ref (reference_type),
2433 float_type));
2434 break;
2435 case op_daload:
2436 pop_type (int_type);
2437 push_type_t (require_array_type (pop_init_ref (reference_type),
2438 double_type));
2439 break;
2440 case op_aaload:
2441 pop_type (int_type);
2442 push_type_t (require_array_type (pop_init_ref (reference_type),
2443 reference_type));
2444 break;
2445 case op_baload:
2446 pop_type (int_type);
2447 require_array_type (pop_init_ref (reference_type), byte_type);
2448 push_type (int_type);
2449 break;
2450 case op_caload:
2451 pop_type (int_type);
2452 require_array_type (pop_init_ref (reference_type), char_type);
2453 push_type (int_type);
2454 break;
2455 case op_saload:
2456 pop_type (int_type);
2457 require_array_type (pop_init_ref (reference_type), short_type);
2458 push_type (int_type);
2459 break;
2460 case op_istore:
2461 set_variable (get_byte (), pop_type (int_type));
2462 break;
2463 case op_lstore:
2464 set_variable (get_byte (), pop_type (long_type));
2465 break;
2466 case op_fstore:
2467 set_variable (get_byte (), pop_type (float_type));
2468 break;
2469 case op_dstore:
2470 set_variable (get_byte (), pop_type (double_type));
2471 break;
2472 case op_astore:
2473 set_variable (get_byte (), pop_ref_or_return ());
2474 break;
2475 case op_istore_0:
2476 case op_istore_1:
2477 case op_istore_2:
2478 case op_istore_3:
2479 set_variable (opcode - op_istore_0, pop_type (int_type));
2480 break;
2481 case op_lstore_0:
2482 case op_lstore_1:
2483 case op_lstore_2:
2484 case op_lstore_3:
2485 set_variable (opcode - op_lstore_0, pop_type (long_type));
2486 break;
2487 case op_fstore_0:
2488 case op_fstore_1:
2489 case op_fstore_2:
2490 case op_fstore_3:
2491 set_variable (opcode - op_fstore_0, pop_type (float_type));
2492 break;
2493 case op_dstore_0:
2494 case op_dstore_1:
2495 case op_dstore_2:
2496 case op_dstore_3:
2497 set_variable (opcode - op_dstore_0, pop_type (double_type));
2498 break;
2499 case op_astore_0:
2500 case op_astore_1:
2501 case op_astore_2:
2502 case op_astore_3:
2503 set_variable (opcode - op_astore_0, pop_ref_or_return ());
2504 break;
2505 case op_iastore:
2506 pop_type (int_type);
2507 pop_type (int_type);
2508 require_array_type (pop_init_ref (reference_type), int_type);
2509 break;
2510 case op_lastore:
2511 pop_type (long_type);
2512 pop_type (int_type);
2513 require_array_type (pop_init_ref (reference_type), long_type);
2514 break;
2515 case op_fastore:
2516 pop_type (float_type);
2517 pop_type (int_type);
2518 require_array_type (pop_init_ref (reference_type), float_type);
2519 break;
2520 case op_dastore:
2521 pop_type (double_type);
2522 pop_type (int_type);
2523 require_array_type (pop_init_ref (reference_type), double_type);
2524 break;
2525 case op_aastore:
2526 pop_type (reference_type);
2527 pop_type (int_type);
2528 require_array_type (pop_init_ref (reference_type), reference_type);
2529 break;
2530 case op_bastore:
2531 pop_type (int_type);
2532 pop_type (int_type);
2533 require_array_type (pop_init_ref (reference_type), byte_type);
2534 break;
2535 case op_castore:
2536 pop_type (int_type);
2537 pop_type (int_type);
2538 require_array_type (pop_init_ref (reference_type), char_type);
2539 break;
2540 case op_sastore:
2541 pop_type (int_type);
2542 pop_type (int_type);
2543 require_array_type (pop_init_ref (reference_type), short_type);
2544 break;
2545 case op_pop:
2546 pop32 ();
2547 break;
2548 case op_pop2:
2550 type t = pop_raw ();
2551 if (! type_iswide (&t))
2552 pop32 ();
2554 break;
2555 case op_dup:
2557 type t = pop32 ();
2558 push_type_t (t);
2559 push_type_t (t);
2561 break;
2562 case op_dup_x1:
2564 type t1 = pop32 ();
2565 type t2 = pop32 ();
2566 push_type_t (t1);
2567 push_type_t (t2);
2568 push_type_t (t1);
2570 break;
2571 case op_dup_x2:
2573 type t1 = pop32 ();
2574 type t2 = pop_raw ();
2575 if (! type_iswide (&t2))
2577 type t3 = pop32 ();
2578 push_type_t (t1);
2579 push_type_t (t3);
2581 else
2582 push_type_t (t1);
2583 push_type_t (t2);
2584 push_type_t (t1);
2586 break;
2587 case op_dup2:
2589 type t = pop_raw ();
2590 if (! type_iswide (&t))
2592 type t2 = pop32 ();
2593 push_type_t (t2);
2594 push_type_t (t);
2595 push_type_t (t2);
2597 else
2598 push_type_t (t);
2599 push_type_t (t);
2601 break;
2602 case op_dup2_x1:
2604 type t1 = pop_raw ();
2605 type t2 = pop32 ();
2606 if (! type_iswide (&t1))
2608 type t3 = pop32 ();
2609 push_type_t (t2);
2610 push_type_t (t1);
2611 push_type_t (t3);
2613 else
2614 push_type_t (t1);
2615 push_type_t (t2);
2616 push_type_t (t1);
2618 break;
2619 case op_dup2_x2:
2621 type t1 = pop_raw ();
2622 if (type_iswide (&t1))
2624 type t2 = pop_raw ();
2625 if (type_iswide (&t2))
2627 push_type_t (t1);
2628 push_type_t (t2);
2630 else
2632 type t3 = pop32 ();
2633 push_type_t (t1);
2634 push_type_t (t3);
2635 push_type_t (t2);
2637 push_type_t (t1);
2639 else
2641 type t2 = pop32 ();
2642 type t3 = pop_raw ();
2643 if (type_iswide (&t3))
2645 push_type_t (t2);
2646 push_type_t (t1);
2648 else
2650 type t4 = pop32 ();
2651 push_type_t (t2);
2652 push_type_t (t1);
2653 push_type_t (t4);
2655 push_type_t (t3);
2656 push_type_t (t2);
2657 push_type_t (t1);
2660 break;
2661 case op_swap:
2663 type t1 = pop32 ();
2664 type t2 = pop32 ();
2665 push_type_t (t1);
2666 push_type_t (t2);
2668 break;
2669 case op_iadd:
2670 case op_isub:
2671 case op_imul:
2672 case op_idiv:
2673 case op_irem:
2674 case op_ishl:
2675 case op_ishr:
2676 case op_iushr:
2677 case op_iand:
2678 case op_ior:
2679 case op_ixor:
2680 pop_type (int_type);
2681 push_type_t (pop_type (int_type));
2682 break;
2683 case op_ladd:
2684 case op_lsub:
2685 case op_lmul:
2686 case op_ldiv:
2687 case op_lrem:
2688 case op_land:
2689 case op_lor:
2690 case op_lxor:
2691 pop_type (long_type);
2692 push_type_t (pop_type (long_type));
2693 break;
2694 case op_lshl:
2695 case op_lshr:
2696 case op_lushr:
2697 pop_type (int_type);
2698 push_type_t (pop_type (long_type));
2699 break;
2700 case op_fadd:
2701 case op_fsub:
2702 case op_fmul:
2703 case op_fdiv:
2704 case op_frem:
2705 pop_type (float_type);
2706 push_type_t (pop_type (float_type));
2707 break;
2708 case op_dadd:
2709 case op_dsub:
2710 case op_dmul:
2711 case op_ddiv:
2712 case op_drem:
2713 pop_type (double_type);
2714 push_type_t (pop_type (double_type));
2715 break;
2716 case op_ineg:
2717 case op_i2b:
2718 case op_i2c:
2719 case op_i2s:
2720 push_type_t (pop_type (int_type));
2721 break;
2722 case op_lneg:
2723 push_type_t (pop_type (long_type));
2724 break;
2725 case op_fneg:
2726 push_type_t (pop_type (float_type));
2727 break;
2728 case op_dneg:
2729 push_type_t (pop_type (double_type));
2730 break;
2731 case op_iinc:
2732 get_variable (get_byte (), int_type);
2733 get_byte ();
2734 break;
2735 case op_i2l:
2736 pop_type (int_type);
2737 push_type (long_type);
2738 break;
2739 case op_i2f:
2740 pop_type (int_type);
2741 push_type (float_type);
2742 break;
2743 case op_i2d:
2744 pop_type (int_type);
2745 push_type (double_type);
2746 break;
2747 case op_l2i:
2748 pop_type (long_type);
2749 push_type (int_type);
2750 break;
2751 case op_l2f:
2752 pop_type (long_type);
2753 push_type (float_type);
2754 break;
2755 case op_l2d:
2756 pop_type (long_type);
2757 push_type (double_type);
2758 break;
2759 case op_f2i:
2760 pop_type (float_type);
2761 push_type (int_type);
2762 break;
2763 case op_f2l:
2764 pop_type (float_type);
2765 push_type (long_type);
2766 break;
2767 case op_f2d:
2768 pop_type (float_type);
2769 push_type (double_type);
2770 break;
2771 case op_d2i:
2772 pop_type (double_type);
2773 push_type (int_type);
2774 break;
2775 case op_d2l:
2776 pop_type (double_type);
2777 push_type (long_type);
2778 break;
2779 case op_d2f:
2780 pop_type (double_type);
2781 push_type (float_type);
2782 break;
2783 case op_lcmp:
2784 pop_type (long_type);
2785 pop_type (long_type);
2786 push_type (int_type);
2787 break;
2788 case op_fcmpl:
2789 case op_fcmpg:
2790 pop_type (float_type);
2791 pop_type (float_type);
2792 push_type (int_type);
2793 break;
2794 case op_dcmpl:
2795 case op_dcmpg:
2796 pop_type (double_type);
2797 pop_type (double_type);
2798 push_type (int_type);
2799 break;
2800 case op_ifeq:
2801 case op_ifne:
2802 case op_iflt:
2803 case op_ifge:
2804 case op_ifgt:
2805 case op_ifle:
2806 pop_type (int_type);
2807 push_jump (get_short ());
2808 break;
2809 case op_if_icmpeq:
2810 case op_if_icmpne:
2811 case op_if_icmplt:
2812 case op_if_icmpge:
2813 case op_if_icmpgt:
2814 case op_if_icmple:
2815 pop_type (int_type);
2816 pop_type (int_type);
2817 push_jump (get_short ());
2818 break;
2819 case op_if_acmpeq:
2820 case op_if_acmpne:
2821 pop_type (reference_type);
2822 pop_type (reference_type);
2823 push_jump (get_short ());
2824 break;
2825 case op_goto:
2826 push_jump (get_short ());
2827 invalidate_pc ();
2828 break;
2829 case op_jsr:
2830 handle_jsr_insn (get_short ());
2831 break;
2832 case op_ret:
2833 handle_ret_insn (get_byte ());
2834 break;
2835 case op_tableswitch:
2837 int i;
2838 jint low, high;
2839 pop_type (int_type);
2840 skip_padding ();
2841 push_jump (get_int ());
2842 low = get_int ();
2843 high = get_int ();
2844 /* Already checked LOW -vs- HIGH. */
2845 for (i = low; i <= high; ++i)
2846 push_jump (get_int ());
2847 invalidate_pc ();
2849 break;
2851 case op_lookupswitch:
2853 int i;
2854 jint npairs, lastkey;
2856 pop_type (int_type);
2857 skip_padding ();
2858 push_jump (get_int ());
2859 npairs = get_int ();
2860 /* Already checked NPAIRS >= 0. */
2861 lastkey = 0;
2862 for (i = 0; i < npairs; ++i)
2864 jint key = get_int ();
2865 if (i > 0 && key <= lastkey)
2866 verify_fail_pc ("lookupswitch pairs unsorted", vfr->start_PC);
2867 lastkey = key;
2868 push_jump (get_int ());
2870 invalidate_pc ();
2872 break;
2873 case op_ireturn:
2874 check_return_type (pop_type (int_type));
2875 invalidate_pc ();
2876 break;
2877 case op_lreturn:
2878 check_return_type (pop_type (long_type));
2879 invalidate_pc ();
2880 break;
2881 case op_freturn:
2882 check_return_type (pop_type (float_type));
2883 invalidate_pc ();
2884 break;
2885 case op_dreturn:
2886 check_return_type (pop_type (double_type));
2887 invalidate_pc ();
2888 break;
2889 case op_areturn:
2890 check_return_type (pop_init_ref (reference_type));
2891 invalidate_pc ();
2892 break;
2893 case op_return:
2894 /* We only need to check this when the return type is void,
2895 because all instance initializers return void. We also
2896 need to special-case Object constructors, as they can't
2897 call a superclass <init>. */
2898 if (this_is_init && vfr->current_class != vfy_object_type ())
2899 state_check_this_initialized (vfr->current_state);
2900 check_return_type (make_type (void_type));
2901 invalidate_pc ();
2902 break;
2903 case op_getstatic:
2904 push_type_t (check_field_constant (get_ushort (), NULL, false));
2905 break;
2906 case op_putstatic:
2907 pop_type_t (check_field_constant (get_ushort (), NULL, false));
2908 break;
2909 case op_getfield:
2911 type klass;
2912 type field = check_field_constant (get_ushort (), &klass, false);
2913 pop_type_t (klass);
2914 push_type_t (field);
2916 break;
2917 case op_putfield:
2919 type klass;
2920 type field = check_field_constant (get_ushort (), &klass, true);
2921 pop_type_t (field);
2922 pop_type_t (klass);
2924 break;
2926 case op_invokevirtual:
2927 case op_invokespecial:
2928 case op_invokestatic:
2929 case op_invokeinterface:
2931 vfy_string method_name, method_signature;
2932 const char *namec;
2933 int i, arg_count;
2934 type rt;
2935 bool is_init = false;
2937 type class_type
2938 = check_method_constant (get_ushort (),
2939 opcode == op_invokeinterface,
2940 &method_name,
2941 &method_signature);
2942 /* NARGS is only used when we're processing
2943 invokeinterface. It is simplest for us to compute it
2944 here and then verify it later. */
2945 int nargs = 0;
2946 if (opcode == op_invokeinterface)
2948 nargs = get_byte ();
2949 if (get_byte () != 0)
2950 verify_fail ("invokeinterface dummy byte is wrong");
2953 namec = vfy_string_bytes (method_name);
2955 if (vfy_strings_equal (method_name, vfy_init_name()))
2957 is_init = true;
2958 if (opcode != op_invokespecial)
2959 verify_fail ("can't invoke <init>");
2961 else if (namec[0] == '<')
2962 verify_fail ("can't invoke method starting with `<'");
2964 arg_count = vfy_count_arguments (method_signature);
2966 /* Pop arguments and check types. */
2967 type *arg_types = (type *) vfy_alloc (arg_count * sizeof (type));
2969 compute_argument_types (method_signature, arg_types);
2970 for (i = arg_count - 1; i >= 0; --i)
2972 /* This is only used for verifying the byte for
2973 invokeinterface. */
2974 nargs -= type_depth (&arg_types[i]);
2975 pop_init_ref_t (arg_types[i]);
2978 vfy_free (arg_types);
2981 if (opcode == op_invokeinterface
2982 && nargs != 1)
2983 verify_fail ("wrong argument count for invokeinterface");
2985 if (opcode != op_invokestatic)
2987 type raw;
2988 type t = class_type;
2989 if (is_init)
2991 /* In this case the PC doesn't matter. */
2992 type_set_uninitialized (&t, UNINIT);
2993 /* FIXME: check to make sure that the <init>
2994 call is to the right class.
2995 It must either be super or an exact class
2996 match. */
2998 raw = pop_raw ();
2999 if (! types_compatible (&t, &raw))
3000 verify_fail ("incompatible type on stack");
3002 if (is_init)
3003 state_set_initialized (vfr->current_state,
3004 type_get_pc (&raw), vfr->current_method->max_locals);
3007 rt = compute_return_type (method_signature);
3008 if (! type_isvoid (&rt))
3009 push_type_t (rt);
3011 break;
3013 case op_new:
3015 type t = check_class_constant (get_ushort ());
3016 if (type_isarray (&t) || type_isinterface (&t)
3017 || type_isabstract (&t))
3018 verify_fail ("type is array, interface, or abstract");
3019 type_set_uninitialized (&t, vfr->start_PC);
3020 push_type_t (t);
3022 break;
3024 case op_newarray:
3026 int atype = get_byte ();
3027 type t;
3028 /* We intentionally have chosen constants to make this
3029 valid. */
3030 if (atype < boolean_type || atype > long_type)
3031 verify_fail_pc ("type not primitive", vfr->start_PC);
3032 pop_type (int_type);
3033 init_type_from_class (&t, construct_primitive_array_type (atype));
3034 push_type_t (t);
3036 break;
3037 case op_anewarray:
3039 type t;
3040 pop_type (int_type);
3041 t = check_class_constant (get_ushort ());
3042 push_type_t (type_to_array (&t));
3044 break;
3045 case op_arraylength:
3047 type t = pop_init_ref (reference_type);
3048 if (! type_isarray (&t) && ! type_isnull (&t))
3049 verify_fail ("array type expected");
3050 push_type (int_type);
3052 break;
3053 case op_athrow:
3054 pop_type_t (make_type_from_class (vfy_throwable_type ()));
3055 invalidate_pc ();
3056 break;
3057 case op_checkcast:
3058 pop_init_ref (reference_type);
3059 push_type_t (check_class_constant (get_ushort ()));
3060 break;
3061 case op_instanceof:
3062 pop_init_ref (reference_type);
3063 check_class_constant (get_ushort ());
3064 push_type (int_type);
3065 break;
3066 case op_monitorenter:
3067 pop_init_ref (reference_type);
3068 break;
3069 case op_monitorexit:
3070 pop_init_ref (reference_type);
3071 break;
3072 case op_wide:
3074 switch (get_byte ())
3076 case op_iload:
3077 push_type_t (get_variable (get_ushort (), int_type));
3078 break;
3079 case op_lload:
3080 push_type_t (get_variable (get_ushort (), long_type));
3081 break;
3082 case op_fload:
3083 push_type_t (get_variable (get_ushort (), float_type));
3084 break;
3085 case op_dload:
3086 push_type_t (get_variable (get_ushort (), double_type));
3087 break;
3088 case op_aload:
3089 push_type_t (get_variable (get_ushort (), reference_type));
3090 break;
3091 case op_istore:
3092 set_variable (get_ushort (), pop_type (int_type));
3093 break;
3094 case op_lstore:
3095 set_variable (get_ushort (), pop_type (long_type));
3096 break;
3097 case op_fstore:
3098 set_variable (get_ushort (), pop_type (float_type));
3099 break;
3100 case op_dstore:
3101 set_variable (get_ushort (), pop_type (double_type));
3102 break;
3103 case op_astore:
3104 set_variable (get_ushort (), pop_init_ref (reference_type));
3105 break;
3106 case op_ret:
3107 handle_ret_insn (get_short ());
3108 break;
3109 case op_iinc:
3110 get_variable (get_ushort (), int_type);
3111 get_short ();
3112 break;
3113 default:
3114 verify_fail_pc ("unrecognized wide instruction", vfr->start_PC);
3117 break;
3118 case op_multianewarray:
3120 int i;
3121 type atype = check_class_constant (get_ushort ());
3122 int dim = get_byte ();
3123 if (dim < 1)
3124 verify_fail_pc ("too few dimensions to multianewarray", vfr->start_PC);
3125 type_verify_dimensions (&atype, dim);
3126 for (i = 0; i < dim; ++i)
3127 pop_type (int_type);
3128 push_type_t (atype);
3130 break;
3131 case op_ifnull:
3132 case op_ifnonnull:
3133 pop_type (reference_type);
3134 push_jump (get_short ());
3135 break;
3136 case op_goto_w:
3137 push_jump (get_int ());
3138 invalidate_pc ();
3139 break;
3140 case op_jsr_w:
3141 handle_jsr_insn (get_int ());
3142 break;
3144 default:
3145 /* Unrecognized opcode. */
3146 verify_fail_pc ("unrecognized instruction in verify_instructions_0",
3147 vfr->start_PC);
3152 /* This turns a `type' into something suitable for use by the type map
3153 in the other parts of the compiler. In particular, reference types
3154 are mapped to Object, primitive types are unchanged, and other
3155 types are mapped using special functions declared in verify.h. */
3156 static vfy_jclass
3157 collapse_type (type *t)
3159 switch (t->key)
3161 case void_type:
3162 case boolean_type:
3163 case char_type:
3164 case float_type:
3165 case double_type:
3166 case byte_type:
3167 case short_type:
3168 case int_type:
3169 case long_type:
3170 return vfy_get_primitive_type (t->key);
3172 case unsuitable_type:
3173 case continuation_type:
3174 return vfy_unsuitable_type ();
3176 case return_address_type:
3177 return vfy_return_address_type ();
3179 case null_type:
3180 return vfy_null_type ();
3182 case reference_type:
3183 case uninitialized_reference_type:
3184 return vfy_object_type ();
3187 gcc_unreachable ();
3190 static void
3191 verify_instructions (void)
3193 int i;
3195 branch_prepass ();
3196 verify_instructions_0 ();
3198 /* Now tell the rest of the compiler about the types we've found. */
3199 for (i = 0; i < vfr->current_method->code_length; ++i)
3201 int j, slot;
3202 struct state *curr;
3204 if ((vfr->flags[i] & FLAG_INSN_SEEN) != 0)
3205 vfy_note_instruction_seen (i);
3207 if (! vfr->states[i])
3208 continue;
3210 curr = vfr->states[i]->val;
3211 vfy_note_stack_depth (vfr->current_method, i, curr->stackdepth);
3213 /* Tell the compiler about each local variable. */
3214 for (j = 0; j < vfr->current_method->max_locals; ++j)
3215 vfy_note_local_type (vfr->current_method, i, j,
3216 collapse_type (&curr->locals[j]));
3217 /* Tell the compiler about each stack slot. */
3218 for (slot = j = 0; j < curr->stacktop; ++j, ++slot)
3220 vfy_note_stack_type (vfr->current_method, i, slot,
3221 collapse_type (&curr->stack[j]));
3222 if (type_iswide (&curr->stack[j]))
3224 ++slot;
3225 vfy_note_stack_type (vfr->current_method, i, slot,
3226 vfy_unsuitable_type ());
3229 gcc_assert (slot == curr->stackdepth);
3233 static void
3234 make_verifier_context (vfy_method *m)
3236 vfr = (verifier_context *) vfy_alloc (sizeof (struct verifier_context));
3238 vfr->current_method = m;
3239 vfr->bytecode = vfy_get_bytecode (m);
3240 vfr->exception = vfy_get_exceptions (m);
3241 vfr->current_class = m->defining_class;
3243 vfr->states = NULL;
3244 vfr->flags = NULL;
3245 vfr->utf8_list = NULL;
3246 vfr->isect_list = NULL;
3249 static void
3250 free_verifier_context (void)
3252 vfy_string_list *utf8_list;
3253 ref_intersection *isect_list;
3255 if (vfr->flags)
3256 vfy_free (vfr->flags);
3258 utf8_list = vfr->utf8_list;
3259 while (utf8_list != NULL)
3261 vfy_string_list *n = utf8_list->next;
3262 vfy_free (utf8_list);
3263 utf8_list = n;
3266 isect_list = vfr->isect_list;
3267 while (isect_list != NULL)
3269 ref_intersection *next = isect_list->alloc_next;
3270 vfy_free (isect_list);
3271 isect_list = next;
3274 if (vfr->states != NULL)
3276 int i;
3277 for (i = 0; i < vfr->current_method->code_length; ++i)
3279 state_list *iter = vfr->states[i];
3280 while (iter != NULL)
3282 state_list *next = iter->next;
3283 free_state (iter->val);
3284 vfy_free (iter->val);
3285 vfy_free (iter);
3286 iter = next;
3289 vfy_free (vfr->states);
3292 vfy_free (vfr);
3296 verify_method (vfy_method *meth)
3298 debug_print ("verify_method (%s) %i\n", vfy_string_bytes (meth->name),
3299 meth->code_length);
3301 if (vfr != NULL)
3302 verify_fail ("verifier re-entered");
3304 make_verifier_context (meth);
3305 verify_instructions ();
3306 free_verifier_context ();
3307 vfr = NULL;
3309 return 1;