From 2bcd45dce03c7e08d335e305b6501acecb45111d Mon Sep 17 00:00:00 2001 From: tromey Date: Fri, 11 Apr 2003 01:57:05 +0000 Subject: * verify.cc (pop64): Removed. (verify_instructions_0) : Inline code. Don't throw exception if top-of-stack is narrow. (initialize_stack): Check to ensure that is not static and is. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65453 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/verify.cc | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) (limited to 'libjava/verify.cc') diff --git a/libjava/verify.cc b/libjava/verify.cc index 8f8c1df9eb1..4a6ca458849 100644 --- a/libjava/verify.cc +++ b/libjava/verify.cc @@ -1202,14 +1202,6 @@ private: return r; } - type pop64 () - { - type r = pop_raw (); - if (! r.iswide ()) - verify_fail ("wide pop of narrow type"); - return r; - } - type pop_type (type match) { match.promote (); @@ -2160,21 +2152,31 @@ private: bool initialize_stack () { int var = 0; - bool is_init = false; + bool is_init = _Jv_equalUtf8Consts (current_method->self->name, + gcj::init_name); + bool is_clinit = _Jv_equalUtf8Consts (current_method->self->name, + gcj::clinit_name); using namespace java::lang::reflect; if (! Modifier::isStatic (current_method->self->accflags)) { type kurr (current_class); - if (_Jv_equalUtf8Consts (current_method->self->name, gcj::init_name)) + if (is_init) { kurr.set_uninitialized (type::SELF, this); is_init = true; } + else if (is_clinit) + verify_fail (" method must be static"); set_variable (0, kurr); current_state->set_this_type (kurr); ++var; } + else + { + if (is_init) + verify_fail (" method must be non-static"); + } // We have to handle wide arguments specially here. int arg_count = _Jv_count_arguments (current_method->self->signature); @@ -2525,7 +2527,11 @@ private: pop32 (); break; case op_pop2: - pop64 (); + { + type t = pop_raw (); + if (! t.iswide ()) + pop32 (); + } break; case op_dup: { -- cgit v1.2.1