1. 04 Dec, 2001 4 commits
    • verify.cc (_Jv_BytecodeVerifier::linked_utf8): New structure. · 0c88d7f8
      	* verify.cc (_Jv_BytecodeVerifier::linked_utf8): New structure.
      	(_Jv_BytecodeVerifier::utf8_list): New field.
      	(_Jv_BytecodeVerifier::_Jv_BytecodeVerifier): Initialize it.
      	(_Jv_BytecodeVerifier::~_Jv_BytecodeVerifier): Free it.
      	(_Jv_BytecodeVerifier::make_utf8_const): New method.
      	(_Jv_BytecodeVerifier::get_one_type): Use it.
      	(_Jv_BytecodeVerifier::type::merge): When using local semantics,
      	if the destination type is already unsuitable then we didn't
      	change.
      
      From-SVN: r47634
      Tom Tromey committed
    • defineclass.cc (read_one_method_attribute): `end_pc' for an exception can be equal to code length. · ef9f3bc4
      	* defineclass.cc (read_one_method_attribute): `end_pc' for an
      	exception can be equal to code length.
      	* verify.cc (_Jv_BytecodeVerifier::verify_instructions_0): Removed
      	`start_PC' from error invocation where it didn't make sense, and
      	updated error message.  Use `copy' to copy a state.  Only try to
      	merge current state with saved state when we've fallen through
      	from the previous instruction.
      	(_Jv_BytecodeVerifier::pop_ref_or_return): New method.
      	(_Jv_BytecodeVerifier::verify_instructions_0) [op_astore_0]: Use
      	pop_ref_or_return.
      	(_Jv_BytecodeVerifier::verify_instructions_0) [op_astore]:
      	Likewise.
      	(_Jv_BytecodeVerifier::push_jump_merge): Pass max_locals, not
      	max_stack, to merge.
      	(_Jv_BytecodeVerifier::verify_instructions_0): Likewise.
      	(_Jv_BytecodeVerifier::push_jump_merge): Merge from new state into
      	state at branch target, not vice versa.
      	(_Jv_BytecodeVerifier::branch_prepass): Allow end of exception to
      	be equal to code length.  Removed redundant test to see if
      	exception start is after exception end.
      	(_Jv_BytecodeVerifier::verify_instructions_0): Type of argument to
      	`finally' is Throwable.
      
      From-SVN: r47623
      Tom Tromey committed
    • * Makefile.in: Rebuilt with automake-gcj. · 83de3bc4
      From-SVN: r47593
      Bryce McKinlay committed
    • defineclass.cc (handleMethodsEnd): Invoke verifier here... · 64d3a1b4
      	* defineclass.cc (handleMethodsEnd): Invoke verifier here...
      	(handleCodeAttribute): ... not here.
      	* verify.cc (_Jv_BytecodeVerifier::state::state): Use `copy', not
      	structure assignment.
      
      From-SVN: r47591
      Tom Tromey committed
  2. 02 Dec, 2001 1 commit
  3. 30 Nov, 2001 2 commits
  4. 26 Nov, 2001 1 commit
    • Fix for PR libgcj/2024, plus other class name cleanups: · bea31ffb
      	* include/jvm.h (_Jv_VerifyFieldSignature,
      	_Jv_VerifyMethodSignature, _Jv_VerifyClassName,
      	_Jv_VerifyIdentifier, _Jv_ClassNameSamePackage): Moved from ...
      	* include/java-interp.h: ... here.
      	* defineclass.cc (UTF8_PEEK): No longer conditional on
      	interpreter.
      	(_Jv_VerifyOne): Likewise.
      	(_Jv_VerifyFieldSignature): Likewise.
      	(_Jv_VerifyMethodSignature): Likewise.
      	(is_identifier_start): Likewise.
      	(is_identifier_part): Likewise.
      	(_Jv_VerifyIdentifier): Likewise.
      	(_Jv_VerifyClassName): Likewise.
      	(_Jv_VerifyClassName): Likewise.
      	(_Jv_ClassNameSamePackage): Likewise.
      	(_Jv_VerifyClassName): Fail if class name is too long.
      	* java/lang/natClassLoader.cc (_Jv_NewArrayClass): Disallow array
      	of void.
      	* java/lang/natClass.cc (forName): Check syntax of class name.
      	Include IllegalArgumentException.h.
      
      From-SVN: r47334
      Tom Tromey committed
  5. 25 Nov, 2001 2 commits
  6. 20 Nov, 2001 2 commits
  7. 19 Nov, 2001 6 commits
  8. 18 Nov, 2001 1 commit
    • verify.cc: Include StringBuffer.h. · 60440707
      	* verify.cc: Include StringBuffer.h.
      	(verify_fail): Added pc argument.  Use StringBuffer to construct
      	exception message.
      	(_Jv_BytecodeVerifier::verify_instructions_0): Put PC into error
      	message.
      	(_Jv_BytecodeVerifier::check_return_type): Likewise.
      	(_Jv_BytecodeVerifier::handle_field_or_method): Likewise.
      	(_Jv_BytecodeVerifier::check_constant): Likewise.
      	(_Jv_BytecodeVerifier::check_class_constant): Likewise.
      	(_Jv_BytecodeVerifier::check_pool_index): Likewise.
      	(_Jv_BytecodeVerifier::get_variable): Likewise.
      	(_Jv_BytecodeVerifier::branch_prepass): Likewise.  Also, correctly
      	check exception handler endpoint.
      	(_Jv_BytecodeVerifier::verify_instructions_0): Correctly handle
      	wide arguments to current method.
      	(_Jv_BytecodeVerifier::check_wide_constant): New method.
      	(_Jv_BytecodeVerifier::verify_instructions_0) [op_ldc2_w]: Use
      	it.
      
      From-SVN: r47155
      Tom Tromey committed
  9. 17 Nov, 2001 1 commit
  10. 16 Nov, 2001 5 commits
  11. 15 Nov, 2001 2 commits
  12. 14 Nov, 2001 3 commits
  13. 13 Nov, 2001 2 commits
    • re PR libgcj/4859 (java.util.Timer class throw IllegalStateException on cancel()) · f9d44b00
      	Fix for PR libgcj/4859:
      	* java/util/Timer.java (TaskQueue.isStopped): New method.
      	(Scheduler.run): Don't re-schedule task if queue has been
      	stopped.
      
      From-SVN: r46994
      Tom Tromey committed
    • Makefile.in: Rebuilt. · 819138ac
      	* Makefile.in: Rebuilt.
      	* Makefile.am (ordinary_java_source_files): Added JNIWeakRef.java.
      	* jni.cc: Include JNIWeakRef.h.
      	(unwrap): New function.
      	(_Jv_JNI_DefineClass): Use it.
      	(_Jv_JNI_GetSuperclass): Likewise.
      	(_Jv_JNI_IsAssignableFrom): Likewise.
      	(_Jv_JNI_Throw): Likewise.
      	(_Jv_JNI_ThrowNew): Likewise.
      	(_Jv_JNI_IsSameObject): Likewise.
      	(_Jv_JNI_AllocObject): Likewise.
      	(_Jv_JNI_GetObjectClass): Likewise.
      	(_Jv_JNI_IsInstanceOf): Likewise.
      	(_Jv_JNI_GetAnyMethodID): Likewise.
      	(array_from_valist): Likewise.
      	(_Jv_JNI_CallAnyMethodV): Likewise.
      	(_Jv_JNI_CallAnyMethodA): Likewise.
      	(_Jv_JNI_CallAnyVoidMethodV): Likewise.
      	(_Jv_JNI_CallAnyVoidMethodA): Likewise.
      	(_Jv_JNI_CallStaticMethodV): Likewise.
      	(_Jv_JNI_CallStaticMethod): Likewise.
      	(_Jv_JNI_CallStaticMethodA): Likewise.
      	(_Jv_JNI_NewObjectV): Likewise.
      	(_Jv_JNI_NewObject): Likewise.
      	(_Jv_JNI_NewObjectA): Likewise.
      	(_Jv_JNI_GetField): Likewise.
      	(_Jv_JNI_SetField): Likewise.
      	(_Jv_JNI_GetAnyFieldID): Likewise.
      	(_Jv_JNI_SetStaticField): Likewise.
      	(_Jv_JNI_GetStringLength): Likewise.
      	(_Jv_JNI_GetStringChars): Likewise.
      	(_Jv_JNI_ReleaseStringChars): Likewise.
      	(_Jv_JNI_GetStringUTFLength): Likewise
      	(_Jv_JNI_GetStringUTFChars): Likewise.
      	(_Jv_JNI_GetStringRegion): Likewise.
      	(_Jv_JNI_GetStringUTFRegion): Likewise.
      	(_Jv_JNI_GetStringCritical): Likewise.
      	(_Jv_JNI_GetArrayLength): Likewise.
      	(_Jv_JNI_NewObjectArray): Likewise.
      	(_Jv_JNI_GetObjectArrayElement): Likewise.
      	(_Jv_JNI_SetObjectArrayElement): Likewise.
      	(_Jv_JNI_GetPrimitiveArrayElements): Likewise.
      	(_Jv_JNI_ReleasePrimitiveArrayElements): Likewise.
      	(_Jv_JNI_GetPrimitiveArrayRegion): Likewise.
      	(_Jv_JNI_SetPrimitiveArrayRegion): Likewise.
      	(_Jv_JNI_MonitorEnter): Likewise.
      	(_Jv_JNI_MonitorExit): Likewise.
      	(_Jv_JNI_ToReflectedField): Likewise.
      	(_Jv_JNI_FromReflectedField): Likewise.
      	(_Jv_JNI_ToReflectedMethod): Likewise.
      	(_Jv_JNI_FromReflectedMethod): Likewise.
      	(_Jv_JNI_NewGlobalRef): Likewise.
      	(_Jv_JNI_DeleteGlobalRef): Likewise.
      	(_Jv_JNI_DeleteLocalRef): Likewise.
      	(_Jv_JNI_NewLocalRef): Likewise.
      	(_Jv_JNI_NewWeakGlobalRef): New function.
      	(_Jv_JNI_DeleteWeakGlobalRef): Likewise.
      	(_Jv_JNIFunctions): Updated for new methods.
      	(NOT_IMPL): Removed.
      	* gnu/gcj/runtime/JNIWeakRef.java: New file.
      
      From-SVN: r46990
      Tom Tromey committed
  14. 12 Nov, 2001 1 commit
  15. 09 Nov, 2001 1 commit
  16. 07 Nov, 2001 2 commits
  17. 05 Nov, 2001 2 commits
    • Class.h (Class): Made _Jv_BytecodeVerifier a friend. · a12fe13d
      	* java/lang/Class.h (Class): Made _Jv_BytecodeVerifier a friend.
      	* Makefile.in: Rebuilt.
      	* Makefile.am (libgcj_la_SOURCES): Added verify.cc.
      	* verify.cc: New file.
      	* include/java-interp.h (_Jv_count_arguments): Declare.
      	(_Jv_VerifyMethod): Likewise.
      	(class _Jv_InterpMethod): Made _Jv_BytecodeVerifier a friend.
      	(class _Jv_InterpException): Likewise.
      	* resolve.cc (_Jv_count_arguments): Renamed from count_arguments.
      	No longer static.  Updated callers.
      	* defineclass.cc (int_bits_to_float): Removed.
      	(long_bits_to_double): Likewise.
      	(prepare_pool_entry): Updated.
      	(handleCodeAttribute): Verify method (commented out for now).
      
      From-SVN: r46796
      Tom Tromey committed
  18. 04 Nov, 2001 2 commits