aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2001-09-02Makefile.in: Rebuilt.Tom Tromey70-1593/+4700
* Makefile.in: Rebuilt. * Makefile.am (core_java_source_files): Added UnsupportedClassVersionError. * java/lang/UnsupportedClassVersionError.java: New file from Classpath. * java/io/CharConversionException.java, java/io/EOFException.java, java/io/FileNotFoundException.java, java/io/IOException.java, java/io/InterruptedIOException.java, java/io/ObjectStreamException.java, java/io/OptionalDataException.java, java/io/StreamCorruptedException.java, java/io/SyncFailedException.java, java/io/UTFDataFormatException.java, java/io/UnsupportedEncodingException.java, java/lang/AbstractMethodError.java, java/lang/ArithmeticException.java, java/lang/ArrayIndexOutOfBoundsException.java, java/lang/ArrayStoreException.java, java/lang/ClassCastException.java, java/lang/ClassCircularityError.java, java/lang/ClassFormatError.java, java/lang/CloneNotSupportedException.java, java/lang/Error.java, java/lang/Exception.java, java/lang/ExceptionInInitializerError.java, java/lang/IllegalAccessError.java, java/lang/IllegalAccessException.java, java/lang/IllegalArgumentException.java, java/lang/IllegalMonitorStateException.java, java/lang/IllegalStateException.java, java/lang/IllegalThreadStateException.java, java/lang/IncompatibleClassChangeError.java, java/lang/IndexOutOfBoundsException.java, java/lang/InstantiationError.java, java/lang/InstantiationException.java, java/lang/InternalError.java, java/lang/InterruptedException.java, java/lang/LinkageError.java, java/lang/NegativeArraySizeException.java, java/lang/NoClassDefFoundError.java, java/lang/NoSuchFieldError.java, java/lang/NoSuchFieldException.java, java/lang/NoSuchMethodError.java, java/lang/NoSuchMethodException.java, java/lang/NullPointerException.java, java/lang/NumberFormatException.java, java/lang/OutOfMemoryError.java, java/lang/RuntimeException.java, java/lang/SecurityException.java, java/lang/StackOverflowError.java, java/lang/StringIndexOutOfBoundsException.java, java/lang/ThreadDeath.java, java/lang/UnknownError.java, java/lang/UnsatisfiedLinkError.java, java/lang/UnsupportedOperationException.java, java/lang/VerifyError.java, java/lang/VirtualMachineError.java, java/lang/reflect/InvocationTargetException.java, java/net/BindException.java, java/net/ConnectException.java, java/net/MalformedURLException.java, java/net/NoRouteToHostException.java, java/net/ProtocolException.java, java/net/SocketException.java, java/net/UnknownHostException.java, java/net/UnknownServiceException.java, java/text/ParseException.java: Copied from Classpath, thanks to Mark Wielaard who did the merge. * java/lang/System.java (getProperty): Use single argument form of SecurityManager.checkPropertyAccess. * Makefile.in: Rebuilt. * Makefile.am (core_java_source_files): Added VMSecurityManager. * java/lang/VMSecurityManager.java: New file. * java/lang/SecurityManager.java: Merged with Classpath. From-SVN: r45353
2001-09-02expr.c (push_block): Make sane use of STACK_GROWS_DOWNWARD.Geoffrey Keating2-9/+7
* expr.c (push_block): Make sane use of STACK_GROWS_DOWNWARD. (emit_push_insn): Use specified padding direction when STACK_PUSH_CODE is POST_INC. From-SVN: r45352
2001-09-01* config/stormy16/stormy16.h (DWARF2_UNWIND_INFO): Define to 0.Geoffrey Keating2-1/+5
From-SVN: r45351
2001-09-01* mips.h (INITIAL_ELIMINATION_OFFSET): Add missing `else abort'.Kaveh R. Ghazi2-0/+6
From-SVN: r45350
2001-09-01cppinit.c (cpp_start_read): Free the imacros list as we traverse it.Neil Booth2-3/+16
* cppinit.c (cpp_start_read): Free the imacros list as we traverse it. Don't free the chains before returning. (_cpp_push_next_buffer): Only try pushing buffers if we've completed -imacros handling. From-SVN: r45349
2001-09-01Daily bump.GCC Administrator6-6/+6
From-SVN: r45347
2001-08-31final_assignment_check.java: New file.Alexandre Petit-Bianco4-0/+35
2001-08-28 Alexandre Petit-Bianco <apbianco@redhat.com> * libjava.compile/final_assignment_check.java: New file. * libjava.compile/final_assignment_check.xfail: Likewise. * libjava.compile/final_local_switch.java: Likewise. (http://gcc.gnu.org/ml/java-patches/2001-q3/msg00342.html ) From-SVN: r45346
2001-08-31[multiple changes]Alexandre Petit-Bianco3-14/+53
2001-08-30 Alexandre Petit-Bianco <apbianco@redhat.com> * parse.y (patch_assignment): Don't verify final re-assignment here. (java_complete_lhs): Verify assignments to finals calling patch_assignment. Verify re-assignments to finals before calling patch_assignment. 2001-08-29 Alexandre Petit-Bianco <apbianco@redhat.com> * parse.y (java_complete_lhs): Allow final locals in CASE_EXPRs. Fixes PR java/1413 2001-08-28 Alexandre Petit-Bianco <apbianco@redhat.com> * lex.c (java_lex): new local found_hex_digits. Set and then used in test to reject invalid hexadecimal numbers. * parse.y (java_complete_tree): Prevent unwanted cast with initialized floating point finals. (patch_binop): Emit a warning when detecting a division by zero, mark result not constant, don't simplify non integer division. (http://gcc.gnu.org/ml/java-patches/2001-q3/msg00343.html ) From-SVN: r45345
2001-08-31javaprims.h (_Jv_RegisterClassHook): New extern declaration.Per Bothner4-3/+27
* gcj/javaprims.h (_Jv_RegisterClassHook): New extern declaration. (_Jv_RegisterClassHookDefault): Likewise. * java/lang/Class.h (_Jv_RegisterClassHookDefault): Declare as friend. * java/lang/natClassLoader.cc (_Jv_RegisterClassHook): New variable. (_Jv_RegisterClassHookDefault): New.function. (_Jv_RegisterClasses): Call _Jv_RegisterClassHook. From-SVN: r45344
2001-08-31ClassLoader.java (system): Remove static field.Per Bothner4-13/+18
* java/lang/ClassLoader.java (system): Remove static field. (getSystemClassLoader): Get gnu.gcj.runtime.VMClassLoader.instance directly instead of using it to set the system field. (loadClass): Use VMClassLoader.instance instead of system field. (findSystemClass): Similar. * prims.cc (_Jv_RunMain): Clear VMClassLoader::instance rather than ClassLoader::system which no longer exists. * java/lang/natClassLoader.java (_Jv_FindClass): Simplify. From-SVN: r45343
2001-09-01BufferedReader.java, [...]: Re-merged with Classpath.Tom Tromey6-4/+10
* java/io/BufferedReader.java, java/io/ObjectInput.java, java/io/ObjectInputValidation.java, java/io/ObjectOutput.java: Re-merged with Classpath. From-SVN: r45342
2001-09-01backport: ltcf-c.sh: Use $objext, not $ac_objext.Alexandre Oliva6-29/+65
Merged from gcc-3_0-branch: 2001-07-30 Jeff Sturm <jsturm@one-pont.com> * ltcf-c.sh: Use $objext, not $ac_objext. 2001-07-27 Mark Kettenis <kettenis@gnu.org> * ltcf-cxx.sh: Add support for GNU. 2001-07-22 Timothy Wall <twall@redhat.com> * ltcf-c.sh: Don't disable shared libraries for AIX5/IA64. Preserve default settings if using GNU tools with that configuration. * ltcf-cxx.sh: Ditto. * ltcf-gcj.sh: Ditto. 2001-07-21 Michael Chastain <chastain@redhat.com> * ltconfig: Set max_cmd_len to a maximum of 512Kb, as it seems some HPUX 11.0 systems have trouble with 1MB. Mark as gcc-local. * ltmain.sh: Mark as gcc-local. From-SVN: r45341
2001-09-01gcc.c (handle_braces): Add explaination for abort.Eric Christopher2-1/+5
2001-08-31 Eric Christopher <echristo@redhat.com> * gcc.c (handle_braces): Add explaination for abort. From-SVN: r45340
2001-08-31ieee.exp: Add -ffloat-store for m68k.Roman Zippel2-1/+8
* testsuite/gcc.c-torture/execute/ieee/ieee.exp: Add -ffloat-store for m68k. From-SVN: r45339
2001-08-31expmed.c (store_bit_field): Update to patch from 2001-08-27: move adjustment ↵Roman Zippel2-9/+14
of bitpos instead. * expmed.c (store_bit_field): Update to patch from 2001-08-27: move adjustment of bitpos instead. From-SVN: r45338
2001-08-31Re-merge with Classpath:Tom Tromey5-4/+26
* java/util/Comparator (equals): Added. * java/io/PipedWriter.java (write): Changed argument to `int'. * java/io/FileDescriptor.java (FileDescriptor()): New constructor. * java/io/File.java (getAbsoluteFile): Doesn't throw IOException. From-SVN: r45337
2001-08-31function.c: Remove all_functions.Zack Weinberg6-69/+101
* function.c: Remove all_functions. Make outer_function_chain static. (init_function_start): Don't add new function structure to all_functions. (find_function_data, push_function_context_to, pop_function_context_from, put_var_into_stack, trampoline_address): Update for changed structure element names. (push_function_context_to): Disentangle. (free_after_compilation): Also free F. (expand_dummy_function_end): Don't free cfun here. (put_var_into_stack): Comment why we can't use find_function_data here. (fix_lexical_addr, trampoline_address, ): Use find_function_data. (mark_function_chain): Split into maybe_mark_struct_function and ggc_mark_struct_function. Export the latter. (init_function_once): Mark from cfun and outer_function_chain; not all_functions. * function.h (struct function): Kill next_global. Rename next to outer. All users updated to match. (all_functions, outer_function_chain): Don't declare. * ggc-common.c (ggc_mark_trees): Mark DECL_SAVED_INSNS. * integrate.c (output_inline_function): Clear DECL_SAVED_INSNS, don't touch f->inlinable, after calling rest_of_compilation. * tree.h: Forward-declare struct function. Prototype ggc_mark_struct_function. From-SVN: r45336
2001-08-31Makefile.in: Rebuilt.Tom Tromey18-727/+2219
* Makefile.in: Rebuilt. * Makefile.am (ordinary_java_source_files): Removed EnumerationChain, added DoubleEnumeration. (nat_source_files): Added natResourceBundle.cc. * java/util/natResourceBundle.cc: New file. * gnu/java/util/DoubleEnumeration.java: New file. * gnu/gcj/util/EnumerationChain.java: Removed. * java/beans/VetoableChangeSupport.java: Merged with Classpath. * java/util/ResourceBundle.java: Merged with Classpath. * java/util/StringTokenizer.java: Merged with Classpath. * java/util/Locale.java: Merged with Classpath. * java/util/Random.java: Merged with Classpath. * java/util/PropertyResourceBundle.java: Merged with Classpath. * java/util/ListResourceBundle.java: Merged with Classpath. * java/util/ConcurrentModificationException.java: Re-merged with Classpath. * java/util/EmptyStackException.java: Likewise. * java/util/MissingResourceException.java: Likewise. * java/util/NoSuchElementException.java: Likewise. * java/util/TooManyListenersException.java: Likewise. From-SVN: r45335
2001-08-31* config/h8300/h8300.md (*andorhi3): Fix typos.Kazu Hirata2-2/+6
From-SVN: r45334
2001-08-31class.c (set_constant_value): When not emiting class files, then a String ↵Per Bothner2-2/+9
ConstantValue is a utf8const_ptr_type. * class.c (set_constant_value): When not emiting class files, then a String ConstantValue is a utf8const_ptr_type. From-SVN: r45333
2001-08-31calls.c (emit_library_call_value): Don't use a fixed argument after ↵Kaveh R. Ghazi3-4/+17
VA_CLOSE, i.e. * calls.c (emit_library_call_value): Don't use a fixed argument after VA_CLOSE, i.e. out of scope in traditional C. * emit-rtl.c (gen_rtvec): Likewise. From-SVN: r45332
2001-08-31Makefile.in (c-pragma.o): Depend on output.h.Kaveh R. Ghazi5-3/+16
* Makefile.in (c-pragma.o): Depend on output.h. (reorg.o): Depend on except.h. * c-pragma.c: Include output.h. * reorg.c: Include except.h. * unwind-dw2.c: Call __builtin_alloca, not alloca. From-SVN: r45331
2001-08-31sched-deps.c (add_dependence): Don't elide dependancy if the conditional ↵Richard Henderson2-1/+11
used by insn is modified in elem. * sched-deps.c (add_dependence): Don't elide dependancy if the conditional used by insn is modified in elem. From-SVN: r45330
2001-08-31error.c (dump_template_decl): Output template parameters together with their ↵Kriang Lerdsuwanakij2-4/+18
specifiers. * error.c (dump_template_decl): Output template parameters together with their specifiers. Output `class' prefix for template template parameter. (dump_decl): Fix formatting. From-SVN: r45329
2001-08-31oops - omitted from previouys deltaNick Clifton1-0/+4
From-SVN: r45328
2001-08-31ByteArrayOutputStream.java: Re-merged with Classpath.Tom Tromey3-33/+103
* java/io/ByteArrayOutputStream.java: Re-merged with Classpath. * java/io/OptionalDataException.java: Merged with Classpath. From-SVN: r45327
2001-08-31Skip TRUNCATE operators in const pool addresses for v850 short switch tablesNick Clifton1-0/+12
From-SVN: r45326
2001-08-31Account for FP registers saved to stack during prologueNick Clifton3-4/+32
From-SVN: r45325
2001-08-31empty4.C: Allow for 16-bit ints.Geoffrey Keating4-8/+20
* g++.dg/abi/empty4.C: Allow for 16-bit ints. * g++.dg/special/initp1.C (X): Allow for 16-bit ints. * gcc.c-torture/unsorted/bcopy.c (BYTES): Honor STACK_SIZE. From-SVN: r45324
2001-08-31c-decl.c (c_decode_option): Skip '-f' prefix before calling dump_switch_p.Diego Novillo2-1/+6
* c-decl.c (c_decode_option): Skip '-f' prefix before calling dump_switch_p. From-SVN: r45323
2001-08-31stormy16.c (stormy16_asm_out_destructor): New function.Geoffrey Keating2-0/+65
* config/stormy16/stormy16.c (stormy16_asm_out_destructor): New function. (stormy16_asm_out_constructor): New function. (TARGET_ASM_CONSTRUCTOR): Define. (TARGET_ASM_DESTRUCTOR): Define. From-SVN: r45322
2001-08-31gcse.c (add_label_notes): REG_LABEL is an INSN_LIST.Andreas Jaeger5-78/+85
* gcse.c (add_label_notes): REG_LABEL is an INSN_LIST. * loop.c (add_label_notes): Likewise. * reload.c (find_reloads): Likewise. * config/sh/sh.c (machine_dependent_reorg): Likewise. From-SVN: r45320
2001-08-31exception.cc (PERSONALITY_FUNCTION): Simplify leb128 handling.Jason Merrill3-10/+15
* exception.cc (PERSONALITY_FUNCTION): Simplify leb128 handling. From-SVN: r45317
2001-08-31tweak commentJason Merrill1-1/+1
From-SVN: r45316
2001-08-31unwind-pe.h (read_uleb128, [...]): Move actual reading code here.Jason Merrill6-115/+137
* unwind-pe.h (read_uleb128, read_sleb128): Move actual reading code here. Take _Unwind_{W,Sw}ord*. (read_encoded_value_with_base): Use them. * unwind-dw2.c (_Unwind_FrameState): Make cfa_offset and cfa_reg words. (extract_cie_info): Simplify read_?leb128 handling. (execute_stack_op, execute_cfa_program): Likewise. * unwind-dw2-fde.c (get_cie_encoding): Likewise. * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Simplify leb128 handling. From-SVN: r45315
2001-08-31stormy16.c (stormy16_expand_epilogue): Use the frame pointer to pop the ↵Geoffrey Keating3-4/+22
stack if convenient. * config/stormy16/stormy16.c (stormy16_expand_epilogue): Use the frame pointer to pop the stack if convenient. * config/stormy16/stormy16.c (stormy16_initialize_trampoline): Don't use post-increment before combine. * config/stormy16/stormy16.h (STATIC_CHAIN_REGNUM): Don't use a call-saved register. From-SVN: r45314
2001-08-31Daily bump.GCC Administrator6-6/+6
From-SVN: r45313
2001-08-30Temporaily change error to wanring to hopefully allow boostrap.Per Bothner1-1/+1
From-SVN: r45311
2001-08-31config.guess: Merge from master sources.Eric Christopher3-4/+16
2001-08-30 Eric Christopher <echristo@redhat.com> Jason Eckhardt <jle@redhat.com> * config.guess: Merge from master sources. * config.sub: Merge from master sources, add support for mipsisa32. Co-Authored-By: Jason Eckhardt <jle@redhat.com> From-SVN: r45310
2001-08-31* java/io/ByteArrayInputStream.java: Merged with Classpath.Tom Tromey2-19/+158
From-SVN: r45309
2001-08-31jump.c (mark_jump_label): Revert patch from 2001-08-28, the code was correct.Andreas Jaeger2-4/+9
* jump.c (mark_jump_label): Revert patch from 2001-08-28, the code was correct. From-SVN: r45308
2001-08-31* java/io/BufferedReader.java: Re-merged with Classpath.Tom Tromey2-6/+31
From-SVN: r45307
2001-08-30jcf-write.c (generate_classfile): Check that field is primitive or string ↵Per Bothner2-1/+8
before emitting ConstantValue attribute. * jcf-write.c (generate_classfile): Check that field is primitive or string before emitting ConstantValue attribute. From-SVN: r45306
2001-08-30parse.y (resolve_qualified_expression_name): If creating a COMPOUND_EXPR, ↵Per Bothner2-1/+7
set it's type correctly. * parse.y (resolve_qualified_expression_name): If creating a COMPOUND_EXPR, set it's type correctly. From-SVN: r45305
2001-08-31longlong.c (alpha_ep_extbl_i_eq_0): Allow for 16-bit 'unsigned int'.Geoffrey Keating2-1/+6
* gcc.c-torture/execute/longlong.c (alpha_ep_extbl_i_eq_0): Allow for 16-bit 'unsigned int'. From-SVN: r45304
2001-08-31stormy16.md (udivmodhi4): Express using UDIV/UMOD, not DIV/MOD, of course.Geoffrey Keating2-4/+9
* config/stormy16/stormy16.md (udivmodhi4): Express using UDIV/UMOD, not DIV/MOD, of course. From-SVN: r45303
2001-08-30jcf-io.c (open_class): Set filename field.Per Bothner4-24/+45
* jcf-io.c (open_class): Set filename field. * jcf-parse,c (parse_class_file): Set current_function_decl for better error message when Code attribute is missing. * lang.c (put_decl_node, lang_print_error): Re-arrange for better diagnostics, especially for constructors. From-SVN: r45299
2001-08-30jcf-write.c (generate_classfile): Don't write ConstantValue attribute if ↵Per Bothner3-1/+19
field is not final... * jcf-write.c (generate_classfile): Don't write ConstantValue attribute if field is not final, for compatibility with jdk. * jcf-write.c (generate_classfile): Convert ConstantValue values to correct type. Work-around for front-end bug. * class.c (set_constant_value): Error if constant has wrong type. From-SVN: r45298
2001-08-30rtl.def: Undo my patch commited 2001-08-27.Vladimir Makarov18-10497/+248
2001-08-30 Vladimir Makarov <vmakarov@redhat.com> * rtl.def: Undo my patch commited 2001-08-27. * genattrtab.c: Ditto. * rtl.h: Ditto. * sched-int.h: Ditto. * target-def.h: Ditto. * target.h: Ditto. * haifa-sched.c: Ditto. * sched-rgn.c: Ditto. * sched-vis.c: Ditto. * Makefile.in: Ditto. * doc/md.texi: Ditto. * doc/tm.texi: Ditto. * doc/contrib.texi: Ditto. * doc/gcc.texi: Ditto. * genattrtab.h: Remove it. * genautomata.c: Remove it. * genattr.c: Undo my patch and Richard Henderson's patch commited 2001-08-27. From-SVN: r45297
2001-08-30jcf-dump.c (print_constant): Fix fencepost error so "Float" and "Double" are ↵Per Bothner2-5/+15
printed at verbosity 1. * jcf-dump.c (print_constant): Fix fencepost error so "Float" and "Double" are printed at verbosity 1. * jcf-dump.c (main): Disable flag_print_attributes if --javap. * jcf-dump.c (SPECIAL_IINC): Remove unneeded casts to long. From-SVN: r45296