aboutsummaryrefslogtreecommitdiff
path: root/libjava
AgeCommit message (Collapse)AuthorFilesLines
2006-05-01configure.ac: Simplify the mmap check a bit more.Andreas Tobler4-107/+10
2006-05-01 Andreas Tobler <a.tobler@schweiz.ch> * configure.ac: Simplify the mmap check a bit more. * configure: Rebuilt. * include/config.h.in: Likewise. From-SVN: r113426
2006-05-01boehm.cc (_Jv_InitGC): Check both HAVE_DLFCN_H and HAVE_DLADDR before calling...Roger Sayle2-3/+11
* boehm.cc (_Jv_InitGC): Check both HAVE_DLFCN_H and HAVE_DLADDR before calling GC_register_has_static_roots_callback. (_Jv_RegisterLibForGc): Likewise, test for both HAVE_DLFCN_H and HAVE_DLADDR before calling dladdr. Co-Authored-By: Andrew Haley <aph@redhat.com> From-SVN: r113417
2006-04-29link.cc (_Jv_Linker::resolve_pool_entry): Don't pass vtable_index to ↵Bryce McKinlay5-47/+40
resolve_method. 2006-04-28 Bryce McKinlay <mckinlay@redhat.com> * link.cc (_Jv_Linker::resolve_pool_entry): Don't pass vtable_index to resolve_method. * interpret.cc (insn_invokevirtual): Use method->index, not vtable_index. Check accflag FINAL to determine finals. Only do explicit null check if calling a final method. Use throw_null_pointer_exception. (invokevirtual_resolved): Likewise. (null_pointer_exc): Remove static field. (throw_null_pointer_exception): Always define. Throw a new NullPointerException every time. * include/java-interp.h (_Jv_ResolvedMethod): Remove vtable_index field. * include/execution.h (resolve_method): Remove vtable_index argument. From-SVN: r113370
2006-04-28configure.ac: Add an additional checks for dladdr and dlopen on dld.Andreas Tobler3-5/+176
2006-04-28 Andreas Tobler <a.tobler@schweiz.ch> * configure.ac: Add an additional checks for dladdr and dlopen on dld. * configure: Rebuilt. From-SVN: r113323
2006-04-25natSharedLibLoader.cc: Include gc.h later.Tom Tromey2-6/+17
* gnu/gcj/runtime/natSharedLibLoader.cc: Include gc.h later. Include platform.h. Set GC_DEBUG before including gc.h, if needed. From-SVN: r113251
2006-04-25natClassLoader.cc: Don't include link.h or dladdr.h.Andrew Haley3-8/+8
2006-04-25 Andrew Haley <aph@redhat.com> * java/lang/natClassLoader.cc: Don't include link.h or dladdr.h. * boehm.cc: Don't include link.h. (_Jv_RegisterLibForGc): Cast away const when calling dladdr(). From-SVN: r113246
2006-04-24* java/lang/natClass.cc (_Jv_getInterfaceMethod): Skip <clinit>.Tom Tromey2-5/+16
From-SVN: r113229
2006-04-24lang.c (java_init): Handle flag_indirect_classes.Andrew Haley10-41/+279
2006-04-21 Andrew Haley <aph@redhat.com> * lang.c (java_init): Handle flag_indirect_classes. * jvgenmain.c: Use "class$$" instead of "class$". * mangle.c (java_mangle_decl): Accept RECORD_TYPEs sw well as DECLs. (mangle_class_field): Special case "class$$" as well as "class$". * constants.c (build_ref_from_constant_pool): If flag_indirect_classes, generate a ref into the heap. * decl.c (constants_field_decl_node, constants_data_field_decl_node): New. * class.c (build_static_class_ref): New. (build_classdollar_field): Factor out from build_class_ref(). (make_field_value): Handle static fields in heap. (make_class_data): Make sure we get a static ref to class. Make class initializer const if flag_indirect_classes. (register_class): Build a class_ref for initialization if flag_indirect_classes. (emit_indirect_register_classes): New. 2006-04-21 Andrew Haley <aph@redhat.com> * include/execution.h (struct _Jv_CompiledEngine): Define for compiled classes. * java/lang/natClassLoader.cc (_Jv_RegisterClasses): Call _Jv_RegisterLibForGc. (_Jv_RegisterClasses_Counted): Likewise. (_Jv_NewClassFromInitializer): New. (_Jv_RegisterNewClasses): New. * sources.am: Regenerate. * boehm.cc (_Jv_GC_has_static_roots): new. (_Jv_InitGC): Call GC_register_has_static_roots_callback. (filename_node, find_file, _Jv_print_gc_store, new_node, _Jv_GC_has_static_roots, _Jv_RegisterLibForGc): New. * scripts/makemake.tcl: Add -fno-indirect-classes. * Makefile.in: Regenerate. * link.cc (resolve_pool_entry): Allocate constant pool. Allocate fields. From-SVN: r113224
2006-04-23configure.ac: Weaken the check for MMAP.Andreas Tobler4-385/+51
2006-04-22 Andreas Tobler <a.tobler@schweiz.ch> * configure.ac: Weaken the check for MMAP. * configure: Rebuilt. * include/config.h.in: Likewise. From-SVN: r113182
2006-04-21re PR libgcj/27170 (Deadlock in garbage collector)Bryce McKinlay2-0/+11
PR libgcj/27170 * gnu/gcj/runtime/natSharedLibLoader.cc: Include gc.h to override dlopen(). From Anthony Green. From-SVN: r113123
2006-04-20re PR libgcj/21941 (NPE in Socket.connect())Tom Tromey3-4/+21
PR libgcj/21941: * gnu/java/net/natPlainDatagramSocketImplPosix.cc (send): Throw UnknownHostException if needed. * gnu/java/net/natPlainSocketImplPosix.cc (connect): Throw UnknownHostException if needed. From-SVN: r113118
2006-04-19Makefile.in: Rebuilt.Tom Tromey3-5/+8
* Makefile.in: Rebuilt. * Makefile.am (CLEANFILES): Removed all_java_filelist_files, all_java_deps_files. From-SVN: r113101
2006-04-19natFileChannelPosix.cc (write): Properly handle EINTR.Tom Tromey2-1/+7
* gnu/java/nio/channels/natFileChannelPosix.cc (write): Properly handle EINTR. From-SVN: r113082
2006-04-17re PR libgcj/27171 (UTF8 PrintWriter goes haywire)Tom Tromey4-8/+57
PR libgcj/27171: * testsuite/libjava.lang/pr27171.java: New file. * testsuite/libjava.lang/pr27171.out: New file. * gnu/gcj/convert/Output_UTF8.java (havePendingBytes): Return true if we've seen a high surrogate. (write): Handle high surrogates at the end of the stream. Properly emit isolated low surrogates. From-SVN: r113013
2006-04-17stringconst2.java: Print a stack trace in case of failure.Andreas Tobler2-1/+7
2006-04-17 Andreas Tobler <a.tobler@schweiz.ch> * testsuite/libjava.lang/stringconst2.java: Print a stack trace in case of failure. From-SVN: r113011
2006-04-13re PR libgcj/26522 (gcc-4.1.0-RC{1,2} install headers into a top-level ↵Tom Tromey3-0/+12
(root) /include) PR libgcj/26522: * Makefile.in: Rebuilt. * Makefile.am (libsubdir): New variable. From-SVN: r112925
2006-04-12re PR libgcj/23829 (FreeBSD 5 support for libjava)NAKATA Maho3-8/+13
PR libgcj/23829 * configure.ac: Link against -lpthread rather than -lc_r on FreeBSD 5 and above. * configure: Regenerate. From-SVN: r112897
2006-04-11SystemClassLoader.java (addClass): Get the value of package-private field ↵Bryce McKinlay3-7/+28
"loadedClasses" using reflection. * gnu/gcj/runtime/SystemClassLoader.java (addClass): Get the value of package-private field "loadedClasses" using reflection. * java/lang/VMCompiler.java (compileClass): Remove unreachable catch block. From-SVN: r112858
2006-04-10libjava.exp (libjava_init): Recognize multilib directory names containing ↵Matthias Klose2-1/+6
underscores. gcc/testsuite: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libffi: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libgomp: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libjava: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libmudflap: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libstdc++: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. From-SVN: r112833
2006-04-10x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): New.Andrew Haley3-10/+113
2006-04-10 Andrew Haley <aph@redhat.com> * include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): New. (SIGNAL_HANDLER): Mark arg as unused. * configure.host (x86_64-* DIVIDESPEC): Use fno-use-divide-subroutine. From-SVN: r112827
2006-04-08configure: Rebuilt.Andreas Tobler2-1/+6
2006-04-08 Andreas Tobler <a.tobler@schweiz.ch> * configure: Rebuilt. From-SVN: r112766
2006-04-07InetAddress.java: Throw an UnknownHostException if lookup fails.Andrew Haley2-0/+8
2006-04-07 Andrew Haley <aph@redhat.com> * java/net/InetAddress.java: Throw an UnknownHostException if lookup fails. From-SVN: r112754
2006-04-06acinclude.m4 (AC_LTDL_SHLIBEXT): Add GCJ LOCAL marker to indicate GCJ ↵Andreas Tobler2-0/+6
specific stuff. 2006-04-06 Andreas Tobler <a.tobler@schweiz.ch> * acinclude.m4 (AC_LTDL_SHLIBEXT): Add GCJ LOCAL marker to indicate GCJ specific stuff. From-SVN: r112736
2006-04-05re PR libgcj/26625 (libgcj-4.2.0.jar not rebuilt after a source file change)Tom Tromey6-2/+17
libjava/classpath: PR libgcj/26625: * lib/Makefile.in: Rebuilt. * lib/Makefile.am (compile-classes): Touch the output file. libjava: PR libgcj/26625: * Makefile.in: Rebuilt. * Makefile.am (libgcj-$(gcc_version).jar): Depend on classpath/lib/compile-classes. From-SVN: r112724
2006-04-05configure.host: Add -fno-omit-frame-pointer to libgcj_flags for MinGW since ↵Ranjit Mathew2-0/+7
EBP is used for... * configure.host: Add -fno-omit-frame-pointer to libgcj_flags for MinGW since EBP is used for backtracking through call frames on this platform. From-SVN: r112708
2006-04-05re PR libgcj/25414 (should update rmic)Archit Shah7-90/+293
2006-04-05 Archit Shah <ashah@redhat.com> PR java/25414 * gnu/java/rmi/rmic/CompilerProcess.java (computeTypicalArguments): Add classpath argument. * gnu/java/rmi/rmic/Compile_gcj.java (computeArguments): Adjust caller. * gnu/java/rmi/rmic/Compile_jikes.java (computeArguments): Likewise. * gnu/java/rmi/rmic/Compile_kjc.java (computeArguments): Likewise. * gnu/java/rmi/rmic/Compiler.java (getClasspath, setClasspath): New. * gnu/java/rmi/rmic/RMIC.java: Set classpath for compiler, call mkdirs for destination directory, correct handling of superclasses and interfaces of the remote class, correct handling of exceptions declared by remote methods. From-SVN: r112699
2006-04-04re PR classpath/26990 (SecurityManager.checkExit() problem)Tom Tromey6-5/+40
PR libgcj/26990: * prims.cc (_Jv_RunMain): Use exitNoChecksAccessor. * gnu/java/lang/natMainThread.cc (call_main): Use exitNoChecksAccessor. * testsuite/libjava.lang/pr26990.out: New file. * testsuite/libjava.lang/pr26990.java: New file. * java/lang/Runtime.java (exitNoChecks): New method. (exitNoChecksAccessor): Likewise. (exit): Call exitNoChecks. From-SVN: r112685
2006-04-04gen-classlist.sh.in: Correct handle generated files.Tom Tromey5-41/+86
* lib/gen-classlist.sh.in: Correct handle generated files. 2006-04-04 Mark Wielaard <mark@klomp.org> * lib/gen-classlist.sh.in: Use classes.tmp, not classes.2 as temporary file name. 2006-04-04 Tom Tromey <tromey@redhat.com> * lib/split-for-gcj.sh: Updated for multi-field format. * lib/Makefile.am (CLEANFILES): Added classes.2. * lib/gen-classlist.sh.in (GCJ): Removed. Create classes.1 and classes.2 using multiple fields. From-SVN: r112677
2006-04-04Temporarily reverting previous patch due to build-breaking bug.Tom Tromey5-77/+39
From-SVN: r112671
2006-04-04[multiple changes]Tom Tromey5-39/+77
2006-04-04 Mark Wielaard <mark@klomp.org> * lib/gen-classlist.sh.in: Use classes.tmp, not classes.2 as temporary file name. 2006-04-04 Tom Tromey <tromey@redhat.com> * lib/split-for-gcj.sh: Updated for multi-field format. * lib/Makefile.am (CLEANFILES): Added classes.2. * lib/gen-classlist.sh.in (GCJ): Removed. Create classes.1 and classes.2 using multiple fields. From-SVN: r112664
2006-04-04Makefile.in: Rebuilt.Tom Tromey8-35/+76
fastjar Removed libjava * Makefile.in: Rebuilt. * Makefile.am (ZIP): Removed. (libgcj-$(gcc_version).jar): Use $(JAR). (src.zip): Likewise. * configure: Rebuilt. * configure.ac: Check for jar. Removed code to set ZIP. From-SVN: r112654
2006-04-03Float_2.java: New file.Andrew Haley3-0/+142
2006-04-03 Andrew Haley <aph@redhat.com> * testsuite/libjava.lang/Float_2.java: New file. From-SVN: r112636
2006-03-31posix.cc (_Jv_platform_nanotime): Declare id with clockid_t.Andreas Tobler2-1/+5
2006-03-31 Andreas Tobler <a.tobler@schweiz.ch> * posix.cc (_Jv_platform_nanotime): Declare id with clockid_t. From-SVN: r112587
2006-03-30aclocal.m4, [...]: Rebuilt.Tom Tromey5-39/+126
* aclocal.m4, configure, Makefile.in: Rebuilt. * configure.ac: Use AM_MAINTAINER_MODE. From-SVN: r112542
2006-03-30re PR java/26042 (ICE in mark_reference_fields, at java/boehm.c:105)Tom Tromey2-0/+17
gcc/java PR java/26042: * parse.y (java_reorder_fields): Reset superclass field's size as well. libjava PR java/26042: * testsuite/libjava.compile/pr26042.java: New file. From-SVN: r112540
2006-03-29re PR bootstrap/26901 ↵Tom Tromey3-8/+19
(../../../../../gcc/libjava/classpath/tools/gnu/classpath/tools/AbstractMethodGenerator.java:1: fatal error: unknown encoding: 'roman8') PR gcc/26901: * Makefile.in: Rebuilt. * Makefile.am (SUBDIRS): Remove 'tools'. (DIST_SUBDIRS): Likewise. From-SVN: r112510
2006-03-29sources.am, [...]: Rebuilt.Tom Tromey4-1/+44
* sources.am, Makefile.in: Rebuilt. * scripts/makemake.tcl: Scan classpath/external/relaxngDatatype. From-SVN: r112506
2006-03-29acinclude.m4: Restore the situation that we don't build modules on darwin.Andreas Tobler3-3/+31
2006-03-29 Andreas Tobler <a.tobler@schweiz.ch> * acinclude.m4: Restore the situation that we don't build modules on darwin. * configure: Regenerated. From-SVN: r112503
2006-03-29re PR java/26390 (Problem dispatching method call when method does not exist ↵Tom Tromey6-5/+102
in superclass) gcc/java PR java/26390: * parse.y (find_most_specific_methods_list): Added 'class' argument. (lookup_method_invoke): Updated. libjava PR java/26390: * testsuite/libjava.lang/pr26390.out: New file. * testsuite/libjava.lang/pr26390.java: New file. * sources.am, Makefile.in: Rebuilt. * scripts/makemake.tcl: Compile gnu/java/awt/peer/swing. From-SVN: r112499
2006-03-29posix.cc (_Jv_platform_nanotime): Look for CLOCK_MONOTONIC and CLOCK_HIGHRES.Tom Tromey2-1/+14
* posix.cc (_Jv_platform_nanotime): Look for CLOCK_MONOTONIC and CLOCK_HIGHRES. From-SVN: r112494
2006-03-28Correcting PR number in ChangeLog:Tom Tromey1-1/+1
PR libgcj/26441: * Merged libltdl 1.5.16 from vendor branch. From-SVN: r112465
2006-03-28re PR libgcj/26441 (Old libltdl may cause memory leak in Class.forName())Tom Tromey14-2446/+3845
PR libgcj/26641: * Merged libltdl 1.5.16 from vendor branch. From-SVN: r112464
2006-03-28unicode-muncher.pl: Removed this file.Anthony Balkissoon5-886/+3110
2006-03-28 Anthony Balkissoon <abalkiss@redhat.com> * scripts/unicode-muncher.pl: Removed this file. * scripts/MakeCharTables.java: Likewise. * scripts/unicode-to-chartables.pl: New file. * java/lang/natCharacter.cc: (UNASSIGNED_TYPE): New field. (UNASSIGNED_DIGIT): Likewise. (UNASSIGNED_DIRECTION): Likewise. (UNASSIGNED_NUMERIC_VALUE): Likewise. (PRIVATE_TYPE): Likewise. (PRIVATE_DIRECTION): Likewise. (readCodePoint): New method. (getType(jint)): Likewise. (toLowerCase(jint)): Likewise. (toUpperCase(jint)): Likewise. (toTitleCase(jint)): Likewise. (digit(jint, jint)): Likewise. (getNumericValue(jint)): Likewise. (getDirectionality(jint)): Likewise. (readChar), (getType(jchar)), (toLowerCase(jchar)), (toUpperCase(jchar)), (toTitleCase(jchar)), (digit(jchar, jint)), (getNumericValue(jchar)), (getDirectionality(jchar)): Changed references from data to data[0], blocks to blocks[0], direction to direction[0], numValue to numValue[0], upper to upper[0], lower to lower[0], and shift to shift[0] to reflect the new structures in java-chartables.h. * java/lang/Character.java: (readCodePoint): Declared new native method. (getType(int)): Likewise. (toLowerCase(int)): Likewise. (toUpperCase(int)): Likewise. (toTitleCase(int)): Likewise. (digit(int, int)): Likewise. (getNumericValue(int)): Likewise. (getDirectionality(int)): Likewise. (isLowerCase(int)): New method. (isUpperCase(int)): Likewise. (itTitleCase(int)): Likewise. (isDigit(int)): Likewise. (isDefined(int)): Likewise. (isLetter(int)): Likewise. (isLetterOrDigit(int)): Likewise. (isJavaIdentifierStart(int)): Likewise. (isJavaIdentifierPart(int)): Likewise. (isUnicodeIdentifierStart(int)): Likewise. (isUnicodeIdentifierPart(int)): Likewise. (isIdentifierIgnorable(int)): Likewise. (isSpaceChar(int)): Likewise. (isWhitespace(int)): Likewise. (isISOControl(int)): Likewise. (isMirrored(int)): Likewise. * include/java-chartables.h: Generated from scripts/unicode-to-chartables.h. From-SVN: r112454
2006-03-25re PR libgcj/26858 (NullPointerException not generated for large classes...)David Daney4-0/+2085
* testsuite/libjava.lang/PR26858.java: New test. * testsuite/libjava.lang/PR26858.out: Ditto. * testsuite/libjava.lang/PR26858.xfail: Ditto. From-SVN: r112374
2006-03-16re PR libgcj/26706 ([4.1/4.2] Unexpanded macro in libjava/classpath/configure)Tom Tromey4-185/+409
PR libgcj/26706: * aclocal.m4, configure: Rebuilt. * configure.ac (GCC_NO_EXECUTABLES): Moved earlier. From-SVN: r112142
2006-03-16linux-unwind.h (shmedia_fallback_frame_state): Set fs->signal_frame.Kaz Kojima2-23/+7
* config/sh/linux-unwind.h (shmedia_fallback_frame_state): Set fs->signal_frame. (sh_fallback_frame_state): Likewise. * include/sh-signal.h (MAKE_THROW_FRAME): Change into empty macro. From-SVN: r112122
2006-03-16re PR classpath/26688 (Classpath Makefiles assume CVS source control)Tom Tromey3-4/+13
PR libgcj/26688: * lib/Makefile.in: Rebuilt. * lib/Makefile.am (propertydirs): Ignore .svn directories. (metafiles): Likewise. From-SVN: r112115
2006-03-16jcf-write.c (generate_bytecode_insns): Use qualifying type for non-static ↵Tom Tromey2-1/+5
method calls. gcc/java * jcf-write.c (generate_bytecode_insns): Use qualifying type for non-static method calls. libjava * testsuite/libjava.jacks/jacks.xfail: Removed 13.1-runtime-method-5. From-SVN: r112102
2006-03-15Correctly reference PR java/26638 in ChangeLogsTom Tromey1-1/+1
From-SVN: r112094
2006-03-15re PR java/26390 (Problem dispatching method call when method does not exist ↵Tom Tromey2-9/+23
in superclass) gcc/java PR java/26390: * class.c (get_interface_method_index): Don't put <clinit> into interface table. libjava PR java/26390: * link.cc (get_interfaces): Skip <clinit>. (append_partial_itable): Likewise. From-SVN: r112093