OSDN Git Service

2001-12-13 Aldy Hernandez <aldyh@redhat.com>
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2001-12-13  Aldy Hernandez  <aldyh@redhat.com>
2
3         * config/rs6000/rs6000.md (eh_set_lr_di): Change scratch
4         constraint to base register.
5         (eh_set_lr_si): Same.
6
7 2001-12-13  Hans-Peter Nilsson  <hp@axis.com>
8
9         * expr.c (expand_expr, case ADDR_EXPR): Don't honor
10         flag_force_addr for modifier != EXPAND_CONST_ADDRESS,
11         modifier != EXPAND_INITIALIZER and modifier != EXPAND_SUM.
12
13 Thu Dec 13 20:30:08 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14
15         * expr.c (copy_blkmode_from_reg): Add missing braces to eliminate
16         warning and reformat comments.
17         (expand_assignment): Don't pass EXPAND_WRITE if LHS is component.
18         (highest_pow2_factor, case INTEGER_CST): Return BIGGEST_ALIGNMENT
19         if overflow.
20
21 2001-12-12  Aldy Hernandez  <aldyh@redhat.com>
22
23         * config/rs6000/rs6000.c (rs6000_override_options): Add
24         SUBSUBTARGET_OVERRIDE_OPTIONS.
25
26         * config/rs6000/eabialtivec.h: New file.
27
28         * config/rs6000/linuxaltivec.h: New file.
29
30         * config.gcc: Add powerpc-*-eabialtivec and
31         powerpc-*-linux-gnualtivec.
32
33 2001-12-13  Neil Booth  <neil@daikokuya.demon.co.uk>
34
35         * toplev.c (process_options, parse_options_and_default_flags):
36         Set flag_no_inline before the post_options hook.
37
38 2001-12-13  Richard Henderson  <rth@redhat.com>
39
40         * emit-rtl.c (adjust_address_1): Don't adjust address if adjust
41         is false.
42
43 2001-12-13  Richard Earnshaw  <rearnsha@arm.com>
44
45         * collect2.c (COLLECT_SHARED_INIT_FUNC)
46         (COLLECT_SHARD_FINI_FUNC): Define default values.
47         (write_c_file_stat): Use them to call construtor and destructor 
48         functions in shared libraries.
49         * doc/tm.texi (COLLECT_SHARED_INIT_FUNC)
50         (COLLECT_SHARD_FINI_FUNC): Document them.
51         * config/netbsd.h (COLLECT_SHARED_INIT_FUNC)
52         (COLLECT_SHARD_FINI_FUNC): Define.
53
54         * config/netbsd.h (LINK_SPEC): Don't pull in estart if creating a
55         shared library.  Pass -shared through to the linker.
56         * config/arm/netbsd.h (LINK_SPEC): Likewise.
57
58         * config/arm/t-netbsd (TARGET_LIBGCC2_CFLAGS): Add -fpic.
59         (SHLIB_EXT, SHLIB_NAME, SHLIB_SONAME, SHLIB_OBJS, SHLIB_LINK)
60         (SHLIB_INSTALL): Define.
61
62 2001-12-13  Richard Earnshaw  <rearnsha@arm.com>
63
64         * arm.c (legitimize_pic_address): Handle LABEL_REFs in substantially
65         the same way as we handle SYMBOL_REFS.
66
67 Thu Dec 13 07:47:24 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
68
69         * loop.c (remove_constant_addition): Fix prototype and whitespace.
70         (emit_prefetch_instructions): Remove warnings and whitespace
71         changes.
72
73 Thu Dec 13 06:48:38 2001  Douglas B. Rupp  <rupp@gnat.com>
74
75         * config/alpha/vms-cc.c (preprocess_args): Fix forward
76         declaration.
77
78 Thu Dec 13 12:31:07 CET 2001  Jan Hubicka  <jh@suse.cz>
79
80         * predict.c (estimate_probability): Reorganize opcode heuristics.
81         * predict.def (PRED_OPCODE_POSITIVE, PRED_OPCODE_NONEQUAL,
82         PRED_FPOPCODE): New.
83
84         * i386.c (override_options): Recognize various CPU variants and set
85         SSE/MMX/3dNOW flags accordingly.
86         * i386.h (MASK_MMX_SET, MASK_SSE_SET, MASK_SSE2_SET, MASK_3DNOW_SET,
87         MASK_3DNOW_A_SET): New.
88         (MASK_ACCUMULATE_OUTGOING_ARGS_SET): New.
89         (MASK_NO_ACCUMULATE_OUTGOING_ARGS): Delete.
90         (MASK_*): Renumber.
91         (TARGET_FLAGS): Use new masks.
92         (CPP_CPU_SPECS): Recognize new CPU variants.
93         * invoke.texi (-mcpu): Update documentation.
94
95         * flags.h (flag_prefetch_loop_arrays): Declare.
96         * loop.h (LOOP_PREFETCH): Define new constant.
97         * loop.c (strength_reduce): Call emit_prefetch_instructions.
98         (MAX_PREFETCHES, PREFETCH_BLOCKS_BEFORE_LOOP_MAX,
99         PREFETCH_BLOCKS_BEFORE_LOOP_MIN, PREFETCH_BLOCKS_IN_LOOP_MIN): New
100         constants.
101         (check_store_data): New structure.
102         (check_store, emit_prefetch_instructions, rtx_equal_for_prefetch_p):
103         New functions.
104         * toplev.c: Include insn-flags.h.
105         (flag_prefetch_loop_arrays): New global variable.
106         (lang_independent_option): Add -fprefetch-loop-arrays.
107         (rest_of_compilation) Pass LOOP_PREFETCH when flag_prefetch_loop_arrays
108         is set.
109         * Makefile.in (toplev.c): Depend on insn-flags.h.
110         * invoke.texi (-fprefetch-loop-arrays): Document.
111
112         * predict.c (estimate_probability): Distribute the loop exit
113         probability according to number of exit edges.
114
115         * cfgcleanup.c (insns_match_p): Break out from ...;
116         (flow_find_cross_jump): ... here;
117         (outgoing_edges_match): Add parameter MODE; attempt to match everything
118         except for tablejumps.
119         (try_crossjump_to_edge): Accept complex edges.
120         (try_crossjump_bb): Likewise.
121
122 2001-11-29  Corey Minyard <minyard@acm.org>
123
124         * recog.c (validate_replace_rtx_1): Use simplify_gen_binary
125         instead of plus_constant.
126         * simplify-rtx.c (neg_const_int): New.
127         (simplify_gen_binary, simplify_plus_minus): Use it.
128
129 2001-12-12  Roger Sayle  <roger@eyesopen.com>
130
131         * builtins.c (expand_builtin_memset, expand_builtin_memcpy,
132         expand_builtin_strcpy): Additional arguments TARGET and MODE.
133         (expand_builtin_bzero, expand_builtin_strcpy,
134         expand_builtin_strncpy, expand_builtin_bzero): Pass additional
135         TARGET and MODE parameters to the above functions.
136         (expand_builtin_memset, expand_builtin_memcpy): Optimize the
137         case where the LEN parameter is constant zero.
138         (expand_builtin_memcmp): No longer conditional on
139         HAVE_cmpstrsi.  Take an additional mode parameter.  Optimize
140         the cases where len is either constant zero or one.
141         Optimize to call to memcpy, even if the memcpy isn't inlined.
142         (expand_builtin_strncpy): Optimize to call memcpy, even if the
143         memcpy isn't inlined.
144         (expand_builtin_strcmp, expand_builtin_strncmp): Always attempt
145         to optimize to a call to memcmp.
146         (expand_builtin): expand_builtin_memcmp can always be called,
147         and pass the required parameters to expand_builtin_memcmp,
148         expand_builtin_memset, expand_builtin_memcpy and
149         expand_builtin_strcpy.
150
151 2001-12-12  David O'Brien  <obrien@FreeBSD.org>
152
153         * config.gcc (arm-*-freebsd*): Add target.
154         * config/arm/freebsd.h: New file.
155         * config/arm/arm.h (CPP_PREDEFINES): Do not define.
156         (CPP_SPEC): #undef before defining.
157         (CPP_CPU_ARCH_SPEC): Add -Acpu=arm -Amachine=arm.
158         * config/arm/conix-elf.h (CPP_PREDEFINES): Remove -Acpu=arm
159         -Amachine=arm.
160         * config/arm/linux-elf.h: Likewise.
161         * config/arm/netbsd.h: Likewise.
162         * config/arm/riscix.h: Likewise.
163         * config/arm/riscix1-1.h: Likewise.
164         * config/arm/semiaof.h: Likewise.
165
166 2001-12-12  Richard Henderson  <rth@redhat.com>
167
168         * regrename.c (copyprop_hardreg_forward): New optimization.
169         (kill_value_regno, kill_value, init_value_data, kill_clobbered_value,
170         kill_set_value, kill_autoinc_value, copy_value, find_oldest_value_reg,
171         replace_oldest_value_reg, replace_oldest_value_addr,
172         replace_oldest_value_mem, copyprop_hardreg_forward_1,
173         debug_value_data, validate_value_data): New.
174         * rtl.h (copyprop_hardreg_forward): Declare.
175         * toplev.c (flag_cprop_registers): New.
176         (f_options): Add -fcprop-registers
177         (rest_of_compilation): Invoke it.
178         (parse_options_and_default_flags): Set it at -O1.
179         * doc/invoke.texi: Document it.
180
181 2001-12-12  Jakub Jelinek  <jakub@redhat.com>
182
183         * dwarf2out.c (dw_val_class): Add dw_val_class_range_list.
184         (DEBUG_RANGES_SECTION_LABEL): Define.
185         (ranges_section_label): Add.
186         (add_AT_range_list): New.
187         (print_die, sizeof_die, value_format): Handle dw_val_class_range_list.
188         (output_loc_list): Location expression length is always 2-byte.
189         (output_die): Handle dw_val_class_range_list.
190         (gen_lexical_block_die): Call add_AT_range_list.
191         (dwarf2out_init): Initialize ranges_section_label.
192         (dwarf2out_finish): Emit ranges_section_label.
193
194 2001-12-12  Jakub Jelinek  <jakub@redhat.com>
195
196         * c-typeck.c (digest_init): Allow initializing
197         static storage duration objects with compound literals.
198         * doc/extend.texi (Compound literals): Document the extension.
199
200 2001-12-12  Richard Henderson  <rth@redhat.com>
201
202         * emit-rtl.c (adjust_address_1): Always copy address to avoid
203         shared rtl.
204
205 Wed Dec 12 07:37:52 2001  Olivier Hainque <hainque@act-europe.fr>
206
207         * stmt.c (expand_end_case): Do subtraction of lower bound as trees
208         to avoid overflow.
209
210 Wed Dec 12 07:35:24 2001  Douglas B. Rupp  <rupp@gnat.com>
211
212         * cppfiles.c (read_include_file): Set buffer size properly when
213         file is shorter than expected.
214
215 Wed Dec 12 08:35:33 2001  Nicola Pero  <n.pero@mi.flashnet.it>
216
217         * objc/objc-act.c (encode_complete_bitfield): Fixed encoding
218         enumeral types - encode them using 'i'.
219
220 2001-12-12  Nathan Sidwell  <nathan@codesourcery.com>
221
222         * doc/extend.texi (Deprecated Features): Deprecate implicit
223         typename. Document that named return and initializer lists are now
224         removed.
225
226 2001-12-11  Roger Sayle <roger@eyesopen.com>
227
228         * except.c (reachable_next_level): Handle ERT_UNKNOWN to avoid
229         compiler warning about enumeration values not being handled.
230
231 2001-12-11  Momchil Velikov  <velco@fadata.bg>
232
233         * config/fp-bit.c (pack_d): Cast to ``fractype'' for long long
234         shifts.
235
236 2001-12-11  Richard Henderson  <rth@redhat.com>
237
238         * config/alpha/alpha.h (TARGET_FIXUP_EV5_PREFETCH): New.
239         * config/alpha/linux.h (TARGET_FIXUP_EV5_PREFETCH): New.
240         * config/alpha/alpha.md (prefetch): New.
241
242 2001-12-11  Richard Henderson  <rth@redhat.com>
243
244         * combine.c (simplify_and_const_int): Simplify (AND (PLUS X Y) C)
245         if C has only low bits set and doesn't intersect with X or Y.
246
247 Tue Dec 11 23:58:39 EST 2001  John Wehle  (john@feith.com)
248
249         * basic-block.h (flow_preorder_transversal_compute): Declare.
250         * cfganal.c (flow_preorder_transversal_compute): Implement.
251
252 Tue Dec 11 23:54:27 EST 2001  John Wehle  (john@feith.com)
253
254         * cfganal.c (flow_depth_first_order_compute): Always
255         increment dfsnum.
256
257 2001-11-30 Alan Matsuoka <alanm@redhat.com>
258
259         * combine.c (combine_simplify_rtx) : Can't simplify
260         cases that use mode class MODE_CC.
261
262 2001-12-11  Richard Henderson  <rth@redhat.com>
263
264         * expmed.c (expand_divmod): Ignore sdiv_pow2_cheap for modes in
265         which there is no divide expander.
266
267 2001-12-11  Richard Henderson  <rth@redhat.com>
268
269         * except.c (sjlj_find_directly_reachable_regions): Don't
270         consider RNL_BLOCKED a directly reachable region.
271         (sjlj_assign_call_site_values): Trust directly_reachable.
272         (sjlj_emit_dispatch_table): Likewise.
273
274 2001-12-11  Richard Henderson  <rth@redhat.com>
275
276         * config/alpha/alpha.md (divmodsi_internal_er): Split, so that
277         we represent the address load's dependency on the gp.
278         (divmoddi_internal_er): Likewise.
279         (divmodsi_internal_er_1, divmoddi_internal_er_1): New.
280
281 2001-12-11  Richard Henderson  <rth@redhat.com>
282
283         * emit-rtl.c (widen_memory_access): New.
284         * expr.h (widen_memory_access): Declare it.
285         * config/alpha/alpha.c (get_aligned_mem): Use it.
286
287 2001-12-11  Richard Henderson  <rth@redhat.com>
288
289         * combine.c (simplify_shift_const): Move SHIFT_COUNT_TRUNCATED
290         simplification above out of range check.
291
292 2001-12-11  Dan Nicolaescu  <dann@ics.uci.edu>
293
294         * config/sparc/sparc.md (prefetch): New.
295
296 2001-12-11  Aldy Hernandez  <aldyh@redhat.com>
297
298         * output.h (regno_uninitialized): Make argument unsigned.
299
300         * flow.c (regno_uninitialized): Make regno unsigned.
301
302 2001-12-11  David O'Brien  <obrien@FreeBSD.org>
303
304         * elfos.h (ENDFILE_SPEC, STARTFILE_SPEC): Do not define.
305         * config/cris/cris.h (ENDFILE_SPEC): Define.
306         * config/i386/i386elf.h ((ENDFILE_SPEC, STARTFILE_SPEC): Define.
307         * config/pa/elf.h: Likewise.
308
309 2001-12-11  Richard Henderson  <rth@redhat.com>
310
311         * objc/objc-act.c (build_string_class_template): New.
312         (build_objc_string_object): Call it.
313
314 2001-12-11  Steve Ellcey  <sje@cup.hp.com>
315
316         * doc/tm.texi (FUNCTION_ARG_REG_LITTLE_ENDIAN): New.
317         * defaults.h (FUNCTION_ARG_REG_LITTLE_ENDIAN): New.
318         * calls.c (store_unaligned_arguments_into_pseudos): Check
319         FUNCTION_ARG_REG_LITTLE_ENDIAN to see how structures
320         are passed/returned.
321         * expr.c (move_block_from_reg): Ditto.
322         (move_block_from_reg): Ditto.
323         (copy_blkmode_from_reg): Ditto.
324         * stmt.c (expand_return): Ditto.
325         * stor-layout.c (compute_record_mode): If
326         FUNCTION_ARG_REG_LITTLE_ENDIAN is set then check
327         MEMBER_TYPE_FORCES_BLK even if mode == VOIDmode.
328         * config/ia64/hpux.h (MEMBER_TYPE_FORCES_BLK): Set to true
329         so that Structures of one field are still treated as structures.
330         (FUNCTION_ARG_REG_LITTLE_ENDIAN): New, set it to true.
331         (FUNCTION_ARG_PADDING): Set to ia64_hpux_function_arg_padding().
332         (PAD_VARARGS_DOWN): Modify from default to not pad structures down.
333         * config/ia64/ia64-protos.h (ia64_hpux_function_arg_padding): New.
334         * config/ia64/ia64.c (ia64_hpux_function_arg_padding): New function
335         to special case handling of structure padding.
336
337 2001-12-11  Daniel Berlin  <dan@cgsoftware.com>
338
339         * sched-rgn.c (CONST_BASED_ADDRESS_P): CONST_INT -> CONSTANT_P.
340         (may_trap_exp): Stores only are risk if they trap, too, not just
341         if code == MEM.
342
343 2001-12-11  Aldy Hernandez  <aldyh@redhat.com>
344
345         * flow.c (find_regno_partial): Indent properly.  Add a default to
346         switch.
347
348 2001-12-11  Neil Booth  <neil@daikokuya.demon.co.uk>
349
350         * c-common.c (combine_strings): Complain if concatenating
351         __FUNCTION__.
352         * c-parse.in (yylexname): Flag artificial strings.
353         * tree.h (TREE_ARTIFICIAL_STRING_P): New.
354 doc:
355         * extend.texi: Update.
356
357 2001-12-11  Aldy Hernandez  <aldyh@redhat.com>
358
359         * c-common.c (type_for_mode): Handle unsigned vectors.
360         (type_for_mode): Remove redundant calls to TYPE_MODE.
361
362         * tree.c (make_vector): New.
363         (build_common_tree_nodes_2): Use make_vector for vector types.
364         Add unsigned vector types.
365
366         * tree.h (tree_index): Add unsigned types for vectors.
367         (unsigned_V16QI_type_node): New.
368         (unsigned_V4SI_type_node): New.
369         (unsigned_V8QI_type_node): New.
370         (unsigned_V8HI_type_node): New.
371         (unsigned_V4HI_type_node): New.
372         (unsigned_V2SI_type_node): New.
373
374 2001-12-11  Stan Shebs  <shebs@apple.com>
375
376         * objc/objc-act.c (finish_message_expr): Fix misplaced parens in a
377         test of class names.
378
379 2001-12-11  David O'Brien  <obrien@FreeBSD.org>
380
381         * config.gcc (m68020-*-elf*): Expand tm_file to include all needed
382         cpu configuration headers.
383         * config/h8300/elf.h: Include dbxelf.h.
384         * config/m68k/linux.h: Likewise.
385         * config/m68k/m68020-elf.h: Likewise.
386         * config/m68k/m68kv4.h: Likewise.
387         * config/sh/elf.h: Likewise.
388         * config/m68k/m68kemb.h: Add comment about the its purpose.
389
390 2001-12-11  Richard Henderson  <rth@redhat.com>
391
392         * objc/objc-act.c (build_constructor): Cast initializer values
393         to the proper field types.
394
395 2001-12-11  Jakub Jelinek  <jakub@redhat.com>
396
397         * unwind-dw2.c (execute_cfa_program): Fix DW_CFA_restore handling.
398
399 2001-12-10  Roger Sayle <roger@eyesopen.com>
400
401         * builtins.c (expand_builtin): Use a switch statement to list
402         those functions not expanded without optimizations, instead of a
403         series of equality tests.
404
405 Tue Dec 11 07:08:57 2001  Douglas B. Rupp  <rupp@gnat.com>
406
407         * config/alpha/vms.h (LIB_SPEC): Define.
408         * config/alpha/xm-vms.h (INCLUDE_DEFAULTS): Don't set component field.
409
410         * libgcc2.c (_bb): Remove ctime declaration.
411
412         * Makefile.in (stage[1234]-start): $(LN_S) utilities in a manner
413         that works if LN_S = cp.
414
415         * config/alpha/x-vms (version): Change "." to "_".
416
417         * configure.in: Hardcode that vfork works on VMS host.
418         * configure: Regenerated.
419
420 Mon Dec 10 18:37:31 2001  Douglas B. Rupp  <rupp@gnat.com>
421
422         * gcc.c (convert_filename): Add do_obj parameter. Don't convert
423         unless do_obj true.
424         (process_command): Modify calls to convert_filename.
425
426 2001-12-11  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
427
428         * config/sparc/sol2-sld-64.h: Include dbxelf.h again.
429
430 Mon Dec 10 15:54:27 2001  Jeffrey A Law  (law@cygnus.com)
431
432         * combine.c (known_cond): Check mode of each operand to determine
433         if COND is comparing floating point values.
434
435 2001-12-10  David Edelsohn  <edelsohn@gnu.org>
436
437         * rs6000.h (processor_type): Add PPC405.
438         (RTX_COSTS): Add PPC405.  Correct rs64 and ppc630 multiply costs.
439         * rs6000.md: Add PPC405 information.  Utilize imul2 and imul3 for
440         rios1, rs64, and ppc630 processors.
441         * rs6000.c (processor_target_table): Add PPC405.
442
443 2001-12-10  Richard Henderson  <rth@redhat.com>
444
445         * config/alpha/alpha.md (unaligned_extendhidi): Call gen_lowpart
446         instead of hardcoding subregs into the _be and _le patterns.
447
448 2001-12-10  Neil Booth  <neil@daikokuya.demon.co.uk>
449
450         * c-lex.c, c-parse.in, c-typeck.c: Revert concatenation changes.
451
452 Mon Dec 10 09:19:11 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
453
454         * config/i386/i386.md (leave, leave_rex64): Adjust pattern to match
455         what insn does.
456
457 2001-12-10  Joseph S. Myers  <jsm28@cam.ac.uk>
458
459         * doc/cpp.texi: Don't condition menus on @ifinfo.  Condition the
460         copyright notice formerly conditioned on @ifinfo on @ifnottex
461         instead.
462
463 Mon Dec 10 06:15:44 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
464
465         * vmsdbgout.c (lookup_filename): Remove warning.
466
467 Mon Dec 10 06:09:57 2001  Douglas B. Rupp  <rupp@gnat.com>
468
469         * Makefile.in: Add $(OUTPUT_OPTION) to compilation rules.
470
471         * config.gcc (alpha*-dec-vms*): Change to alpha*-dec-*vms*
472         (exeext, target_alias, prefix, local_prefix): Define.
473         * config/alpha/x-vms (USE_COLLECT2): Make empty.
474         * config/alpha/xm-vms.h (INCLUDE_DEFAULTS): Use Unix style
475         file specifications. Remove ".".
476         (GCC_INCLUDE_DIR): Remove redefinition (redundant).
477         * fixinc/mkfixinc.sh (alpha*-dec-vms*):  Change to alpha*-dec-*vms*
478
479 2001-12-09  Nathan Sidwell  <nathan@codesourcery.com>
480
481         * Makefile.in (.po.gmo): Use POSIXLY_CORRECT argument ordering.
482
483 Sun Dec  9 21:57:24 2001  Douglas B. Rupp  <rupp@gnat.com>
484
485         * config/alpha/t-vms (EXTRA_PARTS): Append $(VMS_EXTRA_PARTS)
486         Add rules for building [vp]crt0.o
487         * config/alpha/vms.h (START_FILE_SPEC): Define.
488         * config/alpha/x-vms (VMS_EXTRA_PARTS): Define
489         * config/alpha/vms-crt0.c, config/alpha/vms-psxcrt0.c: New files.
490         * doc/invoke.texi: Document special Alpha/VMS options.
491
492 Sun Dec  9 20:25:17 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
493
494         * hwint.h (HOST_BITS_PER_LONGLONG): Deal with __int64 type.
495         * vmsdbg.h (DST_SRC_COMMAND): Test for type of long long or __int64,
496         not GNUC.
497
498 Sun Dec  9 20:19:32 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
499                           Douglas B. Rupp  <rupp@gnat.com>
500
501         * tree.c (append_random_char): Conditionalize INO for VMS.
502
503 2001-12-09  Richard Henderson  <rth@redhat.com>
504
505         * cfgcleanup.c (label_is_jump_target_p): New function.
506         (try_optimize_cfg): Use label_is_jump_target_p to check if label is
507         target of a JUMP_INSN from the preceding block.
508
509 Sun Dec  9 18:40:07 2001  Douglas B. Rupp  <rupp@gnat.com>
510
511         * vmsdbgout.c (lookup_filename): Assign null string instead
512         of null pointer to fnam.
513
514 2001-12-09  Richard Henderson  <rth@redhat.com>
515
516         * config/alpha/alpha.c (alpha_align_insns): Suppress realignment
517         immediately after a call; insert nops before a call.
518
519 2001-12-09  Richard Henderson  <rth@redhat.com>
520
521         * config/alpha/alpha.c (alpha_align_insns): Use align_functions,
522         not FUNCTION_BOUNDARY.
523         * config/alpha/alpha.h (TRAMPOLINE_ALIGNMENT): New.
524         * config/alpha/alpha32.h, config/alpha/vms.h: Likewise.
525         * config/alpha/unicosmk.h (FUNCTION_BOUNDARY): Remove.
526
527 2001-12-09  Hans-Peter Nilsson  <hp@bitrange.com>
528
529         * config/mmix/mmix.c (mmix_function_block_profiler,
530         mmix_block_profiler, mmix_function_block_profiler_exit): Delete
531         unused functions.
532         * config/mmix/mmix-protos.h (mmix_function_block_profiler,
533         mmix_block_profiler, mmix_function_block_profiler_exit): Delete
534         prototypes.
535
536         * config/cris/cris.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER):
537         Delete obsoleted macros.
538
539 2001-12-09  Joseph S. Myers  <jsm28@cam.ac.uk>
540
541         * doc/cpp.texi, doc/cppinternals.texi, doc/invoke.texi,
542         doc/md.texi, doc/rtl.texi, doc/tm.texi: Use American spelling.
543
544         * ChangeLog.2, ChangeLog.3, ChangeLog.5, ChangeLog, alias.c,
545         cfgbuild.c, expmed.c, expr.c, final.c, flow.c, fold-const.c,
546         function.c, config/alpha/alpha.md, config/alpha/vms-ld.c,
547         config/arm/arm.c, config/arm/arm.h, config/c4x/libgcc.S,
548         config/i370/i370.c, config/i386/i386.c,
549         config/i386/i386-interix.h, config/i386/i386.md,
550         config/i386/i386.h, config/i386/netbsd-elf.h, config/ia64/ia64.c,
551         config/m32r/m32r-protos.h, config/mcore/mcore.h,
552         config/rs6000/rs6000.h, config/sparc/linux64.h,
553         config/sparc/sparc.c, config/v850/v850-protos.h,
554         config/cris/cris.h, config/s390/s390.md, config/elfos.h: Fix
555         spelling errors.
556
557 2001-12-09  Daniel Berlin  <dan@cgsoftware.com>
558
559         * config/rs6000/rs6000.h (enum rs6000_builtins): Add remaining
560         altivec builtins (VCF?X, VCT?XS, VSEL, V*EFP, VRFI*).
561
562         * config/rs6000/rs6000.c: Ditto.
563
564         * config/rs6000/rs6000.md: Ditto.
565
566 2001-12-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
567
568         * 1750a.md: Add default case in switch.
569         * alpha/vms.h (INITIAL_ELIMINATION_OFFSET): Add abort clause in
570         if-else statement.
571         * dsp16xx.c (print_operand_address): Likewise.
572         * i386/osf1elf.h (FUNCTION_PROFILER): Const-ify.
573         * ia64.md: Add missing braces.
574         * rs6000-protos.h (s8bit_cint_operand): Prototype.
575         * s390.h (INITIAL_ELIMINATION_OFFSET): Add abort clause in
576         if-else statement.
577         * stormy16.h (REG_CLASS_CONTENTS): Add missing braces.
578         * v850.h (OUTPUT_ADDR_CONST_EXTRA): Don't issue a `return'.
579         * dbxout.c (dbxout_source_file): Move a variable into the scope
580         where it is used.
581         * final.c (profile_function): Mark parameter with
582         ATTRIBUTE_UNUSED.
583         * genemit.c (gen_expand): Likewise for generated file.
584         * insn-addr.h (INSN_ADDRESSES_NEW): Avoid undefined behavior.
585
586         * vmsdbg.h: Delete spurious close-comment.
587         (DST_HEADER): Fix typo in ENUM_BITFIELD parameter.
588         * vmsdbgout.c (write_modbeg): Define return type.
589
590         * m68k/3b1.h (ASM_OUTPUT_ALIGN): Wrap in do-while(0).
591         * m68k/amix.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
592         * m68k/atari.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
593         * m68k/hp320.h (ASM_OUTPUT_ALIGN): Likewise.
594         * m68k/m68kelf.h (ASM_OUTPUT_ALIGN): Likewise.
595         * m68k/sgs.h (ASM_OUTPUT_ALIGN): Likewise.
596         * m68k/tower-as.h (ASM_OUTPUT_ALIGN): Likewise.
597
598 2001-12-08  Tom Rix  <trix@redhat.com>
599
600         * config/rs6000/aix43.h (NON_POWERPC_MASKS): Delete MASK_STRING.
601         * config/rs6000/aix51.h (NON_POWERPC_MASKS): Same.
602         * config/rs6000/rs6000.md (load_multiple, store_multiple): Do not use
603         for powerpc64.
604         * config/rs6000/rs6000.md (movstrsi_8reg, movstrsi_6reg,
605         movstrsi_4reg, movstrsi_1_reg): Add powerpc64.
606         * config/rs6000/rs6000.c (expand_block_move): Do not use
607         gen_movstrsi_2reg and powerpc64.
608
609 2001-10-08  Aldy Hernandez  <aldyh@redhat.com>
610
611         * c-common.h (rid): Add RID_CHOOSE_EXPR and
612         RID_TYPES_COMPATIBLE_P.
613
614         * c-parse.in (reswords): Add __builtin_choose_expr.
615         Add __builtin_types_compatible_p.
616         Add CHOOSE_EXPR token.
617         Add TYPES_COMPATIBLE_P token.
618         Add production for CHOOSE_EXPR.
619         Add production for TYPES_COMPATIBLE_P.
620
621         * doc/extend.texi (__builtin_choose_expr): Add documentation.
622         (__builtin_types_compatible_p): Likewise.
623
624 2001-12-08  David Edelsohn  <edelsohn@gnu.org>
625
626         * stor-layout.c (place_union_field): Apply ADJUST_FIELD_ALIGN
627         to unions.
628
629 2001-12-08  Neil Booth  <neil@daikokuya.demon.co.uk>
630
631         * c-parse.in: Take string literals in assembler constructs,
632         not expressions.
633         * c-typeck.c (build_asm_stmt, simple_asm_stmt): No need to
634         check the strings are STRING_CSTs.
635
636 2001-12-08  Neil Booth  <neil@daikokuya.demon.co.uk>
637
638         * c-lex.c (c_lex): Peek a token ahead for a string to concatenate,
639         using combine_strings to do the concatenation.
640         * c-parse.in: Replace uses of the string non-terminal with STRING.
641         Don't attempt string concatenation.
642         (OBJC_STRING): New terminal.
643         (string): Remove non-terminal.
644         (_yylex): Call combine_strings on function names.  Generate
645         OBJC_STRING terminals; don't pass '@' on to yacc.
646         * c-typeck.c (simple_asm_stmt): Don't concatenate strings here.
647         (build_asm_stmt): Similarly.
648
649 2001-12-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
650
651         * rtlanal.c (get_jump_table_offset): Delete unused variable.
652
653 2001-12-08  Richard Earnshaw  <rearnsha@arm.com>
654
655         * arm.md (VUNSPEC_PREFETCH): Delete constant definition.
656         (prefetch): Rewrite using PREFETCH RTL primitive.
657         * arm.h (arm_builtins): Delete ARM_BUILTIN_PREFETCH).
658         * arm.c (arm_init_builtins): Don't initialize a builtin for
659         __builtin_prefetch here.
660         (arm_expand_builtin): Don't expand __builtin_prefetch here.
661
662 2001-12-08  Richard Earnshaw  <rearnsha@arm.com>
663
664         * final.c (cleanup_subreg_operands):  Use recog_data.operand_loc
665         in test for a subreg.
666
667 2001-12-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
668
669         * rtl.c (rtx_equal_p): Check for null pointers when comparing rtx
670         strings.
671
672 2001-12-07  Richard Henderson  <rth@redhat.com>
673
674         * doc/extend.texi: Fix typo last change.
675
676         * c-decl.c (c_language): Remove duplicate.
677
678 2001-12-07  Dale Johannesen  <dalej@apple.com>
679
680         * config/rs6000/darwin.h: Set MAX_LONG_TYPE_SIZE to 32.
681         * config/rs6000/rs6000.c (rs6000_emit_move): In Darwin-
682         specific codegen, eliminate a register copy.
683         (print_operand_address): Add support for Darwin's lo16(constant)
684         syntax.
685         (rs6000_machopic_legitimize_pic_address): Fix darwin-specific
686         generation of addresses within very large data objects.
687         (s8bit_cint_operand):  New.
688         * config/rs6000/rs6000.md: Remove "iu" reference for 750/7400.
689         Move "mtjmpr" to correct functional unit for 750/7400/7450.
690         Add imul2 and imul3 insn types for multiplication by 16- and
691         8-bit constants.
692         Change tablejump patterns to strongly discourage using LR
693         rather than CTR.
694         Add %lo16 patterns for Darwin loads and stores.
695
696 2001-12-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
697
698         * alpha.md: Use (HOST_WIDE_INT)1<<63 in lieu of 0x8000000000000000.
699
700 2001-12-07  Stephane Carrez  <Stephane.Carrez@sun.com>
701
702         * config/sparc/sparc.c (epilogue_renumber): Do not replace %fp
703         with %sp because it can cause the delayed instruction to load
704         below the stack.
705
706 2001-12-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
707
708         * alpha.c (alpha_expand_unaligned_store,
709         alpha_expand_unaligned_store_words): Use constm1_rtx in place of
710         call to immed_double_const.
711
712 2001-12-07  Aldy Hernandez  <aldyh@redhat.com>
713
714         * doc/extend.texi (Variable Attributes): Document vector_size.
715
716         * attribs.c (c_common_attribute_table): Add vector_size.
717         (handle_vector_size_attribute): New.
718         (vector_size_helper): New.
719         (decl_attributes): Relayout the decl after calculating attribs.
720
721 2001-12-07  Joseph S. Myers  <jsm28@cam.ac.uk>
722
723         * doc/gcc.texi: Don't include install-old.texi.  Adjust menu
724         description for Trouble section.
725         * doc/install-old.texi: Adjust for inclusion as chapter of new
726         installation manual.
727         * doc/install.texi, doc/include/fdl.texi, doc/install.texi2html:
728         Adjust to include old installation chapter as chapter of new
729         installation manual.
730
731 Fri Dec  7 11:07:35 EST 2001  John Wehle  (john@feith.com)
732
733         * rtl.h (get_jump_table_offset): Declare.
734         * rtlanal.c (get_jump_table_offset): Implement.
735
736 Fri Dec  7 07:06:17 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
737
738         * final.c (bb_head, bb_tail, bb_file_label_num, bb_func_label_num):
739         Deleted; were used only by BB profiler code.
740         (sbb_head, sbb_tail, sbb_label_num): Likewise.
741         (end_final): Delete now-unused vars I, PTR, and SPTR.
742
743         * expr.c (store_field): Remove warning.
744         (expand_expr, case COMPONENT_REF, case VIEW_CONVERT_EXPR): Likewise.
745         (highest_pow2_factor, case MIN_EXPR, case MAX_EXPR): Add cases.
746         (highest_pow2_factor, case *_DIV_EXPR): Only can do something if
747         divisor constant power of 2.
748         (highest_pow2_factor, case COMPOUND_EXPR): Look at operand 1.
749
750 2001-12-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
751
752         * alpha.c (function_arg): Cast value to HOST_WIDE_INT before
753         shifting.
754
755 2001-12-06  Aldy Hernandez  <aldyh@redhat.com>
756
757         * rs6000.h (PRE_GCC3_DWARF_FRAME_REGISTERS): New.
758         (DWARF_FRAME_REGISTERS): Delete.
759
760 2001-12-06  Janis Johnson  <janis187@us.ibm.com>
761
762         * builtin-types.def (BT_FN_VOID_PTR_VAR): New.
763         * builtins.def (BUILT_IN_PREFETCH): Change arguments.
764         * builtins.c (expand_builtin_prefetch): Two arguments are now optional,
765         with defaults for read prefetch with high degree of locality.
766         * doc/extend.texi (__builtin_prefetch): Update documentation.
767         * doc/md.texi (prefetch): Add documentation.
768
769 2001-12-06  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
770
771         * fixinc/inclhack.def (stdio_va_list): Handle __VA_LIST__ in Tru64
772         UNIX V5.1A stdio.h.
773         * fixinc/fixincl.x: Regenerate.
774         Fixes PR libf2c/4826.
775
776 2001-12-06  Aldy Hernandez  <aldyh@redhat.com>
777             Richard Henderson  <rth@redhat.com>
778
779         * doc/tm.texi (DWARF_FRAME_REGISTERS): Add documentation.
780         (PRE_GCC3_DWARF_FRAME_REGISTERS): Same.
781
782         * unwind-dw2.c (__frame_state_for): Change DWARF_FRAME_REGISTERS
783         to PRE_GCC3_DWARF_FRAME_REGISTERS.
784         (frame_state): Same.
785         (PRE_GCC3_DWARF_FRAME_REGISTERS): Define if not already defined.
786
787 2001-12-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
788
789         * langhooks.c (lhd_staticp): Mark parameter with
790         ATTRIBUTE_UNUSED.
791
792 2001-12-06  H.J. Lu <hjl@gnu.org>
793
794         * Makefile.in (.po.gmo): Use "-test -d po || mkdir po" to
795         reduce noise.
796         (.po.pox): Likewise.
797         (o/$(PACKAGE).pot): Likewise.
798
799 2001-12-06  Alexandre Oliva  <aoliva@redhat.com>
800
801         * tree.c (get_callee_fndecl): Move DECL_ABSTRACT_ORIGIN-following...
802         * tree-inline.c (expand_call_inline): ... here.
803
804 2001-12-06  H.J. Lu <hjl@gnu.org>
805
806         * Makefile.in (.po.gmo): Use "-mkdir po" for parallel build.
807         (.po.pox): Likewise.
808         (o/$(PACKAGE).pot): Likewise.
809
810 2001-12-06  David O'Brien  <obrien@FreeBSD.org>
811
812         * config.gcc: Include dbxelf.h before elfos.h.
813         * elfos.h: Don't include dbxelf.h, let config.gcc handle it.
814
815 2001-12-06  Zack Weinberg  <zack@codesourcery.com>
816
817         * cppfiles.c (open_file): If we've opened a directory by
818         mistake, close it.
819         (find_include_file): Avoid turning / into // or // into ///.
820
821 2001-12-06  Nick Clifton  <nickc@cambridge.redhat.com>
822
823         * config/arm/arm.h (STRUCT_VALUE): Suppress definition.
824         (STRUCT_VALUE_REGNUM): Restore definition.
825
826 2001-12-06  Andrew MacLeod <amacleod@redhat.com>
827
828         * flow.c (find_regno_partial): Return register, not the expression
829         the register is in.
830
831 Thu Dec  6 09:24:12 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
832
833         * function.c (handle_epilogue_set): Check for FP setting case when
834         SP is set from FP in same insn.
835
836 2001-12-06  Nick Clifton  <nickc@cambridge.redhat.com>
837
838         * config/arm/arm.c (load_multiple_sequence): Pass pointer to
839         RTX when calling alter_subreg().
840         (store_multiple_sequence): Pass pointer to RTX when calling
841         alter_subreg().
842
843 Thu Dec  6 06:55:13 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
844
845         * function.c (assing_parms): Fix typo in last change.
846         * config/clipper.c (clipper_builtin_saveregs): Remove Checker code.
847         * config/m88k/m88k.c (m88k_builtin_saveregs): Likewise.
848         * config/pa/pa.c (hppa_builtin_saveregs): Likewise.
849         * config/sparc/sparc.c (sparc_builtin_saveregs): Likewise.
850
851 2001-12-06  Alan Modra  <amodra@bigpond.net.au>
852
853         * config/rs6000/rs6000.c (rs6000_unique_section): Simplify and
854         correct code selecting section.
855
856 Thu Dec  6 12:45:33 CET 2001  Jan Hubicka  <jh@suse.cz>
857
858         * final.c (count_basic_block, add_bb, add_bb_string):
859         Kill.
860         (end_final, final_start_function, final, final_scan_insn,
861         leaf_function_p): Kill BB profiler related code.
862         * flags.h (profile_block_flag): Kill.
863         * libgcc2.c (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE,
864         BB_BUCKETS, BBINBUFSIZE, bb_edge, bb_func_mode, bb_func,
865         __bb, bb_src, bb_dst, bb_tracefile, bb_hashbuckets,
866         bb_func_head, bb_callcount, bb_mode, bb_stack, bb_stacksize
867         reported, GOPENDECOMPRESS, GOPENCOMPRESS, gopen, gclose,
868         __bb_exit_trace_func, __bb_init_prg, __bb_trace_func,
869         __bb_trace_func_ret, __bb_init_file, __bb_trace_ret,
870         __bb_init_trace_func): Kill.
871         * toplev.c (profile_block_flag): Kill.
872         (indepdendent_decode_option, process_options): Kill -a related code.
873         * alpha.c (direct_call_operand): Likewise.
874         * arm.c (arm_expand_prologue, thumb_expand_prologue,
875         thumb_expand_epilogue): Likewise.
876         * c4x.c (c4x_expand_prologue, c4x_null_epilogue_p): Likewise.
877         * c4x.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
878         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
879         MACHINE_STATE_RESTORE): Kill.
880         * d30v.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
881         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
882         MACHINE_STATE_RESTORE): Kill.
883         * fr30.c (fr30_expand_prologue): Kill BB profiler related code.
884         * i386.c (ix86_can_use_return_insn_p, ix86_expand_prologue,
885         ix86_expand_epilogue, ix86_expand_epilogue): Kill BB profiler related
886         code.
887         (ix86_output_function_block_profiler, ix86_output_block_profiler): Kill.
888         * i386.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
889         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
890         MACHINE_STATE_RESTORE): Kill.
891         * fr30.c (fr30_expand_prologue): Kill BB profiler related code.
892         * i960.c (i960_output_function_prologue): Kill BB profiler related
893         code.
894         * ia64.c (ia64_compute_frame_size): Likewise.
895         * ia64.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
896         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
897         MACHINE_STATE_RESTORE): Kill.
898         * m32r.c (m32r_expand_prolofue): Kill BB profiler related code.
899         * m68hc11.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
900         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
901         MACHINE_STATE_RESTORE): Kill.
902         * m68k.c (m68k_output_function_epilogue): Kill BB profiler related code.
903         * m68k.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
904         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
905         MACHINE_STATE_RESTORE): Kill.
906         * m88k.c (output_options, m88k_layout_frame, m88k_expand_prologue):
907         Kill BB profiler related code.
908         * m88k.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
909         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
910         MACHINE_STATE_RESTORE): Kill.
911         * mips.c (mips_expand_prologue): Kill BB profiler related code.
912         * mmix.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
913         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
914         MACHINE_STATE_RESTORE): Kill.
915         * rs6000.c (rs6000_override_options): Kill BB profiler related code.
916         * s960.c (s390_function_prologue): Kill BB profiler related code.
917         * s960.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
918         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
919         MACHINE_STATE_RESTORE): Kill.
920         * linux-aout.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Kill.
921         * linux.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Kill.
922         * linux64.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Kill.
923         * sol2.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Kill.
924         * sparc.c (sparc_override_options, eligible_for_sibcall_delay,
925         sparc_nonflat_function_epilogue): Kill BB profiler related code.
926         (sparc_function_block_profiler, sparc_block_profiler,
927         sparc_function_block_profiler_exit): Kill.
928         * sparc.h (OVERRIDE_OPTIONS): Kill BB profiler related code.
929         (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
930         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
931         MACHINE_STATE_RESTORE): Kill.
932         * sun4o3.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Kill.
933         * sunos4.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Kill.
934         * stormy16.h (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
935         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
936         MACHINE_STATE_RESTORE): Kill.
937         * doc/invoke.texi: Kill documentation of -a and -ax.
938         * tm.texi (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER,
939         FUNCTION_BLOCK_PROFILER_EXIT, MACHINE_STATE_SAVE,
940         MACHINE_STATE_RESTORE): Kill.
941
942 2001-10-26  Steve Christiansen  <smc@us.ibm.com>
943
944         * doc/rtl.texi: Use a table to display RTL format characters.
945
946 2001-12-06  Bo Thorsen  <bo@suse.co.uk>
947
948         * config/i386/linux64.h (LINK_SPEC): Correct name of dynamic linker.
949
950 Wed Dec  5 19:18:53 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
951
952         * function.c (keep_stack_depressed): Check global_live_at_start
953         of EXIT_BLOCK for temp register and verify it isn't in equiv_reg_src.
954
955 2001-12-05  David O'Brien  <obrien@FreeBSD.org>
956
957         * config.gcc (powerpc-*-freebsd*): Use the proper tmake_file files,
958         as set by the generic FreeBSD configure framework.
959
960 2001-12-04  Jason Merrill  <jason@redhat.com>
961
962         * langhooks.h (struct lang_hooks_for_tree_inlining): Add
963         start_inlining, end_inlining.
964         * tree-inline.c (expand_call_inline): Call them.
965         * langhooks-def.h (LANG_HOOKS_TREE_INLINING_START_INLINING): Define.
966         (LANG_HOOKS_TREE_INLINING_END_INLINING): Define.
967         (LANG_HOOKS_TREE_INLINING_INITIALIZER): Add them.
968         * langhooks.c (lhd_tree_inlining_start_inlining): New fn.
969         (lhd_tree_inlining_end_inlining): New fn.
970
971 2001-12-05  Neil Booth  <neil@daikokuya.demon.co.uk>
972
973         * c-common.c (shadow_warning): New function, moved from cp/decl.c.
974         * c-common.h (shadow_warning): New.
975         * c-decl.c: Include c-common.h.
976         (warn_if_shadowing): New, broken out of pushdecl.
977         (pushdecl): Use warn_if_shadowing.
978         (store_parm_decls): Prevent duplicate -Wshadow warnings.
979
980 Wed Dec  5 17:59:19 2001  Douglas B. Rupp  <rupp@gnat.com>
981
982         * config/alpha/vms.h (SIZE_TYPE, PTRDIFF_TYPE): Remove, were disabled.
983         (DOLLARS_IN_IDENTIFIERS, LINK_SPEC): Remove duplicate.
984         (LIB_SPEC): Remove.
985
986 Wed Dec  5 16:03:04 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
987
988         * doc/c-tree.texi (RECORD_TYPE, UNION_TYPE): Expand on definition.
989         (QUAL_UNION_TYPE): New type.
990
991         * varasm.c (output_constant, case ERROR_MARK): New case.
992
993         * attribs.c (handle_no_check_memory_usage_atribute): Deleted.
994         (c_com): Delete its reference.
995         * builtins.c: Delete memory checking code.
996         * calls.c, expr.c, function.c, stmt.c: Likewise.
997         * builtins.c (expand_builtin_arg_info): Remove reference to
998         EXPAND_MEMORY_USE_* modifiers.
999         * explow.c (expr_size): Likewise.
1000         * expr.c (expand_expr, expand_increment): Likewise.
1001         * expr.h (ARGS_SIZE_RTX): Likewise.
1002         * function.c (assign_parms, expand_pending_sizeso): Likewise.
1003         * c-decl.c (duplicate_decls): Don't handle DECL_NO_CHECK_MEMORY_USAGE.
1004         * expr.c (in_check_memory_usage): Delete.
1005         (get_push_address, get_memory_usage_from_modifier): Delete.
1006         (expand_assigment): Use EXPAND_WRITE on destination.
1007         (expand_expr): Delete ro_modifier.
1008         * expr.h (expand_modifier): Delete EXPAND_MEMORY_* entries and
1009         add EXPAND_WRITE.
1010         (memory_use_mode): Delete.
1011         * flags.h (flag_check_memory_usage): Deleted.
1012         (flag_prefix_function_name): Likewise.
1013         * function.c (expand_function_start): Don't set
1014         current_function_check_memory_usage.
1015         * function.h (check_memory_usage): Delete.
1016         * libfuncs.h, optabs.c: Delete chkr_* stuff.
1017         * stmt.c (expand_asm_opernd): Change EXPAND_MEMORY_USE_WO to
1018         EXPAND_WRITE.
1019         * toplev.c (flag_check_memory_usage): Deleted.
1020         (flag_prefix_function_name): Likewise.
1021         (f_options, process_options): Delete references to above.
1022         * tree.h (DECL_NO_CHECK_MEMORY_USAGE): Deleted.
1023         * varasm.c (CHKR_PREFIX): Deleted.
1024         (make_decl_rtl): Remove flag_prefix_function_name handling.
1025         (assemble_name): Likewise.
1026         * doc/extend.texi: Remove no_check_memory_usage attribute.
1027         * doc/invoke.texi: Remove -fcheck-memory-usage
1028         and -fprefix-function-name.
1029
1030 2001-12-05  Andreas Schwab  <schwab@suse.de>
1031
1032         * Makefile.in (STMP_FIXPROTO, STMP_FIXINC): Use substituted values
1033         from autoconf.
1034
1035 2001-12-05  Nick Clifton  <nickc@cambridge.redhat.com>
1036
1037         * config.gcc: Include arm/xscale-coff.h before arm/arm.h.
1038
1039 2001-12-05  William Cohen  <wcohen@redhat.com>
1040
1041         * config/arm/arm.h (THUMB_FUNCTION_PROFILER): Correct typo in
1042         instruction.
1043
1044 2001-12-05  Daniel Berlin  <dan@cgsoftware.com>
1045
1046         * config/rs6000/rs6000.h (enum rs6000_builtins): Add more altivec
1047         builtins.
1048
1049         * config/rs6000/rs6000.md: Modeling of 7450 altivec changed to
1050         better reflect reality (change from Apple's tree).
1051         Add more of altivec instructions.
1052         Add ftruncv4sf2 pattern.
1053         Remove more unspecs (vector merge instructions, etc).
1054
1055         * config/rs6000/rs6000.c (bdesc_3arg): New, for 3 argument altivec
1056         builtins.
1057         (bdesc_1arg): New, for 1 argument altivec builtins.
1058         (altivec_expand_builtin): Handle unary and ternary ops.
1059         (altivec_init_builtins): Ditto.
1060
1061 Wed Dec  5 09:33:39 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1062
1063         * config/alpha/vms.h (ADA_LONG_TYPE_SIZE): New macro.
1064         * doc/tm.texi (ADA_LONG_TYPE_SIZE): Document it.
1065
1066 2001-12-05  Jakub Jelinek  <jakub@redhat.com>
1067
1068         * gcse.c (store_killed_in_insn): Consider pure calls
1069         as potential store killers in addition to normal calls.
1070
1071 2001-12-05  Jakub Jelinek  <jakub@redhat.com>
1072
1073         * expr.c (expand_expr): When checking promoted value, use
1074         DECL_MODE (exp) and not mode.
1075
1076 2001-12-05  Jakub Jelinek  <jakub@redhat.com>
1077
1078         * c-typeck.c (output_init_element): Call digest_init
1079         just once, not in each if branch and check its return value for
1080         error_mark_node.
1081
1082 2001-12-05  Jakub Jelinek  <jakub@redhat.com>
1083
1084         * c-decl.c (pushdecl): Only increase n_incomplete if pushed decl's
1085         type is RECORD_TYPE, UNION_TYPE or ARRAY_TYPE thereof.
1086         (finish_struct): Break the loop if n_incomplete went to 0.
1087         For ARRAY_TYPE, if it is not TYPE_DECL, layout the decl too.
1088
1089 Wed Dec  5 07:41:13 2001  Douglas B. Rupp  <rupp@gnat.com>
1090
1091         * config/alpha/alpha.c (alpha_va_start): Update VMS case.
1092
1093 Wed Dec  5 07:27:42 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1094                           Douglas B. Rupp  <rupp@gnat.com>
1095
1096         * vmsdbg.h, vmsdbgout.c: Add documentation and minor cleanups.
1097         * doc/invoke.texi: Add -gvms.
1098         * doc/passes.texi: Add mention of vmsdbgout.c.
1099         * doc/tm.texi: Document VMS debugging output.
1100
1101 Wed Dec  5 06:26:27 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1102
1103         * function.h (tree, rtx): Remove no-longer-needed definitions.
1104
1105         * function.c (keep_stack_depressed): Refine check for register
1106         clobbered over call.
1107
1108         * expr.c (store_expr): When copying string constant into array,
1109         use functions that update memrefs instead of computations on
1110         addresses to better track MEMs.  Also properly handle 32/64 pointers.
1111         (expand_expr): Use TARGET even if not reg for multi-word CONSTRUCTOR.
1112         (expand_expr, case CONSTRUCTOR): Fix errors in parms to assign_temp.
1113
1114         * emit-rtl.c (component_ref_for_mem_expr): Try harder to find decl
1115         underneath COMPONENT_REFs.
1116         (set_mem_attributes): Also strip VIEW_CONVERT_EXPR.
1117
1118 2001-12-05  Neil Booth  <neil@daikokuya.demon.co.uk>
1119
1120         * toplev.c (display_target_options): Don't print twice.
1121
1122 Wed Dec  5 00:42:16 EST 2001  John Wehle  (john@feith.com)
1123
1124         * emit-rtl.c (set_unique_reg_note): Don't set
1125         a REG_EQUAL or REG_EQUIV note if multiple sets
1126         are present.
1127
1128 2001-12-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1129
1130         * cfgrtl.c (verify_flow_info): Allow jump table data in fallthru if
1131         CASE_DROPS_THROUGH.
1132
1133 2001-12-04  Andrew MacLeod  <amacleod@redhat.com>
1134
1135         * rtl.h (initialize_uninitialized_subregs): New prototype.
1136         * toplev.c (rest_of_compilation): Call initialize_uninitialized_subregs
1137         when optimization is on.
1138         * flow.c (find_regno_partial): Find subregs within an expression.
1139         (initialize_uninitialized_subregs): Initialize live on entry registers
1140         which are used in subreg expressions.
1141
1142 2001-12-04  Phil Edwards  <pme@gcc.gnu.org>
1143
1144         * Makefile.in:  Add INSTALL_SCRIPT using INSTALL definition.
1145
1146 2001-12-04  DJ Delorie  <dj@redhat.com>
1147
1148         * fixinc/fixincl.c (initialize): Avoid problemsome macro
1149         parameter names (PR 3388).
1150
1151 2001-12-05  Alan Modra  <amodra@bigpond.net.au>
1152
1153         * config/rs6000/rs6000.c (rs6000_legitimize_address): Fix typo.
1154         * config/rs6000/rs6000.h (LEGITIMATE_LO_SUM_ADDRESS_P): Here too.
1155
1156 2001-12-04  Joseph S. Myers  <jsm28@cam.ac.uk>
1157
1158         * c-common.def (COMPOUND_LITERAL_EXPR): New.
1159         * c-common.c (c_expand_expr): Handle COMPOUND_LITERAL_EXPR.
1160         (c_staticp): New function.
1161         * c-common.h (COMPOUND_LITERAL_EXPR_DECL): New.
1162         (c_staticp): Declare.
1163         * c-typeck.c (default_function_array_conversion, build_unary_op):
1164         Don't handle CONSTRUCTOR specially.
1165         (lvalue_p, mark_addressable): Handle COMPOUND_LITERAL_EXPR.
1166         * c-decl.c (build_compound_literal): New function.
1167         * c-tree.h (build_compound_literal): Declare.
1168         * c-parse.in (primary): Use build_compound_literal.
1169         * c-lang.c (LANG_HOOKS_STATICP): Define.
1170         * objc/objc-lang.c (LANG_HOOKS_STATICP): Likewise.
1171         * doc/c-tree.texi: Document COMPOUND_LITERAL_EXPR.
1172         * doc/extend.texi: Update documentation of compound literals.
1173         Fixes PR c/4787.
1174
1175 2001-12-04  Joseph S. Myers  <jsm28@cam.ac.uk>
1176
1177         * langhooks.h (struct lang_hooks): Add staticp.
1178         * langhooks-def.h (lhd_staticp, LANG_HOOKS_STATICP): New.
1179         (LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_STATICP.
1180         * langhooks.c (lhd_staticp): New function.
1181         * tree.c (staticp): Call lang_hooks.staticp for language-specific
1182         tree codes.
1183
1184 2001-12-04  Neil Booth  <neil@daikokuya.demon.co.uk>
1185
1186         * cppspec.c (lang_specific_driver): Set is_cpp_driver.
1187         * gcc.c (process_command): Ensure the cpp driver sees
1188         --help and --target-help, and that the help is printed
1189         exactly once.
1190
1191 2001-12-04  David Edelsohn  <edelsohn@gnu.org>
1192
1193         * config/elfos.h (ASM_OUTPUT_INTERNAL_LABEL): Display count unsigned.
1194
1195 2001-12-04  Hans-Peter Nilsson  <hp@axis.com>
1196
1197         * config/cris/cris.h (OPTIMIZATION_OPTIONS): Don't unset
1198         flag_strict_aliasing.  Use separate assignment statements.
1199
1200 2001-12-04  Zack Weinberg  <zack@codesourcery.com>
1201
1202         * build-make, cross-make: Delete file.
1203         * configure.in: Set and substitute CROSS, ALL,
1204         SYSTEM_HEADER_DIR, HOST_PREFIX, HOST_PREFIX_1, HOST_CC,
1205         HOST_CFLAGS, STMP_FIXINC, and STMP_FIXPROTO depending on
1206         whether build == host and host == target.  Do not
1207         AC_SUBST_FILE build_overrides or cross_overrides.  Do not
1208         AC_SUBST cross_defines or extra_c_flags.
1209         * Makefile.in (NATIVE_SYSTEM_HEADER_DIR): New.
1210         (SYSTEM_HEADER_DIR, HOST_PREFIX, HOST_CC, HOST_PREFIX,
1211         HOST_PREFIX_1, HOST_CFLAGS, ALL, INTERNAL_CFLAGS): Set
1212         partially or completely with autoconf-substituted @variable@
1213         notation.
1214         (INSTALL_TARGET, @cross_defines@, @cross_overrides@,
1215         @build_overrides@, @extra_c_flags@, all.build, install-build,
1216         install-cross-rest, install-float-h-cross): Deleted.
1217         (install-normal): Rename to install.  Delete old "install"
1218         indirection rule.
1219
1220 2001-12-04  Andrew MacLeod  <amacleod@redhat.com>
1221
1222         * stmt.c (expand_return): Clear destination instead of clobbering it
1223         when setting a return value via bitsets.
1224
1225 2001-12-04  Alexandre Oliva  <aoliva@redhat.com>
1226
1227         * tree.c (get_callee_fndecl): Only use DECL_ABSTRACT_ORIGIN if
1228         it has DECL_SAVED_TREE.
1229
1230         * c-decl.c (duplicate_decls): Revert rth's patch.  If newdecl
1231         is in a different binding level, get its abstract origin to be
1232         olddecl.
1233         * tree-inline.c (expand_call_inline): Move DECL_INITIAL sanity
1234         check earlier.
1235         * tree.c (get_callee_fndecl): Follow DECL_ABSTRACT_ORIGIN if
1236         DECL_INITIAL is NULL.
1237
1238 2001-12-04  Jakub Jelinek  <jakub@redhat.com>
1239
1240         * flow.c (ior_reg_cond): Return NULL if ! add and rtx wasn't optimized.
1241         Return correct value if one of the subexpressions was optimized to
1242         0 resp. 1.  Optimize (x | A) | x and (x & A) | x.
1243         (and_reg_cond): Similarly.
1244
1245 2001-12-04  Jakub Jelinek  <jakub@redhat.com>
1246
1247         * function.c (assign_parms): Set last_named only for last named
1248         argument.
1249
1250 2001-12-04  Joseph S. Myers  <jsm28@cam.ac.uk>
1251
1252         * doc/install.texi: Use the GFDL.  Include years from old install
1253         manual in copyright notice.  Include copyright and GFDL notice on
1254         HTML index page.  Include usual footer on testing.html.
1255         * doc/install.texi2html: Build gfdl.html.  Use -I
1256         $SOURCEDIR/include.
1257         * doc/include/fdl.texi: Adapt for use in the install manual.
1258
1259 2001-12-04  Joseph S. Myers  <jsm28@cam.ac.uk>
1260
1261         * doc/install.texi: Document that installed native compiler for
1262         building cross compilers should be GCC 2.95 or later.
1263
1264 2001-12-03  Eric Christopher  <echristo@redhat.com>
1265
1266         * config/mips/mips.h (CALL_REALLY_USED_REGISTERS): New macro.
1267         * config/mips/mips.md: Check TARGET_DEBUG_D_MODE before split
1268         patterns.
1269
1270 2001-12-03  Janis Johnson  <janis187@us.ibm.com>
1271
1272         * rtl.def (PREFETCH): New rtx code.
1273         * doc/rtl.texi (PREFETCH): Add documentation.
1274         * function.c (instantiate_virtual_regs_1): Handle PREFETCH rtx.
1275         * rtlanal.c (reg_referenced_p): Ditto.
1276         * sched-vis.c (print_exp):  Ditto.
1277         * ssa-dce.c (find_inherently_necessary):  Ditto.
1278
1279         * config/ia64/ia64.h (SIMULTANEOUS PREFETCHES): Define.
1280           (PREFETCH_BLOCK): Define.
1281         * config/ia64/ia64.md (itanium_class): Add lfetch.
1282           (prefetch, prefetch_internal): New.
1283
1284         * builtin-types.def (BT_FN_VOID_PTR_INT_INT): New.
1285         * builtins.def (BUILT_IN_PREFETCH): New.
1286         * builtins.c (expand_builtin_expect): New.
1287           (expand_builtin): Call it.
1288         * doc/extend.texi: Document __builtin_prefetch.
1289
1290         * config/i386/i386.md (prefetch): Rename as prefetch_sse to avoid
1291           conflicts with new generic prefetch functionality.
1292         * config/i386/i386.c (ix86_expand_builtin): Use new name for
1293           prefetch_sse.
1294
1295 2001-12-02  Ziemowit Laski  <zlaski@apple.com>
1296
1297         * objc/Make-lang.in: Update copyright.
1298         (OBJC_OBJS): Add objc-lang.o.
1299         (objc-lang.o): New rule.
1300         * objc/config-lang.in: Fix file description and update
1301         copyright.
1302         * objc/objc-act.c: Do not include langhooks.h and
1303         langhooks-def.h
1304         (lang_hooks): Move (along with LANG_HOOKS...) to objc-lang.c.
1305         (objc_post_options): Move to objc-lang.c.
1306         (objc_init_options): Move to objc-lang.c.
1307         (objc_init): Make non-static.
1308         (objc_decode_option): Make non-static.
1309         (HASHFUNCTION): Remove macro.
1310         (hash_func): New function.
1311         (hash_enter): Replace HASHFUNCTION with hash_func.
1312         (hash_lookup): Replace HASHFUNCTION with hash_func.
1313         (maybe_objc_tree_codes): New function.
1314         (init_objc): Move ObjC tree code initialization to
1315         maybe_objc_tree_codes().
1316         * objc/objc-act.h (GCC_OBJC_ACT_H): New include guard.
1317         (objc_init): New public prototype.
1318         (objc_decode_option): New public prototype.
1319         (maybe_add_objc_tree_codes): New public prototype.
1320         * objc/objc-lang.c: New file.
1321         (lang_hooks): Moved from objc-act.c.
1322         (objc_post_options): Moved from objc-act.c.
1323         (objc_init_options): Moved from objc-act.c.
1324
1325 2001-12-03  Geoff Keating  <geoffk@redhat.com>
1326
1327         * emit-rtl.c (gen_lowpart_common): Avoid unwanted sign-extension
1328         of array elements.
1329
1330 2001-12-03  Neil Booth  <neil@daikokuya.demon.co.uk>
1331
1332         PR c/4988
1333         * gcc.c (process_command): Don't add a preprocessor option for
1334         --help and --target-help; cc1 is enough.
1335
1336 2001-12-03  Neil Booth  <neil@daikokuya.demon.co.uk>
1337
1338         * c-decl.c (grokdeclarator): Use ISO word.
1339         * cppinit.c: Remove leading capital from diagnostic messages, as
1340         per GNU coding standards.
1341         * emit-rtl.c: Similarly.
1342         * final.c: Similarly.
1343         * gcc.c: Similarly.
1344         * tradcpp.c: Similarly.
1345         * config/arm/arm.c: Similarly.
1346         * config/arm/arm.h: Similarly.
1347         * config/avr/avr.c: Similarly.
1348         * config/avr/avr.h: Similarly.
1349         * config/c4x/c4x.c: Similarly.
1350         * config/cris/cris.c: Similarly.
1351         * config/cris/cris.h: Similarly.
1352         * config/d30v/d30v.c: Similarly.
1353         * config/dsp16xx/dsp16xx.c: Similarly.
1354         * config/dsp16xx/dsp16xx.h: Similarly.
1355         * config/h8300/h8300.c: Similarly.
1356         * config/i386/i386.c: Similarly.
1357         * config/i386/xm-djgpp.h: Similarly.
1358         * config/i960/i960.h: Similarly.
1359         * config/m32r/m32r.c: Similarly.
1360         * config/m68hc11/m68hc11.c: Similarly.
1361         * config/m88k/m88k.c: Similarly.
1362         * config/m88k/m88k.h: Similarly.
1363         * config/mcore/mcore.c: Similarly.
1364         * config/mcore/mcore.h: Similarly.
1365         * config/mips/mips.c: Similarly.
1366         * config/mmix/mmix.c: Similarly.
1367         * config/pa/pa.c: Similarly.
1368         * config/rs6000/rs6000.c: Similarly.
1369         * config/rs6000/sysv4.h: Similarly.
1370         * config/s390/s390.c: Similarly.
1371         * config/sparc/sparc.c: Similarly.
1372         * config/v850/v850-c.c: Similarly.
1373         * config/v850/v850.c: Similarly.
1374
1375 2001-12-03  Zack Weinberg  <zack@codesourcery.com>
1376
1377         * rs6000.h (RETURN_IN_MEMORY): Cast result of
1378         int_size_in_bytes to unsigned HOST_WIDEST_INT so that -1 > 8.
1379
1380 Mon Dec  3 09:18:34 2001  Jeffrey A Law  (law@cygnus.com)
1381
1382         * mn10200.md (negsf2): Use -0x8000 instead of 0x8000 for
1383         bit twiddling constant.
1384
1385 Mon Dec  3 16:16:37 CET 2001  Jan Hubicka  <jh@suse.cz>
1386
1387         * gcse.c (delete_null_pointer_checks_1): Do not use delete_list;
1388         call purge_dead_edges after removing.
1389         (delete_null_pointer_checks): Do not handle delete_list.
1390
1391         * cfgbuild.c (inside_basic_block_p, control_flow_insn_p): Break out from ...
1392         (count_basic_blocks): ... here.
1393         (find_basic_blocks, find_bb_boundaries): Cleanup.
1394
1395         * stor-layout.c (fixup_signed_type, fixup_unsigned_type): Avoid
1396         overflow for types greater then 2 * HOST_WIDE_INT.
1397
1398         * reload.c (find_reloads): Update the duplicates after swapingg.
1399
1400 Mon Dec  3 13:52:19 CET 2001  Jan Hubicka  <jh@suse.cz>
1401
1402         * i386.md (movabsqi*): Use 'b' prefix instead of 'q'.
1403
1404 2001-12-02  Zack Weinberg  <zack@codesourcery.com>
1405
1406         * config/rs6000/rs6000.h (MASK_ALTIVEC_ABI,
1407         MASK_LONG_DOUBLE_128): Delete.
1408         (MASK_AIX_STRUCT_RET, MASK_AIX_STRUCT_RET_SET,
1409         TARGET_AIX_STRUCT_RET): New flags.
1410         (TARGET_SWITCHES): Remove entries for -mlong-double-128 and
1411         -mlong-double-64.  Add entries for -m(no-)aix-struct-return
1412         and -m(no-)svr4-struct-return.
1413         (TARGET_OPTIONS): Add entry for -mlong-double-.
1414         (rs6000_long_double_size_string, rs6000_long_double_type_size,
1415         rs6000_altivec_abi): Declare.
1416         (TARGET_LONG_DOUBLE_128, TARGET_ALTIVEC_ABI,
1417         LONG_DOUBLE_TYPE_SIZE): Change definitions to match.
1418         (RETURN_IN_MEMORY): If !TARGET_AIX_STRUCT_RET, return
1419         structures of size <= 8 bytes in registers.
1420         (PRINT_OPERAND_PUNCT_VALID_P): Take out '$' and '*'.
1421
1422         * config/rs6000/rs6000.c (rs6000_long_double_size_string,
1423         rs6000_long_double_type_size, rs6000_altivec_abi): New
1424         globals.
1425         (rs6000_override_options): Set rs6000_long_double_type_size
1426         from rs6000_long_double_size_string, if nonzero.  Set the
1427         MASK_AIX_STRUCT_RET bit in target_flags from DEFAULT_ABI, if
1428         not already set.
1429         (rs6000_parse_abi_options): Set rs6000_altivec_abi, not a
1430         target_flags bit.
1431         (rs6000_init_builtins): This hook now takes no arguments.
1432
1433         * config/rs6000/netbsd.h, config/rs6000/linux.h: Define
1434         DRAFT_V4_STRUCT_RET to 1.
1435
1436 2001-12-03  Joseph S. Myers  <jsm28@cam.ac.uk>
1437
1438         * c-typeck.c (really_start_incremental_init, push_init_level):
1439         Avoid constructor_max_index being other than an INTEGER_CST.
1440
1441 2001-12-02  David Edelsohn  <edelsohn@gnu.org>
1442
1443         * config/rs6000/xcoff.h (ASM_OUTPUT_INTERNAL_LABEL): Display count
1444         unsigned.
1445         (ASM_GENERATE_INTERNAL_LABEL): Same.
1446         (UNIQUE_SECTION): Fix typo.
1447
1448 2001-12-02  Richard Henderson  <rth@redhat.com>
1449
1450         * c-decl.c (duplicate_decls): Conditionalize DECL_SAVED_TREE copy.
1451
1452 2001-12-02  Richard Henderson  <rth@redhat.com>
1453
1454         * rtl.h (mem_attrs): Rename decl to expr; adjust all users.
1455         (MEM_EXPR): Rename from MEM_DECL; adjust all users.
1456         * emit-rtl.c (set_mem_expr): Rename from set_mem_decl.
1457         * expr.h, final.c, reload1.c: Adjust users.
1458
1459         * alias.c (nonoverlapping_component_refs_p): New.
1460         (decl_for_component_ref, adjust_offset_for_component_ref): New.
1461         (nonoverlapping_memrefs_p): Use them.
1462         * emit-rtl.c (component_ref_for_mem_expr): New.
1463         (set_mem_attributes): Use it.
1464         (set_mem_offset): New.
1465         * expr.c (expand_assignment): Call set_mem_attributes for
1466         inner references; adjust the memory offset as needed.
1467         * print-rtl.c (print_mem_expr): New.
1468         (print_rtx): Use it.
1469
1470 Sun Dec  2 09:22:25 2001  Douglas B. Rupp  <rupp@gnat.com>
1471
1472         * config/x-interix3 (SYSTEM_HEADER_DIR): Put back default.
1473
1474         * config/alpha/vms.h (VMS_DEBUGGING_INFO): New macro.
1475         (PREFERRED_DEBUGGING_TYPE): Define as VMS_AND_DWARF2_DEBUG.
1476         (ASM_SPEC): Don't redefine.
1477         (OPTIMIZATION_OPTIONS, OVERRIDE_OPTIONS, LINK_SPEC): Define.
1478         * config/alpha/t-vms (EXTRA_PARTS): Use; add rule for vms-dwarf2.asm.
1479         * config/alpha/vms-dwarf2.asm: New file.
1480
1481         * Makefile.in (OBJS): Add vmsdbgout.c and its rule.
1482         * c-lex.c (init_c_lex): Test for VMS_AND_DWARF2_DEBUG.
1483         * debug.h (gcc_debug_hooks): Add vmsdbg_debug_hooks.
1484         (vmsdbgout_after_prologue): New declaration.
1485         * defaults.h (VMS_DEBUGGING_INFO): Add to PREFERRED_DEBUGGING_TYPE.
1486         * dwarf2.h (dwarf_attribute): New DW_AT_VMS_rtnbeg_pd_address.
1487         * dwarf2out.c (dwarf2out_do_frame): Test for VMS_AND_DWARF2_DEBUG.
1488         (dwarf2out_frame_finish): Test for VMS_AND_DWARF2_DEBUG.
1489         (dwarf_attr_name): Use DW_AT_VMS_rtnbeg_pd_address.
1490         (add_name_and_src_coords_attributes): Test VMS_DEBUGGING_INFO
1491         * final.c (final_start_function): Test for VMS_AND_DWARF2_DEBUG.
1492         Test VMS_DEBUGGING_INFO.
1493         (final_end_function): Test for VMS_AND_DWARF2_DEBUG.
1494         (final_scan_insn): Test for VMS_AND_DWARF2_DEBUG and VMS_DEBUG.
1495         * flags.h (debug_info_type): Add VMS_DEBUG and VMS_AND_DWARF2_DEBUG.
1496         * toplev.c (compile_file): Test VMS_DEBUGGING_INFO, VMS_DEBUG, and
1497         VMS_AND_DWARF2_DEBUG.
1498         (rest_of_type_compilation): Test for VMS_AND_DWARF2_DEBUG.
1499         (decode_g_option): Add "vms" to debug_type_names.
1500         (process_options): Set vmsdbg_debug_hooks if -gvms.
1501         (lang_independent_init): Emit line number for VMS unless -g0.
1502         * tree.c: (build_complex_type): Test for VMS_AND_DWARF2_DEBUG.
1503         * vmsdbg.h, vmsdbgout.c: New files.
1504
1505 Sun Dec  2 09:03:06 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1506
1507         * cfgbuild.c (SET_STATE): Add cast to eliminate warning.a
1508
1509 2001-12-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1510
1511         * cfgrtl.c (purge_all_dead_edges): Initialize variable.
1512         * dwarf2out.c (is_cxx): Prototype.
1513         * local-alloc.c (block_alloc): Avoid 'unsigned>=0 is always true'
1514         warning.
1515         * objc/objc-act.c (defer_fn): Avoid signed/unsigned warning.
1516
1517 Sun Dec  2 07:12:30 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1518
1519         * libgcc2.c (__bb_exit_func): Fix line wrap problems.
1520
1521 2001-12-02  Geoff Keating  <geoffk@redhat.com>
1522
1523         * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Simplify.
1524         * config/rs6000/rs6000.c (rs6000_emit_move): Use adjust_address
1525         rather than simplify_subreg.  Check for volatile-ness.  Check that
1526         we're not splitting one slow operation into two slow operations.
1527
1528 2001-12-02  David Edelsohn  <edelsohn@gnu.org>
1529
1530         * emit-rtl.c (gen_lowpart_common): Cast array element to HOST_WIDE_INT
1531         before shifting.
1532
1533 2001-12-02  Neil Booth  <neil@daikokuya.demon.co.uk>
1534
1535         * c-decl.c (duplicate_decls, push_parm_decl): Remove leading
1536         capital from diagnostics.
1537         * c-lex.c (cb_file_change): Similarly.
1538         * c-parse.in : Similarly.
1539         * cfgrtl.c (verify_flow_info): Similarly.
1540         * collect2.c: Similarly.
1541         * cppfiles.c (find_include_file): Similarly.
1542         * cppinit.c (cpp_handle_option): Similarly.
1543         * cpplex.c (cpp_spell_token): Similarly.
1544         * cppmain.c (do_preprocessing): Similarly.
1545         * gcc.c (translate_options, process_command, do_spec1,
1546         main, pfatal_execute): Similarly.
1547         * genattr.c (main): Similarly.
1548         * genattrtab.c (check_attr_test, operate_exp, simplify_test_exp,
1549         write_test_expr, main): Similarly.
1550         * gencodes.c (main): Similarly.
1551         * genconfig.c (main): Similarly.
1552         * genconstants.c (main): Similarly.
1553         * genemit.c (main): Similarly.
1554         * genextract.c (main): Similarly.
1555         * genflags.c (main): Similarly.
1556         * genopinit.c (main): Similarly.
1557         * genoutput.c (process_template, main): Similarly.
1558         * genpeep.c (main): Similarly.
1559         * genrecog.c (main): Similarly.
1560         * gensupport.c (is_predicable, identify_predicable_attribute,
1561         alter_predicate_for_insn, init_md_reader_args, main): Similarly.
1562         * ggc-page.c (alloc_anon): Similarly.
1563         * mips-tfile.c (add_string, add_procedure, add_file, read_line,
1564         parse_begin, parse_bend, parse_def, parse_end, parse_file,
1565         parse_stabs_common, parse_stabs, write_varray, write_object,
1566         read_seek, copy_object, main, error): Similarly.
1567         * profile.c (compute_branch_probabilities): Similarly.
1568         * reg-stack.c (check_asm_stack_operands): Similarly.
1569         * reload.c (find_reloads): Similarly.
1570         * reload1.c (spill_failure, failed_reload): Similarly.
1571         * rtl-error.c (_fatal_insn_not_found): Similarly.
1572         * toplev.c (read_integral_parameter, crash_signal,
1573         decode_f_option, set_target_switch, parse_options_and_default_flags)
1574         : Similarly.
1575         * tradcif.y (parse_number, yylex): Similarly.
1576         * tradcpp.c (main, fancy_abort): Similarly.
1577         * tree.c (tree_check_failed): Similarly.
1578         * varray.c (varray_check_failed): Similarly.
1579         * xcoffout.c (xcoff_output_standard_types): Similarly.
1580 objc:
1581         * objc-act.c (get_object_ref, lookup_and_install_protocols,
1582         build_objc_string_object, objc_declare_alias, build_ivar_chain,
1583         finish_message_expr, build_protocol_expr, is_public,
1584         start_class): Similarly.
1585
1586 2001-12-01  Neil Booth  <neil@daikokuya.demon.co.uk>
1587
1588         * c-decl.c (duplicate_decls, parmlist_tags_warning): Remove
1589         trailing period from diagnostics.
1590         * c-lex.c (cb_file_change): Similarly.
1591         * cppmacro.c (check_trad_stringification): Similarly.
1592         * gcc.c (do_spec_1): Similarly.
1593         * genattr.c (main): Similarly.
1594         * genattrtab.c (main, operate_exp, make_length_attrs): Similarly.
1595         * gencodes.c (main): Similarly.
1596         * genconfig.c (main): Similarly.
1597         * genconstants.c (main): Similarly.
1598         * genemit.c (main): Similarly.
1599         * genextract.c (main): Similarly.
1600         * genopinit.c (main): Similarly.
1601         * genoutput.c (main): Similarly.
1602         * genpeep.c (main): Similarly.
1603         * genrecog.c (main): Similarly.
1604         * mips-tfile.c (add_file, error): Similarly.
1605         * profile.c (init_branch_prob): Similarly.
1606         * reload1.c (spill_failure): Similarly.
1607         * stmt.c (parse_output_constraint): Similarly.
1608         * varasm.c (assemble_variable): Similarly.
1609
1610 2001-12-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1611
1612         * m68k.c (init_FPA_table): Provide static prototype.
1613         * mips/abi64.h (mips_function_value): Move prototype to ...
1614         * mips-protos.h (mips_function_value): ... here.
1615         * mips.c: Include halfpic.h.
1616         * output.h (rdata_section): Prototype.
1617
1618         * h8300.c (h8300_asm_named_section): Wrap with !OBJECT_FORMAT_ELF.
1619         * m88k.c (m88k_svr3_asm_out_constructor,
1620         m88k_svr3_asm_out_destructor): Wrap with CTOR_LIST_BEGIN &&
1621         !OBJECT_FORMAT_ELF.
1622         * mcore.c (mcore_asm_named_section): Wrap with OBJECT_FORMAT_ELF.
1623         * sh.c (sh_asm_named_section): Wrap with !OBJECT_FORMAT_ELF.
1624         * sparc.c (sparc_elf_asm_named_section): Wrap with OBJECT_FORMAT_ELF.
1625
1626 2001-12-01  Geoff Keating  <geoffk@redhat.com>
1627
1628         * config/rs6000/rs6000.h (LEGITIMATE_LO_SUM_ADDRESS_P): Complex
1629         LO_SUM addresses less than word size are not legitimate,
1630         because they lead to invalid SUBREGs.
1631         * config/rs6000/rs6000.c (rs6000_legitimize_address): Likewise.
1632
1633 2001-12-01  Olivier Hainque <hainque@act-europe.fr>
1634
1635         * unroll.c (loop_iterations): Give up on jumps with null JUMP_LABEL
1636         while scanning for multiple back edges.
1637
1638 2001-12-01  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
1639
1640         * ginclude/ppc-asm.h (JUMP_TARGET): New macro.
1641         * config/rs6000/tramp.asm: Use it.
1642
1643 2001-12-01  Zack Weinberg  <zack@codesourcery.com>
1644
1645         * gencheck.c, gengenrtl.c: Don't define xmalloc.
1646         * gensupport.c: Don't define xstrdup, xcalloc, xrealloc,
1647         xmalloc.
1648
1649 2001-11-30  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1650
1651         * pa.c (output_ascii): Cast `p' to unsigned char.
1652
1653 2001-11-30  Daniel Berlin  <dan@cgsoftware.com>
1654
1655         * config/rs6000/rs6000.c (altivec_expand_builtin): add
1656         ALTIVEC_BUILTIN_LD_INTERNAL_4sf and ALTIVEC_BUILTIN_ST_INTERNAL_4sf,
1657         *_16qi,_8hi, rename existing V4SI ones to *_4si.
1658         (altivec_init_builtins): Ditto.
1659         (bdesc_2arg): Rename CODE_FOR_* to match changes in MD file.
1660
1661         * config/rs6000/rs6000.md: Add attribute types vecsimple,
1662         veccomplex, vecfloat, and vecperm, for altivec instructions.
1663         Modify altivec patterns to use appropriate attribute type.
1664         Modify altivec patterns to match RTL operations where appropriate
1665         (IE no unspec where we can avoid it).
1666         Add vector unit scheduling for ppc7450.
1667         Rename patterns to what they are where appropriate
1668         (altivec_vaddfp->addv4sf3, etc)
1669
1670         * config/rs6000/rs6000.h (enum rs6000_builtins): Change VRS->VSR.
1671         Pass -mppc, and define _ARCH_PPC, if -mcpu=7450 is used.
1672
1673         * config/rs6000/sysv4.h: Add -mcpu=7450.
1674
1675         * testsuite/gcc.dg/altivec-1.c: Update test to take into account renamed
1676         _builtin_altivec_ld_interal function.
1677
1678 2001-11-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1679
1680         * configure.in (AC_CHECK_FUNCS): Delete strtoul, bsearch, popen,
1681         strchr, strrchr, isascii, gettimeofday.
1682         * config.in, configure: Regenerate.
1683
1684 2001-11-30  Zoltan Hidvegi  <hzoli@hzoli.2y.net>
1685
1686         * unroll.c (unroll_loop): Correct special exit cases.
1687
1688 2001-11-30  Stephane Carrez  <Stephane.Carrez@sun.com>
1689
1690         * config/sparc/sparc.c (DF_MODES_NO_S): Fix pr/3623, define to
1691         accept DFmode and DImode only.
1692
1693 2001-11-30  Aldy Hernandez  <aldyh@redhat.com>
1694
1695         * config/rs6000/rs6000.h (STARTING_FRAME_OFFSET): Adjust for altivec.
1696         (STACK_DYNAMIC_OFFSET): Same.
1697
1698 2001-11-30  Richard Henderson  <rth@redhat.com>
1699
1700         * c-decl.c (duplicate_decls): Copy DECL_SAVED_TREE.
1701
1702 2001-11-30  Aldy Hernandez  <aldyh@redhat.com>
1703
1704         * config/rs6000/rs6000.h (CALL_REALLY_USED_REGISTERS): New.
1705         (CONDITIONAL_REGISTER_USAGE): Set call_really_used_registers to
1706         the values in call_used_registers.
1707
1708 Fri Nov 30 12:48:26 2001  Jeffrey A Law  (law@cygnus.com)
1709
1710         * gthr-dce.h: If _DCE_THREADS is not defined, then just include
1711         gthr-single.
1712
1713 2001-11-30  Jason Merrill  <jason@redhat.com>
1714
1715         * dwarf2out.c (is_cxx): New fn.
1716         (add_data_member_location_attribute): Check it.
1717         * dbxout.c (dbxout_type): Only look at BINFO_VPTR_FIELD for C++.
1718
1719 Fri Nov 30 08:26:57 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1720
1721         * dwarf2asm.c (dw2_asm_output_encoded_addr_rtx): Handle const1_rtx.
1722
1723 2001-11-30  Daniel Berlin  <dan@cgsoftware.com>
1724
1725         * genopinit.c (gen_insn): Handle MODE_VECTOR_INT and
1726         MODE_VECTOR_FLOAT as allowed.
1727
1728 2001-11-29  Zack Weinberg  <zack@codesourcery.com>
1729
1730         Purge cruft now we have build libiberty.
1731
1732         * Makefile.in (OBSTACK, VFPRINTF, DOPRINT, STRSTR,
1733         HOST_OBSTACK, HOST_VFPRINTF, HOST_DOPRINT, HOST_STRSTR,
1734         USE_HOST_OBSTACK, USE_HOST_VFPRINTF, USE_HOST_DOPRINT,
1735         USE_HOST_STRSTR): Delete variables.
1736         (vfprintf.o, doprint.o, strstr.o, splay-tree.o, obstack.o,
1737         hashtab.o, safe-ctype.o, $(HOST_PREFIX_1)obstack.o,
1738         $(HOST_PREFIX_1)vfprintf.o, $(HOST_PREFIX_1)doprint.o,
1739         $(HOST_PREFIX_1)strstr.o), $(HOST_PREFIX_1)): Delete rules.
1740         (LIBIBERTY, BUILD_LIBIBERTY): New variables.
1741         (LIBDEPS): Now just $(INTLDEPS) $(LIBIBERTY).
1742         (LIBS): Now just $(INTLLIBS) @LIBS@ $(LIBIBERTY).
1743         (HOST_LIBDEPS): Now just $(BUILD_LIBIBERTY).
1744         (HOST_LIBS): Ditto.
1745         (HOST_RTL): Remove hashtab.o safe-ctype.o.
1746         (OBJS): Remove splay-tree.o.
1747         (gen-protos): Depend on $(HOST_LIBS), not ../libiberty/libiberty.a.
1748         (distclean): No need to delete splay-tree.c obstack.c
1749         hashtab.c safe-ctype.c.
1750         (mostlyclean): Delete build copies of print-rtl.c bitmap.c
1751         errors.c ggc-none.c (all prefixed with $(HOST_PREFIX_1).
1752         * aclocal.m4 (gcc_AC_FUNC_VFPRINTF_DOPRNT, gcc_AC_FUNC_STRSTR):
1753         Delete.
1754         * configure.in: Don't use them.
1755         Set and substitute @FORBUILD@.
1756         * config.in, configure: Regenerate.
1757         * doprint.c: Move to libiberty/_doprnt.c.
1758         * doc/configterms.texi: Document that libiberty is now built
1759         up to three times.  Fix typo.
1760
1761 2001-11-30  Jason Merrill  <jason@redhat.com>
1762
1763         * dwarf2out.c (add_data_member_location_attribute): Do the
1764         right thing for virtual bases.
1765         * dbxout.c (dbxout_type): For a virtual base, print the offset
1766         within the vtable.
1767
1768 2001-11-29  Zoltan Hidvegi  <hzoli@hzoli.2y.net>
1769
1770         * doloop.c (doloop_valid_p): Check for LTU and GTU as well.
1771
1772 2001-11-29  Aldy Hernandez  <aldyh@redhat.com>
1773
1774         * config/rs6000/rs6000.c (function_arg): Unnamed vector arguments
1775         go in memory.
1776         Remove unused attribute for named.
1777
1778 2001-11-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1779
1780         * genattrtab.c (attr_rtx_1): New function containing the
1781         majority of `attr_rtx'.  Move variable declarations into the
1782         scope where they are used.  Eliminate unnecessary gotos.
1783         (attr_rtx): Now just a wrapper for `attr_rtx_1' using VA_OPEN,
1784         VA_FIXEDARG, and VA_CLOSE.
1785
1786 2001-11-30  Hans-Peter Nilsson  <hp@axis.com>
1787
1788         * config/cris/cris.c (cris_notice_update_cc): Check first
1789         destination also against overlap with cc_status.value2 and second
1790         destination against overlap with cc_status.value1.  For overlaps,
1791         clear overlapped value, don't just CC_STATUS_INIT.
1792
1793         * config/cris/cris.h (EXTRA_CONSTRAINT_T): Fix spacing and FIXME.
1794         Fix typo in comment.
1795         (LINK_SPEC): Remove whitespace at end of line.
1796
1797 2001-11-29  Jakub Jelinek  <jakub@redhat.com>
1798
1799         * c-lex.c (init_c_lex): Canonicalize "-" filename to "".
1800
1801 2001-11-29  Jakub Jelinek  <jakub@redhat.com>
1802
1803         * gcc.c (ASM_DEBUG_SPEC): Only check HAVE_AS_G*_DEBUG_FLAG
1804         macros for the supported debugging types.
1805
1806 2001-11-29  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1807
1808         PR other/4932
1809         * config/i386/i386.c (print_operand):  Verify that the
1810           argument to %c is a constant and not a conditional which
1811           needs to be reversed.
1812
1813 Thu Nov 29 11:12:59 2001  Geoffrey Keating (geoffk@redhat.com)
1814
1815         * emit-rtl.c (gen_lowpart_common): Fix conversion of
1816         REAL_VALUE_TYPEs to an array of target integers.  Fix extraction
1817         of low part of those arrays for 32bit and 64bit hosts.
1818
1819 2001-11-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1820
1821         * Makefile.in (insn-output.o): Depend on insn-codes.h.
1822
1823 2001-11-29  Joseph S. Myers  <jsm28@cam.ac.uk>
1824
1825         * configure.in (target_list): Add generated-manpages.
1826         * configure: Regenerate.
1827         * Makefile.in (generated-manpages): Depend on
1828         lang.generated-manpages.
1829         * objc/Make-lang.in (objc.generated-manpages): New dummy target.
1830
1831 2001-11-29  Nick Clifton  <nickc@cambridge.redhat.com>
1832
1833         * config/arm/crti.asm (_init): Add .thumb_func if compiled
1834         with -mthumb.
1835         (_fini): Add .thumb_func if compiled with -mthumb.
1836
1837 2001-11-28  Eric Christopher  <echristo@redhat.com>
1838
1839         * config/mips/mips.c (override_options): Fix thinko in mips_tune
1840         for mips32/mips64. Remove MASK_SOFT_FLOAT configuration bits.
1841
1842 Thu Nov 29 00:24:15 EST 2001  John Wehle  (john@feith.com)
1843
1844         * alpha.md (tablejump): Use pic_offset_table_rtx
1845         instead of gen_rtx_REG.
1846
1847 Wed Nov 28 15:36:13 2001  Jeffrey A Law  (law@cygnus.com)
1848
1849         * expr.c (store_expr): When copying a string constant into an
1850         array, reset the known alignment of the MEM for the section to
1851         be cleared to BITS_PER_UNIT.
1852
1853 2001-11-28  Hans-Peter Nilsson  <hp@axis.com>
1854
1855         * config/cris/cris.c: Remove whitespace at end of line.
1856
1857 Wed Nov 28 14:51:23 2001  Douglas B. Rupp  <rupp@gnat.com>
1858
1859         * config.gcc (i[34567]86-*-interix3*): New case.
1860         * config/x-interix3, config/interix3.h, config/i386/i386-interix3.h:
1861         New files.
1862
1863 2001-11-28  Richard Henderson  <rth@redhat.com>
1864
1865         * config/alpha/alpha.md (sibcall_osf_1, sibcall_value_osf_1): Use
1866         symbolic_operand as the predicate.
1867
1868 2001-11-28  Richard Henderson  <rth@redhat.com>
1869
1870         * doloop.c (doloop_modify_runtime): Properly select induction
1871         variable; skip late entry test if biv initializer created by loop.
1872
1873 Wed Nov 28 08:21:47 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1874
1875         * tree.h (EXPR_WFL_LINECOL): Used by Java in node other than
1876         EXPR_WITH_FILE_LOCATION, so change checks and documentation.
1877
1878         * tree.h (TREE_VIA_PROTECTED): Update to show can be in TREE_VEC.
1879
1880         * tree.h: Add missing checks on some macros; make formatting more
1881         consistent.
1882
1883         * stor-layout.c (put_pending_size): Look for SAVE_EXPR if not at top
1884         level; only add to pending_sizes if find it.
1885
1886         * langhooks.c (lhd_safe_from_p): Add ATTRIBUTE_UNUSED.
1887
1888         * df.c (iterate_dataflow_sbitmap, iterate_dataflow_bitmap):
1889         Add casts to remove warnings.
1890
1891         * Makefile.in (OBJS): Sort alphabetically.
1892
1893         * print-rtl.c (print_rtx): If RTX code is bad, just say so.
1894         Also minor cleanups.
1895
1896 Wed Nov 28 06:52:27 2001  Arnaud Charlet  <charlet@ACT-Europe.FR>
1897
1898         * Makefile.in (ORDINARY_FLAGS_TO_PASS): Remove STAGE_PREFIX.
1899         (FLAGS_TO_PASS): Add STAGE_PREFIX.
1900         (SUBDIR_FLAGS_TO_PASS): Apply PREPEND_DOTDOT_TO_RELATIVE_PATH
1901         to STAGE_PREFIX.
1902
1903 Wed Nov 28 10:42:19 CET 2001  Jan Hubicka  <jh@suse.cz>
1904
1905         * cse.c (true_dependence_in_rtx): New function.
1906         (invalidate): Use it.
1907
1908         * c-common.h (GOTO_FAKE_P): New macro.
1909         * tree-inline.c (GOTO_FAKE_P): Set.
1910         * c-tree.texi (GOTO_FAKE_P): Document.
1911
1912         * varasm.c (assemble_variable): Set reloc to 3 for error_mark
1913         containing pointers.
1914         (output_addressed_constants): Check for local/external relocations.
1915         * elfos.h (SELECT_SECTION): Classify data section.
1916         * tm.texi (SELECT_SECTION): Update documentation.
1917
1918         * cfganal.c (flow_dfs_compute_reverse_add_bb): set visited bit.
1919         (flow_dfs_compute_reverse_execute): Add only unvisited blocks.
1920
1921 2001-11-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1922
1923         * defaults.h (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
1924         UNALIGNED_DOUBLE_INT_ASM_OP): Also provide defaults when we have
1925         OBJECT_FORMAT_ROSE.
1926
1927 2001-11-28  Hans-Peter Nilsson  <hp@axis.com>
1928
1929         * config/cris/cris.c: Tweak spacing for prototypes.
1930         (LOSE_AND_RETURN): New macro.
1931         (cris_operand_lossage): New function.
1932         (cris_print_index, cris_print_base): Use cris_operand_lossage
1933         rather than fatal_insn.
1934         (cris_print_operand, cris_print_operand_address): Use
1935         LOSE_AND_RETURN rather than fatal_insn and internal_error.
1936         (cris_output_addr_const): Use LOSE_AND_RETURN and
1937         output_operand_lossage rather than fatal_insn and internal_error
1938         for valid but unexpected rtx expressions.
1939
1940         * config/cris/cris.c (cris_split_movdx): Don't call alter_subreg
1941         for a SUBREG in src or dest, abort instead.
1942
1943 2001-11-28  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1944
1945         * doc/passes.texi: Remove reference to c-dump.c. Update tree inlining
1946         doc.
1947
1948 2001-11-27  Jakub Jelinek  <jakub@redhat.com>
1949
1950         * gcc.c (ASM_DEBUG_SPEC): Use conditional expression rather than
1951         preprocessor define.  If only DBX_DEBUGGING_INFO or only
1952         DWARF2_DEBUGGING_INFO is supported for the target, provide
1953         appropriate definitions.
1954
1955 2001-11-27  Neil Booth  <neil@daikokuya.demon.co.uk>
1956
1957         * Makefile.in: Update, and add c-objc-common.o dependencies.
1958         * c-lang.c: Remove unnecessary includes.
1959         (c_init): Move bulk of code to c_objc_common_init, and call it.
1960         (c_tree_printer, c_missing_noreturn_ok_p, c_disregard_inline_limits,
1961         inline_forbidden_p, c_cannot_inline_tree_fn): Move to
1962         c-objc-common.c.
1963         * c-objc-common.c: New.  Mostly pulled from c-lang.c.
1964         * c-tree.h (c_disregard_inline_limits, c_cannot_inline_fn,
1965         c_objc_common_init, c_missing_noreturn_ok_p): New.
1966         * toplev.c: Update comment.
1967         * doc/passes.texi: Update.
1968 objc:
1969         * objc-act.c (LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN,
1970         LANG_HOOKS_TREE_INLINING_DISREGARD_INLINE_LIMITS,
1971         LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P): Override.
1972         (objc_init): Update to use c_objc_common_init.
1973
1974 2001-11-27  Neil Booth  <neil@daikokuya.demon.co.uk>
1975
1976         * cpphash.c (_cpp_init_hashtable): Update.
1977         * cpphash.h (struct spec_nodes): Remove n_L.
1978         * cpplex.c (_cpp_lex_direct): Check for prefix L separately.
1979
1980 2001-11-17  Richard Henderson  <rth@redhat.com>
1981
1982         * unroll.c (loop_iterations): Move last change ...
1983         * doloop.c (doloop_modify_runtime): ... here.
1984
1985 2001-11-17  Corey Minyard  <minyard@acm.org>
1986             Richard Henderson  <rth@redhat.com>
1987
1988         * unroll.c (loop_iterations): Detect one situation in which we
1989         overestimate the number of iterations.
1990
1991 2001-11-27  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1992
1993         * gcc.c (set_input): Export.
1994         Move declaration ...
1995         gcc.h (set_input): ... here.
1996
1997 2001-11-27  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1998
1999         * gcc.c (set_collect_gcc_options): New function, split out from
2000         main.
2001         Ignore elided switches.
2002         (do_spec): Invoke before executing command.
2003         (do_spec_1): Likewise.
2004         Fixes PR other/3968.
2005
2006 2001-11-27  Hans-Peter Nilsson  <hp@axis.com>
2007
2008         * config/cris/cris.h (INT_ASM_OP): Remove.
2009
2010 2001-11-27  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
2011
2012         * config/i386/sol2.h (WINT_TYPE): Redefine.
2013         (WINT_TYPE_SIZE): Likewise.
2014
2015 2001-11-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2016
2017         * collect2.c: Check HAVE_DUP2 instead of NO_DUP2.
2018         (dup2): Make static and add prototype.
2019         * m68k/plexus.h: Don't define NO_DUP2.
2020         * configure.in (AC_CHECK_FUNCS): Add dup2.
2021         * config.in, configure: Regenerate.
2022
2023         * ia64/aix.h (REG_SIZE): Don't #undef.
2024         * sparc.h (REG_SIZE): Delete.
2025         * flow.c (mark_used_regs): Don't use REG_SIZE.
2026         * regs.h (REG_SIZE): Delete.
2027
2028 2001-11-27  Andreas Schwab  <schwab@suse.de>
2029
2030         * gcc.c: Fix typo PREFERRED_DEBUGGING_FORMAT ->
2031         PREFERRED_DEBUGGING_TYPE.
2032
2033 Tue Nov 27 08:21:47 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2034
2035         * Makefile.in (c-lang.o): Depends on langhooks-def.h.
2036         (expr.o, varasm.o): Depends on langhooks.h.
2037         * c-common.c (c_safe_from_p): Always declare.
2038         (c_expand_expr): Refine when declared.
2039         * c-lang.c (c-common.h): Now include.
2040         (LANG_HOOKS_SAFE_FROM_P): Define new hook.
2041         (c_init): Don't set lang_safe_from_expr.
2042         * expr.c (langhooks.h): Now include.
2043         (lang_safe_from_p): No longer define.
2044         (safe_from_p): Use lang hook.
2045         (expand_expr): Set IGNORE if VOID_TYPE result of VIEW_CONVERT_EXPR too.
2046         (expand_expr, case VIEW_CONVERT_EXPR): Pass ro_modifier down.
2047         * expr.h (lang_expand_constant, lang_safe_from_p): Delete.
2048         * langhooks-def.h (lhd_return_tree, lhd_safe_from_p): New decls.
2049         (LANG_HOOKS_EXPAND_CONSTANT, LANG_HOOKS_SAFE_FROM_P): New hooks.
2050         * langhooks.c (lhd_return_tree, lhd_safe_from_p): New functions.
2051         * langhooks.h (struct lang_hooks): New fields expand_constant
2052         and safe_from_p.
2053         * output.h (output_constant): Size arg is HOST_WIDE_INT.
2054         * stmt.c (expand_decl_init): No longer need to expand constant
2055         for CONST_DECL.
2056         * stor-layout.c (put_pending_size): Don't check for SAVE_EXPR.
2057         * toplev.c (lang_expand_constant): Delete var.
2058         * tree.c (save_expr): Don't put another SAVE_EXPR around simple
2059         operations on SAVE_EXPR.
2060         * varasm.c (langhooks.h): Now include.
2061         (compare_constant_1): Use lang_hooks, not lang_expand_constant.
2062         (record_constant_1, output_addressed_constants): Likewise.
2063         (initializer_constant_valid_p, output_constant): Likewise.
2064         (output_constant_def): Process no-defer of string constant.
2065         (output_addressed_constants, case ADDR_EXPR): Use handled_component_p.
2066         (output_constant): Strip more conversions.
2067         Track our size and pad for the rest.
2068         (array_size_for_constructor): Remove code for non-byte STRING_CST.
2069         (output_constructor): SIZE now HOST_WIDE_INT.
2070
2071 2001-11-27  Richard Henderson  <rth@redhat.com>
2072
2073         * ifcvt.c (noce_try_store_flag_constants): Test for overflow
2074         in computing DIFF.
2075
2076 2001-11-27  Zack Weinberg  <zack@codesourcery.com>
2077
2078         * cppfiles.c (read_include_file): Add comment.
2079
2080 2001-11-26  Richard Henderson  <rth@redhat.com>
2081
2082         * toplev.c (rest_of_compilation): Call free_bb_for_insn before exit.
2083
2084 2001-11-26  Richard Henderson  <rth@redhat.com>
2085
2086         * config/ia64/sysv4.h (DBX_DEBUGGING_INFO): Undef.
2087         * config/ia64/aix.h (PREFERRED_DEBUGGING_TYPE): Remove
2088         commented out override.
2089
2090 2001-11-26  Neil Booth  <neil@daikokuya.demon.co.uk>
2091
2092         * cppfiles.c (stack_include_file): Don't optimize zero-length
2093         files.
2094         (read_include_file): NUL-terminate read files.
2095         * cpplex.c (handle_newline, skip_escaped_newlines,
2096         get_effective_char, skip_whitespace, parse_identifier,
2097         parse_identifier_slow, parse_number, parse_string,
2098         _cpp_lex_direct): Optimize for the fact that buffers are guaranteed
2099         NUL-terminated.
2100         * cpplib.c (destringize_and_run, cpp_define, handle_assertion):
2101         Be sure buffers are NUL terminated.
2102         * cppmacro.c (warn_of_redefinition): Kill compile warning.
2103
2104 2001-11-26  Neil Booth  <neil@daikokuya.demon.co.uk>
2105
2106         * c-common.c: Include tree-inline.h.
2107         (c_language): Move separate definitions here.
2108         (c_common_init_options, c_common_post_options): New.
2109         (c_common_lang_init): Rename c_common_init.
2110         * c-common.h (c_common_lang_init): Similarly.
2111         (c_common_init_options, c_common_post_options): New.
2112         * c-lang.c (c_post_options): Move body to c_common_post_options.
2113         (c_init_options): Use c_common_init_options.
2114         (c_init): Update.
2115         * langhooks.def: Rearrange.
2116         * langhooks.h: Rearrange, and improve comments.
2117         * toplev.c (do_compile): New function.
2118         (toplev_main): Use it.
2119         (lang_independent_f_options, parse_options_and_default_flags,
2120         process_options): Remove trailing periods.
2121         * Makefile.in: Update.
2122 objc:   * objc-act.c (objc_post_options, objc_init_options): Use c-common.c
2123         functions.
2124         (ojbc_init): Update.
2125
2126 2001-11-26  Richard Henderson  <rth@redhat.com>
2127
2128         * config/alpha/alpha.md (unop): Add 0 offset for some gas versions.
2129
2130 2001-11-26  DJ Delorie  <dj@redhat.com>
2131
2132         * expr.c (store_constructor): Actually use the value computed
2133         if WORD_REGISTER_OPERATIONS.
2134
2135 2001-11-26  Richard Henderson  <rth@redhat.com>
2136
2137         * config/elfos.h (SELECT_SECTION): Don't check TREE_READONLY
2138         for CONSTRUCTOR.
2139
2140 2001-11-26  David Edelsohn  <edelsohn@gnu.org>
2141
2142         * rs6000.c (output_mi_thunk): Handle minimal-toc and call
2143         correct function on AIX.
2144
2145 2001-11-26  Alexandre Oliva  <aoliva@redhat.com>
2146
2147         * toplev.c (process_options): Don't force
2148         flag_optimize_sibling_calls to zero just because exceptions are
2149         enabled.
2150
2151 Mon Nov 26 12:37:05 2001  Jeffrey A Law  (law@cygnus.com)
2152
2153         * df.h (transfer_function_sbitmap): Use PARAMS around argument
2154         list in function prototypes.
2155         (transfer_function_bitmap): Likewise.
2156
2157 2001-11-26  Loren J. Rittle  <ljrittle@acm.org>
2158
2159         * config/stormy16/stormy16.h: Remove DEFAULT_VTABLE_THUNKS.
2160         * config/i386/netbsd-elf.h: Likewise.
2161
2162 2001-11-26  David Edelsohn  <edelsohn@gnu.org>
2163
2164         * doc/trouble.texi: Remove outdated RS/6000 comments.
2165
2166 Mon Nov 26 13:49:41 CET 2001  Jan Hubicka  <jh@suse.cz>
2167
2168         * final.c (walk_alter_subreg): Fix return value.
2169
2170 Mon Nov 26 11:36:20 CET 2001  Jan Hubicka  <jh@suse.cz>
2171
2172         * sparc.c (sparc_absnegfloat_split_legitimate): Do not call
2173         alter_subreg.
2174         * sparc.md (post-reload splitters): Do not call alter_subreg.
2175         * cfgrtl.c (purge_dead_edges): Fix typo in previous fix.
2176
2177 2001-11-25  Aldy Hernandez  <aldyh@redhat.com>
2178
2179         * regclass.c (choose_hard_reg_mode): Handle vector arguments.
2180
2181 2001-11-26  Alan Modra  <amodra@bigpond.net.au>
2182
2183         * final.c: (insn_lengths): Make it an int *, so that large jump
2184         tables don't overflow.
2185
2186 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
2187
2188         * c-format.c (FMT_FLAG_DOLLAR_GAP_POINTER_OK): New.
2189         (format_types): Use it for scanf.
2190         (dollar_arguments_pointer_p): New.
2191         (init_dollar_format_checking): Store details of which arguments
2192         are pointers.
2193         (maybe_read_dollar_number): Reallocate dollar_arguments_pointer_p.
2194         (finish_dollar_format_checking): Take extra parameter
2195         pointer_gap_ok.  Treat unused arguments differently if
2196         pointer_gap_ok and the unused arguments are pointers.
2197         (check_format_info_main): Pass extra argument to
2198         finish_dollar_format_checking.
2199         * doc/invoke.texi (-Wno-format-extra-args): Document behavior when
2200         unused arguments are present between used arguments with operand
2201         numbers.
2202
2203 2001-11-25  Daniel Berlin  <dan@cgsoftware.com>
2204
2205         * df.c: Add prototypes for hybrid_search_bitmap and
2206         hybrid_search_sbitmap.
2207         (hybrid_search_bitmap): New function.
2208         (hybrid_search_sbitmap): New function.
2209         (iterative_dataflow_sbitmap): Change to use hybrid_search_sbitmap.
2210         (iterative_dataflow_bitmap): Ditto.
2211
2212 2001-11-25  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
2213
2214         * config/m68hc11/m68hc11.md (peephole2): New peephole2 to optimize
2215         address computations.
2216
2217 2001-11-25  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
2218
2219         * config/m68hc11/m68hc11.c (d_register_operand): Must accept
2220         register b (low part of d).
2221
2222 2001-11-25  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
2223
2224         * config/m68hc11/m68hc11.h (FUNCTION_PROFILER): Fix label name
2225         passed to mcount.
2226
2227 Sun Nov 25 06:22:09 2001  Douglas B. Rupp  <rupp@gnat.com>
2228
2229         * config/alpha/vms-ld.c, config/alpha/vms-cc.c: New files.
2230         * config/alpha/x-vms: New file, to compile the above.
2231         * config.gcc (alpha*-dec-vms*): Add x-vms.
2232
2233 2001-11-24  Hans-Peter Nilsson  <hp@axis.com>
2234
2235         * genextract.c (main): Set ro_loc for peepholes.
2236
2237 Sat Nov 24 17:04:10 2001  Douglas B. Rupp  <rupp@gnat.com>
2238
2239         * fix-header.c (main): Move inf_buffer termination and inf_limit
2240         calculation to after read.
2241
2242         * config/alpha/xm-vms.h (FILE_TYPE): Remove undef and baggage.
2243         (__UNIX_FOPEN): Define.
2244
2245 Sat Nov 24 16:11:00 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2246
2247         * function.c (assign_stack_temp_for_type): Clear alias set before
2248         setting new one.
2249
2250 2001-11-23  David Edelsohn  <edelsohn@gnu.org>
2251
2252         * rs6000.c (print_operand, case 'v'): Use HOST_WIDE_INT_PRINT_HEX
2253         format.
2254         * rs6000.md (cmptf): Fix typo.
2255
2256 2001-11-23  Richard Sandiford  <rsandifo@redhat.com>
2257
2258         * final.c (output_addr_const): Output PC as '.' even if !flag_pic.
2259         * varasm.c (output_constructor): Use assemble_integer rather
2260         than ASM_OUTPUT_BYTE.
2261
2262 2001-11-23  Andreas Jaeger  <aj@suse.de>
2263
2264         * cpplex.c (cpp_interpret_charconst): Use HOST_WIDE_INT for sign
2265         extension.
2266
2267 2001-11-23  Nick Clifton  <nickc@cambridge.redhat.com>
2268
2269         * config/arm/xscale-coff.h (SUBTARGET_CPU_DEFAULT): Override
2270         default definition.
2271         (SUBTARGET_EXTRA_ASM_SPEC): Remove previous definition.
2272         (MULTILIB_DEFAULTS): Remove previous definition.
2273
2274 2001-11-23  Neil Booth  <neil@daikokuya.demon.co.uk>
2275
2276         * cppmacro.c (warn_of_redefinition): Warn regardless of -pedantic.
2277         * gcc.dg/cpp/mi6.c, gcc.dg/cpp/redef2.c: Update.
2278
2279 2001-11-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2280
2281         * cris.h: Revert thinko in last patch.
2282
2283 2001-11-23  Joseph S. Myers  <jsm28@cam.ac.uk>
2284
2285         * ChangeLog.0, ChangeLog.2, ChangeLog.3, ChangeLog.4, ChangeLog,
2286         FSFChangeLog.10, c-decl.c, cppfiles.c, cppinit.c, cpplex.c,
2287         cpplib.c, cppmain.c, cse.c, df.c, diagnostic.c, dominance.c,
2288         dwarf2out.c, dwarfout.c, emit-rtl.c, errors.c, except.c, except.h,
2289         explow.c, function.c, gcse.c, genrecog.c, predict.c, regmove.c,
2290         sched-rgn.c, ssa-ccp.c, stmt.c, toplev.c: Fix spelling errors.
2291
2292         * predict.c, reg-stack.c: Fix spelling errors.
2293
2294 2001-10-09  Andrew Haley  <aph@redhat.com>
2295
2296         * calls.c (check_sibcall_argument_overlap): Use slot_offset for
2297         start of stack slot.
2298
2299 2001-11-22  Graham Stott  <grahams@redhat.com>
2300
2301         * cfgrtl.c (try_redirect_by_replacing_jump): Fix typo, emit
2302         replacement jump after original jump.
2303
2304         (verify_flow_info): Remove redundent initialisation.
2305         Handle reaching end of insn list before finding a BARRIER.
2306         Only issue one missing barrier diagnostic.
2307
2308 2001-11-22  Graham Stott  <grahams@redhat.com>
2309
2310         * local-alloc.c (combine_regs): Handle SUBREG_REG being a MEM.
2311
2312 Thu Nov 22 06:49:14 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2313
2314         * config/i386/i386.md (leave, leave_rex64): Have RTL reflect what
2315         insn actually does.
2316
2317 2001-11-22  Nick Clifton  <nickc@cambridge.redhat.com>
2318
2319         * doc/invoke.texi (M32R/D Option Summary): Document -m32r switch.
2320         Fix typo -mm32rx=> -m32rx.
2321
2322         * config/arm/arm.c (arm_elf_asm_named_section): Only build for elf
2323         targets.
2324
2325         * config.gcc (xscale-coff): Add necessary header files to
2326         tm_file variable.
2327
2328 2001-11-20  Zack Weinberg  <zack@codesourcery.com>
2329
2330         * rs6000.c (output_cbranch): Use $, not %$, in output template.
2331
2332 2001-11-21  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
2333
2334         * tree-dump.c: Rename from c-dump.c. Include c-tree.h, not c-common.h.
2335         (lang_type_quals): Declare.
2336         (dequeue_and_dump): Use lang_hooks.tree_dump.type_quals function to
2337         retrieve language-specific qualifiers for a type node, instead of
2338         C_TYPE_QUALS. Likewise for lang_hooks.tree_dump.dump_tree instead of
2339         lang_dump_tree.
2340         * tree-dump.h: Rename from c-dump.h.
2341         * c-common.h (C_TYPE_QUALS): Removed.
2342         Move declarations for tree-dump.c interface to...
2343         * tree.h: ... here. Remove lang_dump_tree.
2344         * langhooks.h (struct lang_hooks_for_tree_dump): New.
2345         (struct lang_hooks): Add tree_dump hooks.
2346         * langhooks.c (lhd_tree_dump_dump_tree): New function.
2347         (lhd_tree_dump_type_quals): New function.
2348         * langhooks-def.h (lhd_tree_dump_dump_tree, lhd_tree_dump_type_quals):
2349         Declare.
2350         (LANG_HOOKS_INITIALIZER): Add tree_dump hooks.
2351         * Makefile.in: Move tree-dump.o to language-independent back-end.
2352
2353 2001-11-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2354
2355         * 1750a.h (DBX_REGISTER_NUMBER): Don't define.
2356         * alpha.h (DBX_REGISTER_NUMBER): Likewise.
2357         * arc.h (DBX_REGISTER_NUMBER): Likewise.
2358         * arm/aout.h (DBX_REGISTER_NUMBER): Likewise.
2359         * avr.h (DBX_REGISTER_NUMBER): Likewise.
2360         * c4x.h (DBX_REGISTER_NUMBER): Likewise.
2361         * clipper.h (DBX_REGISTER_NUMBER): Likewise.
2362         * convex.h (DBX_REGISTER_NUMBER): Likewise.
2363         * cris.h (DBX_REGISTER_NUMBER): Likewise.
2364         * dsp16xx.h (DBX_REGISTER_NUMBER): Likewise.
2365         * elxsi.h (DBX_REGISTER_NUMBER): Likewise.
2366         * fr30.h (DBX_REGISTER_NUMBER): Likewise.
2367         * h8300.h (DBX_REGISTER_NUMBER): Likewise.
2368         * i370.h (DBX_REGISTER_NUMBER): Likewise.
2369         * i860.h (DBX_REGISTER_NUMBER): Likewise.
2370         * i860/paragon.h (DBX_REGISTER_NUMBER): Likewise.
2371         * i860/sysv3.h (DBX_REGISTER_NUMBER): Likewise.
2372         * i860/sysv4.h (DBX_REGISTER_NUMBER): Likewise.
2373         * m32r.h (DBX_REGISTER_NUMBER): Likewise.
2374         * m68hc11.h (DBX_REGISTER_NUMBER): Likewise.
2375         * m88k.h (DBX_REGISTER_NUMBER): Likewise.
2376         * mcore/mcore-elf.h (DBX_REGISTER_NUMBER): Likewise.
2377         * mcore.h (DBX_REGISTER_NUMBER): Likewise.
2378         * mn10200.h (DBX_REGISTER_NUMBER): Likewise.
2379         * mn10300.h (DBX_REGISTER_NUMBER): Likewise.
2380         * pdp11.h (DBX_REGISTER_NUMBER): Likewise.
2381         * romp.h (DBX_REGISTER_NUMBER): Likewise.
2382         * rs6000.h (DBX_REGISTER_NUMBER): Likewise.
2383         * rs6000/sysv4.h (DBX_REGISTER_NUMBER): Likewise.
2384         * s390/linux.h (DBX_REGISTER_NUMBER): Likewise.
2385         * stormy16.h (DBX_REGISTER_NUMBER): Likewise.
2386         * v850.h (DBX_REGISTER_NUMBER): Likewise.
2387         * vax.h (DBX_REGISTER_NUMBER): Likewise.
2388         * we32k.h (DBX_REGISTER_NUMBER): Likewise.
2389
2390         * defaults.h (DBX_REGISTER_NUMBER): Provide a default.
2391         * doc/tm.texi (DBX_REGISTER_NUMBER): Update.
2392
2393 2001-11-21  H.J. Lu <hjl@gnu.org>
2394
2395         * config/rs6000/sysv4.h (LIB_SPEC): Fix a typo.
2396
2397 2001-11-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2398
2399         * s390.c (s390_va_arg): Eliminate ALIGN parameter in call to
2400         emit_cmp_and_jump_insns.
2401
2402         * stormy16.c (xstormy16_expand_builtin_va_arg,
2403         xstormy16_expand_casesi): Likewise.
2404
2405 Wed Nov 21 17:37:16 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2406
2407         * function.c (keep_stack_depressed): Major rework.
2408         (handle_epilogue_set, emit_equiv_load): New functions.
2409         (thread_prologue_and_epilogue_insns): keep_stack_depressed now
2410         has return value.
2411         * jump.c (returnjump_p_1): Also return 1 if SET with SET_IS_RETURN_P.
2412         * rtl.h (SET_IS_RETURN_P): New macro.
2413
2414         * expr.c (expand_expr, case VIEW_CONVERT_EXPR): Refine slightly
2415         and also support TREE_ADDRESSABLE.
2416         * tree.def (VIEW_CONVERT_EXPR): Document TREE_ADDRESSABLE.
2417
2418 2001-11-21  David Edelsohn  <edelsohn@gnu.org>
2419
2420         * rs6000.md (cmptf_internal1): Replace %$ with $.
2421
2422 Wed Nov 21 16:44:01 2001  Douglas B. Rupp  <rupp@gnat.com>
2423
2424         * cppfiles.c (STAT_SIZE_TOO_BIG): Define.
2425         (read_include_file): Use STAT_SIZE_TOO_BIG.
2426
2427         * cppinit.c (INO_T_COPY): Define.
2428         (INO_T_EQ): Uppercase parameters.
2429         (append_include_chain): Use INO_T_COPY.
2430
2431 2001-11-21  Richard Sandiford  <rsandifo@redhat.com>
2432
2433         * cfg.c: Fix typos and formatting in the introductory comment.
2434
2435 Wed Nov 21 12:38:37 CET 2001  Jan Hubicka
2436
2437         * profile.c (compute_branch_probabilites):  Compute probabilities
2438         for entry/exit edges; estimate probabilities for zero counts.
2439
2440 2001-11-21  Jakub Jelinek  <jakub@redhat.com>
2441
2442         * explow.c (probe_stack_range): Use LCT_NORMAL as second argument
2443         to emit_library_call.
2444         * function.c (expand_main_function, expand_function_start,
2445         expand_function_end): Likewise.
2446         * profile.c (output_func_start_profiler): Likewise.
2447         * stmt.c (expand_nl_goto_receivers): Use LCT_NORETURN as
2448         second argument to emit_library_call.
2449         * optabs.c (prepare_cmp_insn): Use LCT_CONST_MAKE_BLOCK
2450         as second argument to emit_library_call.
2451         * calls.c (emit_library_call): Update fn_type description.
2452
2453 2001-11-21  Jakub Jelinek  <jakub@redhat.com>
2454
2455         * c-decl.c (c_expand_deferred_function): Only call c_expand_body
2456         if fndecl is still DECL_INLINE and has DECL_RESULT.
2457
2458 2001-11-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2459
2460         * clipper.c (clipper_movstr): Avoid uninitialized warning.
2461         * i960.c (is_mask, legitimize_address): Likewise.
2462         * m88k.c (m88k_expand_prologue): Likewise.
2463         * m88k.md: Likewise.
2464         * mcore.c (emit_new_cond_insn): Likewise.
2465         * stormy16.c (xstormy16_emit_cbranch): Likewise.
2466
2467 2001-11-20  Zack Weinberg  <zack@codesourcery.com>
2468
2469         * config.gcc: Delete powerpcle-*-solaris2* stanza.
2470         * config/rs6000/eabi.asm, config/rs6000/rs6000.c,
2471         config/rs6000/rs6000.h, config/rs6000/rs6000.md,
2472         config/rs6000/sol-ci.asm, config/rs6000/sol-cn.asm,
2473         config/rs6000/sysv4.h, config/rs6000/t-ppccomm,
2474         config/rs6000/t-ppcos: Expunge all references to Solaris.
2475
2476         * config/rs6000/sol-c0.c, config/rs6000/sol2.h: Delete.
2477
2478         * config/rs6000/rs6000.md: Replace '%$' with '$' in all
2479         output templates.
2480         * config/rs6000/rs6000.h: Define DEFAULT_PCC_STRUCT_RETURN to 0,
2481         and change RETURN_IN_MEMORY to just check AGGREGATE_TYPE_P.
2482
2483 2001-11-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2484
2485         * sh.md: Avoid uninitialized warnings.
2486         * vax.c (vax_rtx_cost): Likewise.
2487
2488 2001-11-15  Aldy Hernandez  <aldyh@redhat.com>
2489
2490         * rs6000.c (direct_return): Check if we are saving altivec
2491         registers.
2492         (first_altivec_reg_to_save): New.
2493         Updated stack frame layout comments.
2494         (rs6000_stack_info): Calculate altivec register save size.
2495         Save link register if we saved some altivec registers.
2496         (rs6000_stack_info): Align save size to 16 if altivec abi or
2497         abi_darwin.
2498         (rs6000_stack_info): Calculate altivec register offsets.
2499         (rs6000_stack_info): Add altivec info to save_size.
2500         (debug_stack_info): Add altivec debug info.
2501         (rs6000_emit_prologue): Save altivec registers and vrsave.
2502         (compute_vrsave_mask): New.
2503         (altivec_expand_builtin): Remove unused variables.
2504         (rs6000_parse_abi_options): Add static qualifier.
2505         (rs6000_expand_builtin): Remove unused parameters.
2506         (altivec_expand_builtin): Cast bdesc_2arg to get rid of warning.
2507         (altivec_init_builtins): Same.
2508         (is_altivec_return_reg): New.
2509         (vrsave_operation): New.
2510         (ALTIVEC_REG_BIT): New.
2511         (generate_set_vrsave): New.
2512
2513         * rs6000.md (get_vrsave): New.
2514         (set_vrsave): New.
2515         (*set_vrsave_internal): New.
2516
2517         * rs6000.h (rs6000_stack): Add first_altivec_reg_save,
2518         altivec_save_offset, vrsave_save_offset, altive_size, vrsave_size,
2519         altivec_padding_size, vrsave_mask.
2520         (TOTAL_ALTIVEC_REGS): New.
2521         (EPILOGUE_USES): Add VRSAVE_REGNO.
2522
2523 2001-11-20  Jeff Law <law@redhat.com>
2524
2525         * unroll.c (copy_loop_body): Update LABEL_NUSES for the
2526         exit label as necessary.
2527
2528 2001-11-20  Brad Kaiser  <bkaiser@acelink.net>
2529
2530         * reload1.c (elimination_effects): Use function_invariant_p
2531         instead of CONSTANT_P when considering register equivalences.
2532
2533 2001-11-20  David O'Brien  <obrien@FreeBSD.org>
2534
2535         * config.gcc: Add FreeBSD/PowerPC target.
2536         (powerpc64-*-linux*, powerpc-*-sysv*, powerpc-*-netbsd*,
2537         powerpc-*-chorusos*, powerpc-*-eabiaix*, powerpc-*-eabisim*,
2538         powerpc-*-elf*, powerpc-*-eabi*, powerpc-*-rtems*,
2539         powerpc-*-linux*libc1, powerpc-*-linux*, powerpc-wrs-vxworks*,
2540         powerpcle-wrs-vxworks*, powerpcle-*-sysv*, powerpcle-*-elf*,
2541         powerpcle-*-eabisim*, powerpcle-*-eabi*, powerpcle-*-solaris2*): Add
2542         freebsd-spec.h to tm_file.
2543         (rs6000-*-lynxos*): Add lynx.h to tm_file.
2544         * config/freebsd.h: Tidy up.
2545         (USING_CONFIG_FREEBSD): Define.
2546         (FBSD_SWITCH_TAKES_ARG, FBSD_WORD_SWITCH_TAKES_ARG,
2547         FBSD_CPP_PREDEFINES, FBSD_CPP_SPEC, FBSD_STARTFILE_SPEC,
2548         FBSD_ENDFILE_SPEC, FBSD_LIB_SPEC): Remove (moved to freebsd-spec.h).
2549         (TARGET_HAS_F_SETLKW): Define.
2550         (ASM_OUTPUT_IDENT): Delete, the elfos.h definition is fine.
2551         * config/freebsd-spec.h: New file.
2552         * config/rs6000/freebsd.h: New file.
2553         * config/rs6000/rs6000.h (TARGET_VERSION): Do not define.
2554         * config/rs6000/rs6000.c: Test for USING_ELFOS_H rather than
2555         USING_SVR4_H to know when to turn on ELF support.
2556         * config/rs6000/sysv4.h (TARGET_VERSION, CPP_PREDEFINES): Don't undef,
2557         define only if not already defined.
2558         Add FreeBSD support.
2559         * config/rs6000/aix.h (TARGET_VERSION): Define.
2560         * config/rs6000/beos.h: Likewise.
2561         * config/rs6000/darwin.h: Likewise.
2562         * config/rs6000/mach.h: Likewise.
2563         * config/rs6000/lynx.h (TARGET_VERSION): Likewise.
2564         Don't include lynx.h directly.
2565
2566 2001-11-20  Graham Stott  <grahams@redhat.com>
2567
2568         * unwind-dw2-fde.c (__deregister_frame_info_bases):
2569         Fix lossage in last change return OB.
2570
2571 Tue Nov 20 11:56:12 2001  Douglas B. Rupp  <rupp@gnat.com>
2572
2573         * config/alpha/xm-vms.h (_POSIX_EXIT): Define.
2574         Remove unneeded exit related macros.
2575
2576 2001-11-20  David Edelsohn  <edelsohn@gnu.org>
2577
2578         * rs6000.c (rs6000_emit_eh_toc_restore): Remove ALIGN parm.
2579
2580         * rs6000.c (rs6000_emit_move): Add TFmode case.
2581         * sysv4.h (MASK_LONG_DOUBLE_128, TARGET_LONG_DOUBLE_128,
2582         LONG_DOUBLE_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE,
2583         LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Move from here...
2584         * rs6000.h: ... to here.
2585         * rs6000.md (movtf, extenddftf2, extendsftf2, trunctfdf2,
2586         trunctfsf2, floatditf2, floatsitf2, fix_trunctfdi2,
2587         fix_trunctfsi2, negtf2, abstf2, nabstf2, cmptf): New patterns.
2588
2589 Tue Nov 20 06:41:38 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2590
2591         * emit-rtl.c (get_mem_attrs): Fix typo.
2592
2593 2001-11-20  Jakub Jelinek  <jakub@redhat.com>
2594
2595         * c-lang.c (finish_file): Backout 2001-11-16
2596         changes, instead set DECL_DEFER_OUTPUT for static inline functions
2597         before calling c_expand_deferred_function.
2598
2599 2001-11-20  Jakub Jelinek  <jakub@redhat.com>
2600
2601         * unwind-dw2-fde.c (__register_frame_info_bases, __register_frame):
2602         Don't register empty .eh_frame sections.
2603         (__deregister_frame_info_bases, __deregister_frame): Don't
2604         unregister them either.
2605
2606 2001-11-19  Geoffrey Keating  <geoffk@redhat.com>
2607
2608         * configure.in (HAVE_AS_GDWARF2_DEBUG_FLAG): Define.
2609         (HAVE_AS_GSTABS_DEBUG_FLAG): Define.
2610         * configure: Regenerate.
2611         * config.in: Add dummy definitions of new flags.
2612         * toplev.c (PREFERRED_DEBUGGING_TYPE): Move definition to...
2613         * defaults.h (PREFERRED_DEBUGGING_TYPE): ... here.
2614         * gcc.c (ASM_DEBUG_SPEC): New macro.
2615         (asm_debug): New static variable.
2616         (default_compilers): Add asm_debug when assembling from
2617         user input.
2618         (static_specs): Add asm_debug.
2619
2620 2001-11-20  Loren J. Rittle  <ljrittle@acm.org>
2621
2622         * config.gcc (*-*-freebsd*): Remove configuration block.
2623
2624 2001-11-19  Loren J. Rittle  <ljrittle@acm.org>
2625
2626         bootstrap/4422
2627         * configure.in: Setup ability to run ./stage[1234]/xgcc in
2628         fixinc *as if* it were a proper lang subdirectory.
2629         * configure: Rebuilt.
2630
2631 2001-11-19  Loren J. Rittle  <ljrittle@acm.org>
2632
2633         * config/freebsd.h: Remove DEFAULT_VTABLE_THUNKS (again).
2634
2635 2001-11-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2636
2637         * 1750a.md: Don't use hex format for a const_int.
2638
2639 2001-11-19  Geoffrey Keating  <geoffk@redhat.com>
2640
2641         * expmed.c (extract_bit_field): Don't create invalid SUBREGs.
2642
2643 2001-11-19  Zack Weinberg  <zack@codesourcery.com>
2644
2645         * mkconfig.sh: Undefine ENABLE_NLS if GENERATOR_FILE is
2646         defined (prevents link errors when gettext isn't in the system
2647         library).
2648
2649 2001-11-19  DJ Delorie  <dj@redhat.com>
2650
2651         * read-rtl.c (ISDIGIT, ISSPACE): Make sure we have these.
2652         (validate_const_int): New.
2653         (read_rtx): Validate constant integers.
2654         * config/i386/i386.md (pmulhrwv4hi3): Use decimal constants.
2655
2656 2001-11-19  Jakub Jelinek  <jakub@redhat.com>
2657
2658         * doc/hostconfig.texi (DUMPFILE_FORMAT): Move into the table.
2659
2660 Mon Nov 19 16:57:44 2001  Douglas B. Rupp  <rupp@gnat.com>
2661
2662         * toplev.c (DUMPFILE_FORMAT): Define default.
2663         (open_dump_file): Use DUMPFILE_FORMAT in sprintf.
2664         (close_dump_file, compile_file): Likewise.
2665         * config/alpha/xm-vms.h (DUMPFILE_FORMAT): Define.
2666         * doc/hostconfig.texi (DUMPFILE_FORMAT): Document
2667
2668 2001-11-19  Jeff Law <law@redhat.com>
2669
2670         * gcse.c (cprop_jump): Clear JUMP_LABEL field when we create
2671         a nop-jump.
2672
2673 2000-11-19  Neil Booth  <neil@daikokuya.demon.co.uk>
2674
2675         * cppmacro.c (_cpp_backup_tokens): Revert previous check-in.
2676         Don't fall off the base token run.
2677
2678 2001-11-19  Jason Wilkins <fenix@io.com>
2679
2680         * Makefile.in: Use INSTALL_SCRIPT not INSTALL_PROGRAM.
2681
2682 Mon Nov 19 15:13:43 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2683
2684         * tree.def (VIEW_CONVERT_EXPR): New tree code.
2685         * tree.h (handled_component_p): New declaration.
2686         * alias.c (handled_component_p): Move function from here ...
2687         * expr.c (handled_component_p): ... to here and non longer static.
2688         (is_zeros_p, case VIEW_CONVERT_EXPR): New case.
2689         (store_field): Remove unneeded MEM_COPY_ATTRIBUTES call.
2690         (get_inner_reference): Handle VIEW_CONVERT_EXPR.
2691         (expand_expr, case VAR_DECL): Clean up handling of re-layout case.
2692         (expand_expr, case VIEW_CONVERT_EXPR): New case.
2693         (expand_expr, cse ADDR_EXPR): No need to copy if already
2694         BIGGEST_ALIGNMENT.
2695         * fold-const.c (fold, case VIEW_CONVERT_EXPR): New case.
2696         * varasm.c (initializer_constant_value_p, case VIEW_CONVERT_EXPR): New.
2697         (output_constant): Handle VIEW_CONVERT_EXPR.
2698         * dwarf2out.c (loc-descriptor_from_tree, add_bound_info):
2699         Add new case for VIEW_CONVERT_EXPR.
2700
2701 2001-11-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2702
2703         * a29k/unix.h (ASM_FILE_START): Const-ify.
2704         * i386/beos-elf.h (INCLUDE_DEFAULTS): Remove semi-colon.
2705         * i386/isc.h (ASM_FILE_START): Const-ify.
2706         * i386/sun386.h (ASM_FILE_START): Likewise.
2707         * m32r.md: Likewise.
2708         * m68k/auxas.h (ADDITIONAL_REGISTER_NAMES): Add missing brackets.
2709         * m68k/auxgas.h ADDITIONAL_REGISTER_NAMES): Likewise.
2710         * m68k/tower.h (REGISTER_NAMES): Remove semi-colon.
2711         * mn10200.md: Initialize variable.
2712
2713 Mon Nov 19 18:06:21 CET 2001  Jan Hubicka  <jh@suse.cz>
2714
2715         * gcse.c (try_replace_reg): Copy RTX before creating note.
2716
2717         * df.h (df_ref_flags): New uenum.
2718         (DF_REF_FLAGS): New macro.
2719         (struct ref): Add field "flags".
2720         * df.c (HANDLE_SUBREG): Remove.
2721         (df_ref_create): Likewise; set flags field of ref.
2722         (df_def_record_1): Strip down read_write subreg; remove
2723         commented out code; set READ_WRITE flag.
2724         (read_modify_subreg_p): New static function.
2725         (df_uses_record): Cleanup SET handling; set READ_WRITE flag;
2726         new argument "flags".
2727         (df_insn_refs_record): Update call of df_uses_record.
2728         (df_insn_modify): Avoid #if 0 around comment.
2729         (df_dump): Dump the read/write flag.
2730
2731         * predict.c (propagate_freq): Make cyclic_probability and frequency
2732         volatile
2733
2734         * i386.c (ix86_cc_mode): Accept USE.
2735
2736         * cfgrtl.c (purge_dead_edges):  Cleanup EDGE_ABNORMAL flag if computed
2737         jump is turned into simplejump.
2738
2739 2001-11-19  Joseph S. Myers  <jsm28@cam.ac.uk>
2740
2741         * doc/fragments.texi, doc/trouble.texi: Remove links to old
2742         installation chapter.
2743         * doc/gcc.texi: Don't claim that this manual documents
2744         installation.  Mark Installation menu entry as being out of date.
2745
2746 Mon Nov 19 07:21:35 2001  Douglas B. Rupp  <rupp@gnat.com>
2747
2748         * config/alpha/xm-vms.h: Don't define macros that autoconf handles.
2749         (SUCCESS_EXIT_CODE, FATAL_EXIT_CODE): Define for posix compatibility.
2750         * gcc.c (exit): Remove definition for VMS; moved to xm-vms.h.
2751
2752 2001-11-19  Jason Merrill  <jason@redhat.com>
2753
2754         * cppmacro.c (_cpp_backup_tokens): Pop cur_run before decrementing
2755         cur_token, not after.
2756
2757         * config/clipper/clix.h, config/h8300/elf.h, config/mips/linux.h:
2758         Lose ASM_OUTPUT_CONSTRUCTOR.
2759         * system.h: Poison it and INT_ASM_OP.
2760         * c-lang.c (finish_file): Don't check for it.
2761         * libgcc2.c (L_ctors): Check TARGET_ASM_CONSTRUCTOR instead.
2762
2763 2001-11-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2764
2765         * mmix.c (mmix_cc1_ignored_option): Const-ify.
2766         (mmix_init_machine_status): Make static to match declaration.
2767         (mmix_unique_section): Const-ify.
2768         (mmix_output_quoted_string): Avoid automatic aggregate
2769         initialization.
2770         (mmix_output_register_setting): Likewise.
2771         (mmix_output_shiftvalue_op_from_str): Likewise.
2772
2773         * mmix.h (mmix_cc1_ignored_option): Const-ify.
2774         (ASM_OUTPUT_BYTE): Fix format specifier warning.
2775         (ASM_GENERATE_INTERNAL_LABEL): Likewise.
2776
2777 2001-11-18  Craig Rodrigues  <rodrigc@gcc.gnu.org>
2778
2779         PR c/4448
2780         * gthr-win32.h: (__gthread_objc_thread_exit): Fix variable
2781         name __objc_thread_exit_status so that it matches the
2782         variable defined in objc/thr.h.
2783
2784 2001-11-18  Craig Rodrigues  <rodrigc@gcc.gnu.org>
2785
2786         PR bootstrap/4020
2787         * mklibgcc.in: Add missing semi-colons.
2788         * Makefile.in: Same.
2789
2790 Sun Nov 18 16:47:00 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2791
2792         * expr.c (expand_expr, case VAR_DECL): Update alignment of DECL_RTL
2793         after re-laying out decl in incomplete case.
2794         (expand_expr, case ADDR_EXPR): Fix typo in copy case.
2795
2796 2001-11-18  Joseph S. Myers  <jsm28@cam.ac.uk>
2797
2798         * doc/install-old.texi: Move some sections out to ...
2799         * doc/collect2.texi, doc/configfiles.texi, doc/headerdirs.texi:
2800         ... here.  New files.  Make into chapters rather than sections.
2801         * doc/gcc.texi: Include the new files and add menu entries for
2802         them.
2803         * Makefile.in ($(docdir)/gcc.info, gcc.dvi): Update dependencies.
2804
2805 Sun Nov 18 14:13:52 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2806
2807         * tree.h (TYPE_ALIGN_OK): New flag.
2808         * emit-rtl.c (set_mem_attributes): Handle it.
2809         * expr.c (emit_single_push_insn): Only set to alias set 0 if
2810         doing sibcall optimization.
2811         (expand_expr, case COMPONENT_REF): Call set_mem_attributes on case
2812         when make temporary.
2813         (expand_expr, case CONVERT_EXPR): Simplify convert-to-union case.
2814         (expand_expr, case ADDR_EXPR): Abort if TYPE_ALIGN_OK and need copy.
2815
2816         * sdbout.c (sdbout_symbol): Avoid warning due to &DECL_RTL.
2817
2818 2001-11-18  Joseph S. Myers  <jsm28@cam.ac.uk>
2819
2820         * c-decl.c (c_decode_option): Give deprecation warning for
2821         -traditional.
2822         * doc/invoke.texi (-traditional): Note that this option is
2823         deprecated.
2824
2825 Sun Nov 18 07:40:07 2001  Douglas B. Rupp  <rupp@gnat.com>
2826
2827         * config/alpha/alpha.c (alpha_start_function, VMS): Cast shift
2828         arg to HOST_WIDE_INT, not long.
2829
2830         * config/alpha/vms.h (DIR_SEPARATOR, PREFIX). Don't define.
2831         (HAS_INIT_SECTION): Define.
2832         (REAL_ARITHMETIC): Don't undefine.
2833
2834 2001-11-18  Egor Duda  <deo@logos-m.ru>
2835
2836         * config/i386/cygwin.h: Strip leading '*' from name, if any.
2837
2838 2001-11-18  Neil Booth  <neil@daikokuya.demon.co.uk>
2839
2840         * Makefile.in (c-parse.o, c-common.o): Update dependencies.
2841         * c-common.c: Include diagnostic.h.
2842         (c_common_finish): New.
2843         * c-common.h (c_common_finish): New.
2844         * c-lang.c (LANG_HOOKS_FINISH): Override.
2845         * c-parse.in: Don't include diagnostic.h.
2846         (finish_parse): Remove.
2847         * langhooks.h: Update comments.
2848         * toplev.c (lang_dependent_init): New prototype.
2849         (finalize): New.
2850         (compile_file): Split cleanup code out to finalize.
2851         (lang_dependent_init): Stop if lang_hooks.init fails.
2852         (toplev_main): Update.
2853         * tree.h (finish_parse): Remove.
2854 objc:
2855         * objc-act.c (LANG_HOOKS_FINISH): Override.
2856
2857 Sat Nov 17 23:30:44 2001  Douglas B. Rupp  <rupp@gnat.com>
2858
2859         * config/alpha/t-vms (LIB2FUNCS_EXTRA): Add vms_tramp.asm.
2860         * config/alpha/vms_tramp.asm: New file.
2861         * config/alpha/vms-tramp.asm: Removed.
2862
2863 2001-11-18  Joseph S. Myers  <jsm28@cam.ac.uk>
2864
2865         * c-common.c (struct disabled_builtin, disabled_builtins,
2866         disable_builtin_function, builtin_function_disabled_p): New.
2867         (builtin_function_2): Check for disabled built-in functions.
2868         * c-common.h (disable_builtin_function): Declare.
2869         * c-decl.c (c_decode_option): Handle -fno-builtin-FUNCTION.
2870         * doc/invoke.texi: Document -fno-builtin-FUNCTION.
2871         * doc/extend.texi: Mention -fno-builtin-FUNCTION.
2872
2873 2001-11-17  Craig Rodrigues  <rodrigc@gcc.gnu.org>
2874
2875         PR target/4606
2876         * config.gcc: Remove reference to va-clipper.h.
2877
2878 2001-11-17  Stan Shebs  <shebs@apple.com>
2879
2880         * config/rs6000/rs6000.h (REG_CLASS_CONTENTS): Fix the
2881         AltiVec-related bitfields.
2882
2883 Sat Nov 17 12:06:31 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2884
2885         * except.c (enum eh_region_type): Add ERT_UNKNOWN.
2886         (mark_eh_region, case ERT_UKNONW): New case.
2887
2888 2001-11-17  Christopher Faylor  <cgf@redhat.com>
2889             Corinna Vinschen  <vinschen@redhat.com>
2890
2891         * config/i386/cygwin.h: Search target specific include directory for
2892         w32api stuff, if appropriate.
2893
2894 Sat Nov 17 08:20:44 2001  Douglas Rupp  <rupp@gnat.com>
2895
2896         * config/alpha/vms.h (REG_ALLOC_ORDER): Redefine.
2897
2898 2001-11-16  Aldy Hernandez  <aldyh@redhat.com>
2899
2900         * config/rs6000/rs6000.md: Change all ldvx to lvx.
2901
2902 2001-11-16  Alexandre Oliva  <aoliva@redhat.com>
2903
2904         * gensupport.c (process_rtx): Don't assume filename is the first
2905         argument of any rtl.
2906
2907 2001-11-16  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2908
2909         * vax-protos.h (reg_was_0_p): New prototype.
2910         * vax.md (movsi, movhi, movqi): Use reg_was_0_p.
2911         * vax.c (follows_p, reg_was_0_p): New functions.
2912
2913 2001-11-16  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2914
2915         * vax.md (casesi): Swap arguments in "(plus:SI (pc) (mult))". Reformat.
2916         (casesi1): Likewise.  Define new pattern which arises by simplification
2917         when operand 1 is a constant int.  Correct pattern which arises by
2918         simplification when operand 1 is zero.
2919
2920 2001-11-16  David O'Brien  <obrien@FreeBSD.org>
2921
2922         * config.gcc (arm*-*-rtems*, arm-*-coff*, armel-*-coff*,
2923         arm-*-vxworks*, arm-*-riscix1.[01]*, arm-*-riscix*,
2924         arm-semi-aout, armel-semi-aout, arm-semi-aof, armel-semi-aof,
2925         arm*-*-netbsd*, arm*-*-linux*, arm*-*-uclinux*, arm*-*-aout,
2926         arm*-*-ecos-elf, arm*-*-elf, arm*-*-conix*, arm*-*-oabi,
2927         arm-*-pe*, strongarm-*-elf*, strongarm-*-coff*, strongarm-*-pe,
2928         xscale-*-elf, xscale-*-coff: Include various CPU headers via tm_file.
2929         * config/arm/aof.h: Don't include arm.h.
2930         * config/arm/aout.h: Likewise.
2931         * config/arm/coff.h: Don't include semi.h and aout.h.
2932         * config/arm/elf.h: Don't include aout.h.
2933         * config/arm/netbsd.h: Don't include netbsd.h and aout.h.
2934         (TARGET_VERSION): Undef before defining.
2935         (ARM_OS_NAME): Likewise
2936         (TARGET_DEFAULT): Likewise
2937         (TARGET_MEM_FUNCTIONS): Do not need to undefine now.
2938         * config/arm/pe.h: Don't include arm/coff.h.
2939         * config/arm/riscix.h (CPP_SPEC, SUBTARGET_CPP_SPEC): Use
2940         SUBTARGET_CPP_SPEC rather than overiding the arm.h CPP_SPEC definition.
2941         * config/arm/riscix1-1.h: Likewise.
2942         * config/arm/rix-gas.h: Don't include riscix.h.
2943         (DBX_CONTIN_LENGTH): Undef before defining.
2944         * config/arm/semi.h: Don't include aout.h.
2945         * config/arm/semiaof.h: Don't include aof.h.
2946         * config/arm/strongarm-coff.h: Don't include coff.h.
2947         * config/arm/strongarm-pe.h: Don't include strongarm-coff.h and pe.h.
2948         * config/arm/vxarm.h: Don't include arm/coff.h.
2949         * config/arm/xscale-coff.h: Don't include coff.h.
2950
2951 Fri Nov 16 15:22:35 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2952
2953         * config/pa/pa.c: Reflect changes in calling sequences of alter_reg and
2954         emit_cmp_insn.
2955
2956 2001-11-16  Andreas Jaeger  <aj@suse.de>
2957
2958         * cfglayout.c (fixup_fallthru_exit_predecesor): Make void, rename
2959         to ....
2960         (fixup_fallthru_exit_predecessor): ... this.
2961         Change callers and prototype.
2962
2963 2001-11-16  Bernd Schmidt  <bernds@redhat.com>
2964
2965         * config/i386/i386.c (ix86_expand_sse_comi): Generate setcc by
2966         hand; don't use gen_setcc_2.
2967         (ix86_expand_builtin): Fix pshufw.
2968         * config/i386/i386.md (maskncmpv4sf3, vmmmaskncmpv4sf3): Special
2969         case UNORDERED to emit the right assembler instruction.
2970         (mmx_pshufw): Lose operand 2.
2971         (cvtsi2ss): Fix representation.
2972         From Graham Stott:
2973         (mmx_clrdi, sse_clrti, stmxcsr, ldmxcsr): Set memory attribute.
2974
2975 2001-11-16  Joseph S. Myers  <jsm28@cam.ac.uk>
2976
2977         * doc/include/linux-and-gnu.texi: Remove.
2978         * doc/gnu.texi: New.
2979         * doc/gcc.texi: Include gnu.texi instead of linux-and-gnu.texi.
2980         * Makefile.in ($(docdir)/gcc.info, gcc.dvi): Update dependencies.
2981
2982 2001-11-16  Kazu Hirata  <kazu@hxi.com>
2983
2984         * config/a29k/a29k.c: Fix comment formatting.
2985         * config/a29k/a29k.h: Likewise.
2986         * config/arc/arc.c: Likewise.
2987         * config/arc/arc.h: Likewise.
2988         * config/vax/vax.c: Likewise.
2989         * config/vax/vax.h: Likewise.
2990         * config/we32k/we32k.c: Likewise.
2991         * config/we32k/we32k.h: Likewise.
2992
2993 2001-11-16  Jeff Law  <law@redhat.com>
2994
2995         * unroll.c (copy_loop_body): Initialize JUMP_LABEL field after
2996         creating a new jump insn.
2997
2998 Fri Nov 13 09:06:25 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2999
3000         * expr.c (expand_expr, case ADDR_EXPR): Refine test for when to
3001         copy misaligned data.
3002         * varasm.c (assemble_variable): Set alignment into MEM when changed.
3003
3004 2001-11-16  Graham Stott  <grahams@redhat.com>
3005
3006         * optabs.c (prepare_cmp_insn): Correct lossage in last change fix
3007         OPALIGN type.
3008
3009 2001-11-16  Olivier Hainque <hainque@act-europe.fr>
3010
3011         * except.c: Support for catching a list of types with a single handler
3012         (struct eh_region): Change type and filter to lists for catch regions.
3013         (mark_eh_region): Mark the filter list for GC also.
3014         (expand_start_catch): Always build a list if argument not NULL and
3015         register each type of the list through add_type_for_runtime.
3016         (duplicate_eh_region_1): Change type into type_list for catch regions.
3017         (assign_filter_values): Assign a filter to each type associated with a
3018         catch region. Assign filter for NULL types in a unique entry in the
3019         filter list.
3020         (build_post_landing_pads): Emit compare and jump for each filter of
3021         the list associated with a catch region.
3022         (reachable_next_level): When the type thrown is known, stop the search
3023         as soon as one type within a catch list matches. Also, a handler is
3024         potentially reachable only if at least one of the types it catches
3025         has not been previously caught.
3026         (collect_one_action_chain): Retrieve the filter for a NULL type list
3027         from the first filter list entry. For non NULL type lists, add an
3028         action record for every filter assigned.
3029         * except.h: Reflect changes in comment before expand_start_catch.
3030
3031 Fri Nov 16 07:12:51 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3032
3033         * expr.c (expand_expr, case ADDR_EXPR): Only copy for misaligned if
3034         BLKmode.
3035
3036 Fri Nov 16 06:37:05 2001  Andreas Tobler  <a.tobler@schweiz.ch>
3037
3038         * config/sparc/sparc.c: Remove ALIGN arg from emit_cmp_insn.
3039
3040 2001-11-16  Jakub Jelinek  <jakub@redhat.com>
3041
3042         * c-lang.c (finish_file): Don't emit static inline functions if
3043         they weren't referenced.
3044
3045 2001-11-15  Stan Shebs  <shebs@apple.com>
3046
3047         * expr.c (expand_expr, case COMPONENT_REF): Fix variable ref.
3048
3049 2001-11-16  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
3050
3051         * config/s390/s390.md: Remove ALIGN arg from emit_cmp_and_jump_insns
3052         call.
3053         * config/i386/i386.md: Likewise.
3054
3055 Thu Nov 15 21:40:16 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3056
3057         * timevar.c (rtl.h): Include so get fancy abort.
3058
3059 2001-11-15  Dale Johannesen  <dalej@apple.com>
3060
3061         * config/darwin.h (SELECT_RTX_SECTION):  Force address
3062         initializers into 'const' section
3063         * config/rs6000/rs6000.c (rs6000_emit_cmove):  Fix mode of
3064         if_then_else to match result, not operands
3065
3066 Thu Nov 15 17:57:48 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3067
3068         * alias.c (nonoverlapping_memrefs): Use REGNO_PTR_FRAME_P.
3069         * emit-rtl.c (change_address): Fix typo in default alignment.
3070         (adjust_address_1): Use mode of NEW, not MODE, when setting size.
3071         * expr.c (highest_pow2_factor, case WITH_RECORD_EXPR): New case.
3072         * rtl.h (REGNO_PTR_FRAME_P): New macro.
3073
3074         * expr.c (store_field): Pass tree instead of max size; callers changed.
3075         Change handling of alignment.
3076         Only copy to_rtx if is TARGET.
3077         (expand_expr_unaligned): Delete; callers now use expand_expr.
3078         (emit_cmp_insn): No longer take ALIGN parm; all callers changed.
3079         (expand_assignment): Change handling of alignment.
3080         Only copy to_rtx if was original.
3081         (get_inner_reference): No longer return alginment; callers changed.
3082         (expand_expr, case COMPONENT_REF): Change handling of alignment.
3083         (expand_expr, case ADDR_EXPR): Make copy if not sufficiently aligned.
3084         (compare_from_rtx): Delete ALIGN parm; all callers changed.
3085         (do_compare_rtx_and_jump): Likewise.
3086         * expr.h: Reflect above changes.
3087         * tree.h: Likewise.
3088         * dwarf2out.c (loc_descriptor_from_tree): Remove ALIGN parameter
3089         to get_inner_reference.
3090         * builtins.c: Remove ALIGN parm in call to emit_cmp_and_jump_insns.
3091         * doloop.c, except.c, explow.c, loop.c, stmt.c, unroll.c: Likewise.
3092         * optabs.c: Likewise.
3093         (prepare_cmp_insn): Now static; remove ALIGN parm.  Callers changed.
3094         (emit_cmp_and_jump_insns): Remove ALIGN parm; all callers changed.
3095         * expmed.c: Remove ALIGN arg from calls to compare_from_rtx,
3096         compare_rtx_and_jump, and emit_cmp_jump_insns.
3097         * fold-const.c: Remove PALIGN in calls to get_inner_reference.
3098         * function.c (assign_stack_temp_for_type): No longer static.
3099         * optabs.h (emit_cmp_insn): Remove ALIGN parm.
3100         (prepare_cmp_insn): Delete declaration.
3101         * rtl.h (assign_stack_temp_for_type): Add declaration.
3102         * config/alpha/alpha.c, config/d30v/d30v.c: Reflect above changes.
3103         * config/clipper/clipper.c, config/h8300/h8300.c: Likewise.
3104         * config/i386/i386.c,config/mips/mips.c: Likewise.
3105         * config/i860/i860.c, config/ia64/ia64.c: Likewise.
3106         * config/rs6000/rs6000.c, config/sh/sh.c: Likewise.
3107
3108 2001-11-15  Stan Shebs  <shebs@apple.com>
3109
3110         * config/rs6000/rs6000.h: Fix a comment typo.
3111         (RTX_COSTS): Sort processor versions better.
3112
3113 2001-11-15  Kazu Hirata  <kazu@hxi.com>
3114
3115         * config/h8300/h8300.md: Fix insn length of bit insns.
3116
3117 2001-11-15  Jason Merrill  <jason@redhat.com>
3118
3119         * dwarf2out.c (dwarf2out_finish): Don't abort because of orphan
3120         DIEs if there were errors in the source.
3121
3122         * config/alpha/alpha-interix.h, config/alpha/elf.h,
3123         config/arm/coff.h, config/i386/djgpp.h, config/i386/i386.c,
3124         config/i386/i386.h, config/i386/sco5.h, config/i960/i960-coff.h,
3125         config/m68k/coff.h, config/m88k/m88k.h, config/m88k/m88k.c,
3126         config/pa/pa64-hpux.h, config/sh/sh.h, config/sparc/litecoff.h,
3127         config/elfos.h, config/lynx.h, config/netware.h,
3128         config/m68hc11/m68hc11.h, config/mcore/mcore-pe.h,
3129         config/s390/linux64.h: Remove definitions of INT_ASM_OP, change
3130         uses to use ASM_LONG.
3131
3132 2001-11-15  Alan Matsuoka  <alanm@redhat.com>
3133
3134         * gensupport.c  process_include : Change call to alloca to
3135         xmalloc.
3136
3137 2001-11-15  Aldy Hernandez  <aldyh@redhat.com>
3138
3139         * config/rs6000/rs6000.md: Use spaces instead of tabs in output
3140         templates.
3141
3142 Thu Nov 15 08:36:39 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3143
3144         * final.c (alter_subreg): If simplify_subreg can't do anything,
3145         handle REG ourselves and abort for others.
3146
3147 2001-11-15  Richard Hodson  <hodsonr@dionecorp.com>
3148
3149         * config/h8300/h8300.c (dosize): Avoid corrupting R3 in interrupt
3150         routines.
3151
3152 2001-11-15  Neil Booth  <neil@daikokuya.demon.co.uk>
3153
3154         * fix-header.c (read_scan_file): Update.
3155
3156 Thu Nov 15 08:36:39 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3157
3158         * toplev.c (toplev_main): Don't start timing until after
3159         command-line options are parsed.
3160
3161 2001-11-15  Andreas Schwab  <schwab@suse.de>
3162
3163         * config.gcc: Set STMP_FIXPROTO and FIXPROTO_DEFINES in target
3164         makefile frag, not host makefile frag.
3165         (m88k-dg-dguxbcs*): Add m88k/t-dgux to tmake_file.
3166         (hppa*): Add pa/t-bsd to tmake_file where no special xmake_file is
3167         used.
3168         (hppa*-*-openbsd*): Don't use nonexitent pa/t-openbsd.
3169         * config/m88k/t-dguxbcs: Remove definitions already in t-dgux.
3170         * config/m88k/t-dgux (STMP_FIXPROTO): Define.
3171         * config/i386/t-cygwin (STMP_FIXPROTO): Define.
3172         * config/i386/t-dgux (STMP_FIXPROTO): Define.
3173         * config/x-interix: Don't define STMP_FIXPROTO and
3174         FIXPROTO_DEFINES.
3175         * config/t-interix: New file, define STMP_FIXPROTO.
3176         * config/i386/x-beos (STMP_FIXPROTO): Don't define here.
3177         * config/i386/t-beos (STMP_FIXPROTO): Define here instead.
3178         * config/t-svr4 (FIXPROTO_DEFINES): Define.
3179         * config/arm/t-riscix (FIXPROTO_DEFINES): Define.
3180         * config/i386/t-sco5 (FIXPROTO_DEFINES): Define.
3181         * config/i386/t-sco5gas (FIXPROTO_DEFINES): Define.
3182         * config/m68k/t-hp3200: Renamed from x-hp3200.
3183         * config/i370/t-oe: Renamed from x-oe.
3184         * config/mips/t-iris: Renamed from x-iris.
3185         * config/pa/t-bsd: Renamed from x-pa.
3186         * config/pa/t-pa-hpux: Renamed from x-pa-hpux.
3187         * config/x-linux, config/i386/x-cygwin, config/i386/x-dgux,
3188         config/m88k/x-dgux, config/x-svr4, config/arm/x-riscix,
3189         config/i386/x-sco5, config/m68k/x-hp320g, config/mips/x-iris6,
3190         config/rs6000/x-cygwin: Remove files.
3191
3192         * configure.in: Check for target objdump and use that in eh_frame
3193         optimization test.
3194         * configure: Regenerated.
3195
3196 2001-11-15  Jakub Jelinek  <jakub@redhat.com>
3197
3198         * jump.c (squeeze_notes): Return true if no real insns were found.
3199         * rtl.h (squeeze_notes): Adjust prototype.
3200         * cfgcleanup.c (merge_blocks_move_predecessor_nojumps): If
3201         squeeze_notes finds no real instructions, abort.
3202         (merge_blocks_move_successor_nojumps): Likewise.
3203         * loop.c (find_and_verify_loops): Likewise.
3204         * stmt.c (expand_end_case): Likewise.
3205         * ifcvt.c (dead_or_predicable): Return TRUE if squeeze_notes doesn't
3206         find any real instructions.
3207
3208         * config/ia64/ia64.c (ia64_adjust_cost): Handle SUBREGs.
3209
3210         * cfgcleanup.c (try_optimize_cfg): If try_simplify_condjump optimized
3211         conditional jump, request updating life into for the block
3212         containing it.  Fix a typo which prevented life info update.
3213         Clear blocks bitmap before using it.
3214
3215 2001-11-15  Neil Booth  <neil@daikokuya.demon.co.uk>
3216
3217         * c-common.c: Include c-lex.h.
3218         (c_common_lang_init): Change prototype.  Call init_c_lex and
3219         init_pragma from here.
3220         * c-common.h (c_common_lang_init): Change prototype.
3221         * c-decl.c (init_decl_processing): Rename.  Call c_parse_init.
3222         * c-lang.c (c_init): Change prototype.  Update.
3223         (c_init_options): Update.
3224         * c-lex.c (cpp_filename): Remove.
3225         (init_c_lex): Update.  Read the main file, and get the original
3226         file name.
3227         (yyparse): Finish the command line options.
3228         * c-parse.in (c_parse_init): Call init_reswords here.
3229         (init_parse): Remove.
3230         * c-tree.h (c_init_decl_processing): New.
3231         * cpphash.c (_cpp_init_hashtable): After initializing the hash
3232         table, populate it.
3233         * cppinit.c (read_original_filename, cpp_finish_options): New.
3234         (cpp_create_reader): New prototype. Defer hash table initialization.
3235         (cpp_start_read): Rename cpp_read_main_file.  Initialize the
3236         hash table.  Get the original filename.
3237         * cpplib.h (cpp_create_reader): Update.
3238         (cpp_start_read): Remove.
3239         (cpp_read_main_file, cpp_finish_options): New.
3240         * cppmain.c (main, do_preprocessing): Update.
3241         * langhooks.h (struct langhooks): Update init prototype.
3242         * toplev.c (general_init, parse_options_and_default_flags,
3243         process_options, lang_indpendent_init, lang_dependent_init,
3244         init_asm_output): New; perform the bulk of initialization.
3245         (compile_file): Move most of initialization to above functions.
3246         (debug_hooks): Initialize statically.
3247         (set_Wunused): Relocate.
3248         (toplev_main): Move most of initialization to other init functions.
3249         Have a clear logic flow.
3250         * tree.h (init_parse, init_decl_processing): Remove.
3251 objc:
3252         * objc-act.c (objc_init): Update prototype, combine with old
3253         init_parse.
3254         (objc_init_options): Update.
3255
3256
3257 2001-11-15  Andreas Jaeger  <aj@suse.de>
3258
3259         * cfgrtl.c (purge_all_dead_edges): Use int as argument for
3260         portability.
3261         * basic-block.h: Adjust prototype.
3262
3263 2001-11-15  Kazu Hirata  <kazu@hxi.com>
3264
3265         * config/rs6000/aix31.h: Fix comment formatting.
3266         * config/rs6000/beos.h: Likewise.
3267         * config/rs6000/darwin.h: Likewise.
3268         * config/rs6000/eabi.asm: Likewise.
3269         * config/rs6000/linux.h: Likewise.
3270         * config/rs6000/linux64.h: Likewise.
3271         * config/rs6000/lynx.h: Likewise.
3272         * config/rs6000/netbsd.h: Likewise.
3273         * config/rs6000/rs6000.c: Likewise.
3274         * config/rs6000/rs6000.h: Likewise.
3275         * config/rs6000/rs6000.md: Likewise.
3276         * config/rs6000/sol2.h: Likewise.
3277         * config/rs6000/tramp.asm: Likewise.
3278         * config/rs6000/xcoff.h: Likewise.
3279         * config/rs6000/xm-beos.h: Likewise.
3280
3281 2001-11-14  Alan Matsuoka  <alanm@redhat.com>
3282
3283         * rtl.def (INCLUDE) : Define.
3284         * gensupport.c  (init_include_reader, process_include,
3285         save_string) :  New functions to implement an include facility
3286         in .md files.
3287         * gensupport.h : Add prototype for init_md_reader_args.
3288         * genattr.c genattrtab.c gencodes.c genconfig.c genemit.c
3289         genextract.c genflags.c genopinit.c genoutput.c
3290         genpeep.c genrecog.c: Change call to init_md_reader to
3291         init_md_reader_args.
3292         * md.texi: Document (include "path") and -I directives for RTL
3293         generation tools.
3294
3295 2001-11-14  DJ Delorie  <dj@redhat.com>
3296
3297         * integrate.c (get_hard_reg_initial_reg): New.
3298         * integrate.h (get_hard_reg_initial_reg): Prototype.
3299         * local-alloc.c (block_alloc): Don't tie pseudos that
3300         represent call-saved hard regs' initial values.
3301
3302 2001-11-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3303
3304         * m68k/linux.h: Include <linux.h> not "linux.h" to avoid infinite
3305         recursion.
3306
3307 2001-11-14  Roger Sayle <roger@eyesopen.com>
3308
3309         * fold-const.c (fold): Optimize strlen comparisons against zero.
3310
3311 2001-11-14  David O'Brien  <obrien@FreeBSD.org>
3312
3313         * config.gcc (sparc64-wrs-vxworks*, sparc-*-netbsd*, sparc-*-openbsd*,
3314         sparc-*-chorusos*, sparc-*-elf*, sparc-*-linux*aout*,
3315         sparc-*-linux*libc1*, sparc-*-linux*, sparc-*-lynxos*, sparc-*-rtems*,
3316         sparc-*-rtemself*, sparc-hal-solaris2*, sparc-*-solaris2*,
3317         sparc-*-sunos4.0*, sparc-*-sunos4*, sparc-*-sunos3*, sparc-*-sysv4*,
3318         sparc-*-vxsim*, sparclite-*-aout*, sparclite-*-elf*, sparc86x-*-aout*,
3319         sparc86x-*-elf*, sparc64-*-aout*, sparc64-*-elf*, sparc64-*-linux*):
3320         Include various CPU headers via tm_file.  a.out based platforms now
3321         properly include sparc/aout.h.  sol2.h usage now implies including
3322         elfos.h, svr4.h, and sparc/sysv4.h.
3323         * config/netbsd.h (TARGET_MEM_FUNCTIONS): Undef before defining it.
3324         Also define to '1'.
3325         * sparc/sparc.h (CPP_PREDEFINES, TARGET_VERSION, WORD_SWITCH_TAKES_ARG,
3326         SELECT_SECTION, ASM_DECLARE_FUNCTION_NAME, TEXT_SECTION_ASM_OP,
3327         DATA_SECTION_ASM_OP, DBX_REGISTER_NUMBER, ASM_OUTPUT_SOURCE_LINE):
3328         Remove.  They are a.out specific and belong in sparc/aout.h.
3329         * sparc/aout.h (TARGET_VERSION, WORD_SWITCH_TAKES_ARG, SELECT_SECTION,
3330         ASM_DECLARE_FUNCTION_NAME, TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
3331         DBX_REGISTER_NUMBER, ASM_OUTPUT_SOURCE_LINE): Define.  Moved here from
3332         sparc/sparc.h.
3333         * sparc/litecoff.h (WORD_SWITCH_TAKES_ARG, ASM_DECLARE_FUNCTION_NAME,
3334         TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP, DBX_REGISTER_NUMBER): Define.
3335         Moved here from sparc/sparc.h.
3336         * config/sparc/linux-aout.h (DEFAULT_PCC_STRUCT_RETURN): Undef before
3337         defining.
3338         * config/sparc/linux64.h (UNALIGNED_DOUBLE_INT_ASM_OP): Undef before
3339         * config/sparc/lynx.h:  Don't include lynx.h.
3340         (SELECT_SECTION): Do not undef.
3341         * config/sparc/openbsd.h: Don't include sparc/sparc.h.
3342         * config/sparc/sol2-sld-64.h: Include sparc/sparc.h, elfos.h, svr4.h,
3343         and sparc/sysv4.h.
3344         * config/sparc/sol2.h: Don't include sparc/sparc.h and sparc/sysv4.h.
3345         * config/sparc/sp64-aout.h (CPP_PREDEFINES): Don't define.  Get from
3346         sparc/aout.h now.
3347         * config/sparc/sp64-elf.h (DWARF_DEBUGGING_INFO, DWARF2_DEBUGGING_INFO):
3348         Don't undef, there is no need.
3349         * config/sparc/splet.h (CPP_PREDEFINES): Define.
3350         * config/sparc/sun4o3.h (CPP_PREDEFINES): Likewise.
3351         * config/sparc/sunos4.h (CPP_PREDEFINES): Likewise.
3352         Don't include sparc/sparc.h.
3353         * config/sparc/sysv4.h (WORD_SWITCH_TAKES_ARG, ASM_OUTPUT_SOURCE_LINE,
3354         SELECT_SECTION, ASM_DECLARE_FUNCTION_NAME, TEXT_SECTION_ASM_OP,
3355         DATA_SECTION_ASM_OP): Don't undef, there is no need now.  Don't include
3356         elfos.h and svr4.h.
3357         (TARGET_VERSION): Define.
3358         * config/sparc/vxsim.h (TARGET_VERSION): Define.
3359
3360 Wed Nov 14 19:46:08 CET 2001  Jan Hubicka  <jh@suse.cz>
3361
3362         * cfglayout.c (fixup_fallthru_exit_predecesor): New static function.
3363         (cfg_layout_finalize): Use it.
3364         * bb-reorder.c (HAVE_epilogue): Remove.
3365         (make_reorder_chain): Do not care special placement of
3366         last basic block.
3367
3368         * predict.c (expected_value_to_br_prob): Delete the note
3369         once transformed.
3370
3371         * c-decl.c (c_expand_body): Fix TV_EXPAND nesting problem;
3372         measure integration time separately.
3373
3374 Wed Nov 14 12:30:57 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3375
3376         * function.c (struct temp_slot): ALIGN now unsigned.
3377
3378 2001-11-14  Kazu Hirata  <kazu@hxi.com>
3379
3380         * config/dsp16xx/dsp16xx.c: Fix comment formatting.
3381         * config/dsp16xx/dsp16xx.h: Likewise.
3382         * config/dsp16xx/dsp16xx.md: Likewise.
3383
3384 2001-11-14  Kazu Hirata  <kazu@hxi.com>
3385
3386         * config/h8300/h8300.c (get_shift_alg): Reorganize the code
3387         that deals with 7-bit shifts in HImode.
3388
3389 Wed Nov 14 14:17:05 CET 2001  Jan Hubicka  <jh@suse.cz>
3390
3391         * dbxout.c (dbxout_symbol_location): Update call of alter_subreg.
3392         * final.c (walk_alter_subreg): Take pointer; update call of alter_subreg.
3393         (final_scan_insn): Update call of alter_subreg.
3394         (cleanup_subreg_operands): Likewise.
3395         (alter_subreg): Rewrite using simplify_subreg.
3396         (output_address, output_operand): Update call of alter_subreg.
3397         * output.h (alter_subreg): Update prototype.
3398         * sdbout.c (sdbout_symbol): Update call of alter_subreg.
3399         * simplify-rtx.c (simplify_subreg): Copy ORIGINAL_REGNO.
3400         * Makefile.in (final.o): Add dependency on expr.h
3401
3402 Wed Nov 14 06:37:54 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3403
3404         * c-lang.c (finish_file): Make I unsigned to eliminate warning.
3405
3406 2001-11-13  Jeff Sturm  <jsturm@one-point.com>
3407
3408         * doc/install.texi (sparc-*-linux*): Mention requirements for
3409         binutils and glibc.
3410
3411 2001-11-14  Joseph S. Myers  <jsm28@cam.ac.uk>
3412
3413         * Makefile.in (POD2MAN): Don't include --section=1.
3414         (manext): Rename to man1ext.  All users changed.
3415         (man7ext): New.
3416         (man7dir): New.
3417         (generated-manpages): Also depend on $(docdir)/gfdl.7,
3418         $(docdir)/gpl.7, and $(docdir)/fsf-funding.7.
3419         ($(docdir)/gcov.1, $(docdir)/cpp.1, $(docdir)/gcc.1): Include
3420         --section=1 in calls to $(POD2MAN).
3421         ($(docdir)/gfdl.7, $(docdir)/gpl.7, $(docdir)/fsf-funding.7): New.
3422         (maintainer-clean, install, uninstall): Handle the new man pages.
3423         ($(docdir)/cpp.info, cpp.dvi): Depend on fdl.texi.
3424         (installdirs): Create man7dir.
3425         * doc/cpp.texi: Include GFDL in this manual.  In the man page,
3426         refer to gfdl(7) for the GFDL.  Apply Front Cover and Back Cover
3427         texts to man page.  Include gpl(7), gfdl(7) and fsf-funding(7) in
3428         the SEE ALSO man page section.
3429         * doc/gcov.texi: Apply GFDL to man page.  Include gpl(7), gfdl(7)
3430         and fsf-funding(7) in the SEE ALSO man page section.
3431         * doc/invoke.texi: Apply GFDL to man page.  Include gpl(7),
3432         gfdl(7) and fsf-funding(7) in the SEE ALSO man page section.
3433         * doc/include/fdl.texi, doc/include/funding.texi,
3434         doc/include/gpl.texi: Adjust for conversion by texi2pod.pl.
3435         * doc/.cvsignore: Add gfdl.7, gpl.7 and fsf-funding.7.
3436
3437 2001-11-13  Richard Henderson  <rth@redhat.com>
3438
3439         * dwarf2asm.c (dw2_force_const_mem): Set PUBLIC or STATIC
3440         as appropriate for the artificial decl.
3441
3442 2001-11-13  Richard Henderson  <rth@redhat.com>
3443
3444         * loop.c (combine_movables): Turn off combination until
3445         move_movables validation bugs are fixed.
3446
3447 2001-11-13  DJ Delorie  <dj@redhat.com>
3448
3449         * config.gcc (powerpc|rs6000): Set default cpp options based
3450         on --with-cpu settings.
3451         * config/rs6000/softfloat.h: New.
3452
3453 2001-11-13  Kazu Hirata  <kazu@hxi.com>
3454
3455         * config/h8300/h8300.c (shift_alg_si): Use special code for
3456         25-bit shifts on H8/S.
3457         (get_shift_alg): Generate special code for 25-bit shifts on
3458         H8/S.
3459
3460 2001-11-13  Jakub Jelinek  <jakub@redhat.com>
3461
3462         * emit-rtl.c (adjust_address_1): Add ADJUST argument.
3463         (adjust_automodify_address_1): New.
3464         * expr.h (adjust_address, adjust_address_nv): Adjust.
3465         (adjust_automodify_address, adjust_automodify_address_nv): Define.
3466         (adjust_address_1): Update prototype.
3467         (adjust_automodify_address_1): Add prototype.
3468         * expr.c (move_by_pieces_1): Use adjust_automodify_address.
3469         (store_by_pieces_2): Likewise.
3470
3471 Tue Nov 13 05:45:40 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3472
3473         * Makefile.in (explow.o): Now depends on ggc.h.
3474         * explow.c (ggc.h): Include.
3475         (set_stack_check_libfunc): Mark stack_check_libfunc as ggc root.
3476
3477         * Makefile.in (expr.o): Depends on insn-attr.h.
3478         * expr.c (insn-attr.h): New include.
3479         (force_operand): If INSN_SCHEDULING, deal with paradoxical SUBREG
3480         of MEM.
3481         (highest_pow2_factor, case INTEGER_CST): Handle negative values.
3482         (expand_expr): Remove unneeded mark_temp_addr_taken calls and
3483         clean up related usage in ADDR_EXPR.
3484         (expand_expr_unaligned): Likewise.
3485
3486         * emit-rtl.c (change_address): Fix typo in alias setting.
3487
3488 2001-11-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3489
3490         * Makefile.in (cfgcleanup.o): Depend on insn-config.h
3491
3492 2001-11-12  Craig Rodrigues  <rodrigc@gcc.gnu.org>
3493
3494         PR bootstrap/3451
3495         * c-pragma.c: Rename macros BAD, BAD2, BAD_ACTION to
3496         GCC_BAD, GCC_BAD2, GCC_BAD_ACTION.
3497
3498 2001-11-12  David O'Brien  <obrien@FreeBSD.org>
3499
3500         * config.gcc (sparc-tti-*, sparc64-wrs-vxworks*, sparc-wrs-vxworks*,
3501         sparclite-wrs-vxworks*, sparc-*-aout*, sparc-*-netbsd*,
3502         sparc-*-chorusos*, sparc-*-linux*aout*, sparc-*-linux*libc1*,
3503         sparc-*-linux*, sparc-*-lynxos*, sparc-*-rtemsaout*, sparc-*-rtems*,
3504         sparc-*-rtemself*, sparc-*-solaris2*, sparc-*-sunos3*, sparc-*-sysv4*,
3505         sparc-*-vxsim*, sparclet-*-aout*, sparclite-*-coff*, sparclite-*-aout*,
3506         sparc86x-*-aout*, sparc86x-*-elf*, sparc64-*-aout*, sparc64-*-elf*,
3507         sparc64-*-linux*):  Include various CPU headers via tm_file.
3508         * config/svr3.h (ASM_OUTPUT_IDENT): Undef before defining it.
3509         (SELECT_SECTION): Likewise.
3510         (SELECT_RTX_SECTION): Likewise.
3511         * config/sparc/sparc_bi.h: New file.
3512         * config/sparc/aout.h: Don't include sparc/sparc.h and aoutos.h.
3513         * config/sparc/linux-aout.h: Likewise.
3514         * config/sparc/linux.h: Don't include sparc/sysv4.h.
3515         * config/sparc/linux64.h: Likewise.
3516         (SPARC_BI_ARCH): Don't define.  sparc_bi.h will do it instead.
3517         * config/sparc/lite.h:  Don't include sparc/sparc.h and gofast.h.
3518         * config/sparc/litecoff.h: Don't include sparc/lite.h, svr3.h,
3519         and dbxcoff.h
3520         (ASM_OUTPUT_IDENT): Do not #undef.
3521         (SELECT_SECTION): Likewise.
3522         (SELECT_RTX_SECTION): Likewise.
3523         * config/sparc/liteelf.h: Don't include gofast.h.
3524         * config/sparc/lynx-ng.h: Don't include sparc/sparc.h and lynx-ng.h.
3525         * config/sparc/lynx.h: Don't include sparc/sparc.h.
3526         * config/sparc/pbd.h: Likewise.
3527         * config/sparc/netbsd.h: Don't include sparc/sparc.h and netbsd.h.
3528         * config/sparc/rtems.h: Don't include sparc/aout.h and rtems.h.
3529         * config/sparc/rtemself.h: Don't include rtems.h.
3530         * config/sparc/sol2-64.h: Don't include sparc/sol2-sld-64.h.
3531         * config/sparc/sol2-sld-64.h (SPARC_BI_ARCH): Don't define, include
3532         sparc_bi.h instead.
3533         * config/sparc/sol2-sld.h: Don't include sparc/sol2.h.
3534         * config/sparc/sol2.h: Include sparc/sparc.h directly.
3535         * config/sparc/sp64-aout.h: Don't include sparc/sparc.h and aoutos.h.
3536         * config/sparc/sp64-elf.h: Don't include sparc/sol2.h.
3537         * config/sparc/sp86x-aout.h: Don't include sparc/sparc.h and gofast.h.
3538         * config/sparc/sp86x-elf.h: Don't include gofast.h.
3539         * config/sparc/splet.h: Don't include sparc/aout.h.
3540         * config/sparc/sun4o3.h: Don't include sparc/sparc.h.
3541         * config/sparc/sysv4.h: Don't include sparc/sparc.h directly.
3542         * config/sparc/vxsim.h: Don't include sparc/sysv4.h.
3543         * config/sparc/vxsparc.h: Don't include sparc/aout.h and gofast.h.
3544         * config/sparc/vxsparc64.h: Don't include gofast.h.
3545         (SPARC_BI_ARCH): Don't define.  sparc_bi.h will do it instead.
3546
3547 2001-11-12  Joseph S. Myers  <jsm28@cam.ac.uk>
3548
3549         * doc/standards.texi: Mention C99 TC1.
3550
3551 2001-11-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3552
3553         * mips-protos.h (mips_output_conditional_branch): Const-ify.
3554         * mips.c (mips_output_conditional_branch): Likewise.
3555
3556 2001-11-12  Kazu Hirata  <kazu@hxi.com>
3557
3558         * config/h8300/h8300.c (shift_alg_si): Use special code for
3559         15-bit logical shifts and 31-bit logical shifts.
3560         (get_shift_alg): Generate special code for 15-bit and 31-bit
3561         logical shifts.
3562
3563 2001-11-12  Kazu Hirata  <kazu@hxi.com>
3564
3565         * config/h8300/h8300.c (shift_alg_qi): Use rotations when
3566         doing 6-bit logical shifts on H8/S.
3567         (shift_alg_qi): Use special code for 21-bit shifts on H8/S.
3568         (get_shift_alg): Generate special code for 21-bit shifts on
3569         H8/S.
3570
3571 2001-11-12  Kazu Hirata  <kazu@hxi.com>
3572
3573         * config/h8300/h8300.c (get_shift_alg): Remove a redundant
3574         label.
3575
3576 Mon Nov 12 11:58:26 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3577
3578         * alias.c (nonoverlapping_memrefs_p): Only update size from memref
3579         if both size and offset known.
3580
3581 2001-11-12  David O'Brien  <obrien@FreeBSD.org>
3582
3583         * config/ia64/freebsd.h: Fix misspelling.
3584
3585 2001-11-12  Joseph S. Myers  <jsm28@cam.ac.uk>
3586
3587         * doc/gcc.texi: Move several chapters out to ...
3588         * doc/configterms.texi, doc/fragments.texi, doc/hostconfig.texi,
3589         doc/include/linux-and-gnu.texi, doc/interface.texi,
3590         doc/makefile.texi, doc/passes.texi, doc/portability.texi:
3591         ... here.  New files.
3592         * doc/gcc.texi, doc/contrib.texi: Move section headings into
3593         contrib.texi.
3594         * Makefile.in ($(docdir)/gcc.info, gcc.dvi): Update dependencies.
3595
3596 2001-11-12  Kazu Hirata  <kazu@hxi.com>
3597
3598         * config/alpha/alpha-interix.h: Fix comment formatting.
3599         * config/alpha/alpha.c: Likewise.
3600         * config/alpha/alpha.h: Likewise.
3601         * config/alpha/alpha32.h: Likewise.
3602         * config/alpha/freebsd.h: Likewise.
3603         * config/alpha/unicosmk.h: Likewise.
3604         * config/alpha/vms.h: Likewise.
3605
3606 2001-11-12  Kazu Hirata  <kazu@hxi.com>
3607
3608         * config/h8300/h8300.c (get_shift_alg): Remove redundant code.
3609
3610 2001-11-12  Jakub Jelinek  <jakub@redhat.com>
3611
3612         * dbxout.c (dbxout_symbol_location): Avoid emitting invalid register
3613         numbers.
3614
3615 Mon Nov 12 05:18:42 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3616
3617         * emit-rtl.c (set_mem_attributes): If making object, can set alignment
3618         from type.
3619         (replace_equiv_address): Call update_temp_slot_address.
3620
3621         * dwarf2out.c (loc_descriptor_from_tree, case COMPOUND_EXPR): New case.
3622
3623         * alias.c (nonoverlapping_memrefs_p): Handle DECL_RTL being a CONCAT.
3624
3625 2001-11-12  Kazu Hirata  <kazu@hxi.com>
3626
3627         * config/h8300/h8300.c (shift_alg_qi): New.
3628         (shift_alg_hi): Likewise.
3629         (shift_alg_si): Likewise.
3630         (get_shift_alg): Change the type of count to unsigned int.
3631         Use the tables.
3632
3633 2001-11-11  Alexandre Oliva  <aoliva@redhat.com>
3634
3635         * Makefile.in (c-lang.o): Depend on $(VARRAY_H).
3636         * c-decl.c (c_expand_body): Take argument can_defer_p.  Use it
3637         to decide whether to defer a function.
3638         (finish_function): Adjust.
3639         (c_expand_deferred_function): New function.
3640         * c-lang.c (deferred_fns): New variable.
3641         (c_init): Initialize it, and mark it as a root.
3642         (defer_fn): New function.
3643         (finish_file): Expand all deferred functions.
3644         * c-tree.h (defer_fn): Declare.
3645         (c_expand_deferred_function): Likewise.
3646         * objc/Make-lang.in (objc-act.o): Depend on $(VARRAY_H).
3647         * objc-act.c (deferred_fns): New variable.
3648         (objc_init): Initialize it, and mark it as a root.
3649         (defer_fn): New function.
3650         (finish_file): Expand all deferred functions.
3651
3652 2001-11-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3653
3654         * alpha.c (unicosmk_special_name): Prototype.
3655         (unicosmk_ssib_name): Delete unused variable.
3656         * alpha/unicosmk.h (common_section, ssib_section): Prototype.
3657         * alpha/vms.h (PREFIX): Undef before defining.
3658         * arm/pe.h (SUBTARGET_NAME_ENCODING_LENGTHS): Likewise.
3659         * i370/i370.c (mvs_hash_alias): Prototype.  Wrap with macro
3660         controlling usage.  Const-ify.
3661         (alias_number): Delete unused variable.
3662         * m32r/m32r.c (m32r_sched_init): Add missing argument.
3663         (m32r_expand_block_move): Fix uninitialized warnings.
3664         * mn10300/mn10300.h (REGNO_IN_RANGE_P): Fix 'unsigned >=0 is
3665         always true' warnings.
3666         * openbsd.h (TARGET_MEM_FUNCTIONS): Don't redefine.
3667         * sh/sh.c: Include "integrate.h".
3668         (output_far_jump): Fix uninitialized warning.
3669         * final.c (shorten_branches): Avoid automatic aggregate
3670         initialization.
3671         * integrate.c (subst_constants): Likewise.
3672
3673 2001-11-11  Kazu Hirata  <kazu@hxi.com>
3674
3675         * config/h8300/h8300.c (shift_alg): Remove SHIFT_MAX.
3676         (get_shift_alg): Remove redundant code.
3677
3678 2001-11-11  Kazu Hirata  <kazu@hxi.com>
3679
3680         * config/pa/milli64.S: Fix comment formatting.
3681         * config/pa/pa-64.h: Likewise.
3682         * config/pa/pa-linux.h: Likewise.
3683         * config/pa/pa-protos.h: Likewise.
3684         * config/pa/pa.c: Likewise.
3685         * config/pa/pa.h: Likewise.
3686         * config/pa/pa32-linux.h: Likewise.
3687         * config/pa/pa32-regs.h: Likewise.
3688         * config/pa/pa64-hpux.h: Likewise.
3689         * config/pa/pa64-regs.h: Likewise.
3690         * config/pa/som.h: Likewise.
3691
3692 2001-11-11  Joseph S. Myers  <jsm28@cam.ac.uk>
3693
3694         * doc/gcc.texi: Move several chapters out to ...
3695         * doc/bugreport.texi, doc/contribute.texi, doc/frontends.texi,
3696         doc/service.texi, doc/standards.texi, doc/trouble.texi,
3697         doc/vms.texi: ... here.  New files.
3698         * Makefile.in ($(docdir)/gcc.info, gcc.dvi): Update dependencies.
3699
3700 2001-11-11  Joseph S. Myers  <jsm28@cam.ac.uk>
3701
3702         * ChangeLog.2, ChangeLog.3, ChangeLog.4, ChangeLog.5, ChangeLog,
3703         cfg.c, cfganal.c, cfgcleanup.c, cfglayout.c, cfgloop.c, cfgrtl.c,
3704         collect2.c, combine.c, config.in, configure, configure.in,
3705         conflict.c, dwarf2out.c, dwarfout.c, except.c, final.c, flow.c,
3706         genattrtab.c, ggc-page.c, jump.c, lcm.c, predict.c, reg-stack.c,
3707         reload1.c, rtlanal.c, sched-rgn.c, toplev.c, unwind-dw2-fde.h: Fix
3708         spelling errors.
3709
3710 Sun Nov 11 05:56:01 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3711
3712         * config/rs6000/rs6000.c (rs6000_hash_constant, toc_hash_eq):
3713         Adjust operand number in CONST_DOUBLE.
3714
3715         * expmed.c (extract_bit_field): No longer pass in alignment.
3716         (extract_fixed_bit_field, extract_split_bit_field): Likewise.
3717         (store_bit_field, store_fixed_bit_field, store_split_bit_field):
3718         Likewise.
3719         * expr.c (store_constructor, store_constructor_field): Likewise.
3720         (store_field, emit_group_load, emit_group_store): Likewise.
3721         * expr.h (emit_group_load, emit_group_store): Delete ALIGN parm.
3722         (store_bit_field, extract_bit_field): Likewise.
3723         * calls.c, expr.c, function.c: Change calls to above functions.
3724         * ifcvt.c, stmt.c: Likewise.
3725
3726         * alias.c (nonoverlapping_memrefs_p): Not overlapping if one base is
3727         constant and one is on frame.
3728         If know memref offset, adjust size from decl.
3729
3730 2001-11-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3731
3732         * alpha/unicosmk.h (ASM_OUTPUT_DOUBLE, ASM_OUTPUT_FLOAT): Fix
3733         format specifier warning.
3734         * convex.h (ASM_OUTPUT_BYTE): Likewise.
3735         * elfos.h (ALIGN_ASM_OP): Undef before defining.
3736         * i386/att.h (ASM_GENERATE_INTERNAL_LABEL): Fix format specifier
3737         warning.
3738         * i386/bsd.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3739         * i386/gas.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3740         * i386-interix.h (gen_stdcall_suffix): Prototype.
3741         * i386.h (ASM_OUTPUT_BYTE): Fix format specifier warning.
3742         * i386elf.h (ASM_OUTPUT_FLOAT, ASM_OUTPUT_DOUBLE,
3743         ASM_OUTPUT_LONG_DOUBLE): Likewise.
3744         * i386/interix.c (gen_stdcall_suffix): Const-ify.
3745         * i386/next.h (ASM_OUTPUT_LONG_DOUBLE, ASM_OUTPUT_DOUBLE,
3746         ASM_OUTPUT_FLOAT, ASM_GENERATE_INTERNAL_LABEL): Fix format
3747         specifier warnings.
3748         * i386/osfrose.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3749         * i386/ptx4-i.h (ASM_OUTPUT_FLOAT, ASM_OUTPUT_DOUBLE,
3750         ASM_OUTPUT_LONG_DOUBLE): Likewise.
3751         * i386/sco5.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3752         * i386/sequent.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3753         * i386/sun386.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3754         * i386/svr3dbx.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3755         * m68k/3b1.h (ASM_OUTPUT_DOUBLE, ASM_OUTPUT_LONG_DOUBLE,
3756         ASM_OUTPUT_FLOAT, ASM_GENERATE_INTERNAL_LABEL): Likewise.
3757         * m68k/altos3068.h (ASM_OUTPUT_FLOAT_OPERAND): Likewise.
3758         * m68k/amix.h (ASM_OUTPUT_ASCII, ASM_GENERATE_INTERNAL_LABEL):
3759         Likewise.
3760         * m68k/atari.h (ASM_OUTPUT_ASCII, ASM_GENERATE_INTERNAL_LABEL):
3761         Likewise.
3762         * m68k/crds.h (ASM_OUTPUT_DOUBLE, PRINT_OPERAND): Likewise.
3763         * m68k/dpx2.h (ASM_OUTPUT_LONG_DOUBLE, ASM_OUTPUT_DOUBLE,
3764         ASM_OUTPUT_FLOAT, ASM_OUTPUT_BYTE, ASM_OUTPUT_FLOAT_OPERAND):
3765         Likewise.
3766         * m68k/hp320.h (ASM_OUTPUT_LONG_DOUBLE, ASM_OUTPUT_BYTE):
3767         Likewise.
3768         * m68k.h (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_BYTE):
3769         Likewise.
3770         * m68k/m68kv4.h (ASM_OUTPUT_ASCII): Delete unused variable.
3771         * m68k/mot3300.h (ASM_OUTPUT_BYTE): Fix format specifier warning.
3772         * m68k/news.h (PRINT_OPERAND): Likewise.
3773         * m68k/next.h (ASM_OUTPUT_DOUBLE, ASM_OUTPUT_FLOAT,
3774         ASM_OUTPUT_FLOAT_OPERAND, ASM_OUTPUT_DOUBLE_OPERAND): Likewise.
3775         * m68k/next21.h (ASM_OUTPUT_FLOAT_OPERAND): Likewise.
3776         * m68k/plexus.h (ASM_SPEC): Insert space between macro name and
3777         definition.
3778         * m68k/sgs.h (ASM_OUTPUT_LONG_DOUBLE, ASM_OUTPUT_DOUBLE,
3779         ASM_OUTPUT_FLOAT, ASM_OUTPUT_ASCII, ASM_OUTPUT_FLOAT_OPERAND,
3780         ASM_OUTPUT_DOUBLE_OPERAND): Fix format specifier warnings.
3781         * m68k/sun3.h (ASM_OUTPUT_FLOAT_OPERAND): Likewise.
3782         * m68k/tower-as.h (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_DOUBLE,
3783         ASM_OUTPUT_LONG_DOUBLE, ASM_OUTPUT_FLOAT, ASM_OUTPUT_BYTE,
3784         PRINT_OPERAND): Likewise.
3785         * m88k/m88k.h (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_BYTE):
3786         Likewise.
3787         * mips/elf.h (PUT_SDB_SIZE, ASM_DECLARE_OBJECT_NAME): Likewise.
3788         * mips/elf64.h (PUT_SDB_SIZE, ASM_DECLARE_OBJECT_NAME): Likewise.
3789         * mips/iris5gas.h (PUT_SDB_SIZE): Likewise.
3790         * mips/linux.h (ASM_DECLARE_OBJECT_NAME): Likewise.
3791         * mips.c (mips_output_external_libcall): Mark parameter with
3792         ATTRIBUTE_UNUSED.
3793         (mips_asm_file_start): Move variable into the scope where it's
3794         used.
3795         * mips.h (PUT_SDB_INT_VAL, PUT_SDB_SIZE): Likewise.
3796         * mips/netbsd.h (ASM_DECLARE_OBJECT_NAME): Likewise.
3797         * mips/sni-gas.h (PUT_SDB_SIZE): Likewise.
3798         * ns32k/encore.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3799         * ns32k.c (print_operand): Likewise.
3800         * pa.c (print_operand, output_div_insn): Likewise.
3801         * pa.h (ASM_OUTPUT_MI_THUNK, ASM_GENERATE_INTERNAL_LABEL,
3802         ASM_OUTPUT_BYTE, PRINT_OPERAND_ADDRESS): Likewise.
3803         * pa/pa64-hpux.h (UNIQUE_SECTION): Const-ify.
3804         * sparc/linux.h (ASM_GENERATE_INTERNAL_LABEL): Fix format
3805         specifier warnings.
3806         * sparc/linux64.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3807         * sparc/pbd.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3808         (ASM_OUTPUT_SOURCE_LINE): Don't list macro arguments in undef.
3809         * sparc/vxsim.h (ASM_GENERATE_INTERNAL_LABEL): Fix format
3810         specifier warnings.
3811         * svr3.h (ASM_GENERATE_INTERNAL_LABEL): Likewise.
3812
3813         * sdbout.c (sdbout_end_epilogue): Mark parameter with
3814         ATTRIBUTE_UNUSED.
3815         * varasm.c (assemble_global): Likewise.
3816
3817 2001-11-11  H.J. Lu <hjl@gnu.org>
3818
3819         * config.gcc: Add "elfos.h svr4.h" to $tm_file for Linux/mips.
3820
3821 Sun Nov 11 01:26:00 CET 2001  Jan Hubicka  <jh@suse.cz>
3822
3823         * final.c (*_MAX_SKIP): Use *_max_skip variables.
3824         * flags.h (align_loops_max_skip, align_jumps_max_skip,
3825         align_labels_max_skip): New global variables.
3826         * toplev.c (align_loops_max_skip, align_jumps_max_skip,
3827         align_labels_max_skip): New global variables.
3828         (toplev_main): Set new variables.
3829         * i386.c (override_options): Set max_skip values.
3830
3831 2001-11-10  Geoffrey Keating  <geoffk@redhat.com>
3832
3833         * doc/tm.texi (Label Output): Document ASM_OUTPUT_LABEL_REF.
3834         * final.c (output_addr_const): Use ASM_OUTPUT_LABEL_REF.
3835         * config/stormy16/stormy16.c (xstormy16_print_operand): For '%C',
3836         don't print an @fptr for labels either.
3837         (xstormy16_output_addr_vec): Don't print @fptr here.
3838         * config/stormy16/stormy16.h (ASM_OUTPUT_LABEL_REF): New macro.
3839
3840 Sat Nov 10 08:50:50 2001  Jeffrey A Law  (law@cygnus.com)
3841
3842         * ssa-ccp.c (examine_flow_edges): Use old-style definition, not
3843         an ANSI/ISO definitino.
3844         (ssa_const_prop): Likewise.
3845
3846 2001-11-10  Aldy Hernandez  <aldyh@redhat.com>
3847
3848         * config/rs6000/rs6000.c (rs6000_reg_names): Remove leading "v" or
3849         altivec registers.
3850
3851 2001-11-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3852
3853         * cppexp.c (parse_number): Use ISXDIGIT/hex_value.
3854         * cpplex.c (hex_digit_value): Use hex_p/hex_value.
3855         * cppmain.c (general_init): Call hex_init.
3856         * tradcif.y (parse_number): Use TOLOWER/ISXDIGIT/hex_value/hex_p.
3857
3858         * config.gcc (i[34567]86-dg-dgux*): Don't set `out_file'.
3859
3860         * i386/dgux.h (ASM_FILE_START): Set to the meaningful portions
3861         of dgux.c:output_file_start().
3862
3863         * i386/dgux.c: Delete file.
3864
3865 2001-11-09  Richard Henderson  <rth@redhat.com>
3866
3867         * config/alpha/alpha.c (decl_in_text_section): New.
3868         (current_file_function_operand): Use it.
3869         (alpha_encode_section_info, alpha_end_function): Likewise.
3870
3871 2001-11-07  David O'Brien  <obrien@FreeBSD.org>
3872
3873         * config.gcc: Add FreeBSD/IA-64 target. Expand config/i64/elf.h headers.
3874         * config/i64/ia64.h (TARGET_VERSION,ASM_SPEC,LINK_SPEC): Remove,
3875         they are OS specific.  Use CPP_CPU_SPEC rather than CPP_PREDEFINES,
3876         so OS specific files and use CPP_PREDEFINES for their needs.
3877         * config/i64/elf.h (TARGET_VERSION): Add.  Also, move inclusion of
3878         target headers to tm_file.
3879         * config/ia64/aix.h (TARGET_VERSION): Likewise.
3880         * config/ia64/hpux.h (TARGET_VERSION): Likewise.
3881         * config/ia64/linux.h (TARGET_VERSION): Likewise.
3882         (FUNCTION_PROFILER): Remove.
3883         * config/ia64/ia64.h (FUNCTION_PROFILER): Update definition using the
3884         version in config/ia64/linux.h.
3885         * config/ia64/freebsd.h: New file.
3886         * config/freebsd.h: Tidy up.
3887         (_USING_CONFIG_FREEBSD): Define.
3888         (FBSD_CPP_PREDEFINES): Add __KPRINTF_ATTRIBUTE__.
3889         (FBSD_CPP_SPEC): Define generic FreeBSD spec.
3890         (FBSD_STARTFILE_SPEC): Likewise.
3891         (FBSD_ENDFILE_SPEC): Likewise.
3892         (FBSD_LIB_SPEC): Likewise.
3893         (WCHAR_UNSIGNED): Undefine, FreeBSD's wchars are signed.
3894         (USER_LABEL_PREFIX): Define to ELF compatible value as some CPU headers
3895         set an ELF-improper one.
3896
3897 2001-11-09  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3898
3899         * pa.c (emit_move_sequence): Use cint_ok_for_move to check whether a
3900         constant can be loaded in a single instruction to a register.  When
3901         loading immediate constants, use PLUS instead of HIGH/LO_SUM.  Use
3902         depdi for insertion of most significant 32-bits on 64-bit hosts.
3903         * pa.h (LEGITIMATE_CONSTANT_P): Accept constants that can be built
3904         with ldil/ldo/depdi instruction sequence on 64-bit hosts.
3905         * pa.md: New addmove pattern for adding constant_int to HImode
3906         register and moving result to HImode register.  Remove HImode HIGH
3907         and LO_SUM patterns.
3908
3909 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
3910
3911         * Makefile.in: Update.
3912         * c-decl.c (print_lang_decl, print_lang_type): Remove.
3913         (print_lang_identifier): Rename c_print_identifier.
3914         * c-lang.c (LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_SET_YYDEBUG): New.
3915         (print_lang_statistics, lang_print_xnode): Remove.
3916         * c-parse.in (set_yydebug): Rename c_set_yydebug.
3917         * c-tree.h (c_set_yydebug, c_print_identifier): New.
3918         * langhooks-def.h (lhd_print_tree_nothing, lhd_set_yydebug): New.
3919         LANG_HOOKS_PRINT_STATISTICS, LANG_HOOKS_PRINT_XNODE,
3920         LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE,
3921         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_SET_YYDEBUG): New.
3922         (LANG_HOOKS_INITIALIZER): Update.
3923         * langhooks.h (struct lang_hooks): New members.
3924         (lang_print_tree_hook): New.
3925         * langhooks.c (lhd_print_tree_nothing, lhd_set_yydebug): New.
3926         * print-tree.c: Include langhooks.h.
3927         (print_node): Update.
3928         * toplev.c (decode_d_option): Update.
3929         * tree.c: Include langhooks.h.
3930         (dump_tree_statistics): Update.
3931         * tree.h (print_lang_statistics, print_lang_decl, print_lang_type,
3932         print_lang_identifier, set_yydebug, lang_print_xnode): Remove.
3933 objc:
3934         * objc-act.c (LANG_HOOKS_PRINT_IDENTIFIER,
3935         LANG_HOOKS_SET_YYDEBUG): Override.
3936         (lang_print_xnode, print_lang_statistics): Remove.
3937
3938 2001-11-09  Richard Henderson  <rth@redhat.com>
3939
3940         * dwarf2asm.c (dw2_force_const_mem): Invoke STRIP_NAME_ENCODING
3941         on the symbol string.
3942
3943 2001-11-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3944
3945         * pa/elf.h (ASM_DECLARE_FUNCTION_NAME,
3946         ASM_OUTPUT_EXTERNAL_LIBCALL): Undef before defining.
3947         * config.gcc (hppa1.1-*-rtems*): Remove duplicate clause.
3948
3949         * clipper.h (ASM_OUTPUT_REG_POP): Fix typo.
3950
3951         * tlink.c (recompile_files): Copy strings passed to `putenv'.
3952
3953 2001-11-09  Geoffrey Keating  <geoffk@redhat.com>
3954
3955         * tree.h (TYPE_VOLATILE): Trap use not on TYPEs.
3956         (TYPE_READONLY): Likewise.
3957
3958         * flow.c (insn_dead_p): Allow for AUTO_INC notes all the time.
3959
3960         * config/stormy16/stormy16.h (ASM_SPEC): Revert last change,
3961         don't pass --gdwarf2 to the assembler if the compiler will also
3962         provide debug info.
3963
3964         * config/stormy16/stormy16.c (xstormy16_expand_casesi):
3965         Don't change INDEX.
3966
3967 Fri Nov  9 17:51:09 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3968
3969         * alias.c (nonoverlapping_memrefs_p): New function.
3970         (true_dependence, canon_true_depenence, write_dependence_p): Call it.
3971
3972         * emit-rtl.c (set_mem_attributes): Get alignments for constants.
3973
3974 2001-11-09  Aldy Hernandez  <aldyh@redhat.com>
3975
3976         * rs6000.h (REG_CLASS_CONTENTS): Add VRSAVE bit to ALL_REGS.
3977         (CONDITIONAL_REGISTER_USAGE): Disable AltiVec registers unless
3978         generating altivec code.
3979         (FIXED_REGISTERS): VRSAVE is fixed.
3980         (CALL_USED_REGISTERS): VRSAVE is call used.
3981
3982 2001-11-09  Jason Eckhardt  <jle@rice.edu>
3983
3984         * config/mips/mips.c (mips_output_conditional_branch): Do not hard
3985         code the branch target as ".+16/.+12", but rather use labels.
3986
3987 Fri Nov  9 11:27:42 2001  Jeffrey A Law  (law@cygnus.com)
3988
3989         * config/pa/milli64.S: Use %r25 and %r0 instead of arg1 and r0
3990         to work around limitations of certain versions of GAS.
3991
3992         * pa.md (mulsi3): Remove PA64 hack to work around SUBREG issues.
3993         (muldi3): Update due to SUBREG_BYTE changes.
3994         (casesi): Similarly.
3995
3996 2001-11-09  Zack Weinberg  <zack@codesourcery.com>
3997
3998         * doc/invoke.texi: Remove comment referring to -xf77-version.
3999
4000 2001-11-09  Kazu Hirata  <kazu@hxi.com>
4001
4002         * config/convex/convex.c: Fix comment formatting.
4003         * config/convex/convex.h: Likewise.
4004
4005 2001-11-08  Zack Weinberg  <zack@codesourcery.com>
4006
4007         * Makefile.in (.po.pox): Look both in srcdir and builddir
4008         for $(PACKAGE).pot.
4009         (po/$(PACKAGE).pot): Don't move-if-change the new potfile over
4010         to the source directory.
4011
4012 2001-11-09 Ben Elliston  <bje@redhat.com>
4013            Michael Meissner  <meissner@redhat.com>
4014            Andrew MacLeod  <amacleod@redhat.com>
4015            Richard Henderson  <rth@redhat.com>
4016            Nick Clifton  <nickc@redhat.com>
4017            Catherine Moore  <clm@redhat.com>
4018
4019         * m32r.c: Add support for m32rx processor.
4020         * m32r.h: Ditto.
4021         * m32r.md: Ditto.
4022         * t-m32r: Ditto.
4023         * m32r-protos.h: Add prototypes for m32rx functions.
4024         * doc/invoke.texi: Document -m32rx option.
4025
4026 2001-11-09  Jakub Jelinek  <jakub@redhat.com>
4027
4028         * config/sparc/sparc.md (movdf): Avoid calling validize_mem during
4029         or after reload.
4030
4031 2001-11-09  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
4032
4033         * doc/install.texi2html: Use $MAKEINFO --no-split.
4034
4035 2001-11-09  Andreas Schwab  <schwab@suse.de>
4036
4037         * Makefile.in ($(HOST_PREFIX_1)rtl.o,
4038         $(HOST_PREFIX_1)print-rtl.o, $(HOST_PREFIX_1)bitmap.o,
4039         $(HOST_PREFIX_1)vfprintf.o, $(HOST_PREFIX_1)doprint.o,
4040         $(HOST_PREFIX_1)strstr.o, $(HOST_PREFIX_1)errors.o,
4041         $(HOST_PREFIX_1)ggc-none.o): Update dependencies.
4042
4043 2001-11-09  H.J. Lu <hjl@gnu.org>
4044
4045         * config/mips/mips.c (mips_output_function_prologues): Cast
4046         `tsize' to long for output.
4047
4048 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
4049
4050         * c-lang.c (LANG_HOOKS_NAME): New.
4051         (lang_hooks): Constify.
4052         (c_init_options): Update.
4053         (lang_identify): Remove.
4054         * c-parse.in (language_string): Remove.
4055         * dbxout.c: Include langhooks.h.
4056         (dbxout_symbol_location): Update.
4057         * dwarf2out.c: Include langhooks.h.
4058         (gen_compile_unit_die): Update.
4059         * dwarfout.c: Include langhooks.h.
4060         (prototyped_attribute, output_compile_unit_die): Update.
4061         * langhooks-def.h (LANG_HOOKS_NAME, LANG_HOOKS_IDENTIFIER_SIZE): New.
4062         (LANG_HOOKS_INITIALIZER): Update.
4063         * langhooks.h (struct lang_hooks): New members.  Constify.
4064         * stringpool.c: Don't include toplev.h.
4065         (set_identifier_size): Remove.
4066         * toplev.c (toplev_main): Initialize identifier size.
4067         (print_version): Update.
4068         * tree.h (language_string, init_lex, lang_identify,
4069         set_identifier_size): Remove.
4070         * Makefile.in: Update dependencies.
4071         * config/darwin.c: Include langhooks.h.
4072         (func_name_maybe_scoped): Update.
4073         * config/darwin.h (ASM_END_FILE): Update.
4074         * config/nextstep.h (ASM_END_FILE): Update.
4075         * config/nextstep21.h (ASM_END_FILE): Update.
4076         * config/i386/sun386.h (ASM_END_FILE): Update.
4077         * config/rs6000/rs6000.c (ASM_END_FILE): Include langhooks.h.
4078         (rs6000_output_function_epilogue): Update.
4079 objc:
4080         * objc-act.c (LANG_HOOKS_NAME): Override.
4081         (struct lang_hooks): Constify.
4082         (objc_init_options): Update.
4083         (lang_identify): Remove.
4084
4085 Fri Nov  9 00:25:18 EST 2001  John Wehle  (john@feith.com)
4086
4087         * fold-const.c (lshift_double): Honor PREC.
4088         (rshift_double): Likewise.
4089
4090 2001-11-08  Kazu Hirata  <kazu@hxi.com>
4091
4092         * config/1750a/1750a.c: Fix comment formatting.
4093         * config/1750a/1750a.h: Likewise.
4094
4095 2001-11-08  Phil Edwards  <pedwards@disaster.jaj.com>
4096
4097         * configure.in (--enable-languages): Be more permissive about
4098         syntax.  Check for empty lists better.  Warn about $LANGUAGES.
4099         * configure: Regenerated.
4100
4101 2001-11-08  Richard Henderson  <rth@redhat.com>
4102
4103         * dwarf2asm.c (dw2_force_const_mem): Fix typo.
4104
4105 2001-11-08  Geoffrey Keating  <geoffk@redhat.com>
4106
4107         * config.gcc: Rename stormy16 to xstormy16.
4108         * config/stormy16/stormy-abi: Likewise.
4109         * config/stormy16/stormy16-protos.h: Likewise.
4110         * config/stormy16/stormy16.c: Likewise.
4111         * config/stormy16/stormy16.h: Likewise.
4112         * config/stormy16/stormy16.md: Likewise.
4113
4114 2001-11-06  Geoffrey Keating  <geoffk@redhat.com>
4115
4116         * tree.h (TYPE_VOLATILE): Add enable-checking code.
4117         (TYPE_READONLY): Likewise.
4118
4119 Thu Nov  8 18:00:55 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4120
4121         * reload1.c (reload): Don't delete equiv insn if can throw.
4122
4123         * expr.c (emit_block_move): If X is readonly emit CLOBBER for it.
4124         (clear_storage): Likewise, for OBJECT.
4125
4126 Thu Nov  8 16:23:51 2001  Jeffrey A Law  (law@cygnus.com)
4127
4128         * pa.c (emit_move_sequence): Fix SUBREG expression to
4129         use proper byte offset when extending a constant from
4130         SImode to DImode.
4131
4132 2001-11-09  Jakub Jelinek  <jakub@redhat.com>
4133
4134         * cfgrtl.c (purge_dead_edges): Remove REG_EH_REGION note for insns
4135         which cannot throw.
4136
4137 Thu Nov  8 18:00:55 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4138
4139         * explow.c (convert_memory_address, case SUBREG): Only return
4140         inner object if SUBREG_PROMOTED_VAR_P or known to be pointer.
4141
4142 2001-11-08  Richard Henderson  <rth@redhat.com>
4143
4144         * Makefile.in (GCC_FOR_TARGET): Add build_tooldir/sys-include.
4145         (CROSS_SYSTEM_HEADER_DIR): Use build_tooldir not tooldir.
4146         (ORDINARY_FLAGS_TO_PASS, stmp-fixinc): Likewise.
4147
4148 2001-11-08  Aldy Hernandez  <aldyh@redhat.com>
4149
4150         * config/rs6000/rs6000.h (ASM_CPU_SPEC): Add -maltivec.
4151
4152 2001-11-08  Jakub Jelinek  <jakub@redhat.com>
4153
4154         * dwarf2out.c (debug_str_hash): New.
4155         (struct indirect_string_node): New.
4156         (struct dw_val_struct): Change type of val_str to it.
4157         (DEBUG_STR_SECTION_FLAGS): Define.
4158         (add_AT_string): Push string into hashtable, increment reference
4159         counter.
4160         (AT_string): Return string from ht_identifier.
4161         (AT_string_form): New.
4162         (free_AT): For dw_val_class_str, just decrement reference counter.
4163         (size_of_string): Remove.
4164         (size_of_die): Use AT_string_form to decide what size the string
4165         occupies in DIE.
4166         (size_of_pubnames): Use strlen instead of size_of_string.
4167         (value_format): Use AT_string_form for dw_val_class_str.
4168         (output_die): Output DW_FORM_strp strings using
4169         dw2_asm_output_offset.
4170         (indirect_string_alloc, output_indirect_string): New.
4171         (dwarf2out_finish): Emit .debug_str strings if there are any.
4172
4173 2001-11-08  Andreas Franck  <afranck@gmx.de>
4174
4175         * configure.in: Add AC_ARG_PROGRAM to support program name
4176         transformation with --program-prefix, --program-suffix and
4177         --program-transform-name.
4178         * configure: Regenerated.
4179         * Makefile.in (GCC_INSTALL_NAME, CPP_INSTALL_NAME,
4180         PROTOIZE_INSTALL_NAME, UNPROTOIZE_INSTALL_NAME, GCOV_INSTALL_NAME,
4181         GCCBUG_INSTALL_NAME, GCC_CROSS_NAME, CPP_CROSS_NAME,
4182         PROTOIZE_CROSS_NAME, UNPROTOIZE_CROSS_NAME): Handle
4183         program_transform_name the way suggested by autoconf.
4184         (GCC_TARGET_INSTALL_NAME): Define.
4185         (install-driver): Use the transformed target alias name.
4186
4187 2001-11-08  Richard Henderson  <rth@redhat.com>
4188
4189         * config/mips/mips.c (save_restore_insns): Remove GP from the
4190         restore registers mask early instead of special casing it inside
4191         the loop.
4192
4193 2001-11-08  Neil Booth  <neil@daikokuya.demon.co.uk>
4194
4195         * cp/decl.c (shadow_warning): New function.
4196         (pushdecl): Improve -Wshadow warnings.  Don't give both a warning
4197         and an error when a block scope decl shadows a parameter.
4198
4199 2001-11-08  Richard Henderson  <rth@redhat.com>
4200
4201         * config/fp-bit.h (usi_to_float): Define for US_SOFTWARE_GOFAST
4202         case as well.
4203
4204 2001-11-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
4205
4206         * pa.md (negdf2, negsf2): Use multiplication rather than subtraction
4207         to implement floating negation on processors prior to PA 2.0.
4208
4209 2001-11-08  Jakub Jelinek  <jakub@redhat.com>
4210
4211         * dwarf2asm.c (mark_indirect_pool_entry, mark_indirect_pool): New.
4212         (USE_LINKONCE_INDIRECT): Define.
4213         (dw2_output_indirect_constant_1): Try to output indirect constants
4214         into linkonce sections if possible.
4215         (dw2_force_const_mem): Likewise.  Register indirect_pool with GGC.
4216         (dw2_output_indirect_constants): Likewise.
4217
4218 2001-11-07  Aldy Hernandez  <aldyh@redhat.com>
4219
4220         * config/rs6000/rs6000.h (REG_ALLOC_ORDER): Add vrsave.
4221
4222 2001-11-07  Neil Booth  <neil@daikokuya.demon.co.uk>
4223
4224         * c-decl.c (pushdecl): Remove file and line.
4225         * c-typeck.c (pop_init_level): Remove size.
4226
4227 2001-11-07  Aldy Hernandez  <aldyh@redhat.com>
4228
4229         * doc/invoke.texi: Add -maltivec, -mno-altivec, and -mabi=altivec
4230         for rs6000.
4231
4232         * config/rs6000/rs6000.h (MASK_ALTIVEC): New.
4233         (TARGET_ALTIVEC): New.
4234         (TARGET_SWITCHES): Add altivec.
4235         (FIRST_PSEUDO_REGISTER): Change to 109.
4236         (CALL_USED_REGISTERS): Same.
4237         (FIRST_ALTIVEC_REGNO): New.
4238         (LAST_ALTIVEC_REGNO): New.
4239         (ALTIVEC_REGNO_P): New.
4240         (UNITS_PER_ALTIVEC_WORD): New.
4241         (ALTIVEC_VECTOR_MODE): New.
4242         (FIXED_REGISTERS): Add altivec registers.
4243         (REG_ALLOC_ORDER): Same.
4244         (HARD_REGNO_NREGS): Adjust for altivec registers.
4245         (HARD_REGNO_MODE_OK): Same.
4246         (MODES_TIEABLE_P): Same.
4247         (REGISTER_MOVE_COST): Same.
4248         (REGNO_REG_CLASS): Same.
4249         (reg_class): Add ALTIVEC_REGS.
4250         (REG_CLASS_NAMES): Same.
4251         (REG_CLASS_CONTENTS): Same.
4252         (REG_CLASS_FROM_LETTER): Add 'v' constraint for ALTIVEC_REGS.
4253         (ALTIVEC_ARG_RETURN): New.
4254         (FUNCTION_VALUE): Handle VECTOR_TYPE.
4255         (LIBCALL_VALUE): Handle altivec vector modes.
4256         (VECTOR_MODE_SUPPORTED_P): New.
4257         (ALTIVEC_ARG_MIN_REG): New.
4258         (ALTIVEC_ARG_MAX_REG): New.
4259         (ALTIVEC_ARG_NUM_REG): New.
4260         (FUNCTION_VALUE_REGNO_P): Return true for altivec return register.
4261         (FUNCTION_ARG_REGNO_P): Support passing args in altivec registers.
4262         (REGISTER_NAMES): Add altivec regs.
4263         (DEBUG_REGISTER_NAMES): Same.
4264         (ADDITIONAL_REGISTER_NAMES): Same.
4265         (rs6000_builtins): New.
4266         (MD_EXPAND_BUILTIN): New.
4267         (MD_INIT_BUILTINS): New.
4268         (LEGITIMATE_OFFSET_ADDRESS_P): This addressing mode is not valid
4269         for AltiVec instructions.
4270         (LEGITIMATE_LO_SUM_ADDRESS_P): Same.
4271         (HARD_REGNO_MODE_OK): Altivec modes can only go in altivec
4272         registers.
4273         (SECONDARY_MEMORY_NEEDED): We need memory to copy vector modes.
4274         (TARGET_SWITCHES): Add no-altivec.
4275         (DATA_ALIGNMENT): Align vectors to 128 bits.
4276         (TARGET_OPTIONS): Add abi= option.
4277         Add rs6000_abi_string extern.
4278         (LOCAL_ALIGNMENT): New.
4279         (CPP_CPU_SPEC): Define __ALTIVEC__ when -maltivec.
4280         (MASK_ALTIVEC_ABI): New.
4281         (TARGET_ALTIVEC_ABI): New.
4282         (CONDITIONAL_REGISTER_USAGE): Set first 20 AltiVec registers to
4283         call-saved.
4284         (STACK_BOUNDARY): Adjust for altivec.
4285         (BIGGEST_ALIGNMENT): Same.
4286         (rs6000_args): Add vregno.
4287         (USE_ALTIVEC_FOR_ARG_P): New.
4288         (FIXED_REGISTERS): Add vrsave register.
4289         (CALL_USED_REGISTERS): Same.
4290         (CONDITIONAL_REGISTER_USAGE): Set VRSAVE info.
4291         (VRSAVE_REGNO): New.
4292         (reg_class): Add VRSAVE_REGS.
4293         (REG_CLASS_NAMES): Same.
4294         (REG_CLASS_CONTENTS): Same.
4295         (REGNO_REG_CLASS): Same.
4296
4297         * config/rs6000/sysv4.h (STACK_BOUNDARY): Adjust for altivec.
4298         (ABI_STACK_BOUNDARY): Same.
4299         (BIGGEST_ALIGNMENT): Same.
4300         (ADJUST_FIELD_ALIGN): Remove undef.  Define anew.
4301         (ROUND_TYPE_ALIGN): Same.
4302
4303         * config/rs6000/aix.h (ROUND_TYPE_ALIGN): Change BIGGEST_ALIGNMENT
4304         to 64.
4305
4306         * config/rs6000/darwin.h (ROUND_TYPE_ALIGN): Change BIGGEST_ALIGNMENT
4307         to 64.
4308
4309         * config/rs6000/darwin.h (ROUND_TYPE_ALIGN): Change BIGGEST_ALIGNMENT
4310         to 64.
4311
4312         * config/rs6000/rs6000.c (rs6000_expand_builtin): New.
4313         (altivec_expand_builtin): New.
4314         (altivec_init_builtins): New.
4315         (TARGET_EXPAND_BUILTIN): New.
4316         (TARGET_INIT_BUILTINS): New.
4317         (rs6000_init_builtins): New.
4318         (struct builtin_description): New.
4319         (bdesc_2arg): New.
4320         (rs6000_reg_names): Add altivec registers.
4321         (alt_reg_names): Same.
4322         (secondary_reload_class): Altivec regs can hold altivec regs and
4323         memory.
4324         (rs6000_emit_move): Force constants into memory for AltiVec moves.
4325         (print_operand): Add 'y' case for printing altivec memory
4326         operands.
4327         (rs6000_legitimize_address): Legitimize vector addresses into
4328         [REG+REG] or [REG].
4329         (altivec_expand_binop_builtin): New.
4330         New string rs6000_current_abi.
4331         (rs6000_override_options): Call rs6000_parse_abi_options.
4332         (rs6000_parse_abi_options): New.
4333         (function_arg_boundary): Vector arguments must be 16
4334         byte aligned.
4335         (function_arg_advance): Handle vector arguments.
4336         (function_arg_partial_nregs): Same.
4337         (init_cumulative_args): Same.
4338         (function_arg): Same.
4339
4340         * config/rs6000/rs6000.md (altivec_lvx): New.
4341         (type): Add altivec attribute.
4342         (movv4si): New.
4343         (*movv4si_internal): New.
4344         (movv16qi): New.
4345         (*movv16qi_internal): New.
4346         (movv8hi): New.
4347         (*movv8hi_internal1): New.
4348         (movv4sf): New.
4349         (*movv4sf_internal1): New.
4350         (altivec_stvx): New.
4351         (vaddubm): New.
4352         (vadduhm): New.
4353         (vadduwm): New.
4354         (vaddfp): New.
4355         (vaddcuw): New.
4356         (vaddubs): New.
4357         (vaddsbs): New.
4358         (vadduhs): New.
4359         (vaddshs): New.
4360         (vadduws): New.
4361         (vaddsws): New.
4362         (vand): New.
4363         (vandc): New.
4364         (vavgub): New.
4365         (vavgsb): New.
4366         (vavguh): New.
4367         (vavgsh): New.
4368         (vavguw): New.
4369         (vavgsw): New.
4370         (vcmpbfp): New.
4371         (vcmpequb): New.
4372         (vcmpequh): New.
4373         (vcmpequw): New.
4374         (vcmpeqfp): New.
4375         (vcmpgefp): New.
4376         (vcmpgtub): New.
4377         (vcmpgtsb): New.
4378         (vcmpgtuh): New.
4379         (vcmpgtsh): New.
4380         (vcmpgtuw): New.
4381         (vcmpgtsw): New.
4382         (vcmpgtfp): New.
4383         (vcmpgefp): New.
4384         (vcmpgtub): New.
4385         (vcmpgtsb): New.
4386         (vcmpgtuh): New.
4387         (vcmpgtsh): New.
4388         (vcmpgtuw): New.
4389         (vcmpgtsw): New.
4390         (vcmpgtfp): New.
4391         (vmaxub): New.
4392         (vmaxsb): New.
4393         (vmaxuh): New.
4394         (vmaxsh): New.
4395         (vmaxuw): New.
4396         (vmaxsw): New.
4397         (vmaxfp): New.
4398         (vmrghb): New.
4399         (vmrghh): New.
4400         (vmrghw): New.
4401         (vmrglb): New.
4402         (vmrglh): New.
4403         (vmrglw): New.
4404         (vminub): New.
4405         (vminsb): New.
4406         (vminuh): New.
4407         (vminsh): New.
4408         (vminuw): New.
4409         (vminsw): New.
4410         (vminfp): New.
4411         (vmuleub): New.
4412         (vmulesb): New.
4413         (vmuleuh): New.
4414         (vmulesh): New.
4415         (vmuloub): New.
4416         (vmulosb): New.
4417         (vmulouh): New.
4418         (vmulosh): New.
4419         (vnor): New.
4420         (vor): New.
4421         (vpkuhum): New.
4422         (vpkuwum): New.
4423         (vpkpx): New.
4424         (vpkuhss): New.
4425         (vpkshss): New.
4426         (vpkuwss): New.
4427         (vpkswss): New.
4428         (vpkuhus): New.
4429         (vpkshus): New.
4430         (vpkuwus): New.
4431         (vpkswus): New.
4432         (vrlb): New.
4433         (vrlh): New.
4434         (vrlw): New.
4435         (vslb): New.
4436         (vslh): New.
4437         (vslw): New.
4438         (vsl): New.
4439         (vslo): New.
4440         (vsrb): New.
4441         (vrsh): New.
4442         (vrsw): New.
4443         (vsrab): New.
4444         (vsrah): New.
4445         (vsraw): New.
4446         (vsr): New.
4447         (vsro): New.
4448         (vsububm): New.
4449         (vsubuhm): New.
4450         (vsubuwm): New.
4451         (vsubfp): New.
4452         (vsubcuw): New.
4453         (vsububs): New.
4454         (vsubsbs): New.
4455         (vsubuhs): New.
4456         (vsubshs): New.
4457         (vsubuws): New.
4458         (vsubsws): New.
4459         (vsum4ubs): New.
4460         (vsum4sbs): New.
4461         (vsum4shs): New.
4462         (vsum2sws): New.
4463         (vsumsws): New.
4464         (vxor): New.
4465
4466 2001-11-07  Daniel Berlin  <dan@cgsoftware.com>
4467
4468         * Makefile.in (df.o): Add fibheap.h to dependencies.
4469
4470         * df.h: Add prototypes for transfer functions, iterative_dataflow
4471         functions.
4472         (enum df_flow_dir): New enum.
4473         (enum df_confluence_op): New enum.
4474         (struct df): Add inverse_rts_map.
4475
4476         * df.c: Add sbitmap.h to the list of includes.
4477         (df_rd_global_compute): Removed.
4478         (df_ru_global_compute): Removed.
4479         (df_lr_global_compute): Removed.
4480         (df_rd_transfer_function): New function.
4481         (df_ru_transfer_function): New function.
4482         (df_lr_transfer_function): New function.
4483         (df_analyse_1): allocate/compute/free df->inverse_rts_map.
4484         Use iterative_dataflow_bitmap instead of df_*_global_compute.
4485         (iterative_dataflow_sbitmap): New function.
4486         (iterative_dataflow_bitmap): New function.
4487
4488 2001-11-07  Joseph S. Myers  <jsm28@cam.ac.uk>
4489
4490         * doc/gcc.texi: Move terminology and spelling conventions to
4491         htdocs/codingconventions.html.
4492
4493 2001-11-07  Graham Stott  <grahams@redhat.com>
4494
4495         * cse.c (cse_insn): Emit BARRIER after unconditional jump.
4496
4497 Wed Nov  7 13:33:34 CET 2001  Jan Hubicka  <jh@suse.cz>
4498
4499         * expmed.c (expand_mult): Force operand to register before computing
4500         cost.
4501         * i386.c (x86_decompose_lea): New global vairable.
4502         * i386.h (x86_decompose_lea): Declare.
4503         (TARGET_DECOMPOSE_LEA): New macro.
4504         (RTX_COST): Handle leas properly.
4505
4506 2001-11-06  Richard Henderson  <rth@redhat.com>
4507
4508         * config/alpha/elf.h (DO_SELECT_SECTION): TREE_READONLY is not
4509         defined for a CONSTRUCTOR; don't check it.
4510
4511 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
4512
4513         * gcov.c (output_data): Use IS_ABSOLUTE_PATHNAME to
4514         test for absolute pathnames.
4515
4516 2001-11-06  Olivier Hainque <hainque@act-europe.fr>
4517
4518         * unwind-dw2.c (execute_cfa_program): Evaluate call frame
4519         instructions up to the target pc inclusive.
4520
4521 2001-11-06  Steve Christiansen  <smc@us.ibm.com>
4522
4523         * loop.c (loop_regs_scan):  Don't invalidate PIC register.
4524
4525 2001-11-06  Eric Christopher  <echristo@redhat.com>
4526
4527         * config/mips/mips.md(movdf_internal2): Add constraints for float
4528         to general register move.
4529         * config/mips/elf64.h: Add default ABI.
4530
4531 2001-11-06  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
4532
4533         * alias.c:: Include langhooks.h.
4534         * emit-rtl.c: Similarly.
4535         * toplev.c: Similarly.
4536         * tree-inline.c: Similarly.
4537         * langhooks-def.h: New, the old langhooks.h.  Give the default
4538         hooks a common prefix.
4539         * langhooks.h: Contents extracted from toplev.h.
4540         * toplev.h: Move langhook stuff to langhooks.h.
4541         * langhooks.c: Give default hooks a common prefix.
4542
4543         * c-lang.c: Include langhooks-def.h.
4544         * objc/objc-act.c: Similarly.
4545         * Makefile.in: Update.
4546         * objc/Make-lang.in: Update.
4547
4548 2001-11-06  Joseph S. Myers  <jsm28@cam.ac.uk>
4549
4550         * doc/install.texi: Document that configure options not listed in
4551         this file are unsupported.  Document --with-system-zlib.
4552
4553 Tue Nov  6 09:21:34 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4554
4555         * rtl.h (mem_for_const_double): New declaration.
4556         * varasm.c (mem_for_const_double): New function.
4557         * config/convex/convex.md (movdf): Use it.
4558         * config/m68k/hp320.h (LEGITIMATE_PIC_OPERAND_P): Likewise.
4559         * config/m68k/linux.h, config/m68k/m68k.h: Likewise.
4560         * config/m68k/m68kv4.h: Likewise.
4561
4562         * config/alpha/alpha.h (SECONDARY_MEMORY_NEEDED): Adjust for addition
4563         of new GP reg classes.
4564
4565         * expr.c (store_field): When making temp object for unaligned
4566         component, set it to alias set 0.
4567
4568 2001-11-06  Joseph S. Myers  <jsm28@cam.ac.uk>
4569
4570         * c-common.c (c_expand_expr_stmt): Apply default conversions to
4571         non-lvalue arrays if C99.
4572         * c-typeck.c (default_conversion): Split out code handling
4573         array-to-pointer and function-to-pointer conversions into a
4574         separate default_function_array_conversion function.
4575         (default_function_array_conversion): New function.  Keep track of
4576         whether any NON_LVALUE_EXPRs were stripped.  Return non-lvalue
4577         arrays unchanged outside C99 mode instead of giving an error for
4578         them.
4579         (build_component_ref): Use pedantic_non_lvalue when handling
4580         COMPOUND_EXPR.  Don't handle COND_EXPR specially.
4581         (convert_arguments): Use default_function_array_conversion.
4582         (build_unary_op): For ADDR_EXPR, take a flag indicating whether
4583         non-lvalues are OK.
4584         (unary_complex_lvalue): Likewise.
4585         (internal_build_compound_expr): Use
4586         default_function_array_conversion.  Apply default conversions to
4587         function in compound expression.
4588         (build_c_cast, build_modify_expr, digest_init, build_asm_stmt):
4589         Use default_function_array_conversion.
4590         * doc/extend.texi: Update documentation of subscripting non-lvalue
4591         arrays.
4592         Fixes PR c/461.
4593
4594 2001-11-05  Zack Weinberg  <zack@codesourcery.com>
4595
4596         * aclocal.m4: (AM_WITH_NLS): Don't look at ALL_LINGUAS.
4597         (AM_GNU_GETTEXT): Set CATALOGS to a list of .gmo files
4598         corresponding to the complete set of .po and .gmo files in
4599         the source directory's po subdir, modified by LINGUAS.  Don't
4600         look at ALL_LINGUAS.
4601         * configure.in: Don't set ALL_LINGUAS.
4602         * configure: Regenerate.
4603
4604         * Makefile.in (.po.gmo): Don't move into source directory.
4605         (.po.pox): Clarify comments.
4606         (install-po): Look for .gmo files in both srcdir and objdir;
4607         don't fail if a file is totally missing.
4608         (distclean): rmdir ada subdirectory too.
4609
4610 2001-11-05  Geoffrey Keating  <geoffk@redhat.com>
4611
4612         * config/rs6000/rs6000.c (rs6000_select_section): Handle
4613         CONSTRUCTORs _correctly_.
4614
4615 2001-11-05  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
4616
4617         * c-decl.c (delete_block): Remove.
4618         * c-tree.h (delete_block): Remove.
4619
4620 2001-11-05  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
4621
4622         * cppexp.c (lex, parse_defined): Update warning about defined.
4623
4624 2001-11-05  Geoffrey Keating  <geoffk@redhat.com>
4625
4626         * config/rs6000/rs6000.c (rs6000_select_section): Handle
4627         CONSTRUCTORs too.
4628
4629 2001-11-05  Nick Clifton  <nickc@cambridge.redhat.com>
4630
4631         * config/arm/arm.c (arm_return_in_memory): Cope with
4632         int_size_in_bytes returning -1.
4633
4634         * config/arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Handle
4635         DECL being NULL.
4636
4637 Mon Nov  5 16:15:25 CET 2001  Jan Hubicka  <jh@suse.cz>
4638
4639         * Makefile.in (bb-reorder.o): Add dependency on cfglayout.h;
4640         remove unneeded dependencies;
4641         (cfglayout.o): New.
4642         * cfglayout.c, cfglayout.h: New files; break out from ...
4643         * bb-reorder.c: ... here; Remove unneeded includes;
4644
4645 2001-11-04  Alan Modra  <amodra@bigpond.net.au>
4646
4647         * config/rs6000/rs6000.md (load_toc_aix_{si,di}): Mark r2 as used.
4648
4649 2001-11-04  David Edelsohn  <edelsohn@gnu.org>
4650
4651         * config/rs6000/rs6000.c (rs6000_emit_move): Handle 64-bit
4652         mode as well.  Do not explicitly create intermediate regs.
4653
4654 2001-11-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4655
4656         * arm/aof.h (aof_text_section, aof_data_section): Don't declare.
4657         (common_section): Delete unused variable.
4658         (ASM_OUTPUT_ASCII): Fix signed/unsigned warnings.
4659         (ASM_GENERATE_INTERNAL_LABEL): Fix format specifier warning.
4660         * arm-protos.h (arm_poke_function_name, aof_add_import,
4661         aof_delete_import): Const-ify.
4662         * arm.c (legitimize_pic_address): Wrap variables in the macro
4663         controlling their usage.
4664         (arm_finalize_pic): Mark variable with ATTRIBUTE_UNUSED.
4665         (arm_poke_function_name, pic_chain, import, aof_add_import,
4666         aof_delete_import): Const-ify.
4667         * i386.c (ix86_osf_output_function_prologue): Const-ify.
4668         * i386/sysv4.h (ASM_OUTPUT_FLOAT, ASM_OUTPUT_DOUBLE,
4669         ASM_OUTPUT_LONG_DOUBLE): Fix format specifier warnings.
4670         * i860/fx2800.h (DBX_OUTPUT_STANDARD_TYPES): Const-ify.
4671         * i860/sysv3.h: Add missing comment closure.
4672         * m68k/apollo68.h (ASM_RETURN_CASE_JUMP): Add missing semi-colon.
4673         * m88k/dgux.h (SELECT_RTX_SECTION): Add missing argument in call
4674         to symbolic_operand.
4675
4676         * config.gcc (m680[02]0-*-*): Rename case from m68000-*-*.
4677         (i960-*-*): Set tmake_file.
4678         (sparc86x-*-elf*): Fix typo in header name.
4679
4680         * sched-rgn.c (schedule_insns): Delete unused variable.
4681
4682 2001-11-04  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
4683
4684         PR c/2820
4685         * c-typeck.c (lookup_field): Rework to return a chain down to
4686         the looked-up field.
4687         (build_component_ref): Use the new lookup_field to handle
4688         nested anonymous entities correctly.
4689
4690 Sun Nov  4 11:53:31 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4691
4692         * config/sparc/sparc.c (sparc_emit_set_const32, GEN_HIGHINT64):
4693         Change parameters to gen_rtx_CONST_DOUBLE.
4694         (GEN_INT64, sparc_emit_set_const64): Likewise.
4695         * config/sparc/sparc.md (movdf split): Likewise.
4696
4697 2001-11-03  Geoffrey Keating  <geoffk@redhat.com>
4698
4699         * unroll.c (calculate_giv_inc): Use find_last_value rather
4700         than just hoping the last instruction is the right SET.
4701         [Fixes 990604-1.c on stormy16.]
4702
4703         * config/stormy16/stormy16.h (LIB_SPEC): Don't supply any libgloss
4704         library at all if -T is used.
4705
4706         * config/stormy16/stormy16.c (stormy16_print_operand): Avoid
4707         some uses of uninitialized variables in error cases.
4708
4709         * config/stormy16/stormy16.c (stormy16_output_shift): Don't
4710         look at 'temp' if we won't be using it.
4711
4712         * config/stormy16/stormy16.h (CONST_COSTS): Define.
4713         (RTX_COSTS): Define.
4714         (ADDRESS_COST): Define.
4715         (MEMORY_MOVE_COST): Allow for memory_move_secondary_cost.
4716
4717         * config/stormy16/stormy16.h (ASM_SPEC): Pass -g to the assembler.
4718
4719         * config/stormy16/stormy16.h (ASM_OUTPUT_MI_THUNK): Call
4720         stormy16_asm_output_mi_thunk.
4721         * config/stormy16/stormy16.c (stormy16_asm_output_mi_thunk): New
4722         function.
4723         * config/stormy16/stormy16-protos.h
4724         (stormy16_asm_output_mi_thunk): New prototype.
4725
4726 2001-11-04  Joseph S. Myers  <jsm28@cam.ac.uk>
4727
4728         * ChangeLog.2, ChangeLog.4, ChangeLog.5, ChangeLog,
4729         FSFChangeLog.10, FSFChangeLog.11, alias.c, attribs.c,
4730         caller-save.c, calls.c, cfg.c, cfganal.c, cfgcleanup.c, cfgrtl.c,
4731         cppmacro.c, fold-const.c, ifcvt.c, local-alloc.c, profile.c,
4732         sched-int.h, toplev.c, config/alpha/alpha.c,
4733         config/alpha/alpha.md, config/c4x/c4x.h, config/cris/cris.h,
4734         config/cris/cris.md, config/i370/i370.md, config/i386/i386.c,
4735         config/i386/i386.h, config/i386/i386.md, config/i386/xm-djgpp.h,
4736         config/ia64/ia64.c, config/m68hc11/m68hc11.c, config/m68k/m68k.md,
4737         config/mcore/mcore.h, config/mmix/mmix.c, config/ns32k/ns32k.h,
4738         config/ns32k/ns32k.md, config/rs6000/rs6000.c,
4739         config/rs6000/sysv4.h, config/sh/sh.md: Fix spelling errors.
4740
4741 2001-11-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4742
4743         * Makefile.in (dbxout.o): Depend on function.h.
4744         * collect2.c (is_in_list): Hide unused function.
4745         * dbxout.c: Include function.h.
4746         (source_label_number, dbxout_source_line, dbxout_source_file,
4747         dbxout_function_end, dbxout_begin_function): Wrap/move inside
4748         macros controlling usage.
4749         * gcc.c (TARGET_EXECUTABLE_SUFFIX): Undef before defining.
4750         * output.h (exports_section): Prototype.
4751
4752         * convex.c (convex_output_function_prologue): Fix format specifier
4753         warning.
4754         (asm_declare_function_name): Fix signed/unsigned warning.
4755         (print_operand): Fix format specifier warning.
4756         * convex.h (S_REGNO_P, A_REGNO_P): Fix signed/unsigned warning.
4757         * dsp16xx-protos.h (uns_comparison_operator,
4758         num_1600_core_shifts): Prototype.
4759         * dsp16xx.c: Include tm_p.h, not dsp16xx-protos.h.
4760         (frame_size, frame_pointer_offset): Delete.
4761         (dsp16xx_output_function_prologue, dsp16xx_output_function_epilogue):
4762         Make static.  Fix format specifier warnings.
4763         * dsp16xx.h (IS_ACCUM_REG): Fix unsigned>=0 warning.
4764         (EXTRA_SECTION_FUNCTIONS): Prototype const_section.
4765         * dsp16xx.md: Add default case in switches.
4766         * fr30.h (IN_RANGE): Delete.
4767         * ia64.h (ASM_OUTPUT_MI_THUNK): Fix format specifier warnings.
4768         * mcore-protos.h (mcore_output_cmov): Const-ify.
4769         * mcore.c (mcore_output_cmov): Likewise.
4770         * mcore.h (switch_to_section): Make static and prototype.
4771         * mn10200.h (REGNO_OK_FOR_INDEX_P, REG_OK_FOR_INDEX_P): Fix
4772         unsigned>=0 warnings.
4773         * mn10300.h (REGNO_IN_RANGE_P): Likewise.
4774         * rs6000-protos.h (read_only_data_section,
4775         read_only_private_data_section): Prototype.
4776         * rs6000.h (ASM_OUTPUT_BYTE): Fix format specifier warning.
4777         * sh.c (sh_adjust_cost): Mark parameter with ATTRIBUTE_UNUSED.
4778         * sh.h (GENERAL_REGISTER_P): Fix unsigned>=0 warning.
4779
4780 2001-11-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4781
4782         * dwarf2asm.c (dw2_asm_output_pcrel): Mark parameters with
4783         ATTRIBUTE_UNUSED.
4784         * final.c (final_scan_insn): Add brackets around body of if-stmt.
4785         * gcc.c (convert_filename): Add static prototype.  Const-ify.
4786         Wrap variable in macros controlling its use.
4787         * output.h (sdata_section): Add prototype.
4788
4789         * 1750a.h (EXTRA_SECTION_FUNCTIONS): Add prototype.
4790         (ASM_OUTPUT_ASCII): Avoid signed/unsigned warning.
4791         * c4x.h (INIT_SECTION_FUNCTION): Add prototype.
4792         (ASM_FILE_START): Const-ify.
4793         (ASM_OUTPUT_BYTE_FLOAT, ASM_OUTPUT_SHORT_FLOAT): Fix format
4794         specifier warning.
4795         * c4x.md: Don't use the 'U' integer suffix.
4796         * clipper.md (clipper_movstr): Delete declaration.
4797         * d30v-protos.h (d30v_move_2words): Const-ify.
4798         (debug_stack_info): Add prototype.
4799         * d30v.c: Include "integrate.h".
4800         (d30v_function_arg_boundary, d30v_function_arg,
4801         d30v_function_arg_partial_nregs, d30v_function_arg_advance): Avoid
4802         signed/unsigned warnings.
4803         (d30v_print_operand_memory_reference, d30v_move_2words):
4804         Const-ify.
4805         * d30v.h (REG_CLASS_FROM_LETTER): Use unsigned array subscript.
4806         * fr30.c (fr30_pass_by_reference, fr30_pass_by_value): Prototype.
4807         * fr30.md: Const-ify.
4808         * h8300.h (EXTRA_SECTION_FUNCTIONS): Add prototype.
4809         * i370.c (i370_label_scan, mvs_get_label): Make definition static.
4810         (mvs_get_label_page): Hide unused static function.
4811         * i860.c (current_function_original_name): Const-ify.
4812         * i860/sysv3.h (current_function_original_name): Likewise.
4813         * i860/sysv4.h (current_function_original_name): Likewise.
4814         * i960.md: Add default case in switches.  Remove unused variable.
4815         * i960/vx960-coff.h (MULTILIB_DEFAULTS): Undef before defining.
4816         * m32r.md: Const-ify.
4817         * m68hc11-protos.h (m68hc11_asm_file_start): Const-ify.
4818         * m68hc11.c: Include "reload.h".
4819         (static_chain_reg, print_options, m68hc11_asm_file_start):
4820         Const-ify.
4821         * m68hc11.md: Delete unused variable.  Const-ify.  Add parens
4822         around & in comparison.
4823         * mcore.h (TARGET_ASM_NAMED_SECTION): Undef before defining.
4824         * mn10200.c (shift_mode): Remove trailing comma.
4825         * mn10300-protos.h (output_tst): Const-ify.
4826         * mn10300.c (output_tst): Likewise.
4827         * pa/long_double.h (ASM_OUTPUT_LONG_DOUBLE): Fix format specifier
4828         warnings.
4829         * pa-protos.h (output_ascii): Use regular char *, not unsigned.
4830         * pa.c (output_ascii): Likewise.
4831         * pa/som.h (EXTRA_SECTION_FUNCTIONS): Add prototype.
4832         * pdp11.md (expand_unop): Delete declarations.
4833         * pj-protos.h (pj_output_addsi3): Const-ify.
4834         * pj.c (pj_output_push_int, pj_output_load, pj_output_inc,
4835         pj_output_cnv_op, mode_to_char, pj_output_varidx, pj_print_cond,
4836         unique_src_operand): Add prototypes.
4837         (pj_output_store_into_lval): Make definition static.
4838         (pj_function_incoming_arg): Don't use unary plus.
4839         (pj_output_addsi3): Const-ify.
4840         * romp.md (get_symref): Delete declarations.
4841         * v850-c.c (mark_current_function_as_interrupt): Don't return
4842         value from void function.
4843         * v850.c: Include "integrate.h".
4844         * v850.h (ASM_OUTPUT_LABELREF): Const-ify.
4845         * vax-protos.h (const_section): Add prototype.
4846
4847 2001-11-03  Aldy Hernandez  <aldyh@redhat.com>
4848
4849         * machmode.def: Add documentation for the seventh argument in
4850         vector modes.
4851
4852 2001-11-04  Hans-Peter Nilsson  <hp@bitrange.com>
4853
4854         * doc/invoke.texi (MMIX Options) <-mno-knuthdiv>: Say remainder
4855         consistently.
4856         <-mno-toplevel-symbols>: Change @code{:} to @samp{:}.
4857         <-melf>: Don't have markup for ELF acronym.
4858
4859 2001-11-03  Hans-Peter Nilsson  <hp@bitrange.com>
4860
4861         * config.gcc (mmix-*-*): New target.
4862         * doc/invoke.texi: Document MMIX options.
4863         * doc/contrib.texi: Add note about MMIX port to my entry.
4864         * config/mmix/t-mmix: New file.
4865         * config/mmix/mmix.h: New file.
4866         * config/mmix/mmix-protos.h: New file.
4867         * config/mmix/mmix.c: New file.
4868         * config/mmix/mmix.md: New file.
4869         * config/mmix/crti.asm: New file.
4870         * config/mmix/crtn.asm: New file.
4871
4872 2001-11-03  Kazu Hirata  <kazu@hxi.com>
4873
4874         * config/sparc/linux-aout.h: Fix comment formatting.
4875         * config/sparc/linux.h: Likewise.
4876         * config/sparc/linux64.h: Likewise.
4877         * config/sparc/lynx.h: Likewise.
4878         * config/sparc/pbd.h: Likewise.
4879         * config/sparc/sol2-sld-64.h: Likewise.
4880         * config/sparc/sol2.h: Likewise.
4881         * config/sparc/sparc.c: Likewise.
4882         * config/sparc/sparc.h: Likewise.
4883         * config/sparc/sparc.md: Likewise.
4884         * config/sparc/sunos4.h: Likewise.
4885         * config/sparc/vxsim.h: Likewise.
4886         * config/sparc/vxsparc.h: Likewise.
4887         * config/sparc/vxsparc64.h: Likewise.
4888
4889 Sat Nov  3 10:37:56 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4890
4891         * cselib.c (cselib_subst_to_values, case CONST_DOUBLE): Remove
4892         reference to CONST_DOUBLE_MEM in comment.
4893         * emit-rtl.c (gen_rtx_CONST_DOUBLE): Remove one operand.
4894         (gen_rtx, case CONST_DOUBLE): Call it with one less operand.
4895         (init_emit_once): Don't clear CONST_DOUBLE_MEM.
4896         * function.c (pop_function_context_from): Don't call
4897         restore_varasm_status.
4898         * function.h (restore_varasm_status): Delete declaration.
4899         * gengenrtl.c (CONST_DOUBLE_FORMAT): Delete CONST_DOUBLE_MEM slot.
4900         * rtl.c: Likewise.
4901         * rtl.def (CONST_DOUBLE): Update comment.
4902         * rtl.h (CONST_DOUBLE_HIGH, CONST_DOUBLE_LOW): Update operand number.
4903         (CONST_DOUBLE_CHAIN): Likewise.
4904         (CONST_DOUBLE_MEM): Delete.
4905         (gen_rtx_CONST_DOUBLE): Update parameters.
4906         * varasm.c (struct varasm_status): x_pool_offset now HOST_WIDE_INT.
4907         Remove reference to CONST_DOUBLE_MEM.
4908         (const_alias_set): New variable.
4909         (immed_double_const): Change call to gen_rtx_CONST_DOUBLE.
4910         (immed_real_const_1): Adjust tests for 0, 1, and 2.
4911         Don't set CONST_DOUBLE_MEM.
4912         (clear_const_double_mem): Don't do anything with const_tiny_rtx.
4913         (output_constant_def): Don't look at TREE_CST_RTL if INTEGER_CST.
4914         Put constant in const_alias_set.
4915         (struct pool_constant): ALIGN now unsigned.
4916         OFFSET now HOST_WIDE_INT.
4917         Delete LABEL.
4918         (restore_varasm_status): Deleted.
4919         (mark_pool_constant): Mark desc->rtl.
4920         (force_const_mem): Rework to store rtl in hash table,
4921         not CONST_DOUBLE_MEM.
4922         Put constant in const_alias_set.
4923         (find_pool_constant): Check desc->rtl.
4924         (mark_constants, mark_constant): Don't special-case CONST_DOUBLE.
4925         (init_varasm_once): Initialize const_alias_set.
4926
4927         * expr.c (expand_expr, case ADDDR_EXPR): If at top level, don't call
4928         force_const_mem.
4929
4930         * reload.c (combine_reloads): Don't combine an output reload if there
4931         are other reloads around for part of the output.
4932
4933         * emit-rtl.c (set_mem_attributes): Set RTX_UNCHANGINGP_P if T is a
4934         constant expression.
4935         (set_mem_decl): New function.
4936         * expr.h (set_mem_decl): New declaration.
4937         * final.c (get_decl_from_op): Don't use ORIGINAL_REGNO if not pseudo.
4938         (output_asm_operand_names): Add tab.
4939         * reload1.c (alter_reg): Set decl of MEM from REG_DECL.
4940
4941         * builtins.c (get_memory_rtx): Properly set MEM alias set and
4942         attributes.
4943
4944 2001-11-03  Joseph S. Myers  <jsm28@cam.ac.uk>
4945
4946         * doc/extend.texi, doc/gcc.texi, doc/install.texi, doc/tm.texi:
4947         Use "invalid" instead of "illegal".  Use @r in comments in
4948         examples.
4949
4950 2001-11-02  Neil Booth  <neil@daikokuya.demon.co.uk>
4951
4952         * c-decl.c (pushdecl): Move block inside if conditional to remove
4953         possibility of a segfault.  Lookup block-level extern
4954         variables in enclosing scopes correctly.
4955
4956         * testsuite/gcc.c-torture/compile/20001018-1.x: Remove XFAIL.
4957
4958 2001-11-02  Aldy Hernandez  <aldyh@redhat.com>
4959
4960         * expmed.c (store_bit_field): Use simplify_gen_subreg to make
4961         SUBREG so we avoid SUBREGing memory.
4962
4963         * expmed.c (store_bit_field): Same.
4964
4965 2001-11-02  DJ Delorie  <dj@redhat.com>
4966
4967         * config/rs6000/rs6000.c (rs6000_emit_move): Make sure that
4968         using FP registers for DImode mem-mem moves is acceptable.
4969
4970 2001-11-02  Aldy Hernandez  <aldyh@redhat.com>
4971
4972         * builtins.c (apply_args_size): Handle vector arguments.
4973         (apply_result_size): Same.
4974
4975         * machmode.def: Set WIDER mode field for all vector entries.
4976
4977 2001-11-02  Graham Stott  <grahams@redhat.com>
4978
4979         * recog.c (decode_asm_operands):  Check that the SRC is ASM_OPERANDS.
4980
4981 2001-11-01  Eric Christopher  <echristo@redhat.com>
4982
4983         * config.gcc: Revert part of earlier patch.
4984         * config/mips/linux.h: Ditto.
4985         * df.c: Include tm_p.h to avoid warnings.
4986         * config/mips/mips.h (ABI_GAS_ASM_SPEC): Add defaults.  Adjust
4987         #if/#endif.
4988         * config/mips/mips.c: Define mips_abi regardless.
4989         (mips_output_function_prologues): Add long casts for .frame
4990         output.
4991         (override_options): Allow use of ABI_32.
4992
4993 2001-11-01  Kazu Hirata  <kazu@hxi.com>
4994
4995         * config/m68hc11/m68hc11.c: Fix comment formatting.
4996         * config/m68hc11/m68hc11.h: Likewise.
4997         * config/m68hc11/m68hc11.md: Likewise.
4998
4999 2001-11-01  Neil Booth  <neil@daikokuya.demon.co.uk>
5000
5001         * c-typeck.c (default_conversion): Retain the original expression
5002         codes.
5003         * gcc.dg/Wparentheses.c: New tests.
5004
5005 2001-11-01  David S. Miller  <davem@redhat.com>
5006
5007         * doc/install.texi (Specific, sparc-sun-solaris2*): Bring
5008         64-bit Sparc description more in line with reality.
5009
5010 2001-11-01  Joseph S. Myers  <jsm28@cam.ac.uk>
5011
5012         * Makefile.in (GCOV_OBJS): Add version.o.
5013         * gcov.c: Include "version.h" and <getopt.h>.
5014         (gcov_version_string): Remove.
5015         (print_usage): Take a parameter to determine whether this is a
5016         call from --help or an error message.  Give fuller output that
5017         follows the GNU Coding Standards for --help.
5018         (print_version): New function.
5019         (options): New.
5020         (process_args): Use getopt_long.  Support long options.  Follow
5021         GNU Coding Standards for --help and --version.
5022         * doc/gcov.texi: Document long options.
5023         Addresses part of PR other/704.
5024
5025 2001-11-01  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5026
5027         * pa.c (output_move_double): Fix typo in double load.
5028
5029 2001-11-01  Kazu Hirata  <kazu@hxi.com>
5030
5031         * config/h8300/h8300.c (h8300_encode_label): Compute a string
5032         before passing it to ggc_alloc_string.
5033
5034 2001-11-01  Kazu Hirata  <kazu@hxi.com>
5035
5036         * config/m68k/3b1.h: Fix comment formatting.
5037         * config/m68k/3b1g.h: Likewise.
5038         * config/m68k/a-ux.h: Likewise.
5039         * config/m68k/amix.h: Likewise.
5040         * config/m68k/apollo68.h: Likewise.
5041         * config/m68k/atari.h: Likewise.
5042         * config/m68k/aux-exit.c: Likewise.
5043         * config/m68k/ccur-GAS.h: Likewise.
5044         * config/m68k/crds.h: Likewise.
5045         * config/m68k/dpx2.h: Likewise.
5046         * config/m68k/dpx2g.h: Likewise.
5047         * config/m68k/hp310.h: Likewise.
5048         * config/m68k/hp320.h: Likewise.
5049         * config/m68k/isi.h: Likewise.
5050         * config/m68k/linux.h: Likewise.
5051         * config/m68k/lynx.h: Likewise.
5052         * config/m68k/m68k-psos.h: Likewise.
5053         * config/m68k/m68k.c: Likewise.
5054         * config/m68k/m68k.h: Likewise.
5055         * config/m68k/m68k.md: Likewise.
5056         * config/m68k/m68kelf.h: Likewise.
5057         * config/m68k/m68kv4.h: Likewise.
5058         * config/m68k/mot3300.h: Likewise.
5059         * config/m68k/news.h: Likewise.
5060         * config/m68k/next.h: Likewise.
5061         * config/m68k/pbb.h: Likewise.
5062         * config/m68k/plexus.h: Likewise.
5063         * config/m68k/sgs.h: Likewise.
5064         * config/m68k/sun3.h: Likewise.
5065         * config/m68k/tower.h: Likewise.
5066         * config/m68k/vxm68k.h: Likewise.
5067
5068 2001-10-31  DJ Delorie  <dj@redhat.com>
5069
5070         * config/mips/mips.h (mips_cache_flush_func): Prototype.
5071         (TARGET_OPTIONS): Support -mflush-func= and -mno-flush-func.
5072         (INITIALIZE_TRAMPOLINE): Use mips_cache_flush_func if nonzero.
5073         * config/mips/mips.c (mips_cache_flush_func): New.
5074         * doc/invoke.texi: Document the new options.
5075
5076 2001-10-31  Hans-Peter Nilsson  <hp@axis.com>
5077
5078         * config.gcc (cris-*-linux*, tm_file): Rearrange order.
5079         * config/cris/linux.h (LIB_SPEC, STARTFILE_SPEC): Don't redefine.
5080
5081         * config/cris/cris.h (EH_RETURN_DATA_REGNO): Fix formatting.
5082
5083         * config/cris/cris.c: Include output.h after tree.h but before
5084         target.h.
5085
5086 2001-10-31  Zack Weinberg  <zack@codesourcery.com>
5087
5088         * Makefile.in (INTL_TARGETS, POSUB): Delete all references.
5089         (INTL_SUBDIRS): Just intl.
5090         (.SUFFIXES): Add .gmo .po .pox.
5091         (native): Also depend on build-@POSUB@.
5092         (intl.all, intl.install): Depend on config.h and things it includes.
5093         (po-generated): New target; depend on c-parse.c and tradcif.c.
5094         (install-normal): Also depend on install-@POSUB@.
5095         (XGETTEXT, GMSGFMT, MSGMERGE, PACKAGE, CATALOGS): New variables.
5096         (build-, install-, build-po, update-po, install-po,
5097         .po.gmo, .po.pox, $(PACKAGE).pot, po/$(PACKAGE).pot): New rules.
5098
5099         * aclocal.m4: Prefix each entry in CATALOGS with "po/"
5100         * configure.in: Don't munge XGETTEXT.  Don't generate
5101         po/Makefile.in.
5102         * configure: Regenerate.
5103
5104         * exgettext: Delete.
5105         * config/m68k/m68k.h: Add doc strings for -msky and -mnosky.
5106         * objc/Make-lang.in: Replace $(INTL_TARGETS) with po-generated.
5107
5108 2001-10-31  Kazu Hirata  <kazu@hxi.com>
5109
5110         * config/h8300/h8300.md (two anonymous patterns): New.
5111
5112 2001-10-31  Aldy Hernandez  <aldyh@redhat.com>
5113
5114         * tree.h (tree_index): Add support for V16QI and V8HI.
5115         (V8HI_type_node): New.
5116         (V16QI_type_node): New.
5117
5118         * tree.c (build_common_tree_nodes_2): Same.
5119
5120         * c-common.c (type_for_mode): Same.
5121
5122 2001-10-31  Kazu Hirata  <kazu@hxi.com>
5123
5124         * config/i386/att.h: Fix comment formatting.
5125         * config/i386/beos-elf.h: Likewise.
5126         * config/i386/bsd.h: Likewise.
5127         * config/i386/bsd386.h: Likewise.
5128         * config/i386/crtdll.h: Likewise.
5129         * config/i386/cygwin.asm: Likewise.
5130         * config/i386/cygwin.h: Likewise.
5131         * config/i386/djgpp.h: Likewise.
5132         * config/i386/freebsd-aout.h: Likewise.
5133         * config/i386/freebsd.h: Likewise.
5134         * config/i386/gas.h: Likewise.
5135         * config/i386/i386-interix.h: Likewise.
5136         * config/i386/i386-protos.h: Likewise.
5137         * config/i386/i386.c: Likewise.
5138         * config/i386/i386.h: Likewise.
5139         * config/i386/i386.md: Likewise.
5140         * config/i386/i386elf.h: Likewise.
5141         * config/i386/interix.c: Likewise.
5142         * config/i386/isc.h: Likewise.
5143         * config/i386/isccoff.h: Likewise.
5144         * config/i386/iscdbx.h: Likewise.
5145         * config/i386/linux.h: Likewise.
5146         * config/i386/lynx.h: Likewise.
5147         * config/i386/mingw32.h: Likewise.
5148         * config/i386/netbsd-elf.h: Likewise.
5149         * config/i386/next.h: Likewise.
5150         * config/i386/osf1elf.h: Likewise.
5151         * config/i386/osfrose.h: Likewise.
5152         * config/i386/sco5.h: Likewise.
5153         * config/i386/seq-gas.h: Likewise.
5154         * config/i386/seq-sysv3.h: Likewise.
5155         * config/i386/sequent.h: Likewise.
5156         * config/i386/sol2.h: Likewise.
5157         * config/i386/sun386.h: Likewise.
5158         * config/i386/uwin.asm: Likewise.
5159         * config/i386/uwin.h: Likewise.
5160         * config/i386/vxi386.h: Likewise.
5161         * config/i386/win32.h: Likewise.
5162         * config/i386/winnt.c: Likewise.
5163         * config/i386/xm-cygwin.h: Likewise.
5164         * config/i386/xm-mingw32.h: Likewise.
5165
5166 2001-10-31  Kazu Hirata  <kazu@hxi.com>
5167
5168         * builtins.def: Fix comment typos.
5169         * config/alpha.c: Likewise.
5170         * config/arm/arm.c: Likewise.
5171         * config/avr/avr.h: Likewise.
5172         * config/d30v/d30v.c: Likewise.
5173         * config/d30v/d30v.h: Likewise.
5174         * config/d30v/d30v.md: Likewise.
5175         * config/dsp16xx/dsp16xx.c: Likewise.
5176         * config/fr30/fr30.c: Likewise.
5177         * config/fr30/fr30.md: Likewise.
5178         * config/i386/i386.c: Likewise.
5179         * config/i860/i860.c: Likewise.
5180         * config/i960/i960.c: Likewise.
5181         * config/ia64/ia64.c: Likewise.
5182         * config/mips/mips.c: Likewise.
5183         * config/pa/pa.c: Likewise.
5184         * config/rs6000/rs6000.c: Likewise.
5185         * config/s390/s390.c: Likewise.
5186         * config/sparc/sparc.c: Likewise.
5187
5188 2001-10-30  Kazu Hirata  <kazu@hxi.com>
5189
5190         * config/mips/elf.h: Fix comment formatting.
5191         * config/mips/elf64.h: Likewise.
5192         * config/mips/iris5.h: Likewise.
5193         * config/mips/iris5gas.h: Likewise.
5194         * config/mips/iris6.h: Likewise.
5195         * config/mips/isa3264.h: Likewise.
5196         * config/mips/linux.h: Likewise.
5197         * config/mips/mips.c: Likewise.
5198         * config/mips/mips.h: Likewise.
5199         * config/mips/mips.md: Likewise.
5200         * config/mips/mips16.S: Likewise.
5201         * config/mips/netbsd.h: Likewise.
5202         * config/mips/osfrose.h: Likewise.
5203         * config/mips/r3900.h: Likewise.
5204         * config/mips/sni-svr4.h: Likewise.
5205         * config/mips/svr4-t.h: Likewise.
5206         * config/mips/ultrix.h: Likewise.
5207
5208 2001-10-30  Daniel Berlin  <dan@cgsoftware.com>
5209
5210         * bitmap.c (bitmap_element_free): Don't forget to update head->indx
5211         when we update head->current.
5212
5213 2001-10-30  Neil Booth  <neil@daikokuya.demon.co.uk>
5214
5215         * tree.c (id_string_size): Remove.
5216         (dump_tree_statistics): Update.
5217         * toplev.c (compile_file): If dumping stats, dump tree stats too.
5218
5219 Tue Oct 30 19:00:43 CET 2001  Jan Hubicka  <jh@suse.cz>
5220
5221         * sched-rgn.c (schedule_insns): Fix comment.
5222
5223 2001-10-30  Zack Weinberg  <zack@codesourcery.com>
5224
5225         * configure.in: Correct previous change: don't assume that
5226         gas's version number _isn't_ the last thing on the line, or
5227         isn't the only number on the line, either.
5228         * configure: Regenerate.
5229
5230 2001-10-30  Kazu Hirata  <kazu@hxi.com>
5231
5232         * cfgcleanup.c: Fix a comment typo.
5233
5234 2001-10-30  Kazu Hirata  <kazu@hxi.com>
5235
5236         * alias.c: Fix comment formatting.
5237         * recog.c: Likewise.
5238         * config/cris/cris.c: Likewise.
5239         * config/cris/cris.h: Likewise.
5240         * config/i960/i960.c: Likewise.
5241         * config/i960/i960.h: Likewise.
5242
5243 2001-10-30  Kazu Hirata  <kazu@hxi.com>
5244
5245         * config/arm/arm.c: Fix a comment typo.
5246         * config/arm/arm.h: Likewise.
5247         * config/ia64/ia64.c: Likewise.
5248
5249 2001-10-30  Jakub Jelinek  <jakub@redhat.com>
5250
5251         * emit-rtl.c (set_unique_reg_note): Don't create REG_EQUAL or
5252         REG_EQUIV notes for ASM_OPERANDS.  Return the new note (if any).
5253         * rtl.h (set_unique_reg_note): Change return value.
5254         * gcse.c (try_replace_reg): Use set_unique_reg_note.
5255         * cse.c (cse_insn): Likewise.
5256         * expr.c (emit_move_insn): Likewise.
5257         * explow.c (force_reg): Likewise.
5258         * local-alloc (update_equiv_regs): Likewise.
5259         * loop.c (move_moveables, load_mems): Likewise.
5260         * reload (find_reloads): Likewise.
5261
5262 2001-10-30  Paolo Bonzini  <bonzini@gnu.org>
5263
5264         Localization fixes.
5265         * c-decl.c (parmlist_tags_warning, start_struct,
5266         check_for_loop_decls): Separate messages for struct, union and
5267         enum cases to allow for languages in which they have different
5268         genders.
5269         * c-format.c (scanf_flag_specs): Separate short and long name of
5270         the assignment suppression feature.
5271         (check_format_types): Localize "pointer" and "different types"
5272         strings.
5273         * c-lex.c (lex_number): Localize "an unsigned long int" and
5274         related strings.
5275         (lex_string) [MULTIBYTE_CHARS]: Use initial lowercase letter on
5276         warning message.
5277         * c-typeck.c (build_unary_up): Separate messages for increment and
5278         decrement cases to allow for languages in which they use different
5279         articles.  Localize the strings "increment" and "decrement" in one
5280         case.
5281
5282 Tue Oct 30 11:08:11 CET 2001  Jan Hubicka  <jh@suse.cz>
5283
5284         * lcm.c (optimize_mode_switching):  Do not rebuild liveness information
5285         when no changes has been made.
5286
5287         * gcse.c (reg_set_bitmap): Turn into reg_set.
5288         (modify_mem_list_set, canon_modify_mem_list_set)
5289         (clear_modify_mem_tables, free_modify_mem_tables): New.
5290         (gcse_main); Use free_modify_mem_tables.
5291         (free_gcse_mem): Likewise; free the bitmaps.
5292         (alloc_gcse_main): Initialize the bitmaps.
5293         (canon_list_insert): Set canon_modify_mem_list_set.
5294         (record_last_mem_set_info): Likewise; set modify_mem_list_set.
5295         (compute_hash_table): Use clear_modify_mem_tables.
5296         (reset_opr_set_tables): Likewise.
5297         (oprs_not_set_p): reg_set_bitmap is regset.
5298         (mark_set, mark_clobber): Likewise.
5299
5300         * df.h (DF_EQUIV_NOTES): New constant.
5301         (df_insn_refs_record): Record uses inside or REG_EQUIV/EQUAL notes
5302         when asked for.
5303
5304         * sched-rgn.c (CHECK_DEAD_NOTES): New constant.
5305         (init_regions, schedule_insns): Conditionalize the checking
5306         code by CHECK_DEAD_NOTES; avoid multiple calls to update_life_info.
5307
5308 Tue Oct 30 11:02:31 CET 2001  Jan Hubicka  <jh@suse.cz>
5309
5310         * i386.md (movti_rex64 splitter): Fix condition.
5311
5312 2001-10-29  Zack Weinberg  <zack@codesourcery.com>
5313
5314         * configure.in: Do not assume that gas's version number is the
5315         last thing on the first line of as --version output.
5316         * configure: Regenerate.
5317
5318         * tradcpp.c: Include intl.h.  Rename WARNING, ERROR, FATAL to
5319         MT_WARNING, MT_ERROR, MT_FATAL.
5320         (main): Call gcc_init_libintl.
5321         (v_message): Call gettext on msgid and "warning: "
5322         * tradcif.y: Include intl.h.
5323         (yyerror): Make parameter definition consistent with
5324         prototype.  Call gettext on msgid argument.
5325
5326 2001-10-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5327
5328         * combine.c (num_sign_bit_copies): Avoid signed/unsigned
5329         warnings.
5330
5331         * sparc/sol2.h: Include <sys/mman.h> when L_trampoline is defined.
5332
5333 Mon Oct 29 19:22:07 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5334
5335         * reload1.c (eliminate_regs): Test for reg_renumber being allocated
5336         before referencing it.
5337
5338 2001-10-26  DJ Delorie  <dj@redhat.com>
5339
5340         * config/rs6000/sysv4.h (LINK_SPEC): Allow -msdata=none to
5341         override -G, and force -G0.
5342
5343 2001-10-29  Joseph S. Myers  <jsm28@cam.ac.uk>
5344
5345         * ChangeLog.2, ChangeLog.3, ChangeLog.4, FSFChangeLog.10,
5346         FSFChangeLog.11, c-common.c, c-common.def, c-common.h, c-decl.c,
5347         c-dump.c, c-typeck.c, except.c, sdbout.c, simplify-rtx.c,
5348         timevar.h, tree.h, varasm.c: Fix spelling errors and typos.
5349
5350         * loop.h (struct induction): Rename ext_dependant to
5351         ext_dependent.
5352         * loop.c: Change all uses.
5353         (check_ext_dependant_givs): Rename to check_ext_dependent_givs.
5354         All callers changed.
5355         * timevar.c (DEFTIMEVAR): Fix spelling of identifier__ parameter.
5356
5357 2001-10-29  Joseph S. Myers  <jsm28@cam.ac.uk>
5358
5359         * c-parse.in (expr_no_commas, primary), c-typeck.c
5360         (parser_build_binary_op): Use IS_EXPR_CODE_CLASS.
5361
5362 2001-10-29  David Edelsohn  <edelsohn@gnu.org>
5363
5364         Undo assemble_name change in earlier patch.
5365
5366 Mon Oct 29 21:11:40 2001  Nicola Pero  <n.pero@mi.flashnet.it>
5367
5368         * objc/objc-act.c (finish_message_expr): For the GNU runtime: when
5369         determining the type of the receiver, do not check that TREE_CODE
5370         of receiver is CALL_EXPR before calling receiver_is_class_object().
5371         (receiver_is_class_object): For the GNU runtime: recognize
5372         the case that the receiver is self in a class method context.
5373         Check that TREE_CODE of receiver is CALL_EXPR when checking that
5374         the receiver is a call to objc_get_class.
5375
5376 2001-10-29  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5377
5378         * pa.md (floatunssisf2): Set subreg 0 of operand 2 to zero.
5379
5380 Mon Oct 29 07:23:33 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5381
5382         * Makefile.in (OBJS): Put all files in alphabetical order.
5383
5384         * dwarf2out.c (add_const_value_attribute): Fix error in last
5385         change.
5386
5387 Mon Oct 29 12:43:06 CET 2001  Jan Hubicka  <jh@suse.cz>
5388
5389         * basic-block.h (purge_all_dead_edges): Add update_life_p argument.
5390         * cfgcleanup.c (merge_blocks): Update the life flag after merging;
5391         fix warning.
5392         * cfgrtl.c (purge_all_dead_edges): Allow updating of liveness.
5393         (life_analysis): call purge_all_dead_edges after deleting noops.
5394         (delete_noop_move): Do not purge CFG.
5395         * toplev.c (rest_of_compilation): Update purge_all_dead_edges call.
5396
5397 2001-10-28  David Edelsohn  <edelsohn@gnu.org>
5398
5399         * config/rs6000/aix31.h (ASM_OUTPUT_EXTERNAL): Use assemble_name.
5400         * config/rs6000/darwin.h (RS6000_OUTPUT_BASENAME): Delete.
5401         (ASM_GLOBALIZE_LABEL): Use assemble_name.
5402         (ASM_OUTPUT_COMMON): Likewise.
5403         * config/rs6000/rs6000.c (print_operand): Use assemble_name.
5404         (rs6000_output_function_epilogue): Likewise.
5405         (output_mi_thunk): Fix typo.
5406         (rs6000_output_symbol_ref): Use assemble_name.
5407         (output_toc): Likewise.
5408         * config/rs6000/sysv4.h (RS6000_OUTPUT_BASENAME): Delete.
5409         * config/rs6000/xcoff.h (RS6000_OUTPUT_BASENAME): Delete;
5410         assemble_name calls STRIP_NAME_ENCODING.
5411         (ASM_OUTPUT_LABEL): Use assemble_name.
5412         (ASM_GLOBALIZE_LABEL): Likewise.
5413         (ASM_DECLARE_FUNCTION_NAME): Likewise.
5414         (ASM_OUTPUT_ALIGNED_COMMON): Indent pseudo-op.  Use assemble_name.
5415         (ASM_OUTPUT_LOCAL): Likewise.
5416
5417 Sun Oct 28 15:45:16 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5418
5419         * builtins.c (get_memory_rtx): Handle POINTERS_EXTEND_UNSIGNED case.
5420         (expand_builtin_apply, expand_builtin_return): Likewise.
5421         (expand_builtin_va_arg, expand_builtin_va_copy): Likewise.
5422
5423 2001-10-28  Joseph S. Myers  <jsm28@cam.ac.uk>
5424
5425         * ChangeLog.0, ChangeLog.1, ChangeLog.2, ChangeLog.3, ChangeLog.4,
5426         ChangeLog.5, ChangeLog, FSFChangeLog.10, FSFChangeLog.11,
5427         c-common.c, c-common.h, c-parse.in, c-typeck.c, cfg.c, config.gcc,
5428         configure, configure.in, except.c, except.h, flow.c, function.c,
5429         gcc.c, gcse.c, genrecog.c, libgcc2.c, loop.c, loop.h, params.def,
5430         predict.def, predict.h, reg-stack.c, regmove.c, sched-deps.c,
5431         sched-int.h, sibcall.c, ssa.c, stringpool.c, toplev.c, tree.c,
5432         unroll.c: Fix spelling errors.
5433
5434         * doc/extend.texi, doc/invoke.texi: Fix spelling.
5435
5436         * doc/gcc.texi: Document use of "dependent" and American spelling.
5437
5438 Sun Oct 28 17:05:36 CET 2001  Jan Hubicka  <jh@suse.cz>
5439
5440         * expr.c (emit_group_load): Support CONCATs by storing them to memory
5441         and reloading.
5442
5443 Sun Oct 28 09:59:54 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5444
5445         * expr.c (store_constructor_field): Only call adjust_address on MEM.
5446
5447 Sun Oct 28 16:48:09 CET 2001  Jan Hubicka  <jh@suse.cz>
5448
5449         * genrecog.c (write_switch):  Output if before switch for
5450         DT_elt_zero_wide_safe.
5451
5452 2001-10-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5453
5454         * Makefile.in (toplev.o, halfpic.o): Depend on halfpic.h
5455         * i386/osfrose.h (SUBTARGET_SWITCHES): Add missing comma.
5456         (FUNCTION_PROFILER): Const-ify.
5457         * halfpic.c: Include "expr.h", "output.h" and "halfpic.h".
5458         (eliminate_constant_term, assemble_name, output_addr_const):
5459         Remove declarations.
5460         (ptr_half_pic_address_p, half_pic_hash): Prototype.
5461         (all_refs, half_pic_prefix, half_pic_hash, half_pic_declare,
5462         half_pic_external, half_pic_address_p, half_pic_ptr): Const-ify.
5463         * halfpic.h (ptr_half_pic_address_p, half_pic_finish): Prototype.
5464         (half_pic_declare, half_pic_external): Const-ify.
5465         * toplev.c: Include "halfpic.h".
5466
5467 2001-10-28  Joseph S. Myers  <jsm28@cam.ac.uk>
5468
5469         * config/alpha/alpha.md, config/arm/arm.c, config/arm/arm.h,
5470         config/d30v/d30v.h, config/fr30/fr30.c, config/i370/x-oe,
5471         config/i386/i386.c, config/i386/i386-interix.h,
5472         config/i386/i386.md, config/i386/i386.h, config/i386/sco5.h,
5473         config/i860/i860.h, config/i860/i860.md, config/m68k/aux-exit.c,
5474         config/m68k/m68k.c, config/mcore/mcore.c, config/mips/mips.md,
5475         config/ns32k/ns32k.h, config/pa/pa.c, config/rs6000/rs6000.c,
5476         config/sparc/sparc.c, config/m68hc11/m68hc11.c,
5477         config/cris/cris.c, config/cris/cris.h, config/s390/s390.c,
5478         config/s390/s390.h, config/stormy16/stormy16.h, doc/tm.texi: Fix
5479         spelling errors.
5480
5481         * ChangeLog.0, ChangeLog.1, ChangeLog.2, ChangeLog.3, ChangeLog.4,
5482         ChangeLog.5, ChangeLog, ChangeLog.lib, FSFChangeLog.10, ONEWS,
5483         c-common.c, caller-save.c, cfg.c, cfgcleanup.c, cfgrtl.c,
5484         collect2.c, df.h, diagnostic.h, final.c, gcse.c, gthr.h,
5485         haifa-sched.c, jump.c, local-alloc.c, profile.c, protoize.c,
5486         regmove.c, reload1.c, rtlanal.c, sched-vis.c, ssa.c, stmt.c,
5487         system.h, toplev.c: Fix spelling errors.
5488
5489 Sat Oct 27 17:32:04 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5490
5491         * gcse.c (insert_insn_end_bb): Don't assume PAT is a SET.
5492
5493         * dwarf2out.c (reg_number): Abort if pseudo.
5494         (reg_loc_descriptor): Return 0 if pseudo.
5495         (is_based_loc): Return 0 if pseudo.
5496         (mem_loc_descriptor): Return 0 for pseudo and handle 0 return from
5497         recursive calls.
5498         (concat_loc_descriptor): Return 0 if either part's descriptor is 0.
5499         (loc_descriptor): Return 0 if can't find location and handle 0
5500         return from recursive calls.
5501         (loc_descriptor_from_tree): Likewise.
5502         Fix handling of indirect.
5503         Also return 0 for PLACEHOLDER_EXPR.
5504         Clean up COMPONENT_REF cases.
5505         (add_AT_location_descriptor): Simplify, but handle 0 return from
5506         loc_descriptor.
5507         (add_const_value_attribute): Avoid shift count warning.
5508         (add_bound_info): Remove test for PLACEHOLDER_EXPR here.
5509         Set comp_unit_die as context if not in function.
5510
5511         * config/mips/mips-protos.h: Break up long lines.
5512         Remove needless #ifdef/#endif blocks.
5513         Don't declare functions declared in file made by genpreds or recog.h.
5514         * config/mips/mips.c (mips_output_function_prologue): TSIZE
5515         is now HOST_WIDE_INT; delete unneeded casts.
5516         * config/mips/mips.h: Don't use #elif.
5517
5518         * expr.c (stor_constructor_field): Always call adjust_address.
5519         Copy TARGET before changing its alias set.
5520         (store_field): Likewise, for TO_RTX.
5521         (get_inner_reference): Stop at PLACEHOLDER_EXPR if can't find
5522         replacement.
5523         (safe_from_p, case ADDR_EXPR): Properly check for conflict.
5524         (find_placeholder): Return 0 if can't find object.
5525         (expand_expr, case PLACEHOLDER_EXPR): Abort if find_placeholder
5526         returns 0.
5527
5528 Sat Oct 27 16:31:23 CEST 2001  Jan Hubicka  <jh@suse.cz>
5529
5530         * ifcvt.c (if_convert): Call clear_aux_for_blocks.
5531
5532 Sat Oct 27 12:12:09 CEST 2001  Jan Hubicka  <jh@suse.cz>
5533
5534         * cfgcleanup.c (merge_blocks_move_predecessor_nojumps,
5535         merge_blocks_move_successors_nojumps): Set BB_UPDATE_LIFE.
5536         (merge_blocks): Properly udpate life after making edge nonfallthru.
5537         * cfgrtl.c (merge_blocks_nomove): Update global_live_at_end.
5538
5539 2001-10-26  Kazu Hirata  <kazu@hxi.com>
5540
5541         * config/h8300/h8300.c (get_shift_alg): Remove redundant code.
5542
5543 2001-10-26  Neil Booth  <neil@daikokuya.demon.co.uk>
5544
5545         * c-typeck.c (convert_arguments): When comparing for enumeral
5546         type equality, use TYPE_MAIN_VARIANT.
5547         * gcc.dg/Wconversion.c: New tests.
5548
5549 2001-10-26  Kazu Hirata  <kazu@hxi.com>
5550
5551         * s390/s390.c: Fix comment typos.
5552         * s390/s390.h: Likewise.
5553         * s390/s390.md: Likewise.
5554
5555 2001-10-26  Alexandre Oliva  <aoliva@redhat.com>
5556
5557         * tree-inline.c (WALK_SUBTREE_TAIL): New macro.
5558         (walk_tree): Use it for tail calls where appropriate.
5559
5560 2001-10-26  Alexandre Oliva  <aoliva@redhat.com>
5561
5562         * cse.c (check_for_label_ref): Don't require REG_LABEL notes for
5563         non-local label_refs.
5564
5565 2001-10-26  Kazu Hirata  <kazu@hxi.com>
5566
5567         * config/h8300/h8300.md (4 anonymous patterns): New.
5568
5569 2001-10-26  Kazu Hirata  <kazu@hxi.com>
5570
5571         * config/h8300/h8300.c (get_shift_alg): Clean up.  Return the
5572         algorithm through the shift_info structure.
5573         (emit_a_shift): Update the use of get_shift_alg.
5574
5575 2001-10-27  Daniel Berlin  <dan@cgsoftware.com>
5576
5577         * sched-rgn.c: Remove bitset typedef.
5578         Change bitset to sbitmap in prototypes / variable types.
5579         Remove bbset_size.
5580         Remove edgeset_bits.
5581         Remove edgeset_size.
5582         s/BITSET_ADD/SET_BIT/g
5583         s/BITSET_INVERT/sbitmap_ones/g
5584         s/BITSET_INTER/sbitmap_a_and_b/g
5585         s/BITSET_UNION/sbitmap_a_or_b/g
5586         s/BITSET_DIFFER/sbitmap_difference/g
5587         s/bitset_member/TEST_BIT/g
5588         (BITSET_*): Removed.
5589         (bitset_member): Removed.
5590         (extract_bitlst): Rewrite, now that we have sbitmaps, we can use
5591         EXECUTE_IF_SET_IN_SBITMAP.
5592         (split_edges): Rewrite, use sbitmap functions instead of bitset
5593         operations.
5594         (schedule_region): Allocate/free sbitmaps, rather than bitsets.
5595
5596 2001-10-26  Andreas Schwab  <schwab@suse.de>
5597
5598         * reload1.c (emit_input_reload_insns): Fix parens in last
5599         (undocumented) change that was supposed to change only whitespace.
5600
5601 Fri Oct 26 07:18:08 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5602
5603         * cfgcleanup.c (BB_SET_FLAG, BB_CLEAR_FLAG): Add cast to avoid warning.
5604
5605         * local-alloc.c (update_equiv_regs): Don't make REG_EQUAL note for
5606         ASM_OPERANDS.
5607
5608 2001-10-26  Andreas Jaeger  <aj@suse.de>
5609
5610         * flow.c (clear_log_links): Remove unused variable.
5611         * cfgcleanup.c (cleanup_cfg): Likewise.
5612
5613 2001-10-26  Alexandre Oliva  <aoliva@redhat.com>
5614
5615         * tree-inline.c (remap_decl): Don't copy size and size_unit here.
5616         (remap_save_expr): Map a remapped SAVE_EXPR to error_mark_node.
5617
5618 2001-10-26  Richard Henderson  <rth@redhat.com>
5619
5620         * config/alpha/alpha.h (enum reg_class): Add R24_REG, R25_REG;
5621         rename PV_REG to R27_REG.
5622         (REG_CLASS_CONTENTS, REGNO_REG_CLASS): Update.
5623         (REG_CLASS_FROM_LETTER): Update.
5624         (PREFERRED_RELOAD_CLASS): Don't widen a reg class.
5625         * config/alpha/alpha.md (divsi3): Don't hard-code r24, r25, r27.
5626         (udivsi3, modsi3, umodsi3): Likewise.
5627         (divdi3, udivdi3, moddi3, umoddi3): Likewise.
5628
5629 2001-10-26  Richard Henderson  <rth@redhat.com>
5630
5631         * cfg.c (clear_aux_for_blocks): Split out of ...
5632         (free_aux_for_blocks): here.
5633         (clear_aux_for_edges): Split from ...
5634         (free_aux_for_edges): here.
5635         * basic-block.h: Declare them.
5636         * lcm.c (compute_antinout_edge): Use them.
5637         (compute_laterin, compute_available, compute_nearerout): Likewise.
5638         (optimize_mode_switching): Likewise.
5639
5640 2001-10-26  Richard Henderson  <rth@redhat.com>
5641
5642         * Makefile.in (unstage*): Remove as, ld, collect-ld before
5643         moving everything back to the main build directory.
5644
5645 2001-10-26  Christopher Faylor  <cgf@redhat.com>
5646
5647         * config/i386/cygwin.h: Search target specific include directory, if
5648         appropriate.
5649
5650 2001-10-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5651
5652         * dwarf2out.c (PTR_SIZE, default_eh_frame_section): Move outside
5653         of macro guards. Fix #endif comment.
5654
5655         * output.h (default_exception_section, default_eh_frame_section):
5656         Move prototypes outside of macro guard.
5657
5658         * crtstuff.c: Fix #endif comment.
5659
5660 Thu Oct 25 12:21:58 2001  Jeffrey A Law  (law@cygnus.com)
5661
5662         * doc/md.texi (movMM): Clarify semantics of storing into a
5663         non-paradoxical SUBREG.
5664
5665 2001-10-25  Zack Weinberg  <zack@codesourcery.com>
5666
5667         * langhooks.c (lang_hook_default_clear_binding_stack): New.
5668         (lang_hook_default_get_alias_set): Move next to other alias
5669         hooks.
5670         * langhooks.h: Prototype lang_hook_default_clear_binding_stack.
5671         (LANG_HOOKS_CLEAR_BINDING_STACK): New macro.
5672         (LANG_HOOKS_INITIALIZER): Add it.
5673         * toplev.h (struct lang_hooks): Add clear_binding_stack.
5674         * toplev.c (compile_file):  Call lang_hooks.clear_binding_stack
5675         instead of a loop calling poplevel.
5676
5677 2001-10-25  Nick Clifton  <nickc@cambridge.redhat.com>
5678
5679         * config/mips/isa3264.h (SUBTARGET_CPP_SIZE_SPEC): Replace
5680         occurrences of #elif with #if...#endif.
5681
5682 2001-10-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5683
5684         * cris.h (EH_RETURN_DATA_REGNO): Fix unsigned>=0 warning.
5685
5686 Thu Oct 25 08:46:06 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5687
5688         * alias.c (can_address_p): No longer static.
5689         * emit-rtl.c (get_mem_attrs): New parameter, MODE; all callers changed.
5690         Return 0 if all parameters are default values.
5691         (set_mem_attributes): Set MEM_KEEP_ALIAS_SET_P.
5692         (adjust_address_1): Try harder to compute a size.
5693         * expr.c (expand_assignment, store_constructor): If can't address,
5694         set MEM_KEEP_ALIAS_SET_P.
5695         (store_constructor_field): Don't change set if MEM_KEEP_ALIAS_SET_P.
5696         (store_field): Likewise.
5697         (store_constructor): Simplify call to store_constructor_field.
5698         * expr.h (can_address_p): New declaration.
5699         * gensupport.c (gen_rtx_CONST_INT): New function.
5700         * rtl.h (MEM_KEEP_ALIAS_SET_P): New macro.
5701         (MEM_SIZE): Get size from mode, if not set and not BLKmode.
5702         (MEM_COPY_ATTRIBUTES): Copy MEM_KEEP_ALIAS_SET_P.
5703
5704         * stmt.c (expand_end_case): Remove orig_minval and use tree_low_cst.
5705
5706 2001-10-24  Christopher Faylor  <cgf@redhat.com>
5707
5708         * config/i386/cygwin.h: Use proper path for mingw crt files when
5709         -mno-cygwin.
5710
5711 Wed Oct 24 18:43:42 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5712
5713         * dwarf2out.c (file_info_cmp): Always return consistent results.
5714
5715 2001-10-24  Roger Sayle <roger@eyesopen.com>
5716
5717         * stmt.c (expand_end_case): Index jumptables from zero for
5718         suitably small values of minval.
5719
5720 2001-10-24  Jakub Jelinek  <jakub@redhat.com>
5721
5722         * stor-layout.c (place_union_field): If any field was aligned with
5723         attribute aligned, set record type's TYPE_USER_ALIGN.
5724         (place_field): Likewise.
5725         (finalize_record_size): Don't clear TYPE_USER_ALIGN.
5726         (layout_type) [ARRAY_TYPE]: Copy element's TYPE_USER_ALIGN.
5727
5728 2001-10-24  Zack Weinberg  <zack@codesourcery.com>
5729
5730         * c-common.h (struct c_common_identifier): Remove rid_code field.
5731         (C_RID_CODE): Use ->node.rid_code instead of ->rid_code.
5732
5733         * c-typeck.c (constructor_designated): New local flag.
5734         (struct constructor_stack): Add "designated" field to match.
5735         (start_init): Clear it.
5736         (really_start_incremental_init, push_init_level): Push and
5737         clear it.
5738         (pop_init_level): Pop it.
5739         (set_designator): Set it.
5740
5741         (pop_init_level): Suppress "missing initializer" warnings if
5742         constructor_designated is true.
5743         (process_init_element): Suppress warning about union
5744         initialization under traditional C, if constructor_designated
5745         is true.
5746
5747 Wed Oct 24 15:35:38 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5748
5749         * integrate.c (copy_rtx_and_substitute, case CALL): Fix error in last
5750         change.
5751
5752 Wed Oct 24 13:26:12 2001  Jeffrey A Law  (law@cygnus.com)
5753
5754         * h8300.h (RETURN_ADDR_RTX): Remove old, incorrect definition.
5755
5756 2001-10-24  Dan Nicolaescu  <dann@ics.uci.edu>
5757
5758         * ssa-ccp.c (ssa_ccp_substitute_constants): Don't do anything if
5759         the node was already a set to a constant.
5760
5761 Wed Oct 24 12:41:19 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5762
5763         * emit-rtl.c (set_mem_attributes): Fix typo in last change.
5764         * print-rtl.c (print_rtx, case MEM): Improve display of MEM_DECL.
5765
5766 2001-10-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5767
5768         * s390/linux.h (ASM_OUTPUT_BYTE): Fix format specifier warnings.
5769         (ASM_OUTPUT_ASCII): Const-ify.  Fix signed/unsigned warning.
5770         (ASM_OUTPUT_MI_THUNK): Fix format specifier warnings.
5771         * s390.c (s390_final_chunkify): Don't use string concatenation.
5772         (s390_function_prologue, s390_function_epilogue): Const-ify.
5773         * s390.h (FUNCTION_PROFILER): Remove unused variable.
5774
5775 2001-10-24  Jakub Jelinek  <jakub@redhat.com>
5776
5777         * c-decl.c (finish_decl): Don't add DECL_STMTs for nested function
5778         prototypes.
5779
5780 2001-10-23  Stan Shebs  <shebs@apple.com>
5781
5782         * config/rs6000/x-darwin: Use -no-cpp-precomp instead of
5783         -traditional-cpp in first-stage compilation.
5784
5785 Tue Oct 23 21:45:40 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5786
5787         * gensupport.c (target_flags): Add.
5788
5789 Tue Oct 23 13:05:53 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.
5790
5791         * builtins.c (expand_builtin_setjmp): Only call convert_memory_address
5792         if needed.
5793         (expand_builtin_longjmp, expand_builtin_alloca): Likewise.
5794         * except.c (expand_builtin_frob_return_addr): Likewise.
5795         (expand_builtin_eh_return): Likewise.
5796         * stmt.c (expand_computed_goto): Likewise.
5797         * explow.c (memory_address): Likewise.
5798         (allocate_dynamic_stack_space): Clean up predicate testing.
5799         (probe_stack_range): Convert SIZE to Pmode.
5800         * calls.c (rtx_for_function_call): Only call convert_memory_address
5801         if needed.
5802         Pass function call operand as ptr_mode, not Pmode.
5803         * expr.c (expand_assignment): Clean up calls to convert_memory
5804         address by only doing so when needed and making offsets Pmode.
5805         (store_constructor, expand_expr, expand_expr_unaligned): Likewise.
5806         * function.c (assign_parms): Ensure address in MEM for RESULT_DECL
5807         is in Pmode, not ptr_mode.
5808
5809 2001-10-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5810
5811         * darwin-protos.h (constructor_section, destructor_section,
5812         mod_init_section, mod_term_section): Prototype.
5813         * darwin.c (machopic_finish, update_non_lazy_ptrs, update_stubs):
5814         Const-ify.
5815         * darwin.h (ASM_DECLARE_OBJECT_NAME, ASM_DECLARE_FUNCTION_NAME):
5816         Likewise.
5817         (SECTION_FUNCTION): Prototype `FUNCTION'.  Delete
5818         objc_section_init declaration.
5819         (EXTRA_SECTION_FUNCTIONS): Prototype objc_section_init.
5820         (objc_section_init, try_section_alias): Make static.
5821         (alias_section): Make static and hide unused function.
5822         (ASM_GENERATE_INTERNAL_LABEL): Fix format specifier warning.
5823
5824 Tue Oct 23 13:05:53 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5825
5826         * alias.c (can_address_p): Compnonents are not addressable if
5827         the containing type has alias set 0.
5828         (get_alias_set): Rework to use STRIP_NOPS.
5829         Only call front-end routine on object, type, or object with
5830         NOPs stripped, not inner values.
5831         Use language hook to call front-end routine.
5832         * builtins.c (get_memory_rtx): Always call set_mem_attributes.
5833         (expand_builtin_apply): Call set_mem_align on MEMs we make.
5834         Don't pass alignment to emit_block_move.
5835         (expand_builtin_memcpy, expand_builtin_va_copy): Likewise.
5836         (expand_builtin_memset): Likewise, but for clear_storage.
5837         * c-common.c (lang_get_alias_set): Renamed to c_common_alias_set
5838         and remove C++ specific parts.
5839         * c-common.h (c_common_get_alias_set): Add declaration.
5840         * c-lang.c (LANG_HOOKS_GET_ALIAS_SET): New macro.
5841         * calls.c (emit_call_1): Fix typo in sibcall_pop case.
5842         (save_fixed_argument_area): Call set_mem_align.
5843         Remove alignment in call to emit_block_move.
5844         (emit_library_call_value_1, store_one_arg): Likewise.
5845         (target_for_arg): Remove; disabled long ago.
5846         * emit-rtl.c (set_mem_attributes): Rework to only call get_mem_attrs
5847         once and similar cleanups.
5848         (offset_address): Use proper introductory comment.
5849         * expr.c (emit_block_move): Use alignment from that of MEM args, not
5850         from explicit operand; all callers changed.
5851         (clear_storage): Likewise.
5852         (expand_assignment): Don't call set_mem_alias_set on to_rtx.
5853         (store_field): Remove kludge on alias set used for to_rtx.
5854         (highest_pow2_factor, case *_DIV_EXPR): Never return 0.
5855         (expand_expr_unaligned): Call set_mem_attributes instead of
5856         set_mem_alias_set.
5857         * expr.h (emit_block_move, clear_storage): Remove ALIGN argument.
5858         * function.c (assign_stack_temp_for_type): Set MEM alignment.
5859         (expand_function_end): Track MEM attributes of trampolines.
5860         * ifcvt.c (noce_try_cmove_arith): Set alignment of new MEM.
5861         * integrate.c (copy_rtx_and_substitute, case CALL): Copy memory
5862         attributes from original.
5863         * langhooks.c (lang_hook_default_get_alias_set): New function.
5864         (hook_get_alias_set_0): New function.
5865         * langhooks.h (hook_get_alias_set_0): New declaration.
5866         (lang_hook_default_get_alias_set): Likewise.
5867         (LANG_HOOKS_GET_ALIAS_SET): New macro; add to initializer.
5868         * reload1.c (alter_reg): Use adjust_address_nv.
5869         * rtl.c (get_mode_alignment): Moved to here.
5870         * rtl.h (MEM_ALIGN): Take default from mode, if not BLKmode, and
5871         change default if unknown from 1 to BITS_PER_UNIT.
5872         * stor-layout.c (get_mode_alignment): Remove from here.
5873         * toplev.h (struct lang_hoks): Add get_alias_set field.
5874         * tree.h (lang_get_alias_set): Delete declaration.
5875         * config/arc/arc.c (arc_setup_incoming_varags): Set MEM alignment.
5876         * config/i386/i386.c (ix86_setup_incoming_varargs): Likewise.
5877         (ix86_va_arg): Likewise.
5878         * config/i960/i960.c (i960_setup_incoming_varargs): Likewise.
5879         * config/pa/pa.c (hppa_builtin_saveregs): Likewise.
5880         * config/sparc/sparc.c (sparc_va_arg): Likewise.
5881         * config/rs6000/rs6000.c (setup_incoming_varargs): Likewise.
5882         (expand_block_move_mem): Remove dead code.
5883
5884 2001-10-22  Neil Booth  <neil@daikokuya.demon.co.uk>
5885
5886         * c-common.c (warn_div_by_zero): New.
5887         * c-common.h (warn_div_by_zero): New.
5888         * c-decl.c (c_decode_option): Take it on the command line.
5889         * c-typeck.c (build_binary_op): Warn about division by zero.
5890         * doc/invoke.texi: Document the new command line option, fix
5891         documentation of -Wmultichar.
5892         * testsuite/gcc.dg/divbyzero.c: New tests.
5893         * testsuite/gcc.dg/noncompile/20010524-1.c: Update.
5894
5895 Tue Oct 23 15:30:23 CEST 2001  Jan Hubicka  <jh@suse.cz>
5896
5897         * i386.c (ix86_expand_int_movcc): Cleanup; use expand_simple_*op.
5898
5899         * toplev.c (rest_of_compilation): Use CLEANUP_UPDATE_LIFE
5900         to avoid update_life_info call.
5901         * basic-block.h (CLEANUP_UPATE_LIFE): Define.
5902         * cfgcleanup.c (bb_flags): New enum.
5903         (BB_FLAGS, BB_SET_FLAG, BB_CLEAR_FLAG, FORWARDER_BLOCK_P): New macros.
5904         (notice_new_block, update_forwarder_flag): New functions.
5905         (try_simplify_condjump): Use FORWARDER_BLOCK_P.
5906         (try_forward_edges): Likewise; update flags.
5907         (merge_blocks): Likewise.
5908         (outgoing_edges_match): Likewise.
5909         (try_crossjump_to_edge): Likewise.
5910         (try_optimize_cfg): Likewise; initialize and clear the flags;
5911         recompute life info if needed.
5912         (cleanup_cfg): No need to clear aux pointers.
5913
5914 2001-10-23  Alexandre Oliva  <aoliva@redhat.com>
5915
5916         * config/i386/i386.c (override_options): Default to minimum
5917         stack alignment when optimizing for code size.
5918         * doc/invoke.texi (-mpreferred-stack-boundary): Document the
5919         change.
5920
5921         * config/i386/i386.c (override_options): Set upper limit of
5922         -mpreferred-stack-boundary to 12.
5923
5924 2001-10-22  Zack Weinberg  <zack@codesourcery.com>
5925
5926         * recog.c (peephole2_optimize): Add default case to switch.
5927
5928 2001-10-23  Joseph S. Myers  <jsm28@cam.ac.uk>
5929
5930         * doc/gcc.texi (Sending Patches): Remove.
5931
5932 2001-10-22  Hans-Peter Nilsson  <hp@bitrange.com>
5933
5934         * unwind-dw2-fde.c (fde_unencoded_compare): Derefer pc_begin
5935         fields when comparing.
5936
5937 2001-10-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5938
5939         * arm.h (HOST_INT, HOST_UINT): Delete.  Remove all uses.
5940         * arm.c (HOST_INT, HOST_UINT): Likewise.
5941
5942 2001-10-22  Stan Shebs  <shebs@apple.com>
5943
5944         * config/darwin-protos.h (darwin_exception_section): Declare.
5945         (darwin_eh_frame_section): Declare.
5946
5947 Mon Oct 22 18:21:25 CEST 2001  Jan Hubicka  <jh@suse.cz>
5948
5949         * i386.md (movti_rex64): Fix mode.
5950
5951 2001-10-22  Stan Shebs  <shebs@apple.com>
5952
5953         * target.h (struct gcc_target): Add asm_out.exception_section,
5954         asm_out.eh_frame_section.
5955         * target-def.h (TARGET_ASM_EXCEPTION_SECTION): New macro.
5956         (TARGET_ASM_EH_FRAME_SECTION): New.
5957         (TARGET_INITIALIZER): Update.
5958         * output.h (default_exception_section): Declare.
5959         (default_eh_frame_section): Declare.
5960         * dwarf2out.c: Include target.h.
5961         (output_call_frame_info): Call target hook for eh frames.
5962         (default_eh_frame_section): New function.
5963         * except.c: Include target.h.
5964         (output_function_exception_table): Call target hook for exception
5965         section.
5966         * varasm.c (default_exception_section): Rename from
5967         exception_section, remove EXCEPTION_SECTION macro.
5968
5969         * config/darwin.h (darwin_eh_frame_section): New function.
5970         (EXCEPTION_SECTION): Remove.
5971         (TARGET_ASM_EXCEPTION_SECTION): Define.
5972         * config/nextstep.h (EH_FRAME_SECTION_ASM_OP): Remove.
5973         (nextstep_exception_section): New function.
5974         (nextstep_eh_frame_section): New function.
5975         (TARGET_ASM_EXCEPTION_SECTION): Define.
5976         (TARGET_ASM_EH_FRAME_SECTION): Define.
5977
5978         * config/pa/som.h (EXCEPTION_SECTION): Remove.
5979         (TARGET_ASM_EXCEPTION_SECTION): Define.
5980         * config/rs6000/sysv4.h, config/rs6000/xcoff.h
5981         (EXCEPTION_SECTION): Remove.
5982         (TARGET_ASM_EXCEPTION_SECTION): Define.
5983         * config/stormy16/stormy16.h: Remove comments referencing
5984         EXCEPTION_SECTION and EH_FRAME_SECTION_ASM_OP.
5985
5986         * doc/tm.texi: Document TARGET_ASM_EXCEPTION_SECTION and
5987         TARGET_ASM_EH_FRAME_SECTION.
5988
5989 2001-10-22  Nick Clifton  <nickc@cambridge.redhat.com>
5990
5991         * config/mips/mips.md (mul_acc_si): Fix precedence of conditional
5992         terms.
5993
5994         * c-format.c: Fix spelling typo in comment.
5995
5996         * sched-int.h: Fix typo in GCC preamble.
5997
5998 2001-10-21  Craig Rodrigues  <rodrigc@gcc.gnu.org>
5999
6000         PR debug/4252
6001         * doc/invoke.texi: Remove references to -fdump-translation-unit.
6002
6003 2001-10-22  Richard Henderson  <rth@redhat.com>
6004
6005         * config/i386/i386.c (ix86_expand_clear): New.
6006         * config/i386/i386-protos.h: Declare it.
6007         * config/i386/i386.md (setcc peep2s): Use it.
6008         (movsi_xor): Unexport.
6009
6010 2001-10-22  Richard Henderson  <rth@redhat.com>
6011
6012         * flow.c (clear_log_links): Use free_INSN_LIST_list, not
6013         free_EXPR_LIST_list for LOG_LINKS.
6014
6015 2001-10-21  Robert Lipe  <robertlipe@usa.net>
6016
6017         * config/i386/i386.c (sco_asm_named_section): Delete.
6018         (sco_asm_out_constructor): Delete.
6019         * config/i386/sco5.h (ASM_QUAD): Undo damage from att.h.
6020         (ASM_OUTPUT_DOUBLE_INT): Likewise.
6021         (TARGET_ASM_CONSTRUCTOR): Delete.  Use default.
6022         (TARGET_ASM_NAMED_SECTION): Use default for ELF.
6023         (EXCEPTION_SECTION): Delete EH scn renaming hack.
6024
6025 2001-10-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6026
6027         * c-format.c (maybe_read_dollar_number): Use safe-ctype macros
6028         and/or fold extra calls into fewer ones.
6029         * collect2.c (dump_file): Likewise.
6030         * cppexp.c (parse_number): Likewise.
6031         * cpplex.c (_cpp_lex_direct): Likewise.
6032         * final.c (output_asm_insn, asm_fprintf): Likewise.
6033         * fix-header.c (inf_scan_ident, main): Likewise.
6034         * fixinc/fixfixes.c (char_macro_use_fix, char_macro_def_fix):
6035         Likewise.
6036         * fold-const.c (real_hex_to_f): Likewise.
6037         * gen-protos.c (parse_fn_proto): Likewise.
6038         * genattrtab.c (check_attr_test, check_attr_value): Likewise.
6039         * genrecog.c (change_state, write_action): Likewise.
6040         * gensupport.c (shift_output_template): Likewise.
6041         * local-alloc.c (requires_inout): Likewise.
6042         * mips-tfile.c (IS_ASM_IDENT): Likewise.
6043         * protoize.c (is_id_char, main): Likewise.
6044         * real.c (asctoeg): Likewise.
6045         * recog.c (asm_operand_ok): Likewise.
6046         * reload.c (find_reloads): Likewise.
6047         * scan.c (scan_identget_token): Likewise.
6048         * sched-vis.c (print_value): Likewise.
6049         * stringpool.c (ggc_alloc_string): Likewise.
6050         * toplev.c (read_integral_parameter, decode_g_option): Likewise.
6051         * tradcif.y (parse_number, yylex, parse_escape): Likewise.
6052         * tradcpp.c (rescan): Likewise.
6053         * tree.c (clean_symbol_name): Likewise.
6054         * varasm.c (decode_reg_name): Likewise.
6055
6056         * alpha.h (ASM_OUTPUT_ASCII): Likewise.
6057         * darwin.c (name_needs_quotes, func_name_maybe_scoped): Likewise.
6058         * dsp16xx.h (ASM_OUTPUT_ASCII): Likewise.
6059         * m88k.c (output_ascii): Likewise.
6060         * m88k.h (OVERRIDE_OPTIONS): Likewise.
6061         * mcore.h (REG_CLASS_FROM_LETTER): Likewise.
6062         * ns32k/encore.h (ASM_OUTPUT_ASCII): Likewise.
6063         * sh.h (REG_CLASS_FROM_LETTER): Likewise.
6064
6065 2001-10-21  Neil Booth  <neil@daikokuya.demon.co.uk>
6066
6067         * langhooks.c (lang_hook_default_do_nothing,
6068         lang_hook_default_decode_option): New defaults.
6069         * langhooks.h: Make hooks unconditional and non-NULL.
6070         * toplev.c (compile_file, toplev_main): Update.
6071         * toplev.h: Update comments.
6072         * objc/objc-act.c (lang_hooks): Update to new paradigm.
6073
6074 2001-10-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6075
6076         * arm.h (FUNCTION_ARG_REGNO_P): Use IN_RANGE.
6077
6078         * system.h (IN_RANGE): New macro.
6079
6080 2001-10-21  Zack Weinberg  <zack@codesourcery.com>
6081
6082         * aclocal.m4 (AM_WITH_NLS): Also create and substitute
6083         INTLDEPS variable, which does not include $LIBICONV.
6084         * Makefile.in: Use INTLDEPS in LIBDEPS.
6085         * configure: Regenerate.
6086
6087 2001-10-21  Neil Booth  <neil@daikokuya.demon.co.uk>
6088
6089         * cpphash.h (struct cpp_buffer): Delete read_ahead and extra_char.
6090         * cpplex.c (lex_percent, lex_dot): Remove.
6091         (get_effective_char, skip_block_comment, skip_line_comment,
6092         parse_identifier_slow, parse_number, parse_string, save_comment,
6093         _cpp_lex_direct): Update to do lookback freely.
6094         (IF_NEXT_IS, BACKUP): New macros.
6095         * cpplib.c (cpp_push_buffer): Don't set read_ahead and extra_char.
6096         * cppmacro.c (paste_tokens): Update.
6097
6098 2001-10-20  Nick Clifton  <nickc@cambridge.redhat.com>
6099
6100         * doc/invoke.texi (i386 and x86-64 Options): Fix typo.
6101
6102 2001-10-20  Hans-Peter Nilsson  <hp@axis.com>
6103
6104         * reload1.c (reload): Check CONSTANT_P before calling
6105         LEGITIMATE_PIC_OPERAND_P.
6106         * config/cris/cris.c (cris_legitimate_pic_operand): Revert
6107         workaround of 2001-10-13.
6108
6109 Sat Oct 20 15:16:10 CEST 2001  Jan Hubicka  <jh@suse.cz>
6110
6111         * i386.c (split_di): Handle splitting of DFmode.
6112
6113 Sat Oct 20 07:27:14 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6114
6115         * emit-rtl.c (set_mem_attributes): Alignment is in bits.
6116         (adjust_address_1, offset_address): Likewise.
6117
6118         * final.c (output_asm_operand_names): New fcn, from output_asm_insn.
6119         (output_asm_insn): Call it for each line output.
6120         Don't record an operand more than once.
6121
6122         * toplev.h (struct lang_hooks): HONOR_READONLY now bool.
6123         * main.c: Include config.h and system.h, but not ansidecl.h.
6124         * Makefile.in (main.o): Update accordingly.
6125
6126 Sat Oct 20 12:05:31 CEST 2001  Jan Hubicka  <jh@suse.cz>
6127
6128         * i386.h (SSE_REGPARM_MAX): Set to 8 for x86_64.
6129
6130 Sat Oct 20 12:01:07 CEST 2001  Jan Hubicka  <jh@suse.cz>
6131
6132         * basic-block.h (find_sub_basic_blocks): Use sbitmap parameter.
6133         * cfgbuild.c (find_bb_boundaries, compute_outgoing_frequencies):
6134         Break out from ...
6135         (find_sub_basic_blocks): ... here;
6136         (find_many_sub_basic_blocks): New.
6137         * recog.c (split_all_insns): Update find_sub_basic_blocks call.
6138
6139         * i386.h (ASM_PREFERRED_EH_DATA_FORMAT): Define sdata4.
6140
6141         * i386.c (ix86_va_arg): Kill indirect_p handling; fix aliasing issues.:
6142
6143         * i386.c (split_di, split_ti): Revamp to use simplify_subreg.
6144
6145         * timevar.def (TV_LIFE, TV_LIFE_UPDATE, TV_MODE_SWITCH): new.
6146         * flow.c (update_life_info): Measure time.
6147         * c-decl.c: Include timevar.h
6148         (c_expand_body): Measure time.
6149         * toplev.c (rest_of_compilation): Measure time of mode switching
6150         separately.
6151         * Makefile.in (c-decl.o, cfgcleanup.o): Add dependency.
6152
6153         * toplev.c (flag_asynchronous_unwind_tables): New global variable.
6154         (lang_independent_options): Add asynchronous-unwind-tables
6155         (toplev_main): flag_asynchronous_unwind_tables implies
6156         flag_unwind_tables.
6157         * flags.h (flag_asynchronous_unwind_tables): Declare.
6158         * dwarf2out.c (dwarf2out_stack_adjust): Take into account
6159         flag_asynchronous_unwind_tables.
6160         (output_call_frame_info): Likewise.
6161         * invoke.texi (-fasynchronous-unwind-tables): Document.
6162         * i386.c (optimization_options): Enable
6163         flag_asynchronous_unwind_tables.
6164
6165         * i386.c (ix86_expand_setcc):  Always expect target to be QImode.
6166         * i386.md (s* expanders): Destination is QImode.
6167
6168         * toplev.c (rest_of_compilation): Do not call clear_log_links.
6169         * rtl.h (clear_log_links): Kill.
6170         * flow.c (clear_log_links): Make static; accept blocks parameter;
6171         do no clear life info.
6172         (update_life_info): Call clear_log_links.
6173
6174         * cfganal.c (forwarder_block_p): Avoid active_insn_p calls.
6175
6176 2001-10-20  Neil Booth  <neil@daikokuya.demon.co.uk>
6177
6178         * cpplex.c (handle_newline, skip_escaped_newlines,
6179         get_effective_char, skip_block_comment, skip_line_comment,
6180         parse_identifier_slow, parse_number, parse_string,
6181         _cpp_lex_direct): Update to do more stepping back.
6182         (trigraph_ok): Similarly.  Rename trigraph_p.
6183         (SAVE_STATE, RESTORE_STATE): Remove.
6184         (BUFF_SIZE_UPPER_BOUND): Tweak.  Add sanity check.
6185
6186         * cpplib.c (destringize): Rename destringize_and_run, and
6187         call run_directive directly.
6188         (_cpp_do__Pragma): Simplify.
6189
6190 2001-10-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6191
6192         * pe.c (arm_pe_unique_section): Const-ify.
6193         * pe.h (TARGET_ASM_NAMED_SECTION): Undef before defining.
6194         (switch_to_section): Add static prototype.
6195
6196         * output.h (drectve_section): Prototype.
6197
6198 2001-10-19  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
6199
6200         * config.gcc (i[34567]86-*-gnu*, arc-*-elf*, d30v-*,
6201         fr30-*-elf, hppa*64*-*-linux*, parisc*64*-*-linux*, hppa*-*-linux*,
6202         parisc*-*-linux*, i370-*-linux*, i[34567]86-*-chorusos*,
6203         i[34567]86-*-elf*, i[34567]86-ncr-sysv4*, i[34567]86-*-netware,
6204         i[34567]86-sequent-ptx4*, i[34567]86-sequent-sysv4*,
6205         i[34567]86-*-beoself*, i[34567]86-*-beos*, i[34567]86-*-freebsd*,
6206         i[34567]86-*-netbsdelf*, i[34567]86-*-linux*libc1,
6207         i[34567]86-*-linux*, i[34567]86-moss-msdos*, i[34567]86-*-moss*,
6208         i[34567]86-go32-rtems*, i[34567]86-*-rtems*, i[34567]86-*-rtemself*,
6209         i[34567]86-*-solaris2*, i[34567]86-*-sysv5*, i[34567]86-*-sysv4*,
6210         i[34567]86-*-udk*, i[34567]86-*-osf1*, i[34567]86-dg-dgux*,
6211         i860-alliant-*, i860-*-sysv4*, ia64*-*-aix*, ia64*-*-linux*,
6212         ia64*-*-hpux*, m32r-*-elf*, m88k-dg-dgux*, m88k-*-sysv4*, mcore-*-elf,
6213         mips*-*-linux*, mn10200-*-*, mn10300-*-*, pj*-linux*, pjl-*,
6214         powerpc64-*-linux*, powerpc-*-sysv*, powerpc-*-netbsd*,
6215         powerpc-*-chorusos*, powerpc-*-eabiaix*, powerpc-*-eabisim*,
6216         powerpc-*-elf*, powerpc-*-eabi*, powerpc-*-rtems*,
6217         powerpc-*-linux*libc1, powerpc-*-linux*, powerpc-wrs-vxworks*,
6218         powerpcle-wrs-vxworks*, powerpcle-*-sysv*, powerpcle-*-elf*,
6219         powerpcle-*-eabisim*, powerpcle-*-eabi*, powerpcle-*-solaris2*,
6220         rs6000-*-mach*, s390-*-linux*, s390x-*-linux*, sh-*-elf*,
6221         sh-*-rtemself*, sh-*-rtems*, sh-*-linux*, stormy16-*-elf,
6222         v850-*-rtems*, v850-*-*, x86_64-*-linux*), cris-*-aout, cris-*-elf,
6223         cris-*-none, cris-*-linux*: Update ${tmfile} list.
6224         (c4x-*-rtems*, c4x-*, i[34567]86-go32-rtems*, i[34567]86-*-rtemscoff*,
6225         i[34567]86-*-rtems*, i[34567]86-*-rtemself*, i[34567]86-*-osf1*,
6226         mn10200-*-*, mn10300-*-*, powerpc-*-beos*, powerpc-*-darwin*,
6227         powerpc-wrs-vxworks*, powerpcle-wrs-vxworks*, v850-*-rtems*,
6228         v850-*-*): Delete superflous ${cpu_type} setting.
6229         * config/linux.h: Delete svr4.h include.
6230         (SET_ASM_OP): Delete.
6231         * config/netware.h (INT_ASM_OP): Undef before define.
6232         * config/ptx4.h: Delete elfos.h include.
6233         (PREFERRED_DEBUGGING_TYPE): Undef instead of wrapping.
6234         * config/svr4.h: Delete elfos.h include. Update commentary.
6235         * config/arc/arc.h, config/d30v/d30v.h, config/fr30/fr30.h,
6236         config/m32r/m32r.h, config/m88k/sysv4.h, config/mn10200/mn10200.h,
6237         config/mn10200/mn10300.h, config/stormy16/stormy16.h,
6238         config/v850/v850.h: Delete svr4.h include.
6239         * config/i370/linux.h, config/i386/osf1elf.h, config/m68k/linux.h,
6240         config/m68k/m68kv4.h, config/m88k/sysv4.h,
6241         config/sparc/sysv4.h: Update includes.
6242         * config/i386/beos-elf.h, config/i386/netware.h, config/i386/ptx4-i.h,
6243         config/i386/rtemself.h, config/i386/sol2.h, config/i386/sysv4.h,
6244         config/i386/sysv5.h, config/i386/udk.h, config/ia64/linux.h,
6245         config/m88k/dguxbcs.h: Delete includes.
6246         * config/i386/dgux.h, config/i386/osf1elfgdb.h: Delete include.
6247         (PREFERRED_DEBUGGING_TYPE): Undef before defining it.
6248         * config/i860/fx2800.h (ASM_OUTPUT_SOURCE_LINE): Undef before defining
6249         it.
6250         * config/m88k/dgux.h: Delete include.
6251         (SDB_DEBUGGING_INFO, PREFERRED_DEBUGGING_TYPE):  Undef before
6252         defining it.
6253         * config/pj/pj.h (ASM_GENERATE_INTERNAL_LABEL,
6254         ASM_OUTPUT_INTERNAL_LABEL, ASM_OUTPUT_SKIP): Undef before defining it.
6255         * config/sh/elf.h: Update include.
6256         (SDB_DEBUGGING_INFO, DWARF2_DEBUGGING_INFO, PREFERRED_DEBUGGING_TYPE,
6257         DWARF2_ASM_LINE_DEBUG_INFO): Move behind includes.
6258
6259 2001-10-19  Catherine Moore  <clm@redhat.com>
6260
6261         * config/stormy16/stormy-abi:  Updates to varargs descriptions.
6262         * config/stormy16/stormy16.c (stormy16_build_va_list):  Reverse
6263         base and count fields.
6264         (stormy16_expand_builtin_va_start):  last_reg_count changed to
6265         size_of_reg_args.  Use count + size in first comparison.
6266
6267 Fri Oct 19 15:24:39 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6268
6269         * langhooks.h (LANG_HOOKS_HONOR_READONLY): New macro.
6270         * toplev.h (struct lang_hooks): New field HONOR_READONLY.
6271         * emit-rtl.c (set_mem_attributes): Set RTX_UNCHANGING_P from
6272         TREE_READONLY and TYPE_READONLY if lang_hooks.honor_readonly.
6273         Set alignment from type if INDIRECT_REF.
6274         (adjust_address_1, offset_address): Simplify alignment compuitation.
6275         * expr.c (expand_expr, case INDIRECT_REF): Don't set RTX_UNCHANGING_P
6276         here; done by set_mem_attributes.
6277
6278 2001-10-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6279
6280         * Makefile.in (rtlanal.o): Depend on $(TM_P_H).
6281         * arm-protos.h (rdata_section, zero_init_section, common_section):
6282         Prototype.
6283         * arm.h (ASM_OUTPUT_DEF_FROM_DECLS): Const-ify.
6284         * avr.h (ASM_OUTPUT_SKIP): Rename macro parameter to avoid
6285         traditional mode stringification.
6286         * function.c (thread_prologue_and_epilogue_insns): Wrap variable
6287         in macros controling its use.
6288         * rtlanal.c: Include tm_p.h.
6289         * varasm.c (asm_output_aligned_bss): Mark parameter with
6290         ATTRIBUTE_UNUSED.
6291         (assemble_constant_align, assemble_start_function, assemble_align,
6292         assemble_variable, assemble_trampoline_template,
6293         output_constant_def_contents): Wrap potentially empty if-stmt body
6294         in brackets.
6295
6296 2001-10-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6297
6298         * a29k-protos.h (literal_section): Prototype.
6299         * a29k.h (ASM_FILE_START): Don't discard pointer qualifier.
6300         * a29k.md: Ensure function pointers are prototyped.
6301         * genattrtab.c (write_eligible_delay): Mark parameter with
6302         ATTRIBUTE_UNUSED.
6303
6304 2001-10-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6305
6306         * calls.c (emit_call_1): Mark parameter with ATTRIBUTE_UNUSED.
6307         * 1750a.c (print_operand): Fix format specifier warning.
6308         * 1750a.h (ASM_FILE_START): Don't discard pointer qualifier.
6309         * 1750a.md: Likewise.
6310         * gcc.c (init_gcc_specs): Wrap with ENABLE_SHARED_LIBGCC.
6311         * genemit.c (output_add_clobbers): Mark parameter with
6312         ATTRIBUTE_UNUSED.
6313         * genrecog.c (write_subroutine): Likewise.
6314         * integrate.c (expand_inline_function): Delete unused variable.
6315         * varasm.c (remove_from_pending_weak_list): Wrap with
6316         ASM_WEAKEN_LABEL.
6317
6318 2001-10-19  Jakub Jelinek  <jakub@redhat.com>
6319
6320         * simplify-rtx.c (simplify_plus_minus): Negate constant iff its neg
6321         field is different to previous argument's neg field.
6322
6323         * config/alpha/alpha.c (summarize_insn): Don't abort on ASM_INPUT.
6324
6325 Fri Oct 19 15:24:39 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6326
6327         * final.c (get_decl_from_op): New function.
6328         (output_asm_insn): Call it; write "*" when item with decl is address.
6329
6330 2001-10-19  Janis Johnson  <janis187@us.ibm.com>
6331
6332         * doc/install.texi (Specific, sparc-sun-solaris2*) Copy documentation
6333         about 64-bit support from the 3.0_branch version.
6334
6335 2001-10-19  Zack Weinberg  <zack@codesourcery.com>
6336
6337         * aclocal.m4 (AM_WITH_NLS): AC_DEFINE HAVE_LIBINTL_H and
6338         USE_INCLUDED_LIBINTL when appropriate.
6339         * configure, config.in: Regenerate.
6340         * Makefile.in (datadir): Set to @datadir@.
6341         (intl.o): Also depend on $(CONFIG_H) and system.h.
6342
6343         * intl.c: Factor out common gettext initialization sequence.
6344         (gcc_init_libintl):  New function.
6345         * intl.h: Include intl/libgnuintl.h if USE_INCLUDED_LIBINTL;
6346         otherwise include libintl.h if HAVE_LIBINTL_H; otherwise turn
6347         off NLS.  Add multiple include guard.  No need to #ifdef-guard
6348         an #undef.  Prototype gcc_init_libintl here.
6349
6350         * collect2.c (main), cppmain.c (general_init), gcc.c (main),
6351         gcov.c (main), protoize.c (main), toplev.c (toplev_main):
6352         Use gcc_init_libintl.
6353
6354 2001-10-19  Catherine Moore  <clm@redhat.com>
6355
6356         * config/stormy16/stormy16.h (ASM_COMMENT_START): Define.
6357
6358         * config/stormy16/stormy16.c (stormy16_split_move):  Make
6359         sure that REG_INC notes are present for auto_inc operands.
6360
6361 2001-10-19  Andreas Jaeger  <aj@suse.de>
6362
6363         * configure: Regenerated.
6364         * configure.in: Add x86_64 to switch statements.
6365
6366 2001-10-18  Richard Henderson  <rth@redhat.com>
6367
6368         * config/alpha/alpha.md (sibcall_osf_1): Load destination
6369         address into $27 explicitly.
6370         (sibcall_value_osf_1): Likewise.
6371
6372 Thu Oct 18 16:07:39 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6373
6374         * emit-rtl.c (gen_reg_rtx): Also reallocate reg_decl array.
6375         (offset_address): New function.
6376         (free_emit_status): Free regno_decl.
6377         (init_emit): Pass proper number of elements to xcalloc.
6378         Allocate regno_decl.
6379         (mark_emit_status): Mark regno_decl values.
6380         * expr.c (highest_pow2_factor): New function.
6381         (expand_assigment): Use it and offset_address.
6382         Properly handle ptr_mode vs. Pmode in offset calculation.
6383         (store_constructor, expand_expr_unaligned): Likewise.
6384         (expand_expr, case COMPONENT_EXPR): Likewise.
6385         * expr.h (offset_address): New decl.
6386         * function.h (struct emit_status): Add regno_decl.
6387         (REGNO_DECL): New macro.
6388         * final.c (output_asm_name): Move in file and don't conditionalize
6389         on flag_print_asm_name.
6390         (output_asm_insn): Only call output_asm_name if flag_print_asm_name.
6391         Output names of operands, if known.
6392         * function.c (assign_parms): Set REGNO_DECL.
6393         * integrate.c (integrate_decl_tree): Likewise.
6394         * stmt.c (expand_decl): Likewise.
6395         * regclass.c (reg_scan_mark_refs): Propagate REGNO_DECL for copies.
6396
6397 2001-10-18  Alexandre Oliva  <aoliva@redhat.com>
6398
6399         * attribs.c (handle_noinline_attribute): New function.
6400         (handle_used_attribute): Likewise.
6401         (c_common_attribute_table): Added noinline and used.
6402         * doc/extend.texi (Function Attributes): Document them.
6403         * c-decl.c (duplicate_decls): Propagate DECL_UNINLINABLE.
6404         Warn when merging inline with attribute noinline.
6405         (start_decl, start_function): Warn if inline and attribute
6406         noinline appear in the same declaration.
6407
6408 2001-10-17  Neil Booth  <neil@daikokuya.demon.co.uk>
6409
6410         * config.gcc: Update c4x and i370 for C front end-specific
6411         dependencies.
6412         * config/c4x/c4x-c.c: New.
6413         * config/c4x/c4x-protos.h (c4x_handle_pragma): Remove.
6414         (code_tree, data_tree, pure_tree, noreturn_tree, interrupt_tree):
6415         New declarations.
6416         * config/c4x/c4x.c: Don't include c-lex.h or c-pragma.h.
6417         (code_tree, data_tree, pure_tree, noreturn_tree, interrupt_tree):
6418         Make extern.
6419         (c4x_init_pragma): Remove.
6420         (c4x_parse_pragma, c4x_pr_CODE_SECTION, c4x_pr_DATA_SECTION,
6421         c4x_pr_FUNC_IS_PURE, c4x_pr_FUNC_NEVER_RETURNS, c4x_pr_INTERRUPT,
6422         c4x_pr_ignored): Move to c4x-c.c.
6423         * config/c4x/c4x.h (REGISTER_TARGET_PRAGMAS): Update.
6424         * config/c4x/t-c4x: Update.
6425         * config/i370/i370-c.c: New.
6426         * config/i370/i370.c: Don't include c-lex.h or c-pragma.h.
6427         (i370_pr_map): Move to i370-c.c.
6428         * config/i370/t-i370: New.
6429
6430         * doc/tm.texi: Update.
6431
6432 2001-10-17  Stan Shebs  <shebs@apple.com>
6433
6434         * config/rs6000/rs6000.c: Make assorted mechanical formatting and
6435         typo fixes throughout.
6436         (machopic_output_stub): Remove some dead code.
6437
6438 2001-10-17  Richard Earnshaw <rearnsha@arm.com>
6439
6440         * cpplex.c (_cpp_get_buff): Fix off-by-one error that caused memory
6441         leak.
6442
6443 Wed Oct 17 05:26:39 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6444
6445         * Makefile.in (print-rtl.o): Depend on TREE_H.
6446         * alias.c (get_alias_set): Make two passes over objects to first
6447         see if inner object is access via restricted pointer.
6448         Defer allocating alias set for restricted pointer until here.
6449         Call find_placeholder with second arg nonzero.
6450         Minor cleanups.
6451         * c-common.c (c_apply_type_quals_to_decl): Defer getting alias
6452         set for restricted pointer types.
6453         * emit-rtl.c (set_mem_attributes): Set more attributes.
6454         (set_mem_align, change_address, adjust_address_1): New functions.
6455         (change_address_1): Now static.
6456         (adjust_address, adjust_address_nv): Deleted.
6457         (replace_equiv_address): Call change_address_1.
6458         * expr.c (get_inner_reference): Handle PLACEHOLDER_EXPR.
6459         (find_placeholder): Get starting point from PLIST arg.
6460         (expand_expr, case PLACEHOLDER_EXPR): Initialize find_placeholder arg.
6461         * expr.h (set_mem_align, change_address, adjust_address_1): New decls.
6462         (adjust_address, adjust_address_nv): New macros.
6463         * print-rtl.c (tree.h): New include.
6464         (print_rtx, case MEM): Print all memory attributes.
6465
6466 2001-10-17  Richard Henderson  <rth@redhat.com>
6467
6468         * config/alpha/alpha.c (direct_call_operand): Don't fall off end.
6469
6470 2001-10-16  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
6471
6472         * c-tree.texi: Eliminate duplicated word.
6473         * cpp.texi: Likewise.
6474         * install.texi: Likewise.
6475         * invoke.texi: Likewise.
6476         * tm.texi: Likewise.
6477
6478 2001-10-17  Michael Collison  <collison@isisinc.net>
6479
6480         * dsp16xx.c: Fix comment formatting to match GNU standards.
6481         (dsp16xx_output_function_prologue): Change type of 'size'
6482         parameter from 'int' to HOST_WIDE_INT.
6483         (dsp16xx_output_function_epilogue): Change type of 'size'
6484         parameter from 'int' to HOST_WIDE_INT.
6485
6486 2001-10-16  Richard Henderson  <rth@redhat.com>
6487
6488         * configure.in (HAVE_AS_GOTOFF_IN_DATA): New x86 check.
6489         * configure, config.in: Rebuild.
6490
6491         * config/i386/i386.c (ix86_output_addr_vec_elt): New.
6492         (ix86_output_addr_diff_elt): New.
6493         * config/i386/i386.h (ASM_OUTPUT_ADDR_VEC_ELT): Use them.
6494         (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
6495         (JUMP_TABLES_IN_TEXT_SECTION): New.
6496         * config/i386/i386.md (tablejump): Handle HAVE_AS_GOTOFF_IN_DATA.
6497         * config/i386/i386-protos.h: Update.
6498
6499         * config/i386/386bsd.h, config/i386/beos-elf.h,
6500         config/i386/freebsd-aout.h, config/i386/freebsd.h,
6501         config/i386/i386-interix.h, config/i386/i386elf.h,
6502         config/i386/linux.h, config/i386/netbsd-elf.h,
6503         config/i386/netbsd.h, config/i386/openbsd.h,
6504         config/i386/ptx4-i.h, config/i386/rtemself.h,
6505         config/i386/sco5.h, config/i386/sysv4.h, config/i386/x86-64.h
6506         (ASM_OUTPUT_ADDR_DIFF_ELT, JUMP_TABLES_IN_TEXT_SECTION): Remove.
6507
6508 2001-10-16  Florian Weimer  <fw@deneb.enyo.de>
6509
6510         * stmt.c (expand_asm_operands): Update commentary.
6511
6512 2001-10-16  Stan Shebs  <shebs@apple.com>
6513
6514         * config/darwin.h (GCC_NAME): Remove, no longer used.
6515         (NO_MATH_LIBRARY): Ditto.
6516         (MATH_LIBRARY): Define to emptiness.
6517         (DWARF2_DEBUGGING_INFO): Define.
6518         (PREFERRED_DEBUGGING_TYPE): Define.
6519         (EXTRA_SECTION_FUNCTIONS): Add darwin_exception_section.
6520         (EXCEPTION_SECTION): Define.
6521         (ASM_PREFERRED_EH_DATA_FORMAT): Define.
6522         * config/darwin.c (darwin_encode_section_info): Handle case of
6523         DECL_INITIAL being error_mark_node.
6524
6525 2001-10-16  Richard Henderson  <rth@redhat.com>
6526
6527         * alpha.c (current_file_function_operand): Don't fail for profiling.
6528         (direct_call_operand): New.
6529         * alpha-protos.h: Declare it.
6530         * alpha.h (EXTRA_CONSTRAINT): Use it.
6531         (PREDICATE_CODES): Add it.
6532         (ASM_OUTPUT_MI_THUNK): Remove.
6533         * alpha32.h (ASM_OUTPUT_MI_THUNK): Remove.
6534         * alpha.md (sibcall_osf_1, sibcall_value_osf_1): Add 's' alternative.
6535
6536 2001-10-16  Krister Walfridsson  <cato@df.lth.se>
6537
6538         * config/i386/netbsd-elf.h (ASM_OUTPUT_ADDR_DIFF_ELT): Define.
6539         (JUMP_TABLES_IN_TEXT_SECTION): Define.
6540
6541 Wed Oct 17 00:21:31 CEST 2001  Jan Hubicka  <jh@suse.cz>
6542
6543         * cfg.c (free_edge): Break out from ....
6544         (remove_edge): ... here.
6545         (clear_edges): Use free_edge.
6546
6547         * att.h (ASM_QUAD): Add comment.
6548         * bsd.h, sco5.h, sun386.h (ASM_QUAD): Define.
6549
6550 Wed Oct 17 00:01:02 CEST 2001  Jan Hubicka  <jh@suse.cz>
6551
6552         * i386.c (split_ti): New function.
6553         (ix86_split_to_parts): Support TImodes.
6554         * i386.h (VALID_INT_MODE_P): Add TImode.
6555         * i386.md (movdi splitter): Fix.
6556         (movti): Support 64bit integer registers.
6557         (movti_rex64): New function and splitter.
6558
6559         * i386.c (*_cost): Add movsx/movzx cost.
6560         * i386.h (struct processor_costs): Add movsx/movzx fields.
6561         (RTX_COSTS): Handle zero/sign extend + avoid believing that
6562         64bit operations require split on 64bit machine.
6563         (CONST_COST): Make large 64bit constants expensive on 64bit compilation.
6564
6565         * i386.c (ix86_setup_incoming_varargs): Fix mode of PLUS.
6566         (ix86_expand_move): Avoid pushes of memory if size does not match;
6567         move long constants to register.
6568         (x86_initialize_trampoline): Fix mode.
6569         * i386.h (ASM_OUTPUT_ADDR_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT):
6570         Use ASM_QUAD on 64bit.
6571         * i386.md (test pattern): Disallow impossible constants.
6572         (tablejump PIC expander): Fix emitting of sum.
6573         (movdicc_rex64): Rename to movdicc.
6574         * linux64.h (LINK_SPEC): Add missing '%'.
6575
6576 2001-10-16  Alexandre Oliva  <aoliva@redhat.com>
6577
6578         * tree-inline.c (inlinable_function_p): Leave it up to the
6579         front-end to turn -finline-functions into DECL_INLINE set for all
6580         functions.
6581
6582 2001-10-16  Stan Shebs  <shebs@apple.com>
6583
6584         * config/rs6000/darwin.h (ASM_COMMENT_START): Define.
6585
6586 2001-10-16  Alan Modra  <amodra@bigpond.net.au>
6587
6588         * recog.c: Formatting and comment typo fixes.
6589
6590         * configure.in (gcc_cv_as_bfd_srcdir): New.  Use it to find gas
6591         version in single tree build.
6592         * configure: Regenerate.
6593
6594 2001-10-15  David Edelsohn  <edelsohn@gnu.org>
6595
6596         * config/rs6000/rs6000.md (cr_logical): Swap order of CODE and
6597         MODE arguments to gen_rtx and compare operand with const0_rtx.
6598
6599 2001-10-15  Neil Booth  <neil@daikokuya.demon.co.uk>
6600
6601         * system.h: Poison old unused target macros.
6602         * config/dsp16xx.h (ASM_OPEN_PAREN, ASM_CLOSE_PAREN): Remove.
6603         * config/stormy16/stormy16.c: Update references to obsolete macros.
6604         * config/stormy16/stormy16.h: Similarly.
6605         * config/stormy16/stormy16.md: Similarly.
6606         * config/cris/cris.h: Similarly.
6607
6608 2001-10-15  Neil Booth  <neil@daikokuya.demon.co.uk>
6609
6610         * cpplib.c (struct pragma_entry): Store the name as a hashnode.
6611         (lookup_pragma_entry, insert_pragma_entry, do_pragma,
6612         cpp_register_pragma): Update accordingly.
6613
6614 2001-10-14  Neil Booth  <neil@daikokuya.demon.co.uk>
6615
6616         * c-pragma.h (cpp_register_pragma_space): Remove.
6617         * cpplib.h (cpp_register_pragma_space): Remove.
6618         * cpplib.c (lookup_pragma_entry, insert_pragma_entry): New.
6619         (cpp_register_pragma_space): Remove.
6620         (cpp_register_pragma): Simplify using lookup_pragma_entry,
6621         add sanity checks.
6622         (do_pragma): Similarly.
6623         (_cpp_init_internal_pragmas): Don't register namespaces.
6624
6625         * config/v850/v850.h (REGISTER_TARGET_PRAGMAS):
6626         Don't register namespaces.
6627         * cp/lex.c (init_cp_pragma): Similarly.
6628         * doc/tm.texi: Update.
6629
6630 2001-10-10  Craig Rodrigues  <rodrigc@gcc.gnu.org>
6631
6632         PR c/4157
6633         * config/i386/cygwin.h: Add missing space to MINGW_INCLUDES
6634
6635 2001-10-13  Michael Collison  <collison@dhcp-12-114.townisp.com>
6636
6637         * config/dsp16xx/dsp16xx.md: Rewrite for more efficient code and
6638         add scheduling support.
6639         * config/dsp16xx/dsp16xx.h: Rewrite for more efficient code.
6640         * config/dsp16xx/dsp16xx.c: Rewrite for more efficient code.
6641         * config/dsp16xx/dsp16xx-protos.h: Add new function prototypes.
6642
6643
6644 2001-10-13  Hans-Peter Nilsson  <hp@axis.com>
6645
6646         * config/cris/cris.c (cris_legitimate_pic_operand): Kludge around
6647         missing CONSTANT_P test in core GCC.
6648
6649 2001-10-12  Neil Booth  <neil@daikokuya.demon.co.uk>
6650
6651         * cppmain.c (struct printer): New member source.
6652         (scan_translation_unit): Fix spacing at start of lines.
6653         (cb_line_change): Update.
6654
6655         * gcc.dg/cpp/spacing2.c: New test.
6656
6657 2001-10-12  Hans-Peter Nilsson  <hp@axis.com>
6658
6659         * config/cris/arit.c: Use __builtin_labs, not abs.
6660
6661         * config/cris/cris.h (SET_STRIPPABLE_EXECUTABLE): Don't define.
6662
6663         * config/cris/cris.c (cris_target_asm_function_epilogue): Move
6664         misplaced sprintf and fprintf argument.
6665
6666 2001-10-12  Zack Weinberg  <zack@codesourcery.com>
6667
6668         * ABOUT-NLS, aclocal.m4: Update i18n framework from gettext 0.10.40.
6669         * configure.in, Makefile.in: Take out obsolete check-po logic.
6670         * configure, config.in: Regenerate.
6671
6672 2001-10-12  Ziemowit Laski  <zlaski@apple.com>
6673
6674         * objc/objc-act.c (finish_objc): Correct precondition for emitting
6675         symtab declarations.
6676
6677 2001-10-12  Stan Shebs  <shebs@apple.com>
6678
6679         * config/rs6000/rs6000.c: Remove uses of "register" specifier in
6680         declarations of arguments and local variables.
6681
6682 2001-10-12  Christopher Faylor  <cgf@redhat.com>
6683
6684         * config/i386/cygwin.h: Revert erroneous checkin of crtbegin and
6685         ENDFILE_SPEC definition.
6686
6687 2001-10-12  Kazu Hirata  <kazu@hxi.com>
6688
6689         * gthr-dce.h: Fix comment formatting.
6690         * gthr-posix.h: Likewise.
6691         * gthr-single.h: Likewise.
6692         * gthr-solaris.h: Likewise.
6693         * gthr-vxworks.h: Likewise.
6694         * gthr-win32.h: Likewise.
6695
6696 2001-10-12  Jakub Jelinek  <jakub@redhat.com>
6697
6698         * final.c (output_asm_insn): Make sure assembly dialects are
6699         terminated, not nested.  Output `|' and `}' characters if they
6700         don't appear inside assembly dialect selection.
6701         * config/i386/i386.md (rep_movdi_rex64, rep_movsi, rep_movsi_rex64,
6702         rep_movqi, rep_movqi_rex64, rep_stosdi_rex64, rep_stossi,
6703         rep_stossi_rex64, rep_stosqi, rep_stosqi_rex64, strsetsi_1,
6704         strsetsi_rex_1): Add {} braces.
6705
6706 2001-10-11  Zack Weinberg  <zack@codesourcery.com>
6707
6708         * toplev.c (compile_file): Ignore return value from yyparse.
6709         Always pop any nested binding levels after yyparse returns.
6710
6711 2001-10-11  Richard Henderson  <rth@redhat.com>
6712
6713         * doc/c-tree.texi (Expression trees): Add VTABLE_REF.
6714
6715 2001-10-11  Richard Henderson  <rth@redhat.com>
6716
6717         * dwarf2out.c (add_const_value_attribute): If long < HOST_WIDE_INT,
6718         fall back to add_AT_long_long for large CONST_INT.
6719
6720 2001-10-11  Richard Henderson  <rth@redhat.com>
6721
6722         * config/i386/i386.md (setcc splitters): Add four splitters to
6723         simplify compound compares that simplify_comparison can't handle.
6724
6725 2001-10-11  Zack Weinberg  <zack@codesourcery.com>
6726
6727         * cpplex.c (digraph_spellings, token_spellings): Make static.
6728
6729 2001-10-11  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
6730
6731         * unroll.c (loop_iterations): Fixup last patch.
6732
6733 2001-10-11  Richard Henderson  <rth@redhat.com>
6734
6735         * rtl.h (REG_VTABLE_REF): New.
6736         * rtl.c (reg_note_name): Add it.
6737         * combine.c (distribute_notes): Handle it.
6738         * final.c (final_scan_insn): Handle it.
6739         * tree.def (VTABLE_REF): New.
6740         * expr.c (expand_expr): Handle it.
6741         * varasm.c (assemble_vtable_entry, assemble_vtable_inherit): New.
6742         * output.h: Declare them.
6743
6744 2001-10-11  Richard Henderson  <rth@redhat.com>
6745
6746         * dwarf2out.c (rtl_for_decl_location): If no DECL_RTL, look
6747         for a DECL_INITIAL.
6748
6749 2001-10-11  David Edelsohn  <edelsohn@gnu.org>
6750
6751         * config/rs6000/xcoff.h (UNALIGNED_DOUBLE_INT_ASM_OP): Only
6752         available in 64-bit mode.
6753
6754 2001-10-11  Hans-Peter Nilsson  <hp@axis.com>
6755
6756         * config.gcc: Add cris-*-aout, cris-*-elf, cris-*-none,
6757         cris-*-linux* cases.
6758         * config/cris/cris-protos.h: New file.
6759         * config/cris/cris.c: New file.
6760         * config/cris/cris.h: New file.
6761         * config/cris/cris.md: New file.
6762         * config/cris/linux.h: New file.
6763         * config/cris/aout.h: New file.
6764         * config/cris/arit.c: New file.
6765         * config/cris/cris_abi_symbol.c: New file.
6766         * config/cris/mulsi3.asm: New file.
6767         * config/cris/t-aout: New file.
6768         * config/cris/t-cris: New file.
6769         * config/cris/t-elfmulti: New file.
6770         * config/cris/t-linux: New file.
6771         * doc/invoke.texi: Add CRIS options.
6772         * doc/install.texi (Specific): Add blurb for CRIS.
6773
6774 2001-10-10  Hartmut Schirmer <SchirmerH@Innovative-Systems.de>
6775
6776         * config/float-i128.h: Make sure __STDC__VERSION__ is defined
6777         before using it.
6778         * config/float/i32.h: Likewise.
6779         * config/float-i386.h: Likewise.
6780         * config/float-i64.h: Likewise.
6781         * config/float-m68k.h: Likewise.
6782         * config/float-sh.h: Likewise.
6783         * config/float-sparc.h: Likewise.
6784
6785 2001-10-11  Hans-Peter Nilsson  <hp@axis.com>
6786
6787         * doc/contrib.texi: Add note about CRIS port to my entry.
6788
6789 2001-10-11  Kazu Hirata  <kazu@hxi.com>
6790
6791         * basic-block.h: Fix formatting.
6792         * bitmap.h: Likewise.
6793         * cpplib.h: Likewise.
6794         * c-tree.h: Likewise.
6795         * diagnostic.h: Likewise.
6796         * flags.h: Likewise.
6797         * ggc.h: Likewise.
6798         * longlong.h: Likewise.
6799         * real.h: Likewise.
6800         * reload.h: Likewise.
6801         * rtl.h: Likewise.
6802         * tree.h: Likewise.
6803
6804 2001-10-10  Richard Henderson  <rth@redhat.com>
6805
6806         * c-parse.in (asm_operand): Allow named operands.
6807         * genconfig.c (max_recog_operands): Set to 29.
6808         * local-alloc.c (requires_inout): Skip multiple digits.
6809         * recog.c (asm_operand_ok): Likewise.
6810         (preprocess_constraints): Use strtoul for matching constraints.
6811         (constrain_operands): Likewise.
6812         * regmove.c (find_matches): Likewise.
6813         * reload.c (find_reloads): Likewise.
6814         * stmt.c (parse_output_constraint): Don't reject in-out
6815         constraint on operands > 9.  Reject '[' in constraint.
6816         (expand_asm_operands): Handle named operands.  Use strtoul
6817         for matching constraints.
6818         (check_operand_nalternatives): Split out from expand_asm_operands.
6819         (check_unique_operand_names): New.
6820         (resolve_operand_names, resolve_operand_name_1): New.
6821
6822         * doc/extend.texi (Extended Asm): Document named operands.
6823         * doc/md.texi (Simple Constraints): Document matching constraints
6824         on operands > 9.
6825
6826 2001-10-10  Richard Henderson  <rth@redhat.com>
6827
6828         * combine.c (try_combine): Handle a SEQUENCE of one insn.
6829
6830         * i386.c (test splitter): Narrow tests vs paradoxical subregs.
6831         (jcc splitters): Add two splitters to simplify compound compares
6832         that simplify_comparison can't handle.
6833
6834 2001-10-10  Richard Henderson  <rth@redhat.com>
6835
6836         * langhooks.c: Include langhooks.h.
6837         * Makefile.in (langhooks.o): Depend on it.
6838
6839 Wed Oct 10 23:49:06 EDT 2001  John Wehle  (john@feith.com)
6840
6841         * rtlanal.c (noop_move_p): Insns with a REG_RETVAL note
6842         should not be considered as a no-op.
6843         * flow.c (delete_noop_moves): Handle REG_LIBCALL notes.
6844
6845 2001-10-10  Stan Shebs  <shebs@apple.com>
6846
6847         * alias.c: Remove uses of "register" specifier in declarations
6848         of arguments and local variables.
6849         * c-common.c: Ditto.
6850         * c-convert.c: Ditto.
6851         * c-decl.c: Ditto.
6852         * c-format.c: Ditto.
6853         * c-semantics.c: Ditto.
6854         * c-typeck.c: Ditto.
6855         * caller-save.c: Ditto.
6856         * calls.c: Ditto.
6857         * cfg.c: Ditto.
6858         * cfgbuild.c: Ditto.
6859         * cfgrtl.c: Ditto.
6860         * collect2.c: Ditto.
6861         * combine.c: Ditto.
6862         * convert.c: Ditto.
6863         * cppexp.c: Ditto.
6864         * cppfiles.c: Ditto.
6865         * cse.c: Ditto.
6866         * dbxout.c: Ditto.
6867         * defaults.h: Ditto.
6868         * df.c: Ditto.
6869         * dwarf2out.c: Ditto.
6870         * dwarfout.c: Ditto.
6871         * emit-rtl.c: Ditto.
6872         * explow.c: Ditto.
6873         * expmed.c: Ditto.
6874         * expr.c: Ditto.
6875         * final.c: Ditto.
6876         * fix-header.c: Ditto.
6877         * floatlib.c: Ditto.
6878         * flow.c: Ditto.
6879         * fold-const.c: Ditto.
6880         * function.c: Ditto.
6881         * gcc.c: Ditto.
6882         * gcse.c: Ditto.
6883         * gen-protos.c: Ditto.
6884         * genattrtab.c: Ditto.
6885         * gencheck.c: Ditto.
6886         * genconfig.c: Ditto.
6887         * genemit.c: Ditto.
6888         * genextract.c: Ditto.
6889         * genflags.c: Ditto.
6890         * gengenrtl.c: Ditto.
6891         * genoutput.c: Ditto.
6892         * genpeep.c: Ditto.
6893         * genrecog.c: Ditto.
6894         * gensupport.c: Ditto.
6895         * global.c: Ditto.
6896         * gmon.c: Ditto.
6897         * graph.c: Ditto.
6898         * haifa-sched.c: Ditto.
6899         * hard-reg-set.h: Ditto.
6900         * hash.c: Ditto.
6901         * integrate.c: Ditto.
6902         * jump.c: Ditto.
6903         * lists.c: Ditto.
6904         * local-alloc.c: Ditto.
6905         * loop.c: Ditto.
6906         * mips-tdump.c: Ditto.
6907         * mips-tfile.c: Ditto.
6908         * optabs.c: Ditto.
6909         * prefix.c: Ditto.
6910         * print-rtl.c: Ditto.
6911         * read-rtl.c: Ditto.
6912         * real.c: Ditto.
6913         * recog.c: Ditto.
6914         * reg-stack.c: Ditto.
6915         * regclass.c: Ditto.
6916         * regmove.c: Ditto.
6917         * reload.c: Ditto.
6918         * reload1.c: Ditto.
6919         * reorg.c: Ditto.
6920         * resource.c: Ditto.
6921         * rtl.c: Ditto.
6922         * rtlanal.c: Ditto.
6923         * scan.c: Ditto.
6924         * sched-deps.c: Ditto.
6925         * sched-rgn.c: Ditto.
6926         * sdbout.c: Ditto.
6927         * simplify-rtx.c: Ditto.
6928         * stmt.c: Ditto.
6929         * stor-layout.c: Ditto.
6930         * toplev.c: Ditto.
6931         * tradcif.y: Ditto.
6932         * tradcpp.c: Ditto.
6933         * tree.c: Ditto.
6934         * unroll.c: Ditto.
6935         * varasm.c: Ditto.
6936         * xcoffout.c: Ditto.
6937
6938 2001-10-10  Richard Henderson  <rth@redhat.com>
6939
6940         * rtl.h (can_reverse_comparison_p): Remove.
6941
6942 2001-10-10  Christopher Faylor <cgf@redhat.com>
6943
6944         * config/i386/cygwin.h: Avoid adding include files if -nostdinc is
6945         used.
6946
6947 2001-10-10  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
6948
6949         * config/i386/mingw32.h (WIN32_NO_ABSOLUTE_INST_DIRS): New define.
6950         (Thanks to Chris Faylor for suggesting macro name).
6951         (CPP_PREDEFINES): Define __MINGW32__ but don't set value; add more
6952         WIN32 defines.
6953         (STANDARD_INCLUDE_DIR): Remove i386- from directory name.
6954         (STANDARD_INCLUDE_COMPONENT): Change to MINGW.
6955         (MATH_LIBRARY): Undef before definition.
6956         (OUTPUT_QUOTED_STRING): Likewise.
6957         * config/i386/cygwin.h: Use WIN32_NO_ABSOLUTE_INST_DIRS.
6958
6959 2001-10-10  Richard Henderson  <rth@redhat.com>
6960
6961         * unwind-dw2-fde.c (fde_compare_t): Change return type to int.
6962         (fde_unencoded_compare): Likewise.  Don't use subtraction to get
6963         a tristate comparison value.
6964         (fde_single_encoding_compare, fde_mixed_encoding_compare): Likewise.
6965
6966 2001-10-10  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
6967
6968         PR c++/4512
6969         * unroll.c (loop_iterations): Ignore insns generated by loop
6970         unrolling.
6971
6972         * config.gcc (mips*-*-gnu*): Delete support.
6973         * config/mips/gnu.h: Remove.
6974
6975 2001-10-10  Kazu Hirata  <kazu@hxi.com>
6976
6977         * calls.c: Fix formatting.
6978         * c-decl.c: Likewise.
6979         * cfgcleanup.c: Likewise.
6980         * combine.c: Likewise.
6981         * cppfiles.c: Likewise.
6982         * cpplib.c: Likewise.
6983         * cppmacro.c: Likewise.
6984         * crtstuff.c: Likewise.
6985         * cse.c: Likewise.
6986         * dwarf2out.c: Likewise.
6987         * expmed.c: Likewise.
6988         * expr.c: Likewise.
6989         * fold-const.c: Likewise.
6990         * function.c: Likewise.
6991         * gcse.c: Likewise.
6992         * genattrtab.c: Likewise.
6993         * ggc-page.c: Likewise.
6994         * integrate.c: Likewise.
6995         * libgcc2.c: Likewise.
6996         * loop.c: Likewise.
6997         * optabs.c: Likewise.
6998         * profile.c: Likewise.
6999         * protoize.c: Likewise.
7000         * real.c: Likewise.
7001         * recog.c: Likewise.
7002         * reload1.c: Likewise.
7003         * reload.c: Likewise.
7004         * reorg.c: Likewise.
7005         * resource.c: Likewise.
7006         * sched-rgn.c: Likewise.
7007         * sdbout.c: Likewise.
7008         * stmt.c: Likewise.
7009         * toplev.c: Likewise.
7010         * varasm.c: Likewise.
7011
7012 2001-10-10  Janis Johnson  <janis187@us.ibm.com>, Alexandre Oliva  <aoliva@redhat.com>
7013
7014         * langhooks.c: Include rtl.h, insn-config.h and integrate.h.
7015         * Makefile.in (langhooks.o): Add dependencies.
7016
7017 Wed Oct 10 00:41:29 EDT 2001  John Wehle  (john@feith.com)
7018
7019         * rs6000.c (rs6000_emit_load_toc_table): Don't
7020         strdup the toc label.
7021         (create_TOC_reference): Likewise.
7022
7023 2001-10-09  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
7024
7025         * config.gcc (i[34567]86-*-mingw32*): Make msvcrt-dependent
7026         version default.
7027
7028 2001-10-09  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
7029
7030         * config/i386/i386.c (ix86_attribute_table): Correct
7031         min_len, max_len fields for dllimport, dllexport and shared.
7032
7033 2001-10-10  Joseph S. Myers  <jsm28@cam.ac.uk>
7034
7035         * doc/c-tree.texi, doc/cppinternals.texi, doc/extend.texi,
7036         doc/install.texi, doc/md.texi, doc/rtl.texi, doc/tm.texi:
7037         Consistently use "nonzero" instead of "non-zero".
7038
7039 2001-10-09  Kazu Hirata  <kazu@hxi.com>
7040
7041         * acconfig.h: Fix comment formatting.
7042         * c-dump.h: Likewise.
7043         * c-tree.h: Likewise.
7044         * conditions.h: Likewise.
7045         * expr.h: Likewise.
7046         * function.h: Likewise.
7047         * gthr.h: Likewise.
7048         * hwint.h: Likewise.
7049         * integrate.h: Likewise.
7050         * intl.h: Likewise.
7051         * loop.h: Likewise.
7052         * optabs.h: Likewise.
7053
7054 2001-10-09  Kazu Hirata  <kazu@hxi.com>
7055
7056         * c-common.h: Fix comment formatting.
7057         * c-dump.c: Likewise.
7058         * cfg.c: Likewise.
7059         * diagnostic.h: Likewise.
7060         * except.c: Likewise.
7061         * gcc.h: Likewise.
7062         * gcov-io.h: Likewise.
7063         * genattrtab.c: Likewise.
7064         * output.h: Likewise.
7065         * predict.h: Likewise.
7066         * reload1.c: Likewise.
7067         * reload.h: Likewise.
7068         * resource.h: Likewise.
7069         * scan.h: Likewise.
7070         * system.h: Likewise.
7071         * tree.h: Likewise.
7072         * tree-inline.c: Likewise.
7073         * tsystem.h: Likewise.
7074         * varasm.c: Likewise.
7075         * xcoffout.h: Likewise.
7076
7077 2001-10-09  Joseph S. Myers  <jsm28@cam.ac.uk>
7078
7079         * doc/gcc.texi: Document preference for "nonzero" over "non-zero".
7080
7081 2001-10-09  Joseph S. Myers  <jsm28@cam.ac.uk>
7082
7083         * config/alpha/freebsd.h, config/alpha/lib1funcs.asm,
7084         config/i386/i386elf.h, config/i386/netbsd-elf.h,
7085         config/i386/netware.h, config/mcore/gfloat.h,
7086         config/mcore/mcore.c, config/mcore/mcore.h, config/mcore/mcore.md,
7087         config/netware.h, gccbug.in: Update FSF address.
7088
7089 2001-10-09  Kazu Hirata  <kazu@hxi.com>
7090
7091         * c-common.c: Fix comment typos.
7092         * cfgrtl.c: Likewise.
7093         * collect2.c: Likewise.
7094         * cpplex.c: Likewise.
7095         * doloop.c: Likewise.
7096         * dwarf2out.c: Likewise.
7097         * dwarfout.c: Likewise.
7098         * expr.c: Likewise.
7099         * fold-const.c: Likewise.
7100         * gcc.c: Likewise.
7101         * gcov.c: Likewise.
7102         * gcse.c: Likewise.
7103         * global.c: Likewise.
7104         * ifcvt.c: Likewise.
7105         * loop.c: Likewise.
7106         * optabs.c: Likewise.
7107         * protoize.c: Likewise.
7108         * regclass.c: Likewise.
7109         * reorg.c: Likewise.
7110         * rtl.h: Likewise.
7111         * stmt.c: Likewise.
7112         * tree.h: Likewise.
7113         * doc/cpp.texi: Likewise.
7114         * doc/c-tree.texi: Likewise.
7115         * doc/extend.texi: Likewise.
7116         * doc/invoke.texi: Likewise.
7117         * doc/objc.texi: Likewise.
7118         * doc/tm.texi: Likewise.
7119
7120 2001-10-08  Richard Henderson  <rth@redhat.com>
7121
7122         * varasm.c (set_named_section_flags): Initialize "declared".
7123
7124 2001-10-08  Robert Lipe  <robertlipe@usa.net>
7125
7126         * varasm.c (struct in_named_entry): Add declared.
7127         (named_section_first_declaration): New function.
7128         (default_elf_asm_named_section): Use it.
7129         * output.h (named_section_first_declaration): New.
7130
7131 2001-10-08  Richard Henderson  <rth@redhat.com>
7132
7133         * i386.md (movsi_xor): Export.
7134         (setcc peep2): Use it when available; add an alternative to
7135         match zero_extendhisi2_and.
7136
7137 2001-10-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7138
7139         * romp-protos.h (romp_initialize_trampoline): New function.
7140         * romp.c (romp_initialize_trampoline): Likewise.
7141         * romp.h (INITIALIZE_TRAMPOLINE): Define in terms of
7142         romp_initialize_trampoline.
7143
7144 2001-10-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7145
7146         * m68k/3b1.h (ASM_OUTPUT_SOURCE_LINE): Don't reference `last_linenum'.
7147         * m68k/auxas.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
7148         * m68k/crds.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
7149         * m68k/mot3300.h (ASM_OUTPUT_SOURCE_LINE): Likewise.
7150
7151 2001-10-08  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
7152
7153         * unroll.c (loop_iterations): Extend check for multiple back edges.
7154
7155 2001-10-08  Alexandre Oliva  <aoliva@redhat.com>
7156
7157         * langhooks.h: New file.
7158         * Makefile.in (OBJS): Added langhooks.o.
7159         (c-lang.o): Depend on langhooks.h.
7160         (c-common.o): Don't depend on tree-inline.h.
7161         (tree-inline.o): Depend on toplev.h.
7162         (langhooks.o): New rule.
7163         * c-common.c: Don't include tree-inline.h.
7164         (c_mark_lang_decl): Mark argument c as unused.
7165         (c_common_lang_init): Don't initialize hooks here.
7166         * c-lang.c: Include langhooks.h, then override some macros.
7167         (lang_hooks): Initialize with macros in langhooks.h.
7168         (c_init): Don't initialize hooks here.
7169         * toplev.c (struct lang_hooks_for_tree_inlining): New struct.
7170         (struct lang_hooks): Add tree_inlining.  Refer to langhooks.h.
7171         * tree-inline.c: Include toplev.h.  Don't define hook variables.
7172         * tree-inline.h: Don't define hook types nor declare hook
7173         variables.  Move macros to...
7174         * langhooks.c: ... new file, as functions.  Adjust all callers.
7175
7176 2001-10-08  Jeffrey A Law  <law@cygnus.com>
7177
7178         * sibcall.c (optimize_sibling_and_tail_recursive_calls): Call
7179         purge_mem_unchanging_flag on all instructions, not just on those
7180         before NOTE_INSN_FUNCTION_BEG.
7181
7182 2001-10-08  Neil Booth  <neil@daikokuya.demon.co.uk>
7183
7184         * cppmacro.c (_cpp_create_definition): Leave comments off.
7185
7186         * doc/cpp.texi: Update.
7187
7188 2001-10-08  DJ Delorie  <dj@redhat.com>
7189
7190         * c-decl.c (grokfield): Make sure the only unnamed fields
7191         we're allowing are either structs or unions.
7192         * doc/extend.texi: Add documentation for the unnamed field
7193         extension.
7194
7195 2001-10-08  Zack Weinberg  <zack@codesourcery.com>
7196
7197         * aclocal.m4 (gcc_AC_PROG_GNAT): New.
7198         * configure.in: Use it.
7199         * configure: Regenerated.
7200         * config/pa/t-linux, config/pa/t-pa, config/pa/t-pa64,
7201         config/pa/t-pro: Set T_ADAFLAGS, not ADA_CFLAGS.
7202
7203 2001-10-08  Neil Booth  <neil@daikokuya.demon.co.uk>
7204
7205         * cppfiles.c (open_file): Don't mark zero-length files
7206         never-reread here.  Don't output diagnostics here either.
7207         (stack_include_file): Mark them never-reread here.
7208         (_cpp_read_file): Update.
7209
7210 2001-10-08  Richard Henderson  <rth@redhat.com>
7211
7212         * config/i386/sol2.h (UNALIGNED_DOUBLE_INT_ASM_OP): New.
7213
7214 2001-10-08  Richard Henderson  <rth@redhat.com>
7215
7216         * expr.c (store_expr): When converting a CONST_INT for storage
7217         in a SUBREG, convert it to both SUBREG modes before stripping
7218         the SUBREG.
7219
7220 2001-10-08  Richard Henderson  <rth@redhat.com>
7221
7222         * varasm.c (restore_varasm_status): New.
7223         * function.h: Declare it.
7224         * function.c (pop_function_context_from): Call it.
7225
7226 2001-10-08  Richard Henderson  <rth@redhat.com>
7227
7228         * c-common.h (struct c_lang_decl): Add declared_inline.
7229         * c-tree.h (DECL_DECLARED_INLINE_P): New.
7230         * c-lang.c (c_disregard_inline_limits): Use it.
7231         * c-decl.c (duplicate_decls): Likewise.
7232         (pushdecl, redeclaration_error_message): Likewise.
7233         (pushdecl): Allocate DECL_LANG_SPECIFIC if needed.
7234         (grokdeclarator): Likewise.  Set DECL_DECLARED_INLINE_P.
7235         Set DECL_INLINE if -finline-functions.
7236         (store_parm_decls): Don't allocate DECL_LANG_SPECIFIC here.
7237
7238 2001-10-08  Neil Booth  <neil@daikokuya.demon.co.uk>
7239
7240         * cppmacro.c (funlike_invocation_p): Move some logic to caller
7241         in enter_macro_context.  Create a padding token in its own context
7242         if necessary when the search for '(' fails.
7243         (enter_macro_context): Update.
7244
7245 2001-10-07  Joseph S. Myers  <jsm28@cam.ac.uk>
7246
7247         * ChangeLog.2, c-decl.c, config/i386/i386.md, doc/gcc.texi, gcc.c,
7248         genmultilib, toplev.c: Fix spelling errors of "separate" as
7249         "seperate", and corresponding spelling errors of related words.
7250
7251 2001-10-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7252
7253         * builtins.c (expand_builtin_setjmp_receiver): Const-ify.
7254         * c-common.c (fname_var_t, c_tree_code_type, c_tree_code_length):
7255         Likewise.
7256         * c-dump.c (dump_option_value_info): Likewise.
7257         * c-format.c (format_length_info, format_char_info,
7258         format_flag_spec, format_flag_pair, format_kind_info): Likewise.
7259         * collect2.c (names): Likewise.
7260         * cppdefault.h (default_include): Likewise.
7261         * cppexp.c (suffix, vsuf_1, vsuf_2, vsuf_3): Likewise.
7262         * flow.c (life_analysis): Likewise.
7263         * gcc.c (dir_separator_str, modify_target, option_map,
7264         target_option_translations, spec_list_1, extra_specs_1,
7265         init_spec): Likewise.
7266         * gcov.c (gcov_version_string): Likewise.
7267         * genattr.c (write_units): Likewise.
7268         * genattrtab.c (make_length_attrs, write_function_unit_info): Likewise.
7269         * gengenrtl.c (rtx_definition, defs): Likewise.
7270         * genrecog.c (pred_table): Likewise.
7271         * global.c (global_alloc): Likewise.
7272         * lcm.c (optimize_mode_switching): Likewise.
7273         * local-alloc.c (find_free_reg): Likewise.
7274         * params.h (param_info): Likewise.
7275         * predict.c (predictor_info): Likewise.
7276         * protoize.c (unexpansion_struct): Likewise.
7277         * real.c (bmask): Likewise.
7278         * recog.h (insn_operand_data, insn_data): Likewise.
7279         * regclass.c (initial_fixed_regs, initial_call_used_regs): Likewise.
7280         * stmt.c (expand_nl_goto_receiver): Likewise.
7281         * toplev.c (da, debug_args, lang_opt, documented_lang_options,
7282         target_switches, target_options): Likewise.
7283         * tradcif.y (token, tokentab2, yylex): Likewise.
7284         * tree.h (attribute_spec): Likewise.
7285
7286         * alpha.c (override_options, alpha_lookup_xfloating_lib_func):
7287         Likewise.
7288         * arc.c (arc_output_function_epilogue): Likewise.
7289         * arm.c (processors, all_cores, all_architectures,
7290         arm_override_options, isr_attribute_arg, isr_attribute_args,
7291         arm_isr_value): Likewise.
7292         * avr.c (mcu_type_s, reg_class_tab, order_regs_for_local_alloc):
7293         Likewise.
7294         * c4x.c (c4x_int_reglist): Likewise.
7295         * d30v.c (override_options): Likewise.
7296         * h8300.c (shift_insn): Likewise.
7297         * i386.c (size_cost, i386_cost, i486_cost, pentium_cost,
7298         pentiumpro_cost, k6_cost, athlon_cost, pentium4_cost, ix86_cost,
7299         ix86_expand_sse_comi, ix86_expand_sse_compare, override_options,
7300         builtin_description, bdesc_comi, bdesc_2arg, bdesc_1arg,
7301         ix86_init_mmx_sse_builtins, ix86_expand_builtin): Likewise.
7302         * i386.h (processor_costs, ix86_cost): Likewise.
7303         * m68hc11.c (m68hc11_cost, m6811_cost, m6812_cost): Likewise.
7304         * m68hc11.h (processor_costs, m68hc11_cost): Likewise.
7305         * m68k.c (codes_68881, codes_FPA): Likewise.
7306         * m88k.c (mode_from_align, max_from_align, all_from_align,
7307         best_from_align, m_options): Likewise.
7308         * m88k.h (ORDER_REGS_FOR_LOCAL_ALLOC): Likewise.
7309         * mcore.c (mode_from_align): Likewise.
7310         * mips/elf64.h (UNIQUE_SECTION): Likewise.
7311         * mips/iris6gld.h (UNIQUE_SECTION): Likewise.
7312         * mips.c (mips_sw_reg_names, mips_regno_to_class): Likewise.
7313         * mips.h (mips_regno_to_class): Likewise.
7314         * ns32k.c (scales): Likewise.
7315         * pa.c (import_string, magic_milli): Likewise.
7316         * rs6000.c (alt_reg_names, rs6000_override_options): Likewise.
7317         * sparc.c (leaf_reg_remap, sparc_override_options,
7318         reg_leaf_alloc_order, reg_nonleaf_alloc_order, reg_alloc_orders):
7319         Likewise.
7320         * sparc.h (sparc_cpu_select, leaf_reg_remap): Likewise.
7321
7322 2001-10-07  Dale Johannesen  <dalej@apple.com>
7323
7324         * reload1.c (reload_reg_free_p): Teach register interference
7325         checking that multiple output reloads are emitted in
7326         reverse order.
7327         reload1.c (reload_reg_reaches_end_p):  Ditto.
7328         reload1.c (reloads_conflict):  Ditto.
7329
7330 2001-10-07  Joseph S. Myers  <jsm28@cam.ac.uk>
7331
7332         * doc/c-tree.texi, doc/tm.texi: Consistently put NULL and
7333         NULL_TREE inside @code.
7334
7335 2001-10-07  Joseph S. Myers  <jsm28@cam.ac.uk>
7336
7337         * doc/gcc.texi: Document consistent style of "32-bit",
7338         "Objective-C", and "@code{NULL}".
7339
7340 2001-10-06  Zack Weinberg  <zack@codesourcery.com>
7341
7342         * cpplex.c (enum spell_type): Add SPELL_NUMBER.
7343         (cpp_token_len, cpp_spell_token, cpp_output_token,
7344         _cpp_equiv_tokens): Handle it.
7345         * cpplib.h (TTYPE_TABLE): Use SPELL_NUMBER for CPP_NUMBER and
7346         CPP_COMMENT, SPELL_NONE for CPP_PADDING and CPP_EOF.
7347         * cppexp.c (_cpp_parse_expr): Use the correct operator code in
7348         error messages.
7349
7350 Sat Oct  6 07:42:39 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7351
7352         * gcc.c (default_compilers): Remove .ada.
7353
7354 2001-10-06  Neil Booth  <neil@daikokuya.demon.co.uk>
7355
7356         * doc/cppinternals.texi: Update.
7357
7358 2001-10-06  Zack Weinberg  <zack@codesourcery.com>
7359
7360         * gcc.c (main): Set this_file_error if the appropriate
7361         compiler for a language has not been installed.
7362
7363 2001-10-06  Ulrich Weigand  <uweigand@de.ibm.com>
7364
7365         * config/s390/s390.c (s390_va_arg): Use set_mem_alias_set.
7366
7367 2001-10-05  Joseph S. Myers  <jsm28@cam.ac.uk>
7368
7369         * gccbug.in (CATEGORIES): Add ada.
7370
7371 2001-10-05  Catherine Moore  <clm@redhat.com>
7372
7373         * config/stormy16/stormy-abi:  Document abi changes.
7374         * config/stormy16/stormy16.h (REG_ALLOC_ORDER): Redefine.
7375         (ICALL_REGS): New register class.
7376         (NUM_ARGUMENT_REGISTERS): Now 6.
7377         (DEFAULT_PCC_STRUCT_RETURN): Don't try to return structs
7378         in registers.
7379         (REG_CLASS_FROM_LETTER): Map 'z' to ICALL_REGS.
7380         * config/stormy16.md (call_internal, call_value_internal,
7381         indirect_jump): Use new 'z' constraint.
7382
7383 2001-10-05  Neil Booth  <neil@daikokuya.demon.co.uk>
7384
7385         * doc/cppinternals.texi: Update.
7386
7387 2001-10-05  Richard Henderson  <rth@redhat.com>
7388
7389         * dwarf2out.c (FRAME_BEGIN_LABEL): New.
7390         (output_call_frame_info): Use it instead of __FRAME_BEGIN__ and
7391         the gas section-name-as-label feature.
7392
7393 2001-10-05  Neil Booth  <neil@daikokuya.demon.co.uk>
7394
7395         * doc/cppinternals.texi: Update.
7396
7397 Fri Oct  5 08:17:46 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7398
7399         * config/i386/i386.c (ix86_split_to_parts): Use trunc_int_for_mode
7400         to ensure valid SImode constants.
7401
7402 2001-10-05  Alexandre Oliva  <aoliva@redhat.com>
7403
7404         * Makefile.in (c-decl.o): Depend on tree-inline.h.
7405         (c-lang.o): Likewise, as well as insn-config.h and integrate.h.
7406         * c-decl.c: Include tree-inline.h.
7407         (c_expand_body): Call optimize_inline_calls. Determine whether
7408         a function is inlinable upfront, and only clear
7409         DECL_SAVED_TREE, DECL_INITIAL and DECL_ARGUMENTS if it isn't.
7410         * c-lang.c: Include tree-inline.h, insn-config.h and integrate.h.
7411         (c_disregard_inline_limits): New function.
7412         (inline_forbidden_p, c_cannot_inline_tree_fn): Likewise.
7413         (c_post_options): Enable tree inlining if inlining is enabled.
7414         Don't inline trees when instrumenting functions.
7415         (c_init): Initialize lang_disregard_inline_limits and
7416         lang_cannot_inline_tree_fn.
7417         * tree-inline.c (initialize_inlined_parameters): Handle calls
7418         with fewer arguments than declared parameters, and fewer
7419         parameters than passed arguments.  Don't assume value is a
7420         DECL.
7421         (declare_return_variable): Convert return value back to the
7422         original type, if it was promoted.
7423         (tree_inlinable_function_p): New function.
7424         (inlinable_function_p): Don't look at DECL_INLINE if we're
7425         inlining all functions.  Make it work with a NULL id.
7426         Re-check DECL_UNINLINABLE after language-specific checks.
7427         * tree-inline.h (tree_inlinable_function_p): Declare it.
7428         * integrate.c (save_for_inline): Don't bother to prepare argvec
7429         when not inlining.
7430         * cse.c (check_for_label_ref): Don't check deleted labels.
7431
7432         * Makefile.in (tree-inline.o): Depend on newly-included headers.
7433         * tree-inline.c: Include headers needed for the functions moved in.
7434         (struct inline_data, INSNS_PER_STMT): Moved from cp/optimize.c.
7435         (remap_decl, remap_block, copy_scopy_stmt, copy_body_r): Likewise.
7436         (copy_body, initialize_inlined_parameters): Likewise.
7437         (declare_return_variable, inlinable_function_p): Likewise.
7438         (expand_call_inline, expand_calls_inline): Likewise.
7439         (optimize_inline_calls, clone_body): Likewise.
7440         (walk_tree, walk_tree_without_duplicates): Moved from cp/tree.c.
7441         (copy_tree_r, remap_save_expr): Likewise.
7442
7443 2001-10-04  Alexandre Oliva  <aoliva@redhat.com>
7444
7445         * Makefile.in (OBJS): Added tree-inline.o.
7446         (c-common.o): Depend on tree-inline.h.
7447         (tree-inline.o): New target.
7448         * c-common.c: Include tree-inline.h.
7449         (c_mark_lang_decl): Don't mark saved_tree.
7450         (c_common_lang_init): Set lang_anon_aggr_type_p.
7451         * c-common.h (walk_tree_fn, DECL_SAVED_TREE): Moved to tree.h.
7452         (struct c_lang_decl): Moved saved_tree to tree_decl.
7453         * ggc-common.c: Mark saved_tree and inlined_fns of FUNCTION_DECLs.
7454         * integrate.h (function_attribute_inlinable_p): Declare it.
7455         * integrate.c (function_attribute_inlinable_p): Export it.
7456         * tree-inline.c: New file.  Define variables declared in...
7457         * tree-inline.h: New file.  Declare functions to be moved to
7458         tree-inline.c.  Define macros and declare types and hooks for
7459         language-specific tree inlining.
7460         (flag_inline_trees): Moved definition from cp/decl2.c.
7461         * tree.h (walk_tree_fn, DECL_SAVED_TREE): Moved from c-common.h.
7462         (TREE_READONLY_DECL_P, DECL_INLINED_FNS): Moved from cp/cp-tree.h.
7463         (struct tree_decl): Moved saved_tree from c_lang_decl and
7464         inlined_fns from C++'s lang_decl.
7465
7466 2001-10-04  Loren J. Rittle  <ljrittle@acm.org>
7467
7468         * Makefile.in (STAGE2_FLAGS_TO_PASS): Remove patches which
7469         propagated HOST_CC, HOST_CFLAGS, HOST_LDFLAGS and HOST_CPPFLAGS.
7470
7471 2001-10-04  Neil Booth  <neil@daikokuya.demon.co.uk>
7472
7473         * doc/cppinternals.texi: Update.
7474
7475 2001-10-04  Eric Christopher  <echristo@redhat.com>
7476
7477         * config/mips/mips.c (init_cumulative_args): Remember to set
7478         cum->prototype.
7479         * config.gcc: Redo linux configuration. Add target_cpu_default
7480         of soft-float to all mipsisa32 combinations and tx39.
7481         * config/mips/linux.h: Remove include of mips.h.
7482
7483 2001-10-03  Loren J. Rittle  <ljrittle@acm.org>
7484
7485         * Makefile.in (STAGE2_FLAGS_TO_PASS): Propagate HOST_CFLAGS,
7486         HOST_LDFLAGS and HOST_CPPFLAGS.
7487
7488 2001-10-03  Ziemowit Laski  <zlaski@apple.com>
7489
7490         * c-parse.in (objc_inherit_code, objc_pq_context,
7491         objc_public_flag): Make static.
7492         (objc_interface_context, objc_implementation_context,
7493         objc_method_context, objc_ivar_chain, objc_ivar_context): Move to
7494         global tree array in objc/objc-act.[ch].
7495         (methoddef): Remove unnecessary code.
7496
7497         * objc/objc-act.c: (hashed_attribute, hashed_entry, imp_entry):
7498         Hoist struct definitions to objc-act.h.
7499         (nst_method_hash_list, cls_method_hash_list, imp_list, imp_count,
7500         cat_count): Place declaration in objc-act.h.
7501         (objc_tree_index): Move enumeration to objc-act.h.
7502         (objc_global_trees): Place declaration and macro accessors in
7503         objc-act.h.
7504         (implementation_context): Remove duplicate; use
7505         objc_implementation_context instead:
7506         (method_context): Remove duplicate; use objc_method_context
7507         instead.
7508         (objc_ellipsis_node, objc_method_prototype_template,
7509         implemented_classes, function_type): Move global vars to
7510         objc_global_trees.
7511         (init_objc): Use LAST_BASE_TREE_CODE instead of LAST_CODE.
7512         (build_message_expr): Move actual construction of ObjC message
7513         send nodes to finish_message_expr.
7514         (finish_message_expr): New routine, contains code formerly in
7515         build_message_expr.
7516         * objc/objc-act.h (finish_message_expr): New prototype.
7517         (objc_ivar_chain, objc_method_context, objc_ellipsis_node): Remove
7518         declarations; these vars are now part of objc_global_trees.
7519         (objc_tree_index, objc_global_trees): Move definitions from
7520         objc-act.c.
7521         * objc/objc-tree.def: Update copyright info.
7522
7523 Wed Oct  3 12:22:11 EDT 2001  John Wehle  (john@feith.com)
7524
7525         * dwarf2asm.c (unaligned_integer_asm_op): Abort if
7526         op is NULL.
7527         * sparc/sysv4.h (UNALIGNED_DOUBLE_INT_ASM_OP): Use
7528         only if TARGET_ARCH64.
7529
7530 2001-10-02  Bernd Schmidt  <bernds@redhat.com>
7531
7532         * doc/extend.texi: Fix some problems with previous checkin.
7533         * doc/invoke.texi: Likewise.
7534
7535 2001-10-02  Neil Booth  <neil@daikokuya.demon.co.uk>
7536
7537         * cpphash.h: Update comments.
7538         (cpp_context): Update.
7539         (spec_nodes): Remove n__Pragma.
7540         * cppinit.c (cpp_create_reader): Update.
7541         (builtin_array): Add _Pragma.
7542         * cpplib.h: Update comments.
7543         (NODE_DISABLED, BT_PRAGMA): New.
7544         (cpp_start_lookahead, cpp_stop_lookahead): Remove prototypes.
7545         * cppmacro.c (struct cpp_macro): Remove disabled.
7546         (builtin_macro): Return int, handle _Pragma, push the new token
7547         on the context stack.
7548         (funlike_invocation_p): Unconstify, update.
7549         (enter_macro_context): Handle builtins here.
7550         (replace_args, push_token_context, push_ptoken_context):
7551         Update for prototype changes.
7552         (_cpp_pop_context): Update.
7553         (cpp_get_token): Don't handle buitins, nor _Pragma here.
7554         (cpp_sys_macro_p): Update.
7555         (_cpp_free_definition): Clear disabled flag.
7556         (_cpp_create_definition): Upate.
7557         * cppmain.c: Update comments.
7558
7559 Tue Oct  2 12:46:01 CEST 2001  Bo Thorsen     <bo@suse.co.uk>,
7560                                 Andreas Jaeger <aj@suse.de>,
7561                                 Jan Hubicka    <jh@suse.cz>
7562
7563         * doc/invoke.texi (i386 Options): Document x86-64 options.
7564         (i386 and x86-64 Options): Rename i386 options section.
7565
7566         * config/i386/i386.h (TARGET_UNWIND_INFO): New.
7567         (TARGET_SWITCHES): Add -munwind-info.
7568         (MASK_NO_UNWIND_INFO): New.
7569         (NO_BUILTIN_SIZE_TYPE, NO_BUILTIN_PTRDIFF_TYPE): Define for
7570         biarch compilation.
7571         (ASM_OUTPUT_DOUBLE_INT): New.
7572
7573         * config/i386/linux64.h: New spec file for Linux x86-64 support.
7574         * config.gcc: Fix tm_file settings for x86-64.
7575         * config/i386/x86-64.h: New file with OS independent x86-64
7576         definitions.
7577         * config/i386/biarch64.h: New file used to configure compiler
7578         to biarch/64bit compilation.
7579
7580         * config/i386/i386.c: (override_options): Set flags default
7581         for 64bit compilation.
7582
7583 Tue Oct  2 12:46:01 CEST 2001  Jan Hubicka  <jh@suse.cz>
7584
7585         * i386.c (legitimize_pic_address): Add missing bits of 64bit support.
7586         (ix86_expand_int_movcc): Optimize DImode conditional moves with
7587         constants on x86_64.
7588         (ix86_attr_length_immediate_default): Support MODE_DI.
7589         * i386.md (fixdi splitter): Add missing "&& 1" in splitter
7590         condition.
7591         (indirect_jump, tablejump): Turn into expander.
7592
7593 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
7594
7595         * c-common.c (c_format_attribute_table): Make format and
7596         format_arg attributes apply to function types rather than to
7597         decls.
7598         (is_valid_printf_arglist): Construct an attribute list and pass
7599         that to check_function_format rather than a name.
7600         * c-common.h (check_function_format): Adjust prototype.
7601         * c-decl.c (duplicate_decls): Preserve attributes from type of
7602         built-in decl when allowing for harmless conflict in types.
7603         * c-format.c (record_function_format,
7604         record_international_format, function_format_list,
7605         international_format_info, international_format_list): Remove.
7606         (function_format_info): Remove next, name and assembler_name.
7607         Make format_num and first_arg_num be unsigned HOST_WIDE_INT.
7608         (decode_format_attr): New.
7609         (handle_format_attribute): Handle receiving a type rather than a
7610         decl.  Call decode_format_attr.  Store format information in a
7611         function_format_info.
7612         (handle_format_arg_attribute): Correct comment.  Handle receiving
7613         a type rather than a decl.  Use unsigned HOST_WIDE_INT for
7614         arg_num.
7615         (check_format_info_recurse, check_format_info_main): Take argument
7616         numbers as unsigned HOST_WIDE_INT.
7617         (check_function_format): Take a list of attributes from the
7618         function type rather than a name or assembler name.  Check for
7619         format attributes in that list and the attributes on the type of
7620         the current function rather than looking through
7621         function_format_list.
7622         (check_format_info): Use unsigned HOST_WIDE_INT for argument
7623         numbers.
7624         (check_format_info_recurse): Take format_arg attributes from the
7625         type of the function calls rather than using
7626         international_format_list.  Allow for multiple format_arg
7627         attributes.
7628         * c-typeck.c (build_function_call): Pass type attributes to
7629         check_function_format rather than name or assembler name.  Don't
7630         require there to be a name or assembler name to check formats.
7631
7632 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
7633
7634         * attribs.c (decl_attributes): Possibly call
7635         insert_default_attributes to insert default attributes on
7636         functions in a lazy manner.
7637         * builtin-attrs.def: New file; define the default format and
7638         format_arg attributes.
7639         * c-common.c (c_format_attribute_table): Move to earlier in the
7640         file.
7641         (c_common_nodes_and_builtins): Initialize format_attribute_table.
7642         (enum built_in_attribute, built_in_attributes,
7643         c_attrs_initialized, c_init_attributes,
7644         c_common_insert_default_attributes): New.
7645         (c_common_lang_init): Don't initialize format_attribute_table.  Do
7646         call c_init_attributes.
7647         * Makefile.in (c-common.o): Depend on builtin-attrs.def.
7648         * c-common.h (init_function_format_info): Don't declare.
7649         (c_common_insert_default_attributes): Declare.
7650         * c-decl.c (implicitly_declare, builtin_function): Call
7651         decl_attributes.
7652         (init_decl_processing): Don't call init_function_format_info.
7653         (insert_default_attributes): New.
7654         * c-format.c (handle_format_attribute,
7655         handle_format_arg_attribute): Be quiet about inappropriate
7656         declaration when applying default attributes.
7657         (init_function_format_info): Remove.
7658         * tree.h (enum attribute_flags): Add ATTR_FLAG_BUILT_IN.
7659         (insert_default_attributes): Declare.
7660
7661 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
7662
7663         * c-format.c (CPLUSPLUS_STD_VER): Define to STD_C94.
7664
7665 2001-10-01  Jim Wilson  <wilson@redhat.com>
7666
7667         * sched-deps.c (add_dependence): When elide conditional dependence,
7668         check that insn doesn't modify cond2.
7669
7670 2001-10-01  Dale Johannesen  <dalej@apple.com>
7671
7672         * config/rs6000/rs6000.h (enum processor_type): Add support
7673         for 7400 (G4) and 7450.
7674         (RTX_COSTS): Ditto.
7675         * config/rs6000/rs6000.c (rs6000_override_options): Ditto.
7676         (rs6000_issue_rate): Ditto.
7677         (rs6000_adjust_cost): Fix cycle counts for compares.
7678         (debug_stack_info):  Fix an obvious typo.
7679         * config/rs6000/rs6000.md: Add functional units for 7400 and 7450.
7680         * doc/invoke.texi: Document.
7681         * config/rs6000/darwin.h (TARGET_DEFAULT): Set to be reasonable
7682         for Darwin.
7683         (PROCESSOR_DEFAULT): Ditto.
7684
7685 2001-10-01  Loren J. Rittle  <ljrittle@acm.org>
7686
7687         * Makefile.in (STAGE2_FLAGS_TO_PASS): Propagate HOST_CC.
7688         (fixinc.sh): Map CC, CFLAGS and LDFLAGS to HOST_* versions for
7689         later recursive make invocation.
7690
7691 2001-10-01  Hans Boehm  <boehm@acm.org>
7692
7693         * optabs.c (emit_libcall_block): When using non-call exceptions,
7694         don't add REG_LIBCALL reg notes to trapping calls.
7695
7696 2001-10-01  David Billinghurst <David.Billinghurst@riotinto.com>
7697
7698         * flow.c (propagate_block_delete_libcall): Remove unused first arg
7699         (propagate_one_insn):  Update for above change
7700
7701 2001-10-01  David Billinghurst <David.Billinghurst@riotinto.com>
7702
7703         * unwind-sjlj.c (_Unwind_GetRegionStart, _Unwind_GetDataRelBase,
7704         _Unwind_GetTextRelBase): Argument is unused.
7705
7706 Mon Oct  1 19:20:57 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7707
7708         * alias.c (get_alias_set): Try to replace PLACEHOLDER_EXPR.
7709         Loop through NOPs, placeholders, and components.
7710         Don't go through NOPs if change mode.
7711         (record_alias_subset): Do nothing if SUBSET and SET are the same.
7712         * emit-rtl.c (set_mem_alias_set): Enable check.
7713         * expr.c (find_placeholder): New function.
7714         (expand_expr, case PLACEHOLDER_EXPR): Use it.
7715         (expand_expr, case COMPONENT_EXPR): Always copy OP0 when we need
7716         to modify it and avoid unneeded copies.
7717         * expr.h (expand_expr): Always define.
7718         (find_placeholder): New declaration.
7719
7720 2001-10-01  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
7721
7722         * config/m68hc11/m68hc11.md ("add-split"): Fix add split when
7723         operand 2 is the stack pointer.
7724         ("addr-peephole"): Fix address computation peephole when operand 2
7725         is the stack pointer.
7726
7727 Mon Oct  1 09:26:41 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7728
7729         * config/i386/i386.c (ix86_va_arg): Call set_mem_alias_set.
7730         (ix86_setup_incoming_varargs): Likewise.
7731
7732 2001-10-01  Jason Merrill  <jason_merrill@redhat.com>
7733
7734         * stor-layout.c (layout_type): Don't complain about too-large
7735         array here.
7736
7737 Mon Oct  1 06:43:41 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7738
7739         * function.c (keep_stack_depressed): Don't use delete_insn.
7740
7741         * expr.h (set_mem_alias_set): Move decl to here.
7742         * rtl.h (mem_attrs): New typedef and struct.
7743         (union rtunion_def): Add field for mem_attrs.
7744         (X0MEMATTR, MEM_ATTRS): New macros.
7745         (MEM_ALIAS_SET): Use MEM_ATTRS.
7746         (MEM_DECL, MEM_OFFSET, MEM_SIZE, MEM_ALIGN): New macros.
7747         (MEM_COPY_ATTRIBUTES): Copy MEM_ATTRS.
7748         (set_mem_alias_set): Delete decl from here.
7749
7750         * alias.c (set_mem_alias_set): Delete from here.
7751         * emit-rtl.c (mem_attrs_htab): New variable.
7752         (rtx_htab_mark, rtx_htab_mark_1): Deleted.
7753         (mem_attrs_htab_hash, mem_attrs_htab_eq): New functions.
7754         (mem_attrs_mark, get_mem_attrs): Likewise.
7755         (gen_rtx_MEM): Clear MEM_ATTRS.
7756         (set_mem_attributes): Move to here.
7757         (set_mem_alias_set): Likewise, and call get_mem_attrs.
7758         (init_emit_once): const_int_htab now deletable htab.
7759         Initialize mem_attrs_htab.
7760         * explow.c (set_mem_attributes): Delete from here.
7761         * function.c (put_var_into_stack): Clear MEM_ATTRS.
7762         (gen_mem_addressof): Likewise; rework to use set_mem_attributes.
7763         * ggc-common.c (ggc_mark_rtx_children, case MEM): New case.
7764         * reload1.c (reload): Rework changing REG to MEM.
7765
7766 2001-09-30  H.J. Lu <hjl@gnu.org>
7767
7768         * acconfig.h (PREFIX_INCLUDE_DIR): New variable.
7769         * config.in: Rebuild.
7770
7771 2001-09-30  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
7772
7773         * config/m68hc11/m68hc11.md ("cmpqi_1"): Fix constraints.
7774         ("tsthi_1"): Avoid allocation in register y.
7775         ("*movqi_68hc12"): Reorganize and fix constraints.
7776         ("zero_extendqisi2"): Prefer d over x and y for operand 1.
7777         ("addqi3"): Likewise.
7778         ("addhi3"): Fix constraints.
7779         ("*logicalhi3_zexthi"): Disparage soft registers.
7780
7781 2001-09-30  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
7782
7783         * config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Fix move of sp
7784         to tmp reg.
7785
7786 2001-09-30  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
7787
7788         * config/m68hc11/m68hc11.h(INCOMING_RETURN_ADDR_RTX): Remove so
7789         that we use setjmp/longjmp exceptions.
7790
7791 2001-09-30  Neil Booth  <neil@daikokuya.demon.co.uk>
7792
7793         * cpphash.h (POOL_ALIGN, POOL_FRONT, POOL_LIMIT, POOL_BASE,
7794         POOL_SIZE, POOL_ROOM, POOL_COMMIT, struct cpp_chunk,
7795         struct cpp_pool, _cpp_init_pool, _cpp_free_pool, _cpp_pool_reserve,
7796         _cpp_pool_alloc, _cpp_next_chunk): Remove.
7797         (_cpp_extend_buff, BUFF_ROOM): Update.
7798         (_cpp_append_extend_buff): New.
7799         (struct cpp_reader): Remove macro_pool, add a_buff.
7800         * cppinit.c (cpp_create_reader): Initialize a_buff, instead of
7801         macro_pool.
7802         (cpp_destroy): Free a_buff instead of macro_pool.
7803         * cpplex.c (new_chunk, chunk_suitable, _cpp_next_chunk,
7804         new_chunk, _cpp_init_pool, _cpp_free_pool, _cpp_pool_reserve,
7805         _cpp_pool_alloc, ): Remove.
7806         (parse_number, parse_string): Update use of _cpp_extend_buff.
7807         (_cpp_extend_buff): Update.
7808         (_cpp_append_extend_buff, cpp_aligned_alloc): New.
7809         * cpplib.c (glue_header_name, parse_answer):
7810         Update use of _cpp_extend_buff.
7811         (cpp_register_pragma, cpp_register_pragma_space): Use
7812         _cpp_aligned_alloc.
7813         (do_assert, do_unassert): Check for EOL, update.
7814         * cppmacro.c (stringify_arg, collect_args): Update to use
7815         _cpp_extend_buff and _cpp_append_extend_buff.
7816         (save_parameter, parse_params, alloc_expansion_token,
7817         _cpp_create_definition): Rework memory management.
7818
7819 2001-09-29  Andris Pavenis  <pavenis@lanet.lv>
7820
7821         * config/i386/xm-djgpp.h (GCC_DRIVER_HOST_INITIALIZATION): Don't
7822         update md_exec_prefix.
7823         (UPDATE_PATH_HOST_CANONICALIZE): Don't free PATH as it can point
7824         to string constant.
7825
7826 2001-09-30  Ulrich Weigand  <uweigand@de.ibm.com>
7827
7828         * config/s390/s390.h (EXTRA_CC_MODES): Add CCLmode.
7829         (SELECT_CC_MODE): Use s390_select_ccmode.
7830         * config/s390/s390-protos.h (s390_select_ccmode): Add.
7831         * config/s390/s390.c (s390_select_ccmode): New.
7832         (s390_match_ccmode): Add CCLmode.
7833         (s390_branch_condition_mask, s390_branch_condition_mnemonic): New.
7834         (output_branch_condition, output_inverse_branch_condition): Removed.
7835         (print_operand): Use s390_branch_condition_mnemonic.
7836         * config/s390/s390.md (addsi3_cc, addsi3_cconly, addsi3_cconly2,
7837         subsi3_cc, subsi3_cconly): Use logical instructions and CCLmode.
7838         (bunordered, bordered, buneq, bungt, bunlt, bnuge, bunle, bltgt): New.
7839
7840         * config/s390/s390.c (check_and_change_labels): Preserve CC mode
7841         when converting conditional branches to far branches.
7842         * config/s390/s390.md (cmpstr_const, cmpstr_64, cmpstr_31, cmpint_si,
7843         cmpint_di): Use CCSmode instead of CCUmode.
7844
7845         * config/s390/s390.c (legitimate_la_operand_p): New.
7846         * config/s390/s390-protos.h (legitimate_la_operand_p): Add.
7847         * config/s390/s390.md (movsi): Convert load address patterns to
7848         arithmetic operations when necessary.
7849         (addaddr_picR, addaddr_picL, addaddr_picN): Removed.
7850         (do_la): Renamed to *do_la and use legitimate_la_operand_p.
7851         (*do_la_reg_0): Don't use before reload.
7852
7853         * config/s390/s390.c (legitimize_address): Make more efficient
7854         use of two-register addressing mode.
7855
7856         * config/s390/s390.c (s390_function_prologue): Fix incorrect prolog
7857         with -mno-backchain in some corner cases.
7858
7859         * config/s390/s390.md (cmpsi_cct): Operands 0 and 1 do not commute.
7860
7861 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
7862
7863         * reload.c (find_reloads): Mark new USE insns with QImode.
7864         (find_reloads_toplev, find_reloads_address, subst_reg_equivs,
7865         find_reloads_subreg_address): Likewise.
7866         * regrename.c (note_sets, clear_dead_regs): Abort if pseudos are
7867         encountered.
7868         * reload1.c (reload_combine_note_use): Likewise, inside USEs and
7869         CLOBBERs.
7870         (reload): Make sure there are no USEs with mode other than
7871         VOIDmode.  At the end, remove those marked with QImode.
7872
7873 2001-09-29  Per Bothner  <per@bothner.com>
7874
7875         * cppdefault.c (cpp_include_defaults):  Also search PREFIX_INCLUDE_DIR.
7876         * Makefile.in (includedir):  Rename to local_includedir.
7877         (includedir):  Define as $(prefix)/include.
7878         * config.in (PREFIX_INCLUDE_DIR):  New variable.
7879         * configure.in (PREFIX_INCLUDE_DIR):  Test for new variable.
7880
7881 2001-09-29  Bernd Schmidt  <bernds@redhat.com>
7882
7883         * config/i386/i386.c (init_mmx_sse_builtins): Fix type of storelps and
7884         storehps builtins.
7885         * doc/extend.texi (Vector Extensions): New node.
7886         * doc/invoke.texi (Machine Dependent Options): Add documentation for
7887         i386 -mmmx, -msse, -m3dnow.
7888
7889 Sat Sep 29 15:08:16 CEST 2001  Jan Hubicka  <jh@suse.cz>
7890
7891         * doc/invoke.texi (Optimize Options): Revert an accidental checkin.
7892
7893 2001-09-29  Hans-Peter Nilsson  <hp@axis.com>
7894
7895         * cse.c (cse_insn) [HAVE_cc0]: Fix typo delete-insn -> delete_insn.
7896
7897         * doc/invoke.texi (Optimize Options): Delete spurious @table.
7898
7899 2001-09-28  Richard Henderson  <rth@redhat.com>
7900
7901         * varasm.c (assemble_integer): Bound alignment check by
7902         BIGGEST_ALIGNMENT.
7903
7904         * cfgrtl.c (redirect_edge_and_branch): Abort if redirect_jump fails.
7905
7906 2001-09-28  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7907
7908         * config/i386/sol2.h (CPLUSPLUS_CPP_SPEC): Define.
7909
7910 2001-09-25  Bernd Schmidt  <bernds@redhat.com>
7911
7912         Mostly from Graham Stott  <grahams@redhat.com>
7913         * c-common.c (type_for_mode): Add support for V2SFmode.
7914         * tree.c (build_common_tree_nodes_2): Likewise.
7915         * tree.h (enum tree_index, global_trees): Likewise.
7916         * config/i386/i386.c (x86_3dnow_a): New variable.
7917         (override_options): Support 3Dnow extensions.
7918         (bdesc_2arg, bdesc_1arg): Some SSE instructions are also part of
7919         Athlon's version of 3Dnow.
7920         (ix86_init_mmx_sse_builtins): Create 3Dnow builtins.
7921         (ix86_expand_builtin): Handle them.
7922         (ix86_hard_regno_mode_ok): Support V2SFmode if using 3Dnow.
7923         * config/i386/i386.h (MASK_3DNOW, MASK_3DNOW_A, TARGET_3DNOW,
7924         TARGET_3DNOW_A): New macros.
7925         (TARGET_SWITCHES): Add 3Dnow switches.
7926         (VALID_MMX_REG_MODE_3DNOW): New macro.
7927         (VECTOR_MODE_SUPPORTED_P): Use it.
7928         (enum ix86_builtins): Add entries for 3Dnow builtins.
7929         * config/i386/i386.md (movv2sf_internal, movv2sf, pushv2sf, pf2id,
7930         pf2iw, addv2sf3, subv2sf3, subrv2sf3, gtv2sf3, gev2sf3, eqv2sf3,
7931         pfmaxv23sf3, pfminv2sf3, mulv2sf3, femms, prefetch_3dnow, prefetchw,
7932         pfacc, pfnacc, pfpnacc, pi2fw, floatv2si2, pavgusb, pfrcpv2sf2,
7933         pfrcpit1v2sf3, pfrcpit2v2sf3, pfrsqrtv2sf2, pfrsqit1v2sf3,
7934         pmulhrwvhi3, pswapdv2si2, pswapdv2sf2): New patterns.
7935         (mmx_pmovmskb, mmx_maskmovq, sse_movntdi, umulv4hi3_highpart,
7936         mmx_uavgv8qi3, mmx_uavgv4hi3, mmx_psadbw, mmx_pinsrw, mmx_pextrw,
7937         mmx_pshufw, umaxv8qi3, smaxv4hi3, uminv8qi3, sminv4hi3, sfence,
7938         sfence_insn, prefetch): Make these available if TARGET_SSE or
7939         TARGET_3DNOW_A.
7940
7941 Fri Sep 28 19:18:40 CEST 2001  Jan Hubicka  <jh@suse.cz>
7942
7943         * i386-protos.h (ix86_setup_incoming_varargs, ix86_va_arg,
7944         ix86_va_start, ix86_build_va_list): Declare.
7945         * i386.c (ix86_setup_incoming_varargs, ix86_va_arg,
7946         ix86_va_start, ix86_build_va_list): New global functions.
7947         * i386.md (sse_prologue_save_insn): New insn.
7948         (sse_prologue_save): New expander.
7949         * i386.h (EXPAND_BUILTIN_VA_ARG, EXPAND_BUILTIN_VA_START,
7950         BUILD_VA_LIST_TYPE, SETUP_INCOMING_VARARGS): New macros.
7951
7952 2001-09-28  Neil Booth  <neil@daikokuya.demon.co.uk>
7953
7954         * cpplex.c (new_buff, _cpp_get_buff, _cpp_extend_buff):
7955         Use size_t everywhere, make definitions consistent with
7956         prototypes.
7957
7958 Fri Sep 28 14:59:34 CEST 2001  Jan Hubicka  <jh@suse.cz>
7959
7960         * gcse.c (replace_store_insn): Use delete_insn.
7961         * loop.c (move_movables): Likewise; avoid delete_insn
7962         from clobbering notes moved elsewhere.
7963         (check_dbra_loop): Use delete_insn.
7964         * ssa.c (convert_from_ssa): Likewise.
7965         * cse.c (cse_insn): Use delete_insn.
7966
7967 2001-09-28  Neil Booth  <neil@daikokuya.demon.co.uk>
7968
7969         * cpphash.h (struct cpp_buff): Make unsigned.
7970         (_cpp_get_buff): Take length of size_t.
7971         (_cpp_unaligned_alloc): New.
7972         (BUFF_ROOM, BUFF_FRONT, BUFF_LIMIT): New.
7973         (struct cpp_reader): Remove ident_pool.  Add u_buff.
7974         * cppinit.c (cpp_create_reader): Initialize u_buff, not ident_pool.
7975         (cpp_destroy): Destroy u_buff, not ident_pool.
7976         * cpplex.c (parse_number, parse_string, save_comment,
7977         cpp_token_as_text): Update to use the unaligned buffer.
7978         (new_buff): Make unsigned.
7979         (_cpp_unaligned_alloc): New.
7980         * cpplib.c (glue_header_name): Update to use the unaligned buffer.
7981         * cppmacro.c (new_number_token, builtin_macro, stringify_arg):
7982         Similarly.
7983         (collect_args): Make unsigned.
7984
7985 2001-09-27  Zack Weinberg  <zack@codesourcery.com>
7986
7987         * cpplex.c (cpp_output_token): Use a putc loop for
7988         SPELL_OPERATOR, and fwrite for SPELL_IDENT.
7989
7990         * configure.in: Detect fwrite_unlocked and fprintf_unlocked.
7991         * configure, config.in: Regenerate.
7992         * system.h: Replace fwrite and fprintf with their unlocked
7993         variants if available.
7994
7995 2001-09-27  Richard Henderson  <rth@redhat.com>
7996
7997         * dwarf2out.c (dwarf2out_frame_finish): Never elide .debug_frame
7998         in favour of .eh_frame.
7999
8000 2001-09-27  Aldy Hernandez  <aldyh@redhat.com>
8001
8002         * config/rs6000/rs6000.h (FUNCTION_VALUE): Change hardcoded 33 and 3
8003         to macros.
8004         (LIBCALL_VALUE): Likewise.
8005
8006 2001-09-27  Neil Booth  <neil@daikokuya.demon.co.uk>
8007
8008         * cpphash.h: Update comment.
8009         * cpplex.c: Update comments.
8010         (_cpp_can_paste): Remove.
8011         * cpplib.h (_cpp_can_paste): Remove.
8012         * cppmacro.c (paste_tokens, paste_all_tokens): Update to use the
8013         lexer rather than _cpp_can_paste.
8014
8015 2001-09-27  Neil Booth  <neil@daikokuya.demon.co.uk>
8016
8017         * doc/cppinternals.texi: Update.
8018
8019 2001-09-26  Neil Booth  <neil@daikokuya.demon.co.uk>
8020
8021         * cpphash.h (struct cpp_pool): Remove locks and locked.
8022         (struct cpp_context): Add member buff.
8023         (struct cpp_reader): Remove member argument_pool.
8024         (_cpp_lock_pool, _cpp_unlock_pool): Remove.
8025         * cppinit.c (cpp_create_reader, cpp_destroy): Argument_pool is dead.
8026         * cpplex.c (chunk_suitable): Remove pool argument.
8027         (MIN_BUFF_SIZE, BUFF_SIZE_UPPER_BOUND, EXTENDED_BUFF_SIZE): New.
8028         (new_buff, _cpp_extend_buff): Update.
8029         (_cpp_get_buff): Fix silly pointer bug.  Be more selective about
8030         which buffer is returned.
8031         (_cpp_next_chunk, _cpp_init_pool): Pool locking removed.
8032         (_cpp_lock_pool, _cpp_unlock_pool): Remove.
8033         * cppmacro.c (lock_pools, unlock_pools): Remove.
8034         (push_ptoken_context): Take a _cpp_buff.
8035         (enter_macro_context): Pool locking removed.
8036         (replace_args): Use a _cpp_buff for the replacement list with
8037         arguments replaced.
8038         (push_token_context): Clear buff.
8039         (expand_arg): Use _cpp_pop_context.
8040         (_cpp_pop_context): Free a context's buffer, if any.
8041
8042 2001-09-26  DJ Delorie  <dj@redhat.com>
8043
8044         * c-typeck.c (digest_init): Check for sizeless arrays.
8045
8046 2001-09-26  Richard Henderson  <rth@redhat.com>
8047
8048         * optabs.c (init_one_libfunc): Create a dummy function type
8049         instead of using error_mark_node.
8050
8051 2001-09-26  Neil Booth  <neil@daikokuya.demon.co.uk>
8052
8053         * cpphash.h (struct _cpp_buff, _cpp_get_buff, _cpp_release_buff,
8054         _cpp_extend_buff, _cpp_free_buff): New.
8055         (struct cpp_reader): New member free_buffs.
8056         * cppinit.c (cpp_destroy): Free buffers.
8057         * cpplex.c (new_buff, _cpp_release_buff, _cpp_get_buff,
8058         _cpp_extend_buff, _cpp_free_buff): New.
8059         * cpplib.h (struct cpp_options): Remove unused member.
8060         * cppmacro.c (collect_args): New.  Combines the old parse_arg
8061         and parse_args.  Use _cpp_buff for memory allocation.
8062         (funlike_invocation_p, replace_args): Update.
8063
8064 Wed Sep 26 13:20:51 CEST 2001  Jan Hubicka  <jh@suse.cz>
8065
8066         * final.c (final_scan_insn): Use delete_insn instead of delete_note.
8067
8068 2001-09-25  Andrew Haley  <aph@cambridge.redhat.com>
8069
8070         * except.c (sjlj_mark_call_sites): Change address inside sequence.
8071
8072 2001-09-24  Andrew Haley  <aph@cambridge.redhat.com>
8073
8074         * config/sh/linux.h (LINK_SPEC): Set dynamic-linker to agree with
8075         glibc.
8076
8077 2001-09-25  Janis Johnson  <janis187@us.ibm.com>
8078             Jim Wilson  <wilson@redhat.com>
8079
8080         * doc/install.texi (Specific, ia64-*-linux): Document.
8081
8082 Tue Sep 25 17:13:56 CEST 2001  Jan Hubicka  <jh@suse.cz>
8083
8084         * Makefile.in (cfgrtl.o): Add.
8085         * basic-block.h (alloc_block, alloc_aux_for_block, alloc_aux_for_blocks,
8086         free_aux_for_block, alloc_aux_for_edge, alloc_aux_for_edges,
8087         free_aux_for_edge): Declare.
8088         * cfg.c
8089         (HAVE_return): Undefine.
8090         * basic-block.h (alloc_block, alloc_aux_for_block, alloc_aux_for_blocks,
8091         free_aux_for_block, alloc_aux_for_edge, alloc_aux_for_edges,
8092         free_aux_for_edge): New global functions.
8093         (first_delete_block): New static variable.
8094         (init_flow): Clear first_delete_block.
8095         (basic_block_for_insn, label_value_list, tail_recursion_label_list,
8096          can_delete_note_p, can_delete_label_p, commit_one_edge_insertion,
8097          try_redirect_by_replacing_jump, last_loop_beg_note,
8098          back_edge_of_syntactic_loop_p, force_nonfallthru_and_redirect,
8099          delete_insn, delete_insn_chain, create_basic_block_structure,
8100          create_basic_block, flow_delete_block, compute_bb_for_insn,
8101          free_bb_for_insn, update_bb_for_insn, set_block_for_insn,
8102          set_block_for_new_insns, split_block, merge_blocks_nomove,
8103          block_label, try_redirect_by_replacing_jump, last_loop_beg_note,
8104          redirect_edge_and_branch, force_nonfallthru_and_redirect,
8105          force_nonfallthru, redirect_edge_and_branch_force, tidy_fallthru_edge,
8106          tidy_fallthru_edges, split_edge, insert_insn_on_edge,
8107          commit_one_edge_insertion, commit_edge_insertions, dump_bb, debug_bb,
8108          debug_bb_n, print_rtl_with_bb, verify_flow_info, purge_dead_edges,
8109          purge_all_dead_edges): Move to ....
8110         * cfgrtl.c: New file; .... Here.
8111
8112         * bb-reorder.c (fixup_reorder_chain): Use alloc_aux_for_block.
8113         (reroder_basic_block): Use alloc_aux_for_blocks.
8114         * predict.c (estimate_bb_frequencies): Likewise; use
8115         alloc_aux_for_edges.
8116         * profile.c (compute_branch_probabilities): Likewise.
8117         (branch_prob): Likewise.
8118         * reg-stack.c (reg_to_stack): Likewise.
8119
8120         * emit-rtl.c (emit_insns_after): Never return NULL.
8121
8122         * basic-block.h (set_block_for_new_insns): Delete.
8123         * cfgrtl.c (set_block_for_new_insns): Delete.
8124
8125         * cfgcleanup.c (try_optimize_cfg): Add fake exit edges for noreturn
8126         calls when crossjumping.
8127
8128         * cfgcleanup.c (try_simplify_condjump): Cleanup invert_jump call.
8129         * unroll.c (copy_loop_body): Use delete_insn.
8130
8131         * final.c (final, final_scan_insn): Use delete_insn/delete_note.
8132         * function.c (fixup_var_refs_insn, fixup_var_refs_1,
8133         keep_stack_depressed): Likewise.
8134         * gcse.c (cprop_cc0_jump): Likewise.
8135         * local-alloc.c (update_equiv_regs): Likewise.
8136         * loop.c (scan_loop, loop_delete_insns): Likewise.
8137         * regmove.c (try_auto_increment, fixup_match_1): Likewise.
8138         * reload1.c (reload, calculate_needs_all_insns, reload_as_needed,
8139         delete_output_reload, delete_address_reloads_1,
8140         reload_cse_delete_noop_set, reload_combine, reload_cse_move2add):
8141         Likewise.
8142         * sibcall.c (replace_call_placeholder): Likewise.
8143         * cse.c (cse_insn): Likewise.
8144
8145 2001-09-25  Bernd Schmidt  <bernds@redhat.com>
8146
8147         From Graham Stott  <grahams@redhat.com>
8148         (def_builtin): Only define builtins appropriate for target_flags.  All
8149         callers changed.
8150         (builtin_decsription): Add new field mask which is used to determine
8151         when to define the builtin via the macro def_builtin.
8152
8153         (bdesc_comi): Initialise new mask fields.
8154         (bdesc_2srg): Likewise.
8155         (bdesc_1arg): Likewise.
8156
8157         * config/i386/i386.c (ix86_init_builtins): Correct return type
8158         building v4hi_ftype_v4hi_int_int tree node.
8159         (ix86_expand_sse_comi): Fix typo swapping operands.
8160         Don't swap comparision condition, it is already swapped.
8161         (ix86_expand_sse_compare): Before swapping operands
8162         move operand 1 into new rtx and not the target rtx.
8163         Don't swap comparison condition, it is already swapped.
8164         Always check whether we need to create a new TARGET.
8165
8166         * config/i386/i386.md: (sse_comi) Fix typos.
8167         (sse_ucomi): Likewise.
8168         (cvtss2si): Fix operand 0 contraint.
8169         (cvttss2si): Likewise.
8170         (sse_unpckhps): Fix mode for operand 2.
8171         (sse_unpcklps): Likewise.
8172
8173 2001-09-25  Graham Stott  <grahams@redhat.com>
8174
8175         * sibcall.c (skip_copy_to_return_value): Tighten return value
8176         copy check.
8177
8178 2001-09-24  David Edelsohn  <edelsohn@gnu.org>
8179
8180         * rs6000.c (lwa_operand): Address must be word aligned.
8181
8182 Mon Sep 24 18:57:59 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8183
8184         * tree.c (type_hash_marked_p): Consider as marked if debug symbol
8185         number has been set.
8186         (type_hash_mark): Mark type itself.
8187
8188 2001-09-24  Neil Booth  <neil@daikokuya.demon.co.uk>
8189
8190         * c-lex.c (cb_def_pragma): Update.
8191         (c_lex): Update, and skip padding.
8192         * cppexp.c (lex, parse_defined): Update, remove unused variable.
8193         * cpphash.h (struct toklist): Delete.
8194         (union utoken): New.
8195         (struct cpp_context): Update.
8196         (struct cpp_reader): New members eof, avoid_paste.
8197         (_cpp_temp_token): New.
8198         * cppinit.c (cpp_create_reader): Update.
8199         * cpplex.c (_cpp_temp_token): New.
8200         (_cpp_lex_direct): Add PREV_WHITE when parsing args.
8201         (cpp_output_token): Don't print leading whitespace.
8202         (cpp_output_line): Update.
8203         * cpplib.c (glue_header_name, parse_include, get__Pragma_string,
8204         do_include_common, do_line, do_ident, do_pragma,
8205         do_pragma_dependency, _cpp_do__Pragma, parse_answer,
8206         parse_assertion): Update.
8207         (get_token_no_padding): New.
8208         * cpplib.h (CPP_PADDING): New.
8209         (AVOID_LPASTE): Delete.
8210         (struct cpp_token): New union member source.
8211         (cpp_get_token): Update.
8212         * cppmacro.c (macro_arg): Convert to use pointers to const tokens.
8213         (builtin_macro, paste_all_tokens, paste_tokens, funlike_invocation_p,
8214         replace_args, quote_string, stringify_arg, parse_arg, next_context,
8215         enter_macro_context, expand_arg, _cpp_pop_context, cpp_scan_nooutput,
8216         _cpp_backup_tokens, _cpp_create_definition): Update.
8217         (push_arg_context): Delete.
8218         (padding_token, push_token_context, push_ptoken_context): New.
8219         (make_string_token, make_number_token): Update, rename.
8220         (cpp_get_token): Update to handle tokens as pointers to const,
8221         and insert padding appropriately.
8222         * cppmain.c (struct printer): New member prev.
8223         (check_multiline_token): Constify.
8224         (do_preprocessing, cb_line_change): Update.
8225         (scan_translation_unit): Update to handle spacing.
8226         * scan-decls.c (get_a_token): New.
8227         (skip_to_closing_brace, scan_decls): Update.
8228         * fix-header.c (read_scan_file): Update.
8229
8230         * doc/cpp.texi: Update.
8231
8232 2001-09-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8233
8234         * c-aux-info.c (affix_data_type): Use ATTRIBUTE_MALLOC.  Avoid
8235         leak by passing malloc'ed pointer to reconcat, not concat.
8236
8237 2001-09-24  DJ Delorie  <dj@redhat.com>
8238
8239         * varasm.c (array_size_for_constructor): Handle STRING_CSTs also.
8240
8241 2001-09-24  Ulrich Weigand  <uweigand@de.ibm.com>:
8242
8243         * flow.c (delete_dead_jumptables): Delete jumptable if the only
8244         reference is from the literal pool.
8245
8246 2001-09-24  Janis Johnson  <janis187@us.ibm.com>
8247
8248         * doc/install.texi (Final install): Request additional information
8249         in mail about successful builds.
8250
8251 2001-09-24  John David Anglin  <dave@hiauly1.hia.nrc.ca>
8252
8253         * pa.c (return_addr_rtx): Return NULL_RTX if count is not zero.  Use
8254         initial value of return pointer register instead of value in frame-20.
8255         Revise comments.
8256
8257 2001-09-24  John David Anglin  <dave@hiauly1.hia.nrc.ca>
8258
8259         * som.h (ASM_OUTPUT_EXTERNAL): Improve formatting.
8260         (ASM_OUTPUT_EXTERNAL_LIBCALL): Only generate a .IMPORT statement for
8261         the libcall if there isn't a referenced identifier for the symbol.
8262
8263 2001-09-24  John David Anglin  <dave@hiauly1.hia.nrc.ca>
8264
8265         * pa.h (TRAMPOLINE_TEMPLATE): Add two words to the template for
8266         non 64-bit machines.  Use these as a plabel for the trampoline.
8267         (TRAMPOLINE_SIZE): Adjust size for new words.
8268         (INITIALIZE_TRAMPOLINE): Initialize new words.
8269         (TRAMPOLINE_ADJUST_ADDRESS): New.  Adjust address to make it a
8270         pointer to the plabel in the trampoline.
8271
8272 2001-09-24  John David Anglin  <dave@hiauly1.hia.nrc.ca>
8273
8274         * pa.c (function_arg): Pass floating arguments in both general and
8275         floating registers in indirect (dynamic) calls when generating code
8276         for the 32 bit ABI and the HP assembler.
8277
8278 2001-09-24  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8279
8280         * doc/install.texi: Markup fixes.
8281         Use Solaris 2, SunOS 4 as appropriate.
8282         (Specific, *-*-solaris2*): Explain this.
8283         Unconditionally warn against /usr/ucb tools.
8284         Remove Sun as warning, obsolete.
8285         Move X11 header bug workaround here, update patches.
8286         (Specific, sparc-sun-solaris2*): Detail Sun as fix status.
8287         (Specific, sparc-sun-solaris2.7): Update patch 106950 status.
8288
8289 2001-09-23  Zack Weinberg  <zack@codesourcery.com>
8290
8291         * errors.h (warning, error, fatal, internal_error): Don't mark
8292         with ATTRIBUTE_PRINTF_n.
8293         * toplev.h (internal_error, fatal_io_error, warning, error,
8294         pedwarn, pedwarn_with_file_and_line, warning_with_file_and_line,
8295         error_with_file_and_line, sorry, error_for_asm, warning_for_asm):
8296         Likewise.
8297
8298 Sun Sep 23 18:19:48 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8299
8300         * function.c (pop_function_context_from): var_refs_queue
8301         and temp slots now in GC memory.
8302         (mark_function_status, free_after_compilation): Likewise;
8303         also struct function now in GC memory.
8304         (assign_stack_temp_for_type): struct temp_slot now in GC memory.
8305         (combine_temp_slots): Likewise.
8306         (schedule_fixup_var_refs): var_refs_queue now in GC memory.
8307         (prepare_function_start): Use GC memory for struct function.
8308         (mark_temp_slot): Deleted.
8309         (gcc_mark_struct_function): struct function now in GC memory.
8310
8311         * fold-const.c (extract_muldiv, case PLUS_EXPR): Only adjust
8312         code for division, not modulus.
8313
8314         * rtl.def (MEM): Remove obsolete part of comment.
8315
8316 2001-09-22  Joseph S. Myers  <jsm28@cam.ac.uk>
8317
8318         * c-format.c (init_function_format_info): Check __builtin_printf
8319         and __builtin_fprintf even if -ffreestanding.  Check C99 functions
8320         in gnu89 mode.
8321
8322 Sat Sep 22 09:09:32 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8323
8324         * c-common.c (format_attribute_table): Remove decl.
8325         * tree.h (format_attribute_table, lang_attribute_table): New decls.
8326         (lang_attribute_common): Likewise.
8327
8328         * function.c (fix_lexical_address): Use set_mem_alias_set.
8329         (expand_function_start): Likewise.
8330         * config/alpha/alpha.h (SETUP_INCOMING_VARARGS): Likewise.
8331
8332         * varasm.c (output_constant): Fix unused variable warning.
8333
8334         * attribs.c: New file, from c-common.c.
8335         (attribute_tables): Now four elements.
8336         (format_attribute_table, lang_attribute_common): New variables.
8337         (init_attributes): Reflect above changes.
8338         (handle_mode_attribute): Delete check for wider than uintmax.
8339         * c-common.c: Delete parts moved to attribs.c.
8340         (enum attrs): Deleted; unused.
8341         (c_format_attribute_table): New variable.
8342         (c_common_lang_init): Initialize format_attribute_table with it.
8343         * c-common.h (decl_attributes): Remove decl.
8344         * tree.h (decl_attribute): Move it to here.
8345         * Makefile.in (C_AND_OBJS_OBJS): Add attribs.o.
8346         (attribs.o): New rule.
8347
8348 2001-09-22  Andreas Jaeger  <aj@suse.de>
8349
8350         * builtins.c (c_getstr): Remove unused variable.
8351
8352 2001-09-21  Richard Henderson  <rth@redhat.com>
8353
8354         * reload1.c (reload): Use delete_insn instead of splatting
8355         NOTE_INSN_DELETED.
8356
8357 2001-09-21  Richard Henderson  <rth@redhat.com>
8358
8359         * reload.c (push_secondary_reload): Don't check for "=" in output
8360         constraint after ""->ALL_REGS check.
8361
8362 2001-09-21  Richard Henderson  <rth@redhat.com>
8363
8364         * predict.c (expected_value_to_br_prob): Use pc_set.
8365
8366         * optabs.c (init_one_libfunc): Gen a FUNCTION_DECL for use by
8367         ENCODE_SECTION_INFO; get SYMBOL_REF from make_decl_rtl.
8368
8369 2001-09-21  Richard Henderson  <rth@redhat.com>
8370
8371         * rtl.h (LCT_RETURNS_TWICE): New.
8372         * calls.c (emit_call_1): Set current_function_calls_setjmp for
8373         ECF_RETURNS_TWICE.
8374         (emit_library_call_value_1): Map LCT_RETURNS_TWICE
8375         to ECF_RETURNS_TWICE.
8376         * except.c (sjlj_emit_function_enter): Use LCT_RETURNS_TWICE for
8377         call to setjmp.
8378
8379         * unwind-sjlj.c: Invent the setjmp.h declarations if inhibit_libc.
8380
8381         * config/stormy16/stormy16.h (DONT_USE_BUILTIN_SETJMP): New.
8382         (JMP_BUF_SIZE): New.
8383
8384 2001-09-21  Richard Henderson  <rth@redhat.com>
8385
8386         * config/stormy16/stormy16.h (REG_CLASS_FROM_LETTER): Map 'd'
8387         to R8_REGS.
8388
8389 2001-09-21  Richard Henderson  <rth@redhat.com>
8390
8391         * tree.def (FDESC_EXPR): New.
8392         * expr.c (expand_expr): Handle it.
8393         * varasm.c (initializer_constant_valid_p): Likewise.
8394         (output_constant): Likewise.
8395         * defaults.h (TARGET_VTABLE_USES_DESCRIPTORS): New.
8396         * config/ia64/ia64.h (TARGET_VTABLE_USES_DESCRIPTORS): New.
8397         (ASM_OUTPUT_FDESC): New.
8398         * doc/tm.texi: Document the new macros.
8399
8400 21-09-2001  Richard Earnshaw  (reanrsha@arm.com)
8401
8402         * cfgcleanup.c (merge_blocks_move_successor_nojumps): Don't leave
8403         ADDR_VEC or ADDR_DIFF_VEC jump insns as part of the basic block
8404         once merging is complete.
8405
8406 Fri Sep 21 11:20:12 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8407
8408         * integrate.c (allocate_initial_values): Eliminate unused arg warning.
8409
8410 21-09-2001  Richard Earnshaw  (reanrsha@arm.com)
8411
8412         * cfgcleanup.c (flow_find_cross_jump): Delete any REG_EQUAL notes
8413         that would be invalid after a merge.
8414
8415 Fri Sep 21 14:24:29 CEST 2001  Jan Hubicka  <jh@suse.cz>
8416
8417         * basic-block.h (flow_delete_insn, flow_delete_insn_chain): Kill.
8418         * cfg.c (delete_insn): Rename from ....; use remove_insn; do not
8419         remove some labels.
8420         (flow_delete_insn): This one.
8421         (delete_insn_chain): Rename from ...; do not care labels.
8422         (flow_delete_insn_chain): ... this one.
8423         (flow_delete_block): Remove the insns one BB has been expunged.
8424         (merge_blocks_nomove): Likewise.
8425         (try_redirect_by_replacing_jump): Use delete_insn[_chain]; do not care
8426         updating BB boundaries.
8427         (tidy_fallthru_edge): Likewise.
8428         (commit_one_edge_insertion): Likewise.
8429         * cfgbuild.c (find_basic_block): Likewise.
8430         (find_basic_blocks_1): Likewise.
8431         * cfgcleanup.c (merge_blocks_move_predecessor_nojumps): Likewise.
8432         (try_crossjump_to_edge): Likewise.
8433         (try_optimize_cfg): Likewise.
8434         * cse.c (delete_trivially_dead_insns): Likewise.
8435         * df.c (df_insn_delete): Likewise.
8436         * doloop.c (doloop_modify): Use delete_related_insns.
8437         * emit-rtl.c (try_split): Likewise.
8438         (remove_insn): Update BB boundaries.
8439         * expect.c (connect_post_landing_pads): Use delete_related_insns.
8440         * flow.c (delete_dead_jumptables): Use delete_insn[_chain]; do not care
8441         updating BB boundaries.
8442         (propagate_block_delete_insn): Likewise.
8443         (propagate_block_delete_libcall): Likewise.
8444         * function.c (delete_handlers): Use delete_related_insns.
8445         (thread_prologue_and_epilogue_insns): Likewise.
8446         * gcse.c (delete_null_pointer_checks): Use delete_related_insns.
8447         * genpeep.c (gen_peephole): Use delete_related_insns.
8448         * ifcvt.c (noce_process_if_block): Use delete_insn; do not care updating
8449         BB boundaries.
8450         (find_cond_trap): Likewise.
8451         * integrate.c (save_for_inline): Use delete_related_insns.
8452         (copy_insn_list): Likewise.
8453         * jump.c (pruge_linie_number_notes): Likewise.
8454         (duplicate_loop_exit_test): Likewise.
8455         (delete_computation): Likewise.
8456         (delete_related_insn): Rename from ...; use delete_insn
8457         (delete_insn): ... this one.
8458         (redirect_jump): Use delete_related_insns.
8459         * loop.c (scan_loop): Likewise.
8460         (move_movables): Likewise.
8461         (find_and_verify_loops): Likewise.
8462         (check_dbra_loop): Likewise.
8463         * recog.c (peephole2_optimize): Likewise.
8464         * reg-stack.c (delete_insn_for_stacker): Remove.
8465         (move_for_stack_reg): Use delete_insn.
8466         * regmove.c (combine_stack_adjustments_for_block): Likewise.
8467         * reload1.c (delete_address_reloads): Use delete_related_insns.
8468         (fixup_abnormal_edges): Use delete_insn.
8469         * recog.c (emit_delay_sequence): Use delete_related_insns.
8470         (delete_from-delay_slot): Likewise.
8471         (delete_scheduled_jump): likewise.
8472         (optimize_skip): Likewise.
8473         (try_merge_delay_insns): Likewise.
8474         (full_simple_delay_slots): Likewise.
8475         (fill_slots_from_thread): Likewise.
8476         (relax_delay_slots): Likewise.
8477         (make_return_insns): Likewise.
8478         (dbr_schedule): Likewise.
8479         * rtl.h (delete_insn): Rename to delete_related_insns.
8480         (delete_insn, delete_insn_chain): New prototypes.
8481         * ssa-ccp (sse_fast_dce):  Remove deleting of DEF, as it is done
8482         by df_insn_delete already.
8483         * ssa-dce.c (delete_insn_bb): Use delete_insn.
8484         * ssa.c (convert_from_ssa): Use delete_related_insns.
8485         * unroll.c (unroll_loop): Likewise.
8486         (calculate_giv_inc): Likewise.
8487         (copy_loop_body): Likewise.
8488
8489         * i386-protos.h (ix86_libcall_value, ix86_function_value,
8490         ix86_function_arg_regno_p, ix86_function_arg_boundary,
8491         ix86_return_in_memory, ix86_function_value): Declare.
8492         * i386.c (x86_64_int_parameter_registers, x86_64_int_return_registers):
8493         new static valurables.
8494         (x86_64_reg_class): New enum
8495         (x86_64_reg_class_name): New array.
8496         (classify_argument, examine_argument, construct_container,
8497          merge_classes): New static functions.
8498         (optimization_options): Enable flag_omit_frame_pointer and disable
8499         flag_pcc_struct_return on 64bit.
8500         (ix86_libcall_value, ix86_function_value,
8501         ix86_function_arg_regno_p, ix86_function_arg_boundary,
8502         ix86_return_in_memory, ix86_function_value): New global functions.
8503         (init_cumulative_args): Refuse regparm on x86_64, set maybe_vaarg.
8504         (function_arg_advance): Handle x86_64 passing conventions.
8505         (function_arg): Likewise.
8506         * i386.h (FUNCTION_ARG_BOUNDARY): New macro.
8507         (RETURN_IN_MEMORY): Move offline.
8508         (FUNCTION_VALUE, LIBCALL_VALUE): Likewise.
8509         (FUNCTION_VALUE_REGNO_P): New macro.
8510         (FUNCTION_ARG_REGNO_P): Move offline.
8511         (struct ix86_args): Add maybe_vaarg.
8512         * next.h (FUNCTION_VALUE_REGNO_P): Delete.
8513         * unix.h (FUNCTION_VALUE_REGNO_P): Delete.
8514
8515 2001-09-21  Hartmut Penner  <hpenner@de.ibm.com>
8516
8517         * s390.md: Changed attributes for scheduling.
8518         * s390.c: (s390_adjust_cost, s390_adjust_priority)
8519         Changed scheduling
8520
8521 2001-09-21  Joseph S. Myers  <jsm28@cam.ac.uk>
8522
8523         Table-driven attributes.
8524         * c-decl.c, config/alpha/alpha.c, config/arc/arc.c,
8525         config/arm/arm.c, config/arm/pe.c, config/avr/avr.c,
8526         config/avr/avr.h, config/d30v/d30v.h, config/fr30/fr30.h,
8527         config/h8300/h8300.c, config/i386/cygwin.h, config/i386/winnt.c,
8528         config/m32r/m32r.c, config/mcore/mcore.c, config/sh/sh.c,
8529         config/stormy16/stormy16.h, config/v850/v850.c, doc/c-tree.texi,
8530         doc/tm.texi, ggc-common.c, integrate.c, print-tree.c, tree.c,
8531         tree.h: Rename DECL_MACHINE_ATTRIBUTES to DECL_ATTRIBUTES.
8532         * tree.h (struct tree_decl): Change machine_attributes to
8533         attributes.
8534         * doc/c-tree.texi: Document that all attributes are now attached
8535         to decls and types.
8536         * c-common.c (add_attribute, attrtab, attrtab_idx,
8537         default_valid_lang_attribute, valid_lang_attribute): Remove.
8538         (attribute_tables, attributes_initialized,
8539         c_common_attribute_table, default_lang_attribute_table): New
8540         variables.
8541         (handle_packed_attribute, handle_nocommon_attribute,
8542         handle_common_attribute, handle_noreturn_attribute,
8543         handle_unused_attribute, handle_const_attribute,
8544         handle_transparent_union_attribute, handle_constructor_attribute,
8545         handle_destructor_attribute, handle_mode_attribute,
8546         handle_section_attribute, handle_aligned_attribute,
8547         handle_weak_attribute, handle_alias_attribute,
8548         handle_no_instrument_function_attribute,
8549         handle_no_check_memory_usage_attribute, handle_malloc_attribute,
8550         handle_no_limit_stack_attribute, handle_pure_attribute): New
8551         functions.
8552         (init_attributes, decl_attributes): Rewrite to implement
8553         table-driven attributes.
8554         * c-common.h (enum attribute_flags): Move to tree.h.
8555         * c-format.c (decl_handle_format_attribute,
8556         decl_handle_format_arg_attribute): Rename to
8557         handle_format_attribute and handle_format_arg_attribute.  Update
8558         for table-driven attributes.
8559         * c-common.h (decl_handle_format_attribute,
8560         decl_handle_format_arg_attribute): Remove prototypes.
8561         (handle_format_attribute, handle_format_arg_attribute): Add
8562         prototypes.
8563         * c-decl.c (grokdeclarator): Handle attributes nested inside
8564         declarators.
8565         * c-parse.in (setattrs, maybe_setattrs): Remove.
8566         (maybe_type_quals_setattrs): Rename to maybe_type_quals_attrs.
8567         Update to handle nested attributes properly.
8568         (maybe_resetattrs, after_type_declarator,
8569         parm_declarator_nostarttypename, notype_declarator, absdcl1_noea,
8570         absdcl1_ea, direct_absdcl1): Update to handle nested attributes
8571         properly.
8572         (make_pointer_declarator): Update to handle nested attributes
8573         properly.
8574         * doc/extend.texi: Update documentation of limits of attributes
8575         syntax.  Warn about problems with attribute semantics in C++.
8576         * target.h (struct target): Remove valid_decl_attribute and
8577         valid_type_attribute.  Add attribute_table and
8578         function_attribute_inlinable_p.
8579         * target-def.h (TARGET_VALID_DECL_ATTRIBUTE,
8580         TARGET_VALID_TYPE_ATTRIBUTE): Remove.
8581         (TARGET_ATTRIBUTE_TABLE, TARGET_FUNCTION_ATTRIBUTE_INLINABLE_P):
8582         Add.
8583         (TARGET_INITIALIZER): Update.
8584         * integrate.c (FUNCTION_ATTRIBUTE_INLINABLE_P): Remove default
8585         definition.
8586         (function_attribute_inlinable_p): New function.  Check for the
8587         presence of any machine attributes before using
8588         targetm.function_attribute_inlinable_p.
8589         (function_cannot_inline_p): Update.
8590         * Makefile.in (integrate.o): Update dependencies.
8591         * doc/tm.texi: Update documentation of target attributes and
8592         example definition of TARGET_VALID_TYPE_ATTRIBUTE.
8593         * tree.c (default_valid_attribute_p, valid_machine_attribute):
8594         Remove.
8595         (default_target_attribute_table,
8596         default_function_attribute_inlinable_p): New.
8597         (lookup_attribute): Update comment to clarify handling of multiple
8598         attributes with the same name.
8599         (merge_attributes, attribute_list_contained): Allow multiple
8600         attributes with the same name but different arguments to appear in
8601         the same attribute list.
8602         * tree.h (default_valid_attribute_p): Remove prototype.
8603         (struct attribute_spec): New.
8604         (default_target_attribute_table): Declare.
8605         (enum attribute_flags): Move from c-common.h.  Add
8606         ATTR_FLAG_TYPE_IN_PLACE.
8607         (default_function_attribute_inlinable_p): Declare.
8608         * config/alpha/alpha.c (vms_valid_decl_attribute_p): Remove.
8609         (TARGET_VALID_DECL_ATTRIBUTE): Don't define.
8610         (TARGET_ATTRIBUTE_TABLE): Define.
8611         (vms_attribute_table): New.
8612         * config/arc/arc.c (arc_valid_decl_attribute): Remove.
8613         (TARGET_VALID_DECL_ATTRIBUTE): Don't define.
8614         (TARGET_ATTRIBUTE_TABLE): Define.
8615         (arc_attribute_table, arc_handle_interrupt_attribute): New.
8616         * config/arm/arm.c (arm_valid_type_attribute_p,
8617         arm_valid_decl_attribute_p, arm_pe_valid_decl_attribute_p):
8618         Remove.
8619         (TARGET_VALID_TYPE_ATTRIBUTE, TARGET_VALID_DECL_ATTRIBUTE): Don't
8620         define.
8621         (TARGET_ATTRIBUTE_TABLE): Define.
8622         (arm_attribute_table, arm_handle_fndecl_attribute,
8623         arm_handle_isr_attribute): New.
8624         * config/avr/avr.c (avr_valid_type_attribute,
8625         avr_valid_decl_attribute): Remove.
8626         (TARGET_VALID_DECL_ATTRIBUTE, TARGET_VALID_TYPE_ATTRIBUTE): Don't
8627         define.
8628         (TARGET_ATTRIBUTE_TABLE): Define.
8629         (avr_attribute_table, avr_handle_progmem_attribute,
8630         avr_handle_fndecl_attribute): New.
8631         * config/c4x/c4x.c (c4x_valid_type_attribute_p): Remove.
8632         (TARGET_VALID_TYPE_ATTRIBUTE): Don't define.
8633         (TARGET_ATTRIBUTE_TABLE): Define.
8634         (c4x_attribute_table, c4x_handle_fntype_attribute): New.
8635         * config/h8300/h8300.c (h8300_valid_decl_attribute): Remove.
8636         (TARGET_VALID_DECL_ATTRIBUTE): Don't define.
8637         (TARGET_ATTRIBUTE_TABLE): Define.
8638         (h8300_attribute_table, h8300_handle_fndecl_attribute,
8639         h8300_handle_eightbit_data_attribute,
8640         h8300_handle_tiny_data_attribute): New.
8641         * config/i386/i386-protos.h (ix86_valid_type_attribute_p,
8642         i386_pe_valid_decl_attribute_p, i386_pe_valid_type_attribute_p):
8643         Remove prototypes.
8644         (ix86_handle_dll_attribute, ix86_handle_shared_attribute): New
8645         declarations.
8646         * config/i386/i386.c (ix86_valid_type_attribute_p: Remove.
8647         (TARGET_VALID_TYPE_ATTRIBUTE, TARGET_VALID_DECL_ATTRIBUTE): Don't
8648         define.
8649         (TARGET_ATTRIBUTE_TABLE): Define.
8650         (ix86_attribute_table, ix86_handle_cdecl_attribute,
8651         ix86_handle_regparm_attribute): New.
8652         * config/i386/winnt.c (i386_pe_valid_decl_attribute_p,
8653         i386_pe_valid_type_attribute_p): Remove.
8654         (ix86_handle_dll_attribute, ix86_handle_shared_attribute): New.
8655         * config/ia64/ia64.c (ia64_valid_type_attribute): Remove.
8656         (TARGET_VALID_TYPE_ATTRIBUTE): Don't define.
8657         (TARGET_ATTRIBUTE_TABLE): Define.
8658         (ia64_attribute_table): New.
8659         * config/m32r/m32r.c (m32r_valid_decl_attribute, interrupt_ident1,
8660         interrupt_ident2, model_ident1, model_ident2): Remove.
8661         (TARGET_VALID_DECL_ATTRIBUTE): Don't define.
8662         (TARGET_ATTRIBUTE_TABLE): Define.
8663         (init_idents): Update.
8664         (m32r_attribute_table, m32r_handle_model_attribute): New.
8665         * config/m68hc11/m68hc11.c (m68hc11_valid_type_attribute_p):
8666         Remove.
8667         (TARGET_VALID_TYPE_ATTRIBUTE): Don't define.
8668         (TARGET_ATTRIBUTE_TABLE): Define.
8669         (m68hc11_attribute_table, m68hc11_handle_fntype_attribute): New.
8670         * config/mcore/mcore.c (mcore_valid_decl_attribute): Remove.
8671         (TARGET_VALID_DECL_ATTRIBUTE): Don't define.
8672         (TARGET_ATTRIBUTE_TABLE): Define.
8673         (mcore_attribute_table, mcore_handle_naked_attribute): New.
8674         * config/ns32k/ns32k.c (ns32k_valid_type_attribute_p): Remove.
8675         (TARGET_VALID_TYPE_ATTRIBUTE): Don't define.
8676         (TARGET_ATTRIBUTE_TABLE): Define.
8677         (ns32k_attribute_table, ns32k_handle_fntype_attribute): New.
8678         * config/rs6000/rs6000.c (rs6000_valid_type_attribute_p): Remove.
8679         (TARGET_VALID_TYPE_ATTRIBUTE): Don't define.
8680         (TARGET_ATTRIBUTE_TABLE): Define.
8681         (rs6000_attribute_table, rs6000_handle_longcall_attribute): New.
8682         * config/sh/sh.c (sh_valid_decl_attribute): Remove.
8683         (TARGET_VALID_DECL_ATTRIBUTE): Don't define.
8684         (TARGET_ATTRIBUTE_TABLE): Define.
8685         (sh_attribute_table, sh_handle_interrupt_handler_attribute,
8686         sh_handle_sp_switch_attribute, sh_handle_trap_exit_attribute):
8687         New.
8688         * config/stormy16/stormy16.c (stormy16_valid_type_attribute):
8689         Remove.
8690         (TARGET_VALID_TYPE_ATTRIBUTE): Don't define
8691         (TARGET_ATTRIBUTE_TABLE): Define.
8692         (stormy16_attribute_table, stormy16_handle_interrupt_attribute):
8693         New.
8694         * config/v850/v850.c (v850_valid_decl_attribute): Remove.
8695         (TARGET_VALID_DECL_ATTRIBUTE): Don't define.
8696         (TARGET_ATTRIBUTE_TABLE): Define.
8697         (v850_attribute_table, v850_handle_interrupt_attribute,
8698         v850_handle_data_area_attribute): New.
8699         * config/v850/v850-c.c (mark_current_function_as_interrupt):
8700         Return void.  Call decl_attributes instead of
8701         valid_machine_attribute.
8702
8703 Fri Sep 21 01:49:41 2001  J"orn Rennecke <amylaar@redhat.com>
8704
8705         * sh-protos.h (sh_pr_n_sets): Declare.
8706         * sh.c (calc_live_regs): If the initial value for PR has been copied,
8707         look at the copy to determine if PR needs to be saved.
8708         sh_pr_n_sets: New function.
8709         * sh.h (RETURN_ADDR_RTX): Use get_hard_reg_initial_val.
8710         (ALLOCATE_INITIAL_VALUE): Define.
8711
8712         * sh.c (initial_elimination_offset):
8713         Fix RETURN_ADDRESS_POINTER_REGNUM case.
8714
8715 Fri Sep 21 01:13:56 2001  J"orn Rennecke <amylaar@redhat.com>
8716
8717         * integrate.c (allocate_initial_values): New function.
8718         * integrate.h (allocate_initial_values): Declare.
8719         * local-alloc.c (local_alloc): Move call to allocate_reg_info from
8720         here...
8721         * reload1.c (reload): And initialization of reg_equiv_memory_loc
8722         from here...
8723         * toplev.c (rest_of_compilation): To here.
8724         Call allocate_initial_values.
8725         * tm.texi: add description for ALLOCATE_INITIAL_VALUE.
8726
8727 Thu Sep 20 09:00:27 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8728
8729         * ggc-page.c (ggc_marked_p): Properly convert return to boolean.
8730
8731 2001-09-20  DJ Delorie  <dj@redhat.com>
8732
8733         * c-typeck.c (really_start_incremental_init): Discriminate
8734         between zero-length arrays and flexible arrays.
8735         (push_init_level): Detect zero-length arrays and handle them
8736         like fixed-sized arrays.
8737         * expr.c (store_constructor): Handle zero-length arrays and
8738         flexible arrays correctly.
8739         * doc/extend.texi: Update zero-length array notes.
8740
8741 2001-09-20  Jim Wilson  <wilson@redhat.com>
8742
8743         * config/ia64/ia64.c (itanium_split_issue): Allow max 2 FP per cycle.
8744         (insn_matches_slot): Handle TYPE_L and TYPE_X slots when checking
8745         for issue port conflicts.
8746         (cycle_end_fill_slots): TYPE_L instructions take two slots.
8747
8748 2001-09-20  Andrew MacLeod  <amacleod@redhat.com>
8749
8750         * testsuite/gcc.c-torture/execute/990208-1.x: New. XFAIL at -O3
8751         on ia64.
8752
8753 Thu Sep 20 09:00:27 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8754
8755         * fold-const.c (hashtab.h): Include.
8756         (int_const_binop): Remove FORSIZE arg and compute from type; all
8757         callers changed.
8758         Call size_int_type_wide for all single-word constants.
8759         (size_htab_hash, size_htab_eq): New functions.
8760         (size_int_type_wide): Rework to use hash table.
8761         * ggc-common.c (hashtab.h): Include.
8762         (struct d_htab_root): New struct.
8763         (d_htab_roots): New variable.
8764         (ggc_add_deletable_htab, ggc_htab_delete): New functions
8765         (ggc_mark_roots): Handle deletable htabs.
8766         * ggc-page.c (ggc_marked_p): New function.
8767         * ggc-simple.c (ggc_marked_p): Likewise.
8768         * ggc.h: Reformatting throughout.
8769         (ggc_marked_p, ggc_add_deletable_htab): New declarations.
8770         * tree.c (init_obstacks): Make type_hash_table a deletable root.
8771         (type_hash_add): Allocate struct type_hash from GC memory.
8772         (mark_hash_entry, mark_type_hash): Deleted.
8773         (type_hash_marked_p, type_hash_mark): New functions.
8774         * Makefile.in (ggc-common.o, fold-const.o): Include hashtab.h.
8775
8776 Thu Sep 20 12:49:34 2001  J"orn Rennecke <amylaar@redhat.com>
8777
8778         * sh.c (shiftcosts): Don't use shiftcosts array for modes wider
8779         than SImode.
8780
8781 Thu Sep 20 09:00:27 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8782
8783         * stor-layout.c (layout_type, case ARRAY_TYPE): Kludge to disable
8784         array-too-large test for signed sizetype.
8785
8786 Thu Sep 20 12:19:36 CEST 2001  Jan Hubicka  <jh@suse.cz>
8787
8788         * i386.md (indirect_jump): Allow Pmode operand.
8789         (tablejump): LIkewise; perform expansion to 64bit mode.
8790         * i386.c (symbolic_operand): Allow 64bit PIC references.
8791         (pic_symbolic_operand): Likewise.
8792         (ix86_find_base_term): Strip the 64bit PIC references.
8793         (legitimate_pic_address_disp_p): Handle 64bit PIC.
8794         (legitimize_pic_address): Likewise.
8795         (i386_simplify_dwarf_addr): Strip down the 64bit PIC references.
8796         * i386.h (CASE_VECTOR_MODE): Set to SImode for 64bit PIC compilation.
8797
8798 2001-09-19  Alexandre Petit-Bianco  <apbianco@redhat.com>
8799
8800         * stringpool.c (get_identifier_with_length): New function.
8801         * tree.h (get_identifier_with_length): New prototype.
8802
8803 2001-09-19  Alan Modra  <amodra@bigpond.net.au>
8804             David Edelsohn  <edelsohn@gnu.org>
8805
8806         Revert:
8807         * config/rs6000/rs6000.c (logical_operand): CONST_INTs are
8808         already sign-extended.
8809
8810         * config/rs6000/aix.h (INIT_TARGET_OPTABS): Define TFmode handlers.
8811         * config/rs6000/rs6000.c (logical_operand): Always compare op as
8812         HOST_WIDE_INT.
8813         (rs6000_emit_set_long_const): Avoid unnecessary shift.
8814         (output_profile_hook): Declare label_name const.
8815         * config/rs6000/rs6000.md (boolcsi3, boolcdi3): Change predicates
8816         to match constraints.
8817
8818 2001-09-19  Stan Shebs  <shebs@apple.com>
8819
8820         * alias.c: Fix typos in comments.
8821         * sched-rgn.c (init_ready_list): Ditto.
8822         * unwind-dw2.c (uw_frame_state_for): Ditto.
8823         * unwind-dw2-fde.c (_Unwind_Find_FDE): Ditto.
8824         * unwind.inc (_Unwind_RaiseException_Phase2): Ditto.
8825         * config/rs6000/rs6000.c (rs6000_adjust_priority): Ditto.
8826
8827 2001-09-19  Richard Henderson  <rth@redhat.com>
8828
8829         * cfg.c (force_nonfallthru_and_redirect): Handle redirecting
8830         to the exit block.
8831         * Makefile.in (cfg.o): Depend on TM_P_H.
8832
8833 2001-09-19  Richard Henderson  <rth@redhat.com>
8834
8835         * config/alpha/alpha.c (local_symbol_p): Split out from ...
8836         (local_symbolic_operand): ... here.
8837         (small_symbolic_operand): Check mode.
8838         (global_symbolic_operand): New.
8839         (input_operand): Reject symbolics if explicit relocs.
8840         (call_operand): Tidy.
8841         (alpha_legitimize_address): Use movdi_er_high_g.
8842         (alpha_expand_mov): Likewise.
8843         * config/alpha/alpha-protos.h: Update.
8844         * config/alpha/alpha.h (PREDICATE_CODES): Update.
8845         * config/alpha/alpha.md (UNSPEC_LITERAL, UNSPEC_LITUSE): New.
8846         (UNSPEC_LDGP2, UNSPECV_PLDGP2): New.
8847         (UNSPECV_LDGP2): Remove.
8848         (all call patterns): Use 's' not 'i' for symbolic constraint.
8849         (call_osf call_value_osf): Use call_operand.
8850         (all osf call patterns): Use $gp.  New peepholes for explicit relocs.
8851         (movdi_er_nofix, movdi_er_fix): Remove symbolic alternative.
8852         (prologue_ldgp_1_er): Remove.
8853         (ldgp_er_1, ldgp_er_2, prologue_ldgp_er_2): New.
8854         (builtin_setjmp_receiver_er patterns): Use them.
8855         (exception_receiver_er): Likewise.
8856
8857 2001-09-19  Richard Henderson  <rth@redhat.com>
8858
8859         * cfgbuild.c (find_sub_basic_blocks): Handle insns that can throw.
8860
8861         * emit-rtl.c (try_split): Copy NORETURN, SETJMP, ALWAYS_RETURN
8862         and NON_LOCAL_GOTO notes.
8863         * recog.c (peephole2_optimize): Likewise.  Handle EH_REGION;
8864         copy over CALL_INSN_FUNCTION_USAGE.
8865
8866 2001-09-18  Catherine Moore  <clm@redhat.com>
8867
8868         * config/stormy16/stormy16.h (DEFAULT_PCC_STRUCT_RETURN):
8869         Define as 0.
8870
8871 2001-09-18  Ulrich Weigand  <uweigand@de.ibm.com>:
8872
8873         * config.gcc (s390-*-linux-*, s390x-*-linux*): Switch to
8874         new-style tm_file specification.  Specify correct tm_p_file,
8875         md_file, and out_file for s390x.
8876
8877         * config/s390/linux.h, linux64.h:  Don't include other target
8878         macro header files.  Now handled via tm_file.
8879
8880         * config/s390/linux.h, s390.h:  (IEEE_FLOAT, TARGET_IEEE_FLOAT,
8881         TARGET_IBM_FLOAT): Move from linux.h to s390.h to ensure they
8882         are defined before use.
8883
8884 Tue Sep 18 09:51:11 2001  Eric Christopher  <ecechristo@redhat.com>
8885
8886         * config/mips/mips.c (mips_asm_file_start): Conditionalize Elf
8887         code generation only for Gnu assembler.
8888
8889 2001-09-18  Catherine Moore  <clm@redhat.com>
8890
8891         * config/stormy16 (LIB_SPEC): Remove -lnosys.
8892
8893 2001-09-18  Richard Sandiford  <rsandifo@redhat.com>
8894
8895         * config/mips/mips.c (mips_frame_set): New.
8896         (mips_emit_frame_related_store): When storing two 32-bit FPRs, use
8897         a parallel frame-related expression with a set for each register.
8898
8899 2001-09-18  Philip Blundell  <philb@gnu.org>
8900
8901         * config/arm/lib1funcs.asm (L_dvmd_lnx): Don't rely on kernel
8902         header files.
8903
8904 2001-09-17  Dale Johannesen  <dalej@apple.com>
8905
8906         * config/rs6000/rs6000.h (FIXED_REGISTERS): Use FIXED_R2.
8907         * config/rs6000/aix.h (FIXED_R2): Define.
8908         * config/rs6000/darwin.h (FIXED_R2): Define.
8909         * config/rs6000/sysv4.h (FIXED_R2): Define.
8910
8911 2001-09-17  Jeff Sturm  <jsturm@one-point.com>
8912
8913         * except.c (dw2_build_landing_pads): New local
8914         clobbers_hard_regs.  Emit an ASM_INPUT as a scheduling
8915         barrier after clobbers.  Fixes c++/4012.
8916
8917 2001-09-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8918
8919         * gcc.c (find_file): Use ACONCAT in lieu of alloca/strcpy/strcat.
8920
8921 2001-09-17  Joseph S. Myers  <jsm28@cam.ac.uk>
8922
8923         * dostage2, dostage3, listing, make-l2.com, makefile.vms,
8924         patch-apollo-includes, vmsconfig.com: Remove obsolete files.
8925
8926 2001-09-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8927
8928         * c-aux-info.c (affix_data_type): Use ASTRDUP in lieu of
8929         alloca/strcpy.
8930
8931 2001-09-17  Neil Booth  <neil@daikokuya.demon.co.uk>
8932
8933         * cpphash.h (_cpp_lex_direct): New.
8934         * cpplex.c (_cpp_lex_token): Update.
8935         (lex_token): Rename _cpp_lex_direct; lex into pfile->cur_token,
8936         and increment that pointer.
8937         * cppmacro.c (alloc_expansion_token): New.
8938         (lex_expansion_token): Lex macro expansion directly into
8939         macro storage.
8940
8941 2001-09-16  Brad Lucier  <lucier@math.purdue.edu>
8942
8943         * Makefile.in: Make rtl-error.o depend on $(CONFIG_H).
8944
8945 Sun Sep 16 21:59:46 CEST 2001  Jan hubicka  <jh@suse.cz>
8946
8947         * basic-block.h (free_bb_for_insn): Declare.
8948         * bb-reorder.c (label_for_bb): Use block_label.
8949         (emit_jump_to_block_after): Remove.
8950         (insert_intra_1): Do not update block_for_insn.
8951         (insert_inter_bb_scope_notes): Likewise; update bb->end
8952         * cfg.c (free_bb_for_insn): New.
8953         (try_rediret_by_replacing_jump): Avoid set_block_for_new_insns call.
8954         (force_nonfallthru_and_redirect): Likewise; do not update BB boundaries.
8955         (commit_one_edge_insertion): Likewise.
8956         (commit_one_edge_insertion): Do not update BB boundary.
8957         (commit_edge_insertions): Do not call compute_bb_for_insn.
8958         * cfgbuild.c (find_basic_blocks): Do not free basic_block_for_insn.
8959         * cfgcleanup.c (merge_blocks_move_predecessor): Use reorder_insns_nobb.
8960         (merge_blocks_move_successor_nojumps): Likewise.
8961         (try_crossjump_to_edge): Do not update block_for_insn.
8962         * combine.c (combine_instructions): Remove compute_bb_for_insn call.
8963         * df.c (df_pattern_emit_later): Do not update BB boundary.
8964         (df_jump_pattern_emit_after): Likewise.
8965         (df_insn_move_before): Use emit_insn_before.
8966         * emit-rtl.c (try_split): Emit after trial to get bb boundary updated
8967          properly.
8968         (add_insn_after, add_insn_before, emit_insns_after): Update BB
8969         boundaries and basic_block_for_insn.
8970         (reorder_insns_nobb): Rename from reorder_insns.
8971         (reorder_insns): New.
8972         (emit_block_insn_before, emit_block_insn_after): Kill.
8973         * flow.c (check_function_return_warnings): Do not call
8974         compute_bb_for_insn; Do not free basic_block_for_insn.
8975         (attempt_auto_inc): Do not update basic_block_for_insn.
8976         * function.c (emit_return_into_block): Likewise;
8977         do not update BB boundaries.
8978         * gcse.c (handle_avail_expr): Do not update basic_block_for_insn.
8979         (insert_insn_end_bb): Use emit_insn_before; Likewise.
8980         (pre_insert_copy_insn): Likewise.
8981         (update_ld_motion_notes): Likewise.
8982         (insert_insn_start_bb): Likewise.
8983         (replace_store_insn): Likewise.
8984         * ifcvt.c (noce_process_if_block): Likewise.
8985         (if_convert): Do not call compute_bb_for_insn.
8986         * lcm.c (optimize_mode_switching): Do not update BB boundaries.
8987         Use emit_insn_before and emit_insn_after.
8988         * recog.c (split_all_insns): Do not update BB boundaries;
8989         Do not call compute_bb_for_insn.
8990         (peephole2_optimize): Do not update BB boundaries.
8991         * reg-stack.c (emit_pop_insn): Use emit_insn_after and
8992         emit_insn_before.
8993         (emit_swap_insn): Likewise.
8994         (convert_regs_1): Likewise.
8995         * reload1.c (reload): Call compute_bb_for_insn.
8996         * rtl.h (reorder_insns_nobb): Declare.
8997         * ssa.c (rename_equivalent_regs): Use emit_insn_before.
8998         * toplev.c (rest_of_compilation): Call free_bb_for_insn
8999         at places CFG is invalidated; do not call compute_bb_for_insn.
9000
9001         * cfg.c (expunge_block): Invalidate BB structure.
9002
9003         * (merge_blocks_nomove): Update properly BLOCK_FOR_INSN
9004         array.
9005
9006         * cfg.c (verify_flow_info): Verify the basic_block_for_insn array.
9007
9008 2001-09-16  Neil Booth  <neil@daikokuya.demon.co.uk>
9009
9010         * cpphash.h (_cpp_lex_token): Update prototype.
9011         * cpplex.c (_cpp_lex_token): New prototype.
9012         * cpplib.c (skip_rest_of_line, check_eol, _cpp_handle_directive,
9013         lex_macro_node, read_flag, do_pragma_poison): Update.
9014         * cppmacro.c (cpp_get_token, parse_params,
9015         lex_expansion_token): Update.
9016
9017 2001-09-16  Neil Booth  <neil@daikokuya.demon.co.uk>
9018
9019         * cppmain.c (scan_translation_unit): Don't worry about
9020         putting a space after hashes.
9021         * cpplib.c (directive_diagnostics): New.
9022         (_cpp_handle_directive): Update to use directive_diagnostics.
9023         (run_directive): Don't toggle prevent_expansion.
9024         (do_line): Backup in case of the line extension.
9025         * cpplib.h (cpp_lexer_pos): Remove.
9026         * cppmacro.c (_cpp_create_definition): Precede a leading #
9027         with whitespace.
9028
9029 2001-09-15  Richard Henderson  <rth@redhat.com>
9030
9031         * c-typeck.c (comptypes): Handle zero-length arrays properly.
9032
9033 2001-09-15  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
9034
9035         * c-common.c (c_promoting_integer_type_p): Handle ?Imode types.
9036
9037 2001-09-15  Neil Booth  <neil@daikokuya.demon.co.uk>
9038
9039         PR preprocessor/3571
9040         * tradcpp.c (handle_directive): Skip non-vertical space.
9041
9042 2001-09-15  Neil Booth  <neil@daikokuya.demon.co.uk>
9043
9044         * cppmain.c (setup_callbacks): Set line callback only
9045         if outputting preprocessed source.
9046
9047 2001-09-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9048
9049         * collect2.c (main): Const-ification.
9050         * gcc.c (translate_options, process_command): Use xstrdup in
9051         lieu of xmalloc/strcpy.
9052         (main): Use concat in lieu of xmalloc/strcpy/strcat.
9053
9054 2001-09-14  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
9055
9056         * doc/install.texi (Specific, alphaev5-cray-unicosmk*): Fix
9057         example.
9058
9059 2001-09-15  Neil Booth  <neil@daikokuya.demon.co.uk>
9060
9061         * scan-decls.c (scan_decls): Fix typo.
9062
9063 2001-09-15  Neil Booth  <neil@daikokuya.demon.co.uk>
9064
9065         * cpphash.h (struct cpp_reader): Remove lexer_pos, directive_pos.
9066         Split mlstring_pos into mls_line and mls_col.
9067         * cppinit.c (cpp_create_reader): Initialize line to 1.
9068         (cpp_destroy): Free tokenruns.
9069         (push_include): Don't update lexer_pos.
9070         * cpplex.c (unterminated, parse_string): Update.
9071         (lex_token): Don't update lexer_pos, update.
9072         * cpplib.c (if_stack): Save line instead of line + col.
9073         (start_directive, _cpp_do__Pragma, do_else, do_elif,
9074         push_conditional, _cpp_pop_buffer): Update.
9075         * cppmacro.c (funlike_invocation_p): Don't save lexer_pos.
9076         (_cpp_create_definition): Update.
9077
9078 2001-09-15  Eric Christopher  <echristo@redhat.com>
9079
9080         * config/mips/abi64.h: Add support for MEABI.
9081
9082 2001-09-15  Eric Christopher  <echristo@redhat.com>
9083
9084         * config/mips/mips.md: Add unspec #2.
9085         (reload_indi): Use.
9086         (reload_outdi): Ditto.
9087         (reload_outsi): Ditto.
9088         (HILO_delay): New.
9089
9090 2001-09-15  Eric Christopher  <echristo@redhat.com>
9091             Jason Eckhardt  <jle@redhat.com>
9092
9093         * config.gcc: Add mipsisa32 target and mipsisa32-linux target.
9094         * config/mips/isa32-linux.h: New file.
9095         * config/mips/isa3264.h: Ditto.
9096         * config/mips/mips-protos.h: Add mips_hard_regno_nregs.
9097         * config/mips/mips.c (mips_hard_regno_nregs): Move here from mips.h.
9098         (output_block_mode): Support MEABI.
9099         (function_arg): Ditto. Fix floating point arg passing.
9100         (mips_va_start): Ditto.
9101         (override_options): Add isas 32 and 64, meabi, mips32 and mips64
9102         processors.
9103         (mips_asm_file_start): Add new section to pass abi to gdb.
9104         (function_arg_pass_by_reference): Support MEABI.
9105         (mips_parse_cpu): Support mips32 and mips64 processors.
9106         * config/mips/mips.h: Support ABI_MEABI, TARGET_MIPS4KC,
9107         TARGET_MIPS5KC.  Support isa32 and isa64.
9108         (processor_type): Add r4kc, r5kc, r20kc.
9109         (GENERATE_MULT3_SI): New.
9110         (GENERATE_MULT3_DI): Ditto.
9111         (GENERATE_MULT3): Remove.
9112         (ISA_HAS_64BIT_REGS): Add isa == 64.
9113         (ISA_HAS_8CC): Add mips_isa = 32 and 64.
9114         (ISA_HAS_MADD_MSUB): New.
9115         (ISA_HAS_CLZ_CLO): Ditto.
9116         (ISA_HAS_DCLZ_DCLO): Ditto.
9117         (ABI_GAS_ASM_SPEC): New.
9118         (GAS_ASM_SPEC): Use. Add support for mips32, mips64.
9119         (ASM_SPEC): Ditto.
9120         (LINK_SPEC): Ditto.
9121         (SUBTARGET_CC1_SPEC): Ditto.
9122         (SUBTARGET_CPP_SIZE_SPEC): Ditto.
9123         (PAD_VARARGS_DOWN): Support MEABI.
9124         (HARD_REGNO_NREGS): Move to mips.c.
9125         (ASM_OUTPUT_IDENT): Add #undef.
9126         * config/mips/mips.md: Add r4kc, r5kc, r20kc.
9127         (mulsi3): Use GENERATE_MULT3_SI.
9128         (mulsi3_mult3): Ditto.  Support mips32, mips64.
9129         (mul_acc_si): Use ISA_HAS_MADD_MSUB.
9130         (mul_sub_si): New pattern.
9131         (unnamed splitters): New.
9132         (muldi3): Use GENERATE_MULT3_DI.
9133         (muldi3_internal2): Ditto.
9134         (movdicc): Support mips32.
9135         * config/mips/t-isa3264: New file.
9136
9137 2001-09-15  Hans-Peter Nilsson  <hp@axis.com>
9138
9139         * rtl.h (FIND_REG_INC_NOTE) [HAVE_PRE_INCREMENT
9140         || HAVE_PRE_DECREMENT || HAVE_POST_INCREMENT
9141         || HAVE_POST_DECREMENT]: Call find_regno_note for REGs.
9142
9143         * reorg.c (fill_slots_from_thread): After call to
9144         steal_delay_list_from_target, update own_thread as new_thread may
9145         have branched.
9146
9147 2001-09-14  Neil Booth  <neil@daikokuya.demon.co.uk>
9148
9149         * cpperror.c (print_location): Take line and column, for
9150         default positioning use the previously lexed token.
9151         (_cpp_begin_message): Take line and column.
9152         (cpp_ice, cpp_fatal, cpp_error, cpp_error_with_line, cpp_warning,
9153         cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line): Update.
9154         * cpphash.h (_cpp_begin_message): Update prototype.
9155         * cppinit.c (push_include): Don't set output line.
9156         * cpplex.c (_cpp_lex_token): Callback for start of new output lines.
9157         * cpplib.c (do_diagnostic, _cpp_pop_buffer): Update.
9158         (do_pragma): Kludge for front ends.  Don't expand macros at all.
9159         * cpplib.h (cpp_lookahead, cpp_token_with_pos, cpp_get_line): Remove.
9160         (struct cpp_token): Remove output_line.
9161         (struct cpp_callbacks): New member line_change.
9162         * cppmacro.c (builtin_macro, paste_all_tokens, replace_args,
9163         cpp_get_token): Preserve BOL flag.
9164         (cpp_get_line): Remove.
9165         (_cpp_backup_tokens): Remove useless abort().
9166         * cppmain.c (cb_line_change): New.
9167         (scan_translation_unit): Don't worry about starting new lines here.
9168         * scan-decls.c (scan_decls): Update.
9169         * c-lex.c (c_lex, init_c_lex): Update.
9170         (cb_line_change, src_lineno): New.
9171
9172 Fri Sep 14 13:54:50 EDT 2001  John Wehle  (john@feith.com)
9173
9174         * tree.c (append_random_chars): Generate the random
9175         characters in a reproducable fashion.
9176
9177 2001-09-14  Richard Henderson  <rth@redhat.com>
9178
9179         * config/i386/i386.c (internal_label_prefix): New.
9180         (internal_label_prefix_len): New.
9181         (override_options): Set them.
9182         (local_symbolic_operand): New.
9183         (legitimate_pic_address_disp_p): Use it.
9184         (legitimize_pic_address): Likewise.
9185
9186 2001-09-14  Marc Espie <espie@openbsd.org>
9187
9188         * config/i386/unix.h (ASM_OUTPUT_MI_THUNK):  Generate reference to GOT
9189         correctly.
9190
9191 2001-09-14  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
9192
9193         * config/alpha/alpha.md (unaligned_extendhidi_be): Fix.
9194         * config/alpha/unicosmk.h (INIT_TARGET_OPTABS): New.
9195
9196 2001-09-14  Nick Clifton  <nickc@cambridge.redhat.com>
9197
9198         * rtlanal.c (subreg_regno_offset): Add semicolon to end of
9199         invocation of SUBREG_REGNO_OFFSET.
9200
9201         * haifa-sched.c: Fix typo in FSF copyright statement.
9202         * sched-deps.c: Fix typo in FSF copyright statement.
9203         * sched-ebb.c: Fix typo in FSF copyright statement.
9204         * sched-rgn.c: Fix typo in FSF copyright statement.
9205         * sched-vis.c: Fix typo in FSF copyright statement.
9206
9207         * config.gcc: Move inclusion of arm elf specific header files
9208         from the files themselves into the tm_file variable.  Make
9209         sure that elfos.h is included before target specific elf
9210         headers.
9211         * config/arm/aout.h (NO_DOLLAR_IN_LABEL): Only define if not
9212         already defined.
9213         (ASM_OUTPUT_ASCII, ASM_OUTPUT_SKIP): Protect definition.
9214         * config/arm.arm.h (TARGET_MEM_FUNCTIONS,
9215         ASM_OUTPUT_CASE_LABEL): Protect definition.
9216         (CC1_SPEC, FP_DEFAULT, ARM_FUNCTION_PROFILE): Only define if
9217         not already defined.
9218         * config/arm/conix-elf.h: (USER_LABEL_PREFIX,
9219         LOCAL_LABEL_PREFIX, MAKE_DECL_ONE_ONLY, UNIQUE_SECTION):
9220         Remove duplicate definition.
9221         (READONLY_DATA_SECTION, SUBTARGET_EXTRA_SECTION,
9222         (SUBTARGET_EXTRA_SECTION_FUNCTION, RDATA_SECTION_ASM_OP,
9223         (RDATA_SECTION_FUNCTION): Remove redundant definition.
9224         (STARTFILE_SPEC, ENDFILE_SPEC): Protect definition.
9225         Remove inclusion of arm/elf.h.
9226         * config/arm/unknown-elf.h: as for conix-elf.h.
9227         (STARTFILE_SPEC): Include crti.o and crtn.o.
9228         * config/arm/linux-elf.h: as for conix-elf.h.
9229         * config/arm/ecos-elf.h: Remove inclusion of unknown-elf.h.
9230         * config/arm/strongarm-elf.h: Remove inclusion of
9231         unknown-elf.h.
9232         * config/arm/xscale-elf.h: Remove inclusion of unknown-elf.h.
9233         * config/arm/unknown-elf-oabi.h: Remove inclusion of
9234         unknown-elf.h and elf.h.
9235         * config/arm/uclinux-elf.h: Remove inclusion of linux-elf.h.
9236         * config/arm/linux-gas.h (DBX_DEBUGGING_INFO,
9237         ASM_WEAKEN_LABEL): Remove redundant definition.
9238         * config/arm/elf.h: Test for inclusion of elfos.h
9239         (USER_LABEL_PREFIX, ASM_DECLARE_RESULT, ASM_DECLARE_RESULT,
9240         ASM_DECLARE_OBJECT_NAME, ASM_FINISH_DECLARE_OBJECT_NAME,
9241         SUBTARGET_EXTRA_SECTION, SUBTARGET_EXTRA_SECTION_FUNCTION,
9242         EXTRA_SECTIONS, INT_ASM_OP, ASM_WEAKEN_LABEL): Remove
9243         redundant definition.
9244         (TYPE_OPERAND_FMT, ASM_DECLARE_FUNCTION_NAME,
9245         ASM_DECLARE_FUNCTION_SIZE, ASM_OUTPUT_INTERNAL_LABEL,
9246         ASM_OUTPUT_ALIGNED_COMMON): Protect definition.
9247         * t-arm-elf (EXTRA_MULTILIB_PARTS): Add crti.o and crtn.o.
9248         Add rules to build crti.o and crtn.o
9249         * crti.asm: New file.
9250         * crtn.asm: New file.
9251
9252 2001-09-13  Neil Booth  <neil@daikokuya.demon.co.uk>
9253
9254         * c-parse.in (_yylex): Use _cpp_backup_tokens.
9255         * cpphash.h (struct tokenrun): Add prev.
9256         (struct lexer_state): Remove bol.
9257         (struct cpp_reader): Remove old lookahead stuff, add lookaheads.
9258         (_cpp_free_lookaheads, _cpp_release_lookahead, _cpp_push_token)
9259         : Remove.
9260         * cppinit.c (cpp_create_reader): Don't set bol.
9261         (cpp_destroy): Don't free lookaheads.
9262         * cpplex.c (lex_directive): Remove.
9263         (next_tokenrun): Update.
9264         (_cpp_lex_token): Clean up logic.
9265         (lex_token): Update to return a pointer to lexed token, since it
9266         can move to the start of the buffer.  Simpify newline handling.
9267         * cpplib.c (SEEN_EOL): Update.
9268         (skip_rest_of_line): Remove lookahead stuff.
9269         (end_directive): Line numbers are already incremented.  Revert
9270         to start of lexed token buffer if we can.
9271         (_cpp_handle_directive, do_pragma, do_pragma_dependency,
9272         parse_answer): Use _cpp_backup_tokens.
9273         (run_directive, cpp_pop_buffer): Don't set bol, set saved_flags
9274         instead.  Don't check for EOL.
9275         (do_include_common, do_line, do_pragma_system_header): Use
9276         skip_rest_of_line.
9277         * cpplib.h (BOL, _cpp_backup_tokens): New.
9278         * cppmacro.c (save_lookahead_token, take_lookahead_token,
9279         alloc_lookahead, free_lookahead, _cpp_free_lookaheads,
9280         cpp_start_lookahead, cpp_stop_lookahead, _cpp_push_token): Remove.
9281         (builtin_macro): Don't use cpp_get_line.
9282         (cpp_get_line): Short term kludge.
9283         (parse_arg): Handle directives in arguments here.  Back up when
9284         appropriate.  Store EOF at end of argument list.
9285         (funlike_invocation_p): Use _cpp_backup_tokens.
9286         (push_arg_context): Account for EOF at end of list.
9287         (cpp_get_token): Remove lookahead stuff.  Update.
9288
9289 2001-09-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9290
9291         * c-parse.in (yyerror): Const-ification and/or static-ization.
9292         * c-typeck.c (push_member_name): Likewise.
9293         * collect2.c (main): Likewise.
9294         * dbxout.c (dbxout_parms): Likewise.
9295         * diagnostic.c (format_with_decl): Likewise.
9296         * dwarf2out.c (output_ranges): Likewise.
9297         * dwarfout.c (fundamental_type_code): Likewise.
9298         * except.c (dw2_output_call_site_table): Likewise.
9299         * gcc.c (do_spec_1): Likewise.
9300         * genopinit.c (optabs): Likewise.
9301         * objc/objc-act.c (synth_id_with_class_suffix, start_class,
9302         gen_declaration_1, handle_impent): Likewise.
9303         * protoize.c (default_include, in_system_include_dir, abspath):
9304         Likewise.
9305         * sched-vis.c (visualize_stall_cycles): Likewise.
9306         * sdbout.c (plain_type_1, sdbout_end_function,
9307         sdbout_end_epilogue): Likewise.
9308         * varasm.c (decode_reg_name): Likewise.
9309
9310         * 1750a.c (mod_regno_adjust): Likewise.
9311         * alpha.c (alpha_write_one_linkage,
9312         unicosmk_output_default_externs): Likewise.
9313         * arm.c (arm_condition_codes): Likewise.
9314         * arm.h (arm_condition_codes): Likewise.
9315         * avr.c (output_movsisf, encode_section_info): Likewise.
9316         * darwin.h (GEN_BINDER_NAME_FOR_STUB, GEN_SYMBOL_NAME_FOR_SYMBOL):
9317         Likewise.
9318         * i386.c (hi_reg_name, qi_reg_name, qi_high_reg_name): Likewise.
9319         * i386.h (hi_reg_name, qi_reg_name, qi_high_reg_name): Likewise.
9320         * m88k.c (output_function_profiler): Likewise.
9321         * mips.c (mips_output_conditional_branch): Likewise.
9322         * ns32k.c (ns32k_out_reg_names): Likewise.
9323         * ns32k.h (ns32k_out_reg_names): Likewise.
9324         * pj.c (pj_output_rval): Likewise.
9325         * rs6000.c (GEN_LOCAL_LABEL_FOR_SYMBOL): Likewise.
9326         * sparc.c (sparc_flat_function_prologue,
9327         sparc_flat_function_epilogue): Likewise.
9328
9329 2001-09-13  Markus Werle <numerical.simulation@web.de>
9330             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
9331
9332         * doc/install.texi (Binaries): Add "Binaries for HP-UX 11.00 at
9333         Aachen University of Technology".
9334
9335 2001-09-13  Andreas Schwab  <schwab@suse.de>
9336
9337         * config/float-m68k.h: Define DECIMAL_DIG and FLT_EVAL_METHOD for
9338         C99.
9339
9340 2001-09-13  Richard Henderson  <rth@redhat.com>
9341
9342         * config/alpha/alpha.c (small_symbolic_operand): New.
9343         (override_options): Set MASK_SMALL_DATA based on pic/PIC.
9344         (some_operand, input_operand): Don't handle HIGH.
9345         (alpha_legitimize_address): Use it.  Emit HIGH with PLUS gp.
9346         (alpha_expand_mov): Likewise.
9347         (print_operand) [H]: Just print HIGH symbol.
9348         (print_operand_address): Handle small data.
9349         * config/alpha/alpha.h (MASK_SMALL_DATA, TARGET_SMALL_DATA): New.
9350         (TARGET_SWITCHES): Add -msmall-data/large-data.
9351         (PIC_OFFSET_TABLE_REGNUM): New.
9352         (PREFERRED_RELOAD_CLASS): Don't handle HIGH.
9353         (PREDICATE_COES): Update.
9354         * config/alpha/alpha.md (adddi_er_high): New.
9355         (adddi_er_low): Handle small data.
9356         * config/alpha/elf.h (DO_SELECT_SECTION): If SMALL_DATA,
9357         prefer .sdata to .rodata.
9358         (SELECT_RTX_SECTION): Likewise.
9359
9360 2001-09-12  Josh Martin  <josh.martin@abq.sc.philips.com>
9361
9362         * fixinc/inclhack.def(hpux11_size_t): Keep HP-UX headers from
9363         defining __size_t and leaving size_t undefined.
9364
9365 2001-09-12  Diego Novillo  <dnovillo@redhat.com>
9366
9367         * basic-block.h (expunge_block): Declare.
9368         * cfg.c (expunge_block): Remove static declaration.
9369
9370 2001-09-12  Richard Henderson  <rth@redhat.com>
9371
9372         * integrate.c (copy_insn_list): Copy label name from
9373         NOTE_INSN_DELETED_LABEL.
9374
9375 2001-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9376
9377         * c-common.c (c_tree_code_name): Const-ification.
9378         * c-decl.c (c_decode_option): Likewise.
9379         * c-typeck.c (warn_for_assignment): Likewise.
9380         * collect2.c (libexts, is_ctor_dtor, main, ignore_library):
9381         Likewise.
9382         * cppinit.c (output_deps): Likewise.
9383         * dependence.c (dependence_string, direction_string): Likewise.
9384         * dwarf2out.c (output_ranges): Likewise.
9385         * fixinc/fixfixes.c (emit_gnu_type): Likewise.
9386         * fixinc/gnu-regex.c (re_error_msgid): Likewise.
9387         * gcc.c (standard_exec_prefix, standard_exec_prefix_1,
9388         standard_startfile_prefix, standard_startfile_prefix_1,
9389         standard_startfile_prefix_2, tooldir_base_prefix,
9390         standard_bindir_prefix, find_a_file): Likewise.
9391         * genattrtab.c (make_length_attrs): Likewise.
9392         * gencheck.c (tree_codes): Likewise.
9393         * genemit.c (gen_split): Likewise.
9394         * genrecog.c (special_mode_pred_table): Likewise.
9395         * graph.c (graph_ext): Likewise.
9396         * protoize (default_include): Likewise.
9397         * reload.c (reload_when_needed_name): Likewise.
9398         * sched-vis.c (visualize_stall_cycles): Likewise.
9399         * tlink.c (recompile_files): Likewise.
9400         * toplev.c (decode_g_option): Likewise.
9401         * tradcpp.c (output_deps): Likewise.
9402         * varasm.c (decode_reg_name): Likewise.
9403
9404         * arm.c (arm_condition_codes, strings_fpa, thumb_condition_code):
9405         Const-ification.
9406         * arm.md: Likewise.
9407         * avr.c (avr_regnames, encode_section_info): Likewise.
9408         * c4x.c (float_reg_names): Likewise.
9409         * darwin.h (ASM_GLOBALIZE_LABEL): Likewise.
9410         * elfos.h (const_section): Likewise.
9411         * i386.c (ix86_comp_type_attributes): Likewise.
9412         * i386/win32.h (STRIP_NAME_ENCODING): Likewise.
9413         * ia64/aix.h (UNIQUE_SECTION): Likewise.
9414         * ia64.c (type_names): Likewise.
9415         * m68hc11.c (reg_class_names): Likewise.
9416         * m88k.c (m_options): Likewise.
9417         * mips.c (mips_output_conditional_branch, mips_unique_section):
9418         Likewise.
9419         * rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
9420         * sparc.c (sparc_flat_function_prologue, sparc_flat_function_epilogue,
9421         ultra_code_names): Likewise.
9422         * sparc.h (OVERRIDE_OPTIONS): Likewise.
9423
9424 2001-09-12  Jakub Jelinek  <jakub@redhat.com>
9425
9426         * configure.in (gcc_cv_as_shf_merge): Fix a typo.
9427         Use --fatal-warnings option for gas.
9428         * configure: Rebuilt.
9429
9430 2001-09-12  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
9431
9432         * doc/install.texi (Specific, alphaev5-cray-unicosmk*): Document.
9433
9434 2001-09-11  Jim Wilson  <wilson@redhat.com>
9435
9436         * alias.c (clear_reg_alias_info): Only handle pseudo registers.
9437
9438 2001-10-11  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
9439
9440         * builtins.c (c_strlen): Treat an offset too large for a
9441         HOST_WIDE_INT as out of range.
9442
9443 Tue Sep 11 18:57:47 CEST 2001  Jan Hubicka  <jh@suse.cz>
9444
9445         * basic-block.h (EDGE_CRITICAL): Remove; renumber other flags.
9446         (EDGE_CRITICAL_P): New predicate.
9447         * cfg.c (force_nonfallthru_and_redirect, split_edge): Kill EDGE_CRITICAL
9448         handling.
9449         (insert_insn_on_edge): Use EDGE_CRITICAL_P.
9450         (dump_edge_info): Remove "crit".
9451         * cfganal.c (mark_critical_edges): Kill.
9452         * cfgbuild.c (find_basic_blocks): Remove mark_critical_edges call.
9453         * cfgcleanup.c (cleanup_cfg): Likewise.
9454         * profile.c (instrument_edges): Use EDGE_CRITICAL_P.
9455         (find_spanning_tree): Likewise.
9456         * reg-stack.c (convert_regs_1): Likewise.
9457         * ssa.c (mark_regs_equivalent_over_bad_edges): Likewise.
9458
9459         * basic-block.h (create_basic_block_structure): New.
9460         (create_basic_block): Update prototype.
9461         (force_nonfallthru): New.
9462         * bb-reorder.c (fixup_reorder_chain): Fixup use force_nonfallthru.
9463         * cfg.c (create_basic_block_structure): Rename from create_basic_block;
9464         handle updating of block_for_insn, creating of empty BBs and BBs at
9465         the end of INSN chain.
9466         (create_basic_block): New function.
9467         (split_block): Use create_basic_block.
9468         (force_nonfallthru_and_redirect): Break out from ...; cleanup
9469         (redirect_edge_and_branch_force): ... here.
9470         (force_nonfallthru): New.
9471         (split_edge): Rewrite to use force_nonfallthru and create_block.
9472         * cfgbuild.c (find_basic_blocks_1): Use create_basic_block_structure.
9473         (find_basic_blocks): Free basic_block_for_insn.
9474         * cfgcleanup.c (merge_blocks): Use force_nonfallthru.
9475
9476         * cfg.c: Fix formating.
9477         * cfgcleanup.c: Fix formating.
9478         (merge_blocks, tail_recursion_label_p): Return bool.
9479         (merge_blocks_move_predecessor_nojumps,
9480          merge_blocks_move_successor_nojumps): Return void.
9481
9482 2001-09-11  Jakub Jelinek  <jakub@redhat.com>
9483
9484         * configure.in: Check whether assembler supports section merging.
9485         * config.in: Rebuilt.
9486         * configure: Rebuilt.
9487         * varasm.c (variable_section, output_constant_pool): Pass alignment
9488         to SELECT_SECTION and SELECT_RTX_SECTION.
9489         (mergeable_string_section): New.
9490         (mergeable_constant_section): New.
9491         (default_elf_asm_named_section): Output SECTION_MERGE and
9492         SECTION_STRINGS flags plus SECTION_ENTSIZE entity size.
9493         * output.h (mergeable_string_section): New.
9494         (mergeable_constant_section): New.
9495         (SECTION_MERGE, SECTION_STRINGS, SECTION_ENTSIZE): Define.
9496         * toplev.c (flag_merge_constants): New.
9497         (f_options): Add -fmerge-constants and -fmerge-all-constants
9498         options.
9499         (toplev_main): Default to -fno-merge-constants if not optimizing.
9500         * flags.h (flag_merge_constants): Add extern.
9501         * invoke.texi (-fmerge-constants, -fmerge-all-constants): Document.
9502         * tm.texi (SELECT_SECTION, SELECT_RTX_SECTION): Document added third
9503         argument.
9504         * config/elfos.h (ASM_SECTION_START_OP, ASM_OUTPUT_SECTION_START):
9505         Define if assembler has working .subsection -1 support.
9506         (SELECT_RTX_SECTION, SELECT_SECTION): Add third macro argument.
9507         Put constant into special SHF_MERGE sections if the linker should
9508         attempt to merge duplicates.
9509         * config/ia64/sysv4.h (SELECT_RTX_SECTION, SELECT_SECTION): Add third
9510         macro argument.
9511         Put constant into special SHF_MERGE sections if the linker should
9512         attempt to merge duplicates.
9513         * config/alpha/elf.h: Likewise.
9514         (ASM_SECTION_START_OP, ASM_OUTPUT_SECTION_START): Define if assembler
9515         has working .subsection -1 support.
9516         * config/nextstep.h: Add third argument to SELECT_RTX_SECTION and
9517         SELECT_SECTION.
9518         * config/svr3.h: Likewise.
9519         * config/darwin.h: Likewise.
9520         * config/arm/aof.h: Likewise.
9521         * config/arm/linux-elf.h: Likewise.
9522         * config/avr/avr.h: Likewise.
9523         * config/c4x/c4x.h: Likewise.
9524         * config/d30v/d30v.h: Likewise.
9525         * config/i386/dgux.h: Likewise.
9526         * config/i386/osfrose.h: Likewise.
9527         * config/i386/sco5.h: Likewise.
9528         * config/i386/svr3gas.h: Likewise.
9529         * config/ia64/aix.h: Likewise.
9530         * config/m32r/m32r.h: Likewise.
9531         * config/m68k/m68k.h: Likewise.
9532         * config/m88k/dgux.h: Likewise.
9533         * config/m88k/m88k.h: Likewise.
9534         * config/mcore/mcore-pe.h: Likewise.
9535         * config/mips/mips.h: Likewise.
9536         * config/pa/pa.h: Likewise.
9537         * config/pa/pa-linux.h: Likewise.
9538         * config/romp/romp.h: Likewise.
9539         * config/rs6000/sysv4.h: Likewise.
9540         * config/rs6000/xcoff.h: Likewise.
9541         * config/s390/linux.h: Likewise.
9542         * config/sparc/sparc.h: Likewise.
9543         * config/sparc/sysv4.h: Likewise.
9544         * config/stormy16/stormy16.h: Likewise.
9545         * config/v850/v850.h: Likewise.
9546         * config/vax/vms.h: Likewise.
9547         * config/arm/arm.c (arm_elf_asm_named_section): Output SECTION_MERGE
9548         and SECTION_STRINGS flags plus SECTION_ENTSIZE entity size.
9549         * config/sparc/sparc.c (sparc_elf_asm_named_section): Use
9550         default_elf_asm_named_section for SHF_MERGE sections.
9551
9552 Tue Sep 11 17:55:54 CEST 2001  Jan Hubicka  <jh@suse.cz>
9553
9554         * bb-reorder.c (fixup_reorder_chain): Fallthru edge to exit block
9555         is OK.
9556
9557 2001-09-11  Joseph S. Myers  <jsm28@cam.ac.uk>
9558
9559         * c-common.c (split_specs_attrs): Allow for empty attributes with
9560         empty TREE_PURPOSE.  Fixes PR c/4294.
9561
9562 Tue Sep 11 11:37:52 CEST 2001  Jan Hubicka  <jh@suse.cz>
9563
9564         * basic-block.h (cached_make_edge, make_single_succ): New.
9565         (make_edge): Remove first parameter.
9566         * bb-reroder.c (fixup_reorder_chain): Use make_single_succ_edge.
9567         * cfg.c (cached_make_edge): Rename from make_edge; return newly
9568         created edge; use obstack allocation.
9569         (make_edge, make_single_succ_edge): New.
9570         (first_removed_edge): New static variable.
9571         (init_flow): Initialize first_removed_edge and n_edges.
9572         (clear_edges): Use remove_edge.
9573         (flow_delete_block): Likewise.
9574         (remove_edge): Add removed edges to the removed edges list.
9575         (split_block, redirect_edge_and_branch_force, split_edge):
9576         Use make_edge.
9577         * cfganal.c (flow_call_edges_add): Updaet make_edge call.
9578         (add_noreturn_fake_exit_edges): Likewise.
9579         (connect_infinite_loops_to_exit): Liekwise.
9580         * cfgbuild.c (make_label_edge, make_edges, find_sub_basic_blocks):
9581         Use cached_make_edge.
9582         * cfgcleanup.c (try_crossjump_to_edge): Use make_single_succ_edge.
9583         * profile.c (branch_prob): Update make_edge call.
9584         * ssa-dce.c (ssa_eliminate_dead_code): Likewise.
9585
9586 2001-09-11  Richard Henderson  <rth@redhat.com>
9587
9588         * config/alpha/alpha.c: Tidy formatting.
9589         (local_symbolic_operand): Verify mode.
9590         (alpha_sa_mask): Ignore unicos for eh_return.
9591         (alpha_expand_epilogue): Handle sp_adj2 zero, not NULL.
9592         * config/alpha/alpha.md (umk divsi patterns): Remove.
9593         (extendsfdf2): Remove unicos check.
9594         (tablejump): Merge vms and unicos code; always use direct set
9595         plus label_ref use.
9596
9597 2001-09-11  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
9598
9599         * config.gcc (alpha*-*-unicosmk*): New target.
9600
9601         * config/alpha/alpha-protos.h (symbolic_operand,
9602         unicosmk_add_call_info_word, unicosmk_add_extern,
9603         unicosmk_defer_case_vector, unicosmk_unique_section,
9604         unicosmk_output_align, unicosmk_text_section, unicosmk_data_section,
9605         unicosmk_asm_file_start, unicosmk_asm_file_end,
9606         unicosmk_output_common): Declare.
9607
9608         * config/alpha/alpha.c (NUM_ARGS, override_options, call_operand,
9609         direct_return, function_arg, alpha_va_start, alpha_va_arg,
9610         alpha_does_function_need_gp, alpha_end_function): Support Cray
9611         Unicos/Mk.
9612         (alpha_init_machine_status, alpha_mark_machine_status,
9613         alpha_free_machine_status, unicosmk_output_deferred_case_vectors,
9614         unicosmk_gen_dsib, unicosmk_output_ssib, unicosmk_need_dex,
9615         unicosmk_asm_named_section, unicosmk_insert_attributes,
9616         unicosmk_section_type_flags, symbolic_operand,
9617         unicosmk_output_module_name, unicosmk_output_default_externs,
9618         unicosmk_output_dex, unicosmk_output_externs,
9619         unicosmk_output_addr_vec, unicosmk_ssib_name,
9620         unicosmk_initial_elimination_offset, unicosmk_asm_file_start,
9621         unicosmk_asm_file_end, unicosmk_output_common,
9622         unicosmk_section_type_flags, unicosmk_unique_section,
9623         unicosmk_add_call_info_word, unicosmk_text_section,
9624         unicosmk_data_section, unicosmk_extern_list, unicosmk_extern_head,
9625         unicosmk_add_extern, unicosmk_dex, unicosmk_dex_list,
9626         unicosmk_dex_count, unicosmk_special_name): New.
9627         (TARGET_INSERT_ATTRIBUTES, TARGET_SECTION_TYPE_FLAGS): Define for
9628         TARGET_ABI_UNICOSMK.
9629         (get_aligned_mem, alpha_expand_unaligned_load,
9630         alpha_expand_unaligned_store, alpha_expand_unaligned_load_words,
9631         alpha_expand_unaligned_store_words): Support big-endian mode.
9632         (print_operand): Likewise. New format specifier 't'. Use
9633         TARGET_AS_SLASH_BEFORE_SUFFIX.
9634         (alpha_is_stack_procedure): Rename from vms_is_stack_procedure.
9635         (alpha_pv_save_size): Update with above change.
9636         (alpha_sa_mask, alpha_sa_size, alpha_expand_prologue,
9637         alpha_start_function, alpha_expand_epilogue): Likewise. Support Cray
9638         Unicos/Mk.
9639
9640         * config/alpha/alpha.h (TARGET_ABI_UNICOSMK): New.
9641         (TARGET_ABI_OSF): Exclude TARGET_ABI_UNICOSMK.
9642         (TARGET_AS_SLASH_BEFORE_SUFFIX): New.
9643         (EXTRA_CONSTRAINT): New constraint 'U'.
9644         (PREDICATE_CODES): Add symbolic_operand.
9645
9646         * config/alpha/alpha.md (UNSPEC_UMK_LAUM, UNSPEC_UMK_LALM,
9647         UNSPEC_UMK_LAL, UNSPEC_UMK_LOAD_CIW): New constants.
9648         (mulsi3, *mulsi_se, mulvsi3): Disable for TARGET_ABI_UNICOSMK.
9649         (integer division and modulus patterns): Split in default and
9650         Unicos/Mk versions.
9651         (*divmodsi_internal, *divmoddi_internal): Disable for
9652         TARGET_ABI_UNICOSMK.
9653         (unaligned_extend?idi, unaligned_load?i, unaligned_store?i): Split in
9654         little-endian and big-endian versions.
9655         (ext, ins, msk): Likewise.
9656         (extv, extzv, insv): Support big-endian mode.
9657         (call, call_value, tablejump): Support TARGET_ABI_UNICOSMK.
9658         (call_umk, call_value_umk, *call_umk, tablejump_umk,
9659         *tablejump_umk_internal, *call_value_umk): New.
9660         (*movdi_nofix): Add pattern for loading an address into a register on
9661         TARGET_ABI_UNICOSMK.
9662         (umk_laum, umk_lal, umk_lalm, *umk_load_ciw): New.
9663         (umk_mismatch_args, arg_home_umk): New.
9664         (various insns): Don't use mov, fmov, nop, fnop and unop.
9665         (realign): Support TARGET_ABI_UNICOSMK.
9666
9667         * config/alpha/unicosmk.h: New file.
9668         * config/alpha/t-unicosmk: New file.
9669
9670         * fixinc/inclhack.def (unicosmk_restrict): New.
9671         * fixinc/fixincl.x: Regenerate.
9672
9673         * ginclude/stddef.h (size_t): Check for and define __SIZE_T__.
9674         (wchar_t): Check for and define __WCHAR_T__.
9675
9676 2001-09-11  Richard Sandiford  <rsandifo@redhat.com>
9677
9678         * combine.c (simplify_shift_const): Treat shifts by the mode
9679         size as undefined.
9680
9681 2001-09-11  Neil Booth  <neil@daikokuya.demon.co.uk>
9682
9683         * cpphash.h (struct tokenrun): New.
9684         (struct cpp_context): New member bol.
9685         (struct cpp_reader): New members.
9686         (_cpp_init_tokenrun): New.
9687         * cppinit.c (cpp_create_reader): Set up the token runs.
9688         * cpplex.c (lex_directive, lex_token, next_tokenrun): New.
9689         (lex_token): New internalised version of _cpp_lex_token.  Don't
9690         handle directives or the multiple include optimization here any
9691         more.  Simply lex a token.
9692         * cpplib.c (run_directive): Clear bol.
9693         (_cpp_pop_buffer): Set bol.
9694         * cppmacro.c (funlike_invocation_p): Keep tokens whilst parsing
9695         arguments.
9696
9697 2001-09-11  Michael Meissner  <meissner@redhat.com>
9698
9699         * config/mips/mips.h (CC1_SPEC): If -mgp32 default to -mfp32, and
9700         give an error if the user uses -mfp32.
9701         (CPP_FPR_SPEC): Define __mips_fpr to be 32 or 64 depending on the
9702         default options.
9703         (CPP_SPEC): Define __mips_fpr to be 32 or 64, depending on the
9704         floating point register size.
9705         (EXTRA_SPECS): Add CPP_FPR_SPEC.
9706
9707         * config/mips/netbsd.h (ASM_FINISH_DECLARE_OBJECT): Use
9708         HOST_WIDE_INT_PRINT_DEC to properly print the result of
9709         int_size_in_bytes.
9710         * config/mips/elf.h (ASM_FINISH_DECLARE_OBJECT): Ditto.
9711         * config/mips/elf64.h (ASM_FINISH_DECLARE_OBJECT): Ditto.
9712
9713 2001-09-11  Hans-Peter Nilsson  <hp@axis.com>
9714
9715         * dbxout.c (dbxout_parms): Fix typo in comment.
9716         * unroll.c (loop_find_equiv_value): Ditto.
9717         * toplev.c (rest_of_compilation): Ditto.
9718         * loop.c (scan_loop): Ditto.
9719         * dwarf2out.c (struct dw_fde_struct): Ditto.
9720
9721 2001-09-10  Zack Weinberg  <zackw@panix.com>
9722
9723         * cpplex.c (parse_identifier): Fast-path optimize.  Avoid
9724         copying identifier when we're just going to throw it away.
9725         (parse_identifier_slow): New routine to handle abnormal cases.
9726         (_cpp_lex_token): Update call site.
9727
9728         * hashtable.c (ht_lookup): Don't assume that the string we've
9729         been given is NUL-terminated.
9730         * system.h: #define __builtin_expect(a, b) to (a) if not
9731         GCC >=3.0.
9732
9733 2001-09-10  Michael Meissner  <meissner@redhat.com>
9734
9735         * config.gcc (sparc64-*-solaris2): Add alias to be compatible with
9736         binutils, gdb.
9737
9738 2001-09-10  David Edelsohn  <edelsohn@gnu.org>
9739
9740         * config/rs6000/t-aix43 (SHLIB_INSTALL): Use mode 751 (a+x,r-o).
9741
9742 Mon Sep 10 16:26:44 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9743
9744         * builtins.c (c_getstr): Correct thinko in last change and further
9745         cleanup.
9746
9747 2001-09-10  Tim Freeman <tim@fungibole.com>
9748
9749         * dwarf2out.c (incomplete_types, decl_scope_table): Make them
9750         into varray's and register them as roots with the garbage
9751         collector so they are not collected too soon.
9752
9753 Mon Sep 10 14:21:26 CEST 2001  Jan Hubicka  <jh@suse.cz>
9754
9755         * Makefile.in (cfg.o, cfganal.o, cfgloop.o, cfgbuild.o, cfgcleanup.o):
9756         New.
9757         * basic-block.h (flow_obstack, label_value_list,
9758         tail_recursion_label_list): Declare
9759         (tidy_fallthru_edges): Declare.
9760         (expunge_block, last_loop_beg_note): Delete.
9761         (can_fallthru, flow_nodes_print, flow_edge_list_print): Declare.
9762         * cfg.c: New file
9763         (basic_block_for_insn, label_value_list): Move from flow.c; make global.
9764         (n_basic_blocks, n_edges, basic_block_info, entry_exit_blocks,
9765         init_flow, clear_edges, can_delete_note_p, can_delete_label_p,
9766         flow_delete_insn, flow_delete_insn_chain, create_basic_block,
9767         expunge_block, flow_delete_block, compute_bb_for_insn,
9768         update_bb_for_insn, set_block_for_insn, set_block_for_new_insns,
9769         make_edge, remove_edge, redirect_edge_succ, redirect_edge_succ_nodup,
9770         redirect_edge_pred, split_block, marge_blocks_nomove, block_label,
9771         try_redirect_by_replacing_jump, last_loop_beg_note,
9772         redirect_edge_and_branch, redirect_edge_and_branch_force,
9773         tidy_fallthru_edge, tidy_fallthru_edges, back_edge_of_syntactic_loop_p,
9774         split_edge, insert_insn_on_edge, commit_one_edge_insertion,
9775         commit_edge_insertions, dump_flow_info, debug_flow_info,
9776         dump_edge_info, dump_bb, debug_bb, debug_bb_n, print_rtl_with_bb,
9777         verify_flow_info, purge_dead_edges, purge_all_dead_edges):
9778         Move here from flow.c
9779         * cfganal.c: New file.
9780         (forwarder_block_p, can_fallthru, mark_critical_edges,
9781          mark_dfs_back_edges, need_fake_edge_p, flow_call_edges_add,
9782          find_unreachable_blocks, create_edge_list, free_edge_list,
9783          print_edge_list, verify_edge_list, find_edge_index, flow_nodes_print,
9784          flow_edge_list_print, remove_fake_successors, remove_fake_edges,
9785          add_noreturn_fake_exit_edges, connect_infinite_loops_to_exit,
9786          flow_reverse_top_sort_order_compute, flow_depth_first_order_compute,
9787          flow_dfs_compute_reverse_init, flow_dfs-compute_reverse_add_bb,
9788          flow_dfs-compute_reverse_execute, flow_dfs_compute_reverse_finish);
9789         Move here from flow.c
9790         * cfgbuild.c: New file
9791         (count_basic_blocks, find_label_refs, make_label_edge, make_eh_edge,
9792          make_edges, find_basic_blocks_1, find_basic_blocks,
9793          find_sub_basic_blocks): Move here from flow.c
9794         * cfgcleanup.c: New file.
9795         (try_simplify_condjump, try_forward_edges, tail_recursion_label_p,
9796          merge_blocks_move_predecessor_nojumps,
9797          merge_blocks_move_successor_nojumps, merge_blocks,
9798          flow_find_cross_jump, outgoing_edges_match, try_crossjump_to_edge,
9799          try_crossjump_bb, try_optimize_cfg): Move here from flow.c
9800         (delete_unreachable_blocks, cleanup_cfg): Likewise; return true
9801         if succeeded.
9802         * cfgloop.c: New file
9803         (flow_loops_cfg_dump, flow_loop_nested_p, flow_loop_dump,
9804          flow_loops_dump, flow_loops_free, flow_loop_entry_edges_find,
9805          flow_loop_exit_edges_find, flow_loop_nodes_find,
9806          flow_loop_pre_header_scan, flow_loop_pre_header_find,
9807          flow_loop_tree_node_add, flow_loops_tree_build,
9808          flow_loop_level_compute, flow_loops_level_compute, flow_loop_scan,
9809          flow_loops_find, flow_loops_update, flow_loop_outside_edge_p):
9810         Move here from flow.c
9811         * flow.c: Remove everything moved elsewhere
9812         * output.h (cleanup_cfg): Return bool.
9813
9814         * bb-reorder.c (reorder_block_def): Remove 'index'.
9815         (insert_intra_1): Add argument BB, set block for new note.
9816         (make_reorder_chain): Do not depdent on BB indexes.
9817         (make_reorder_chain_1): Do not use BB indexes.
9818         (label_for_bb): Likewise; set BB for new insn.
9819         (emit_jump_to_block_after): Likewise.
9820         (fixup_reorder_chain): Sanity check that all basic blocks
9821         are chained; verify newly created insn chain; remove
9822         undocnitional jump simplifying; Do not use BB indexes;
9823         properly initialize count and frequency information;
9824         dump reordered sequence.
9825         (insert_intra_bb_scope_notes): update call of insert_intra_1.
9826         (insert_inter_bb_scope_notes): Set block for new insn.
9827         (reorder_basic_blocks): Dump flow info before reoredering.
9828
9829 Mon Sep 10 06:47:35 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9830
9831         * alias.c (clear_reg_alias_info): Use K&R format definition.
9832         Avoid unsigned warning.
9833         * builtins.c: Use "unsigned int", not "unsigned".
9834         (target_char_cast): Use host_integerp and tree_low_cst.
9835         (expand_builtin_args_info, expand_builtin_frame_address): Likewise.
9836         (c_strlen): Likewise; OFFSET now HOST_WIDE_INT.
9837         (c_getstr): Likewise.
9838         (std_expand_builtin_va_arg): Use int_size_in_bytes.
9839         (builtin_memcpy_read_str): Avoid unsigned warning.
9840         (expand_builtin_memcpy): Alignments are unsigned.
9841         (expand_builtin_strncpy, expand_builtin_memset): Likewise.
9842         (expand_builtin_expect_jump): Use integer_zerop and integer_onep.
9843         * predict.c (expensive_function_p): LIMIT now unsigned.
9844         * resource.c (mark_target_live_regs): Make some vars unsigned.
9845         * sdbout.c: Use "unsigned int", not "unsigned".
9846         (MAKE_LINE_SAFE): Add cast to avoid unsigned warning.
9847         (sdbout_source_line): Likewise.
9848         (sdbout_record_type_name): Remove "const" for NAME declaration.
9849         * config/alpha/alpha.c (alpha_expand_block_move): Whitespace fixes.
9850
9851 2001-09-10  Richard Sandiford  <rsandifo@redhat.com>
9852
9853         * calls.c (store_one_arg): Expand comment.
9854
9855 2001-09-10  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
9856
9857         * calls.c (store_one_arg): Make sure that the entire argument is
9858         pushed if STACK_PARMS_IN_REG_PARM_AREA is defined.
9859
9860 2001-09-09  Richard Henderson  <rth@redhat.com>
9861
9862         * emit-rtl.c (adjust_address): Fix mode for LO_SUM.
9863
9864 Sun Sep  9 10:43:17 CEST 2001  Jan Hubicka  <jh@suse.cz>
9865
9866         * loop.c (combine_givs): Fix computing of benefit once giv is combined.
9867
9868 2001-09-09  Richard Henderson  <rth@redhat.com>
9869
9870         * config/alpha/alpha.c (alpha_next_sequence_number): New.
9871         (alpha_this_literal_sequence_number): New.
9872         (alpha_this_gpdisp_sequence_number): New.
9873         (some_operand, input_operand): Add HIGH.
9874         (local_symbolic_operand): New.
9875         (alpha_encode_section_info): New.
9876         (alpha_legitimate_address_p): Allow LO_SUM.
9877         (alpha_legitimize_address): Generate HIGH+LO_SUM.
9878         (alpha_expand_mov): Likewise.
9879         (secondary_reload_class): Check memory_operand not general_operand
9880         for FP_REGS test.
9881         (alpha_expand_unaligned_load): Force LO_SUM addresses into a register.
9882         (alpha_expand_unaligned_store): Likewise.
9883         (alpha_expand_unaligned_load_words): Likewise.
9884         (alpha_expand_unaligned_store_words): Likewise.
9885         (alpha_expand_block_clear): Likewise.
9886         (print_operand): Handle %#, %*, %H.
9887         (print_operand_address): Handle LO_SUM.
9888         (find_lo_sum): New.
9889         (alpha_does_function_need_gp): Use it.
9890         (alpha_expand_block_move): Fix signed compare warnings.
9891         (alpha_sa_mask, alpha_align_insns): Likewise.
9892         * config/alpha/alpha-protos.h: Update.
9893         * config/alpha/alpha.h (TARGET_EXPLICIT_RELOCS): New.
9894         (MASK_EXPLICIT_RELOCS): New.
9895         (TARGET_SWITCHES): Add -mexplicit-relocs.
9896         (EXTRA_CONSTRAINT): Add 'T'.
9897         (PREFERRED_RELOAD_CLASS): HIGH goes in GENERAL_REGS.
9898         (ASM_APP_ON, ASM_APP_OFF): Turn on and off asm macro expansion.
9899         (ENCODE_SECTION_INFO): Out line.
9900         (REDO_SECTION_INFO_P): New.
9901         (STRIP_NAME_ENCODING): New.
9902         (ASM_OUTPUT_LABELREF): New.
9903         (PRINT_OPERAND_PUNCT_VALID_P): Add #, *.
9904         (PREDICATE_CODES): Update.
9905         * config/alpha/alpha.md (divmodsi_internal_er, divmoddi_internal_er,
9906         call_osf_1_er_noreturn, call_osf_1_er, movdi_er_low, movdi_er_nofix,
9907         movdi_er_fix, prologue_ldgp_1_er, builtin_setjmp_receiver_sub_label_er,
9908         builtin_setjmp_receiver_er, exception_receiver_1_er,
9909         call_value_osf_1_er): New patterns.
9910         (sibcall_osf_1, sibcall_value_osf_1): Remove register alternative.
9911         (movqi, movhi, movsi): Add explicit $31 base register to lda.
9912         * config/alpha/elf.h (ASM_FILE_START): Set nomacro if explicit relocs.
9913         (FINAL_PRESCAN_INSN): New.
9914
9915 Sat Sep  8 22:00:55 CEST 2001  Jan Hubicka  <jh@suse.cz>
9916
9917         * reg-stack.c (subst_stack_regs_pat): Fix fcmov reversal code.
9918
9919 2001-09-08  Andreas Jaeger  <aj@suse.de>
9920
9921         * i386.h (TARGET_SWITCHES): Fix description.
9922
9923 2001-09-07  David Edelsohn  <edelsohn@gnu.org>
9924
9925         * rs6000.c (num_insns_constant): Compute number of instructions
9926         more accurately.
9927
9928         * doc/install.texi: Explain AIX exception handling work-around.
9929         Update URL for AIX fixes.
9930
9931 2001-09-07  Jim Wilson  <wilson@redhat.com>
9932
9933         * alias.c (clear_reg_alias_info): New.
9934         * flow.c (attempt_auto_inc): Call clear_reg_alias_info.
9935         * rtl.h (clear_reg_alias_info): Declare.
9936
9937 2001-09-07  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
9938
9939         * real.c (EMUSHORT,EMUSHORT_SIZE): Use HImode if no 16-bit type is
9940         available.
9941         (UEMUSHORT): New. Use instead of unsigned EMUSHORT.
9942         (m16m,edivm,emulm): Change declaration to match definition.
9943
9944 2001-09-07  Roman Lechtchinsky <rl@cs.tu-berlin.de>
9945
9946         * reload.c (push_reload): Check for subreg_lowpart_p instead of
9947         SUBREG_BYTE being 0 when determining if the inner part of a subreg
9948         can be reloaded.
9949
9950 2001-09-07  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
9951
9952         * c-common.c (signed_or_unsigned_type): Handle machine mode types
9953         which have no corresponding C type.
9954         * fold_const.c (target_isinf,target_isnan,target_negative): Update
9955         the representation of 64-bit doubles to work with 64-bit ints.
9956
9957 2001-09-07  Aldy Hernandez  <aldyh@redhat.com>
9958
9959         * config/mips/mips.c (override_options): Do not override ISA when ABI
9960         specified if MIPS_CPU_STRING_DEFAULT was specified.
9961
9962 2001-09-07  Richard Henderson  <rth@redhat.com>
9963
9964         * loop.c (record_giv): Avoid simplifying MULT to ASHIFT.
9965         (express_from_1): Wrap lines.
9966         * rtlanal.c (commutative_operand_precedence): Rename from
9967         operand_preference; export.
9968         * rtl.h: Declare it.
9969         * simplify-rtx.c (simplify_gen_binary): Tidy +/- const_int handling.
9970         (simplify_binary_operation): Invoke simplify_plus_minus on
9971         (CONST (PLUS ...)) as well.
9972         (struct simplify_plus_minus_op_data): New.
9973         (simplify_plus_minus_op_data_cmp): New.
9974         (simplify_plus_minus): Use them.  Avoid infinite recursion with
9975         simplify_binary_operation wrt CONST.
9976
9977 Fri Sep  7 11:52:30 2001   Kazu Hirata  <kazu@hxi.com>
9978
9979         * h8300-protos.h (general_operand_dst_push): Remove.
9980         * h8300.c (general_operand_dst_push): Likewise.
9981         * h8300.h (OK_FOR_T): Likewise.
9982         (EXTRA_CONSTRAINTS): Do not use OK_FOR_T.
9983         * h8300.md (pushqi_h8300): New.
9984         (pushqi_h8300hs): Likewise.
9985         (pushqi): Likewise.
9986         (pushhi_h8300): Likewise.
9987         (pushhi_h8300hs): Likewise.
9988         (pushhi): Likewise.
9989
9990 Fri Sep  7 12:56:26 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9991
9992         * genattrtab.c (attr_printf): First arg is unsigned.
9993         Clean up formatting of callers.
9994
9995 2001-09-06  Aldy Hernandez  <aldyh@redhat.com>
9996
9997         * config/mips/mips.c (override_options): Allow abi32 with 64 bit
9998         registers.
9999
10000 2001-09-07  Andreas Jaeger  <aj@suse.de>
10001
10002         * i386.h (TARGET_SWITCHES): Fix descriptions.
10003
10004 2001-09-07  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
10005
10006         * stor-layout.c (compute_record_mode): Check DECL_SIZE is set.
10007
10008 2001-09-06  Ira Ruben  <ira@apple.com>
10009
10010         Remove OP_IDENTIFIER.
10011         * tree.def (OP_IDENTIFIER): Remove.
10012         * tree.c (tree_node_kind enum): Remove op_id_kind.
10013         (tree_node_kind_names): Remove "op_identifiers".
10014         (make_node): Remove OP_IDENTIFIER test.
10015         (build_op_identifier): Removed because it isn't being used.
10016         * print-tree.c (print_node): Remove OP_IDENTIFIER case.
10017         * cp/pt.c (tsubst): Remove OP_IDENTIFIER case.
10018
10019 2001-09-06  Richard Henderson  <rth@redhat.com>
10020
10021         * simplify-rtx.c (simplify_binary_operation): Revert last change.
10022
10023 2001-09-06  Richard Henderson  <rth@redhat.com>
10024
10025         * simplify-rtx.c (simplify_binary_operation): Simplify contents
10026         of CONST.
10027
10028 2001-09-06  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
10029
10030         * config/rs6000/rs6000.c (rs6000_emit_prologue): Fix DWARF2 register
10031         number used for CR register.
10032
10033 Thu Sep  6 11:16:35 2001  Jeffrey A Law  (law@cygnus.com)
10034                           Joern Rennecke (amylaar@cygnus.com)
10035
10036         * h8300-protos.h (h8300_return_addr_rtx): New prototype.
10037         * h8300.c (initial_offset): Handle offset between RP and FP.
10038         (h8300_return_addr_rtx): New function.
10039         * h8300.h (FIRST_PSEUDO_REGISTER): Bump now that we have a
10040         return register.
10041         (FIXED_REGISTERS, CALL_USED_REGISTERS): Corresponding changes.
10042         (REG_ALLOC_ORDER, RETURN_ADDRESS_POINTER_REGNUM): Likewise.
10043         (REG_CLASS_CONTENTS, ELIMINABLE_REGS): Likewise.
10044         (CAN_ELIMINATE, REGISTER_NAMES):
10045         (RETURN_ADDR_RTX): Call h8300_return_addr_rtx.
10046
10047 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
10048
10049         Remove TYPE_NONCOPIED_PARTS.
10050         * tree.h (TYPE_NONCOPIED_PARTS): Remove.
10051         (struct tree_type): Remove noncopied_parts.
10052         * c-tree.h (TYPE_ACTUAL_ARG_TYPES): Map onto TYPE_BINFO.
10053         * expr.c (save_noncopied_parts, init_noncopied_parts): Remove.
10054         (fixed_type_p): Remove.
10055         (expand_expr, INIT_EXPR): Don't deal with noncopied parts.
10056         (expand_expr, MODIFY_EXPR): Likewise.
10057         * ggc-common.c (ggc_mark_trees): Remove TYPE_NONCOPIED_PARTS.
10058         * doc/c-tree.texi: Remove TYPE_NONCOPIED_PARTS FIXME.
10059
10060 2001-09-06  Alan Modra  <amodra@bigpond.net.au>
10061
10062         * config/rs6000/rs6000.c (mask_operand): Use signed vars to avoid
10063         compiler warnings.
10064         (mask64_operand): Likewise.
10065         (includes_rldic_lshift_p): Likewise.
10066         (includes_rldicr_lshift_p): Likewise.
10067
10068 2001-09-05  Ziemowit Laski  <zlaski@apple.com>
10069
10070         * objc/objc-act.c (build_message_expr): If a class method cannot
10071         be found, do not issue a warning if a corresponding instance
10072         method exists in the root class.
10073
10074 2001-09-05  Richard Henderson  <rth@redhat.com>
10075
10076         * config/alpha/alpha.c (alpha_expand_mov): Initialize temp.
10077
10078 2001-09-05  Zack Weinberg  <zack@codesourcery.com>
10079
10080         * function.c (ggc_mark_struct_function): Mark f->outer.
10081         * toplev.c (rest_of_compilation): Clear DECL_SAVED_INSNS here...
10082         * integrate.c (output_inline_function): ... not here.
10083
10084 Wed Sep  5 17:28:49 CEST 2001  Jan Hubicka  <jh@suse.cz>
10085
10086         * profile.c (branch_prob): Call add_noreturn_fake_exit_edges.
10087
10088         * i386.c (size_cost): New static variable.
10089         (override_function): Use size_cost when -Os is specified.
10090
10091         * i386.c (ix86_expand_prologue): Set use_fast_prologue_epilogue
10092         properly;  Use current_function_calls_eh_return.
10093         (ix86_expand_epilogue): Avoid dummy optimize_size tests;
10094         use leave to avoid dependency chain.
10095
10096         * local-alloc.c (update_equiv_regs): Use CFG to iterate over INSN stream;
10097         get BB loop_depth instead of computing it from LOOP notes.
10098
10099         * reg-stack.c (subst_stack_reg_pat): Handle reversal of conditional moves.
10100
10101 2001-09-05  John David Anglin  <dave@hiauly1.hia.nrc.ca>
10102
10103         * som.h (ASM_PREFERRED_EH_DATA_FORMAT): Define.
10104         * pa.h (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
10105         UNALIGNED_DOUBLE_INT_ASM_OP): Define
10106
10107 2001-09-05  Jeffrey A Law  (law@cygnus.com)
10108             Jason Merrill (jason@redhat.com)
10109
10110         * stor-layout.c (layout_type): Complain if an array's size can
10111         not be represented in a size_t.
10112
10113         * config/h8300/elf.h (ENDFILE_SPEC, STARTFILE_SPEC): Define.
10114
10115 2001-09-05  David Billinghurst <David.Billinghurst@riotinto.com>
10116
10117         * gcc.c: (process_command) Add parentheses around assignment
10118         used as truth value.
10119
10120 2001-09-05  Richard Sandiford  <rsandifo@redhat.com>
10121
10122         * config/mips/mips.c (save_restore_insns): Don't mark any register
10123         save slots as unchanging if current_function_calls_eh_return.
10124
10125 2001-09-05  Richard Henderson  <rth@redhat.com>
10126
10127         * config/alpha/alpha.c (alpha_legitimate_address_p): New.
10128         * config/alpha/alpha-protos.h: Declare it.
10129         * config/alpha/alpha.h (GO_IF_LEGITIMATE_ADDRESS): Move to c file.
10130         (NONSTRICT_REG_OK_FOR_BASE_P): Rename from non-strict macro.
10131         (NONSTRICT_REG_OK_FP_BASE_P): Likewise.
10132         (STRICT_REG_OK_FOR_BASE_P): Rename from strict macro.
10133         (REG_OK_FOR_BASE_P): Select one of the above.
10134
10135 2001-09-05  Richard Sandiford  <rsandifo@redhat.com>
10136
10137         * config/mips/t-elf (EXTRA_PARTS): Use EXTRA_MULTILIB_PARTS instead.
10138         (crti.o): Prefix name of object file with $(T).
10139         (crtn.o): Likewise.
10140
10141 2001-09-05  David S. Miller  <davem@redhat.com>
10142
10143         * config/sparc/linux.h: Set CPLUSPLUS_CPP_SPEC.
10144         * config/sparc/linux64.h: Likewise.
10145
10146 2001-09-05  Andreas Jaeger  <aj@suse.de>
10147
10148         * doc/invoke.texi (i386 Options): -mwide-multiply is not
10149         available anymore, remove the documentation.
10150         (i386 Options): Fix typo, cleanup index entries.
10151
10152         * prefix.c (concat): Remove, we can use the version from liberty.
10153
10154 2001-09-05  Richard Henderson  <rth@redhat.com>
10155
10156         * config/alpha/alpha.c (alpha_expand_mov, alpha_expand_mov_nobwx):
10157         New functions split out of md file expanders.
10158         * config/alpha/alpha-protos.h: Declare them.
10159         * config/alpha/alpha.md (movqi, movhi, movsi, movdi): Use them.
10160
10161 2001-09-05  Neil Booth  <neil@daikokuya.demon.co.uk>
10162
10163         * cppmacro.c (funlike_invocation_p): No need to restore context.
10164
10165 2001-09-04  Richard Henderson  <rth@redhat.com>
10166
10167         * reload.c (push_reload): Export.
10168         * reload.h (push_reload): Declare it.
10169
10170         * config/alpha/alpha.h (LEGITIMIZE_ADDRESS): Move out o' line.
10171         (LEGITIMIZE_RELOAD_ADDRESS): Likewise.
10172         * config/alpha/alpha.c (alpha_legitimize_address): New.
10173         (alpha_legitimize_reload_address): Likewise.
10174         * config/alpha/alpha-protos.h: Declare them.
10175
10176 2001-09-04  Stan Shebs  <shebs@apple.com>
10177
10178         * config/darwin.h (ASM_DECLARE_FUNCTION_NAME): Define.
10179         * config/darwin.c (machopic_stub_name): Account for internally
10180         generated lib calls such as memcpy.
10181
10182 2001-09-04  Richard Henderson  <rth@redhat.com>
10183
10184         * unwind.h (_UA_END_OF_STACK): New flag.
10185         * unwind.inc (_Unwind_ForcedUnwind_Phase2): Set it.
10186
10187 Tue Sep  4 11:16:35 2001  Jeffrey A Law  (law@cygnus.com)
10188
10189         * h8300/elf.h (LINK_SPEC): Redefine appropriately for the H8.
10190
10191 2001-09-04  Richard Sandiford  <rsandifo@redhat.com>
10192
10193         * config/mips/mips.c (save_restore_insns): Change base_offset to
10194         fp_offset in second call to mips_emit_frame_related_store.
10195
10196 2001-09-04  Hans-Peter Nilsson  <hp@axis.com>
10197
10198         * doc/rtl.texi: Mention that besides as a CODE_LABEL, a label can
10199         sometimes be represented as a NOTE of type
10200         NOTE_INSN_DELETED_LABEL.
10201         (Insns): Document NOTE_INSN_DELETED_LABEL.
10202
10203 2001-09-04  Nathan Sidwell  <nathan@codesourcery.com>
10204
10205         * c-common.h (tree_dump_index): Add more comments.
10206         * c-dump.c (dump_files): Name flags `tree' rather than `ast'.
10207         (dump_option_value_info): New struct.
10208         (dump_options): New array.
10209         (dump_switch_p): Parse switch options symbolically.
10210         * doc/invoke.texi (-fdump-ast): Rename to ...
10211         (-fdump-tree): ... here. Document that options are symbolic, and
10212         not all are applicable.
10213
10214 2001-09-04  David S. Miller  <davem@redhat.com>
10215
10216         * config/sparc/sparc.md (define_splits): Kill constraints.
10217
10218         Cleanup redundant and unused insn attributes.
10219         * config/sparc/sparc.md (define_attr "insn"): Kill address, unary,
10220         binary, and move.  Mark ialu as default.
10221         (commented out define_function_unit "alu"): Kill.
10222         (define_attr "use_clobbered"): Kill.
10223         (whole file): Kill address insn type references.  Replace
10224         all unary/binary/move references with ialu.
10225         * config/sparc/sparc.c (whole file): Kill TYPE_ADDRESS
10226         references.  Replace TYPE_{UNARY,BINARY,MOVE} references with
10227         TYPE_IALU.
10228
10229         Simplify length insn attribute and make more judicious use
10230         of insn attribute defaulting.
10231         * config/sparc/sparc.md (all insns with length > one): Mark as
10232         insn type multi if real instructions, else use default if
10233         it is a forced splitter.
10234         (all insns with length == one): Use default insn length.
10235         (all insns of type ialu): Use default insn type.
10236
10237         Fix erroneous insn attribute settings.
10238         (addx): Set insn type to misc.
10239         (mulsidi3_sp64, const_mulsidi3_sp64, umulsidi3_sp64,
10240         const_umulsidi3_sp64): Set insn type to imul.
10241
10242         Track SFmode vs DFmode insns according to UltraSPARC
10243         scheduling rules.
10244         * config/sparc/sparc.md ("fptype"): New attribute, default
10245         to "single".
10246         (all DFmode single insns): Mark as fptype "double".
10247
10248 2001-09-03  Jakub Jelinek  <jakub@redhat.com>
10249
10250         * loop.c (express_from_1): Fix CONSTANT_P(a) case.
10251
10252 2001-09-03  Richard Henderson  <rth@redhat.com>
10253
10254         * function.h (struct function): Add arg_pointer_save_area_init.
10255         * function.c (expand_function_end): Init arg_pointer_save_area.
10256         (get_arg_pointer_save_area): Do not init arg_pointer_save_area
10257         when called from a nested function.
10258
10259 2001-09-02  Angela Marie Thomas <angela@cygnus.com>
10260
10261         * fixinc/Makefile.in: Regenerate fixincl.x only if maintainer-mode
10262         is enabled.
10263
10264 Sun Sep  2 18:37:54 CEST 2001  Jan Hubicka  <jh@suse.cz>
10265
10266         * reload1.c (fixup_abnormal_edges): Allow NOTEs in the sequence.
10267
10268 2001-09-01  Geoffrey Keating  <geoffk@redhat.com>
10269
10270         * expr.c (push_block): Make sane use of STACK_GROWS_DOWNWARD.
10271         (emit_push_insn): Use specified padding direction when
10272         STACK_PUSH_CODE is POST_INC.
10273
10274         * config/stormy16/stormy16.h (DWARF2_UNWIND_INFO): Define to 0.
10275
10276 2001-09-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10277
10278         * mips.h (INITIAL_ELIMINATION_OFFSET): Add missing `else abort'.
10279
10280 2001-09-01  Neil Booth  <neil@daikokuya.demon.co.uk>
10281
10282         * cppinit.c (cpp_start_read): Free the imacros list as we
10283         traverse it.  Don't free the chains before returning.
10284         (_cpp_push_next_buffer): Only try pushing buffers if we've
10285         completed -imacros handling.
10286
10287 2001-08-31  Eric Christopher  <echristo@redhat.com>
10288
10289         * gcc.c (handle_braces): Add explaination for abort.
10290
10291 2001-08-30  Roman Zippel  <zippel@linux-m68k.org>
10292
10293         * expmed.c (store_bit_field): Update to patch from 2001-08-27:
10294         move adjustment of bitpos instead.
10295
10296 2001-08-31  Zack Weinberg  <zack@codesourcery.com>
10297
10298         * function.c: Remove all_functions.  Make outer_function_chain
10299         static.
10300         (init_function_start): Don't add new function structure to
10301         all_functions.
10302         (find_function_data, push_function_context_to,
10303         pop_function_context_from, put_var_into_stack,
10304         trampoline_address): Update for changed structure element names.
10305         (push_function_context_to): Disentangle.
10306         (free_after_compilation): Also free F.
10307         (expand_dummy_function_end): Don't free cfun here.
10308         (put_var_into_stack): Comment why we can't use find_function_data here.
10309         (fix_lexical_addr, trampoline_address, ): Use find_function_data.
10310         (mark_function_chain): Split into maybe_mark_struct_function and
10311         ggc_mark_struct_function.  Export the latter.
10312         (init_function_once): Mark from cfun and outer_function_chain;
10313         not all_functions.
10314
10315         * function.h (struct function): Kill next_global.  Rename next
10316         to outer.  All users updated to match.
10317         (all_functions, outer_function_chain): Don't declare.
10318
10319         * ggc-common.c (ggc_mark_trees): Mark DECL_SAVED_INSNS.
10320         * integrate.c (output_inline_function): Clear DECL_SAVED_INSNS,
10321         don't touch f->inlinable, after calling rest_of_compilation.
10322
10323         * tree.h: Forward-declare struct function.  Prototype
10324         ggc_mark_struct_function.
10325
10326 2001-08-31  Kazu Hirata  <kazu@hxi.com>
10327
10328         * config/h8300/h8300.md (*andorhi3): Fix typos.
10329
10330 2001-08-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10331
10332         * calls.c (emit_library_call_value): Don't use a fixed
10333         argument after VA_CLOSE, i.e. out of scope in traditional C.
10334
10335         * emit-rtl.c (gen_rtvec): Likewise.
10336
10337 2001-08-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10338
10339         * Makefile.in (c-pragma.o): Depend on output.h.
10340         (reorg.o): Depend on except.h.
10341
10342         * c-pragma.c: Include output.h.
10343
10344         * reorg.c: Include except.h.
10345
10346         * unwind-dw2.c: Call __builtin_alloca, not alloca.
10347
10348 2001-08-31  Richard Henderson  <rth@redhat.com>
10349
10350         * sched-deps.c (add_dependence): Don't elide dependency if the
10351         conditional used by insn is modified in elem.
10352
10353 2001-08-31  Nick Clifton  <nickc@cambridge.redhat.com>
10354
10355         * config/v850/v850.h (OUTPUT_ADDR_CONST_EXTRA): Define.
10356
10357 2001-08-31  Diego Novillo  <dnovillo@redhat.com>
10358
10359         * c-decl.c (c_decode_option): Skip '-f' prefix before calling
10360         dump_switch_p.
10361
10362 2001-08-31  Geoffrey Keating  <geoffk@redhat.com>
10363
10364         * config/stormy16/stormy16.c (stormy16_asm_out_destructor): New
10365         function.
10366         (stormy16_asm_out_constructor): New function.
10367         (TARGET_ASM_CONSTRUCTOR): Define.
10368         (TARGET_ASM_DESTRUCTOR): Define.
10369
10370 2001-08-31  Andreas Jaeger  <aj@suse.de>
10371
10372         * gcse.c (add_label_notes): REG_LABEL is an INSN_LIST.
10373         * loop.c (add_label_notes): Likewise.
10374         * reload.c (find_reloads): Likewise.
10375         * config/sh/sh.c (machine_dependent_reorg): Likewise.
10376
10377 2001-08-31  Jason Merrill  <jason_merrill@redhat.com>
10378
10379         * unwind-pe.h (read_uleb128, read_sleb128): Move actual reading
10380         code here.  Take _Unwind_{W,Sw}ord*.
10381         (read_encoded_value_with_base): Use them.
10382         * unwind-dw2.c (_Unwind_FrameState): Make cfa_offset and cfa_reg
10383         words.
10384         (extract_cie_info): Simplify read_?leb128 handling.
10385         (execute_stack_op, execute_cfa_program): Likewise.
10386         * unwind-dw2-fde.c (get_cie_encoding): Likewise.
10387
10388 2001-08-31  Geoffrey Keating  <geoffk@redhat.com>
10389
10390         * config/stormy16/stormy16.c (stormy16_expand_epilogue): Use
10391         the frame pointer to pop the stack if convenient.
10392
10393         * config/stormy16/stormy16.c (stormy16_initialize_trampoline):
10394         Don't use post-increment before combine.
10395         * config/stormy16/stormy16.h (STATIC_CHAIN_REGNUM): Don't use
10396         a call-saved register.
10397
10398 2001-08-31  Andreas Jaeger  <aj@suse.de>
10399
10400         * jump.c (mark_jump_label): Revert patch from 2001-08-28, the
10401         code was correct.
10402
10403 2001-08-30  Geoffrey Keating  <geoffk@redhat.com>
10404
10405         * config/stormy16/stormy16.md (udivmodhi4): Express using UDIV/UMOD,
10406         not DIV/MOD, of course.
10407
10408 2001-08-30  Vladimir Makarov  <vmakarov@redhat.com>
10409
10410         * rtl.def: Undo my patch commited 2001-08-27.
10411
10412         * genattrtab.c: Ditto.
10413
10414         * rtl.h: Ditto.
10415
10416         * sched-int.h: Ditto.
10417
10418         * target-def.h: Ditto.
10419
10420         * target.h: Ditto.
10421
10422         * haifa-sched.c: Ditto.
10423
10424         * sched-rgn.c: Ditto.
10425
10426         * sched-vis.c: Ditto.
10427
10428         * Makefile.in: Ditto.
10429
10430         * doc/md.texi: Ditto.
10431
10432         * doc/tm.texi: Ditto.
10433
10434         * doc/contrib.texi: Ditto.
10435
10436         * doc/gcc.texi: Ditto.
10437
10438         * genattrtab.h: Remove it.
10439
10440         * genautomata.c: Remove it.
10441
10442         * genattr.c: Undo my patch and Richard Henderson's patch commited
10443         2001-08-27.
10444
10445 Thu Aug 30 19:22:15 2001  J"orn Rennecke <amylaar@redhat.com>
10446
10447         * config.gcc (h8300-*-elf*): New case.
10448         * h8300.h (CPP_SPEC): Add subtarget_cpp_spec.
10449         (SUBTARGET_CPP_SPEC): Define.
10450         (EXTRA_SPECS): Define.
10451         (SUBTARGET_EXTRA_SPECS): Define.
10452         * config/h8300/crti.asm, config/h8300/crtn.asm: New files.
10453         * config/h8300/elf.h, config/h8300/t-elf: Likewise.
10454
10455 Thu Aug 30 18:50:37 2001  J"orn Rennecke <amylaar@redhat.com>
10456
10457         * t-h8300 (LIB1ASMFUNCS): Add _fixunssfdi and _fixunssfsi_asm.
10458         (LIB2FUNCS_EXTRA): Define.
10459         config/h8300/lib1funcs.asm: New part: L_fixunssfsi_asm .
10460         config/h8300/fixunssfsi.c: New file.
10461
10462 2001-08-30  Kazu Hirata  <kazu@hxi.com>
10463
10464         * config/h8300/h8300.md (zero_extendqihi2): Changes to
10465         define_expand to accommodate target-specific attributes.
10466         (anonymous zero_extendqihi2 patterns): New.
10467
10468 Thu Aug 30 18:10:56 2001  J"orn Rennecke <amylaar@redhat.com>
10469
10470         * h8300.md (*andorhi3): New pattern.
10471
10472 Thu Aug 30 16:00:31 2001  J"orn Rennecke <amylaar@redhat.com>
10473
10474         * h8300.c (dosize): Fix test for "sub".
10475
10476 Thu Aug 30 10:21:43 2001  J"orn Rennecke <amylaar@redhat.com>
10477
10478         * c-typeck.c (pointer_diff): Try to eliminate common term before
10479         doing conversions.
10480
10481 2001-08-30  Nick Clifton  <nickc@cambridge.redhat.com>
10482
10483         * config/arm/arm.c (arm_compute_initial_elimination_offset):
10484         Account for the saves of the FP registers.
10485
10486         * config/arm/unknown-elf.h (TEXT_SECTION): Delete.
10487         (TEXT_SECTION_ASM_OP): Define.
10488         (INIT_SECTION_ASM_OP): Define.
10489         (FINI_SECTION_ASM_OP): Define.
10490         (SUBTARGET_EXTRA_SECTIONS): Remove trailing comma.
10491         (RDATA_SECTION_FUNCITON): Provide prototype.
10492
10493 2001-08-29  Geoffrey Keating  <geoffk@redhat.com>
10494
10495         * reload1.c (move2add_note_store): Correct typo checking for
10496         argument pushes.
10497
10498 2001-08-29  Andrew MacLeod  <amacleod@redhat.com>
10499
10500         * gcse.c (compute_hash_table): The SRC part of an insn with a RETVAL
10501         note should not be considered outside the libcall block.
10502
10503 2001-08-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10504
10505         * genattrtab.c (attr_printf): Use VA_OPEN/VA_FIXEDARG/VA_CLOSE.
10506
10507 2001-08-29  Kazu Hirata  <kazu@hxi.com>
10508
10509         * config/h8300/h8300.md (movsi_h8300hs): Make it 64-bit safe.
10510
10511 2001-08-29  Kazu Hirata  <kazu@hxi.com>
10512
10513         * config/h8300/h8300-protos.h: Add a prototype for
10514         emit_logical_op.
10515         * config/h8300/h8300.c (emit_logical_op): New.
10516         * config/h8300/h8300.md (andhi3): Use emit_logical_op.
10517         (andsi3): Likewise.
10518         (iorhi3): Likewise.
10519         (iorsi3): Likewise.
10520         (xorhi3): Likewise.
10521         (xorsi3): Likewise.
10522
10523 2001-08-29  John David Anglin  <dave@hiauly1.hia.nrc.ca>
10524
10525         * pa.c (move_operand): Cast GET_MODE_SIZE results to HOST_WIDE_INT for
10526         comparison with rtx INTVAL.
10527         (pa_output_function_prologue): Don't mix signed and unsigned in `?'
10528         expression.
10529         * pa.h (FUNCTION_ARG_SIZE): Likewise.
10530
10531 2001-08-29  Kazu Hirata  <kazu@hxi.com>
10532
10533         * config/h8300/lib1funcs.asm: Update the copyright.  Fix
10534         comment typos.
10535
10536 2001-08-29  Kazu Hirata  <kazu@hxi.com>
10537
10538         * config/h8300/h8300.md (anonymous movhi pattern): Don't move
10539         (reg n) to (mem (pre_dec (reg n))
10540         (anonymous movsi pattern): Likewise.
10541
10542 2001-08-29  Kazu Hirata  <kazu@hxi.com>
10543
10544         * config/h8300/h8300.h (RETURN_ADDR_RTX): New.
10545
10546 2001-08-29  Kazu Hirata  <kazu@hxi.com>
10547
10548         * config/h8300/h8300.md (movsi_h8300hs): Optimize loading of
10549         several special constants.
10550
10551 2001-08-29  Kazu Hirata  <kazu@hxi.com>
10552
10553         * config/h8300/lib1funcs.asm: Fix comment typos.
10554
10555 2001-08-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10556
10557         * iris6.h (ASM_DECLARE_OBJECT_NAME, ASM_FINISH_DECLARE_OBJECT):
10558         Fix format specifier warnings.
10559
10560         * irix6-libc-compat.c (inet_ntoa, inet_lnaof, inet_netof,
10561         inet_makeaddr, semctl): Prototype.
10562
10563         * mips.c (compute_frame_size): Fix signed/unsigned warnings.
10564         (save_restore_insns): Use base_offset, not gp_offset.
10565
10566         * mips.h (GP_REG_OR_PSEUDO_STRICT_P): Fix signed/unsigned warning.
10567         (ASM_OUTPUT_BYTE): Fix format specifier warning.
10568
10569 2001-08-29  Richard Henderson  <rth@redhat.com>
10570
10571         * bb-reorder.c (function_tail_eff_head): New.
10572         (record_effective_endpoints): Set it.
10573         (fixup_reorder_chain): Use it.
10574
10575 2001-08-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10576
10577         * dwarf2asm.c (dw2_asm_output_nstring): Fix typo in previous change.
10578
10579 2001-08-28  Dale Johannesen  <dalej@apple.com>
10580
10581         * config/darwin.c (machopic_function_base_name): Add const
10582         qualifier to a string.
10583         (darwin_encode_section_info): Ditto.
10584
10585 2001-08-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10586
10587         * tree.c (default_valid_attribute_p): Don't use PARAMS on a
10588         function definition.
10589
10590 2001-08-28  Daniel Berlin  <dan@cgsoftware.com>
10591
10592         * df.h (struct df): Add rts_order variable.
10593
10594         * df.c (df_visit_next_rts): New function.
10595         (df_visit_next): Renamed to df_visit_next_rc
10596         (df_analyse_1): Allocate/compute/free rts_order as well.
10597         (df_rd_global_compute): Use df_visit_next_rc instead of
10598         df_visit_next.
10599         (df_ru_global_compute): Use df_visit_next_rts instead of
10600         df_visit_next.
10601
10602         * flow.c (flow_reverse_top_sort_order_compute): New function.
10603
10604         * basic-block.h: Add prototype.
10605
10606 2001-08-28  Daniel Berlin  <dan@cgsoftware.com>
10607
10608         * ssa-ccp.c (ssa_ccp_df_delete_unreachable_insns): For unreachable
10609         blocks, the BB_REACHABLE is now set, rather than aux being
10610         non-NULL. Update the test to reflect this.
10611
10612 2001-08-28  Eric Christopher  <echristo@redhat.com>
10613
10614         * config/mips/crtn.asm: Add comment explaining 16 byte alignment.
10615         config/mips/crti.asm: Ditto.
10616
10617 2001-08-28  Eric Christopher <echristo@redhat.com>
10618             Richard Henderson <rth@redhat.com>
10619
10620         * c-pragma.h (add_weak): Move prototype from here...
10621         * output.h (add_weak): ... to here.
10622         * varasm.c (add_weak): Fix typo.
10623         * config/mips/crti.asm: New file.
10624         * config/mips/crtn.asm: Ditto.
10625         * config/mips/elf.h (SBSS_SECTION_ASM_OP) Add #undef.
10626         (CTOR_LISTS_DEFINED_EXTERNALLY): Remove.
10627         (INVOKE__main): Ditto.
10628         (INIT_SECTION_ASM_OP): New.
10629         (FINI_SECTION_ASM_OP): Ditto.
10630         (STARTFILE_SPEC): Add crti.
10631         (ENDFILE_SPEC): Add crtn.
10632         * config/mips/elf64.h: Same.
10633         * config/mips/rtems64.h (INVOKE__main, NAME__MAIN, SYMBOL__MAIN):
10634         Remove.
10635         * config/mips/vxworks.h: Ditto.
10636         * config/mips/t-elf: Support crti and crtn.
10637
10638 2001-08-28  Alexandre Oliva  <aoliva@redhat.com>
10639
10640         * jump.c (mark_jump_label): Fix typo: REG_LABEL is EXPR_LIST, not
10641         INSN_LIST.
10642
10643 2001-08-28  Richard Henderson  <rth@redhat.com>
10644
10645         * config/ia64/ia64.md (andcmbi3, iorcmbi3): Fix typos.
10646         (one_cmplbi2 splitter): Remove redundant test.
10647
10648 2001-08-28  Dale Johannesen  <dalej@apple.com>
10649
10650         * config/rs6000/darwin.h (DEFAULT_SIGNED_CHAR): Define.
10651
10652 2001-08-28  Danny Smith  <dannysmith@users.sourceforge.net>
10653
10654         * config/i386/cygwin.h (BIGGEST_FIELD_ALIGNMENT): Set to 64.
10655
10656 2001-08-28  Stan Shebs  <shebs@apple.com>
10657
10658         * config/darwin.h (ASM_OUTPUT_LABELREF): Handle '*' names.
10659         (UNALIGNED_SHORT_ASM_OP): Define.
10660         (UNALIGNED_INT_ASM_OP): Define.
10661
10662 2001-08-28  Will Cohen  <wcohen@redhat.com>
10663
10664         * config/rs6000/rs6000.md (store_multiple): Correct RTL
10665         generation for first set.
10666
10667 2001-08-27  Roman Zippel  <zippel@linux-m68k.org>
10668
10669         * flow.c (redirect_edge_succ_nodup): Return new edge.
10670         (try_simplify_condjump): Use new edge.
10671         * basic-block.h (redirect_edge_succ_nodup): Update prototype.
10672
10673         * cse.c (cse_basic_block): Skip note instructions.
10674
10675 2001-08-27  Richard Henderson  <rth@redhat.com>
10676
10677         * combine.c (combine_simplify_rtx): Don't reverse condition
10678         if there is no reverse for the condition.
10679         (simplify_comparison): Don't simplify subregs from INT to FP.
10680
10681         * config/m68k/m68k.md (sordered, sordered_1, sunordered, sunordered_1,
10682         suneq, suneq_1, sunge, sunge_1, sungt, sungt_1, sunle, sunle_1,
10683         sunlt, sunlt_1, sltgt, sltgt_1, fsogt_1, fsoge_1, fsolt_1, fsole_1,
10684         bordered, bunordered, buneq, bunge, bungt, bunle, bunlt, bltgt,
10685         bordered_rev, bunordered_rev, buneq_rev, bunge_rev, bungt_rev,
10686         bunle_rev, bunlt_rev, bltgt_rev): New patterns.
10687
10688 2001-08-27  Roman Zippel  <zippel@linux-m68k.org>
10689
10690         * config/m68k/m68k.md (subreghi1ashrdi_const32, bsetmemqi,
10691         bsetmemqi+1, strict_low_part peephole): Fix SUBREG_BYTE offset.
10692         (pushqi1): New.
10693         (adddi_dilshr32, adddi_dishl32): Only data register can be
10694         source for mem destination.
10695
10696         * expmed.c (store_bit_field): Ignore adjustment to bitpos
10697         and use bitnum to decide about register move.
10698
10699 2001-08-27  Richard Henderson  <rth@redhat.com>
10700
10701         * genattr.c (main): Emit state_t even when not doing scheduling.
10702
10703 2001-08-27  Roman Zippel <zippel@linux-m68k.org>
10704             Richard Henderson  <rth@redhat.com>
10705
10706         * gcse.c (reg_first_set, reg_last_set): Replace with ...
10707         (reg_avail_info, current_bb): ... these.
10708         (oprs_unchanged_p, record_last_reg_set_info): Use them.
10709         (compute_hash_table): Likewise.
10710
10711 2001-08-27  Roman Zippel <zippel@linux-m68k.org>
10712
10713         * flow.c (verify_flow_info): Use checksums to verify edges.
10714
10715 2001-08-27  Richard Henderson  <rth@redhat.com>
10716
10717         * genautomata.c (expand_automata): Always create a description.
10718
10719 2001-08-27  Geoffrey Keating  <geoffk@redhat.com>
10720
10721         * optabs.c (expand_binop): Correctly handle the carry in multiword
10722         add/subtract operations.
10723
10724 2001-08-27  Fred Fish  <fnf@be.com>
10725
10726         * ginclude/stddef.h: Fix typo, __SIZE__TYPE__ should be
10727         __SIZE_TYPE__.
10728
10729 2001-08-27  Geoffrey Keating  <geoffk@redhat.com>
10730
10731         * reload.c (find_reloads_toplev): Back out this change:
10732
10733         Wed Jul 26 19:44:05 2000   Hans-Peter Nilsson  <hp@axis.com>
10734
10735         * reload.c (find_reloads_toplev): Reload a paradoxical subreg of a
10736         mem if the address is a mode_dependent_address_p.
10737
10738 2001-08-27  Vladimir Makarov  <vmakarov@touchme.toronto.redhat.com>
10739
10740         * rtl.def (DEFINE_CPU_UNIT, DEFINE_QUERY_CPU_UNIT, EXCLUSION_SET,
10741         PRESENCE_SET, ABSENCE_SET, DEFINE_BYPASS, DEFINE_AUTOMATON,
10742         AUTOMATA_OPTION, DEFINE_RESERVATION, DEFINE_INSN_RESERVATION): New
10743         RTL constructions.
10744
10745         * genattr.c (main): New variable num_insn_reservations.  Increase
10746         it if there is DEFINE_INSN_RESERVATION.  Output automaton based
10747         pipeline hazard recognizer interface.
10748
10749         * genattrtab.h: New file.
10750
10751         * genattrtab.c: Include genattrtab.h.
10752         (attr_printf, check_attr_test, make_internal_attr,
10753         make_numeric_value): Move protypes into genattrtab.h.  Define them
10754         as external.
10755         (num_dfa_decls): New global variable.
10756         (main): Process DEFINE_CPU_UNIT, DEFINE_QUERY_CPU_UNIT,
10757         DEFINE_BYPASS, EXCLUSION_SET, PRESENCE_SET, ABSENCE_SET,
10758         DEFINE_AUTOMATON, AUTOMATA_OPTION, DEFINE_RESERVATION,
10759         DEFINE_INSN_RESERVATION.  Call expand_automata and write_automata.
10760
10761         * genautomata.c: New file.
10762
10763         * rtl.h (LINK_COST_ZERO, LINK_COST_FREE): Remove them.
10764
10765         * sched-int.h: (curr_state): Add the external definition for
10766         automaton pipeline interface.
10767         (haifa_insn_data): Add comments for members blockage and units.
10768
10769         * target-def.h (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
10770         TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
10771         TARGET_SCHED_DFA_PRE_CYCLE_INSN,
10772         TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN,
10773         TARGET_SCHED_DFA_POST_CYCLE_INSN,
10774         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
10775         TARGET_SCHED_INIT_DFA_BUBBLES, TARGET_SCHED_DFA_BUBBLE): New
10776         macros.
10777         (TARGET_SCHED): Use the new macros.
10778
10779         * target.h (use_dfa_pipeline_interface, init_dfa_pre_cycle_insn,
10780         dfa_pre_cycle_insn, init_dfa_post_cycle_insn, dfa_post_cycle_insn,
10781         first_cycle_multipass_dfa_lookahead, init_dfa_bubbles,
10782         dfa_bubble): New members in gcc_target.sched.
10783
10784         * haifa-sched.c (insert_schedule_bubbles_p): New variable.
10785         (MAX_INSN_QUEUE_INDEX): New macro for automaton interface.
10786         (insn_queue): Redefine it as pointer to array.
10787         (NEXT_Q, NEXT_Q_AFTER): Use MAX_INSN_QUEUE_INDEX instead of
10788         INSN_QUEUE_SIZE.
10789         (max_insn_queue_index_macro_value): New variable.
10790         (curr_state, dfa_state_size, ready_try): New varaibles for
10791         automaton interface.
10792         (ready_element, ready_remove, max_issue): New function prototypes
10793         for automaton interface.
10794         (choose_ready): New function prototype.
10795         (insn_unit, blockage_range): Add comments.
10796         (unit_last_insn, unit_tick, unit_n_insns): Define them for case
10797         FUNCTION_UNITS_SIZE == 0.
10798         (insn_issue_delay, actual_hazard_this_instance, schedule_unit,
10799         actual_hazard, potential_hazard): Add comments.
10800         (insn_cost): Use cost -1 as undefined value.  Remove
10801         LINK_COST_ZERO and LINK_COST_FREE.  Add new code for automaton
10802         pipeline interface.
10803         (ready_element, ready_remove): New functions for automaton
10804         interface.
10805         (schedule_insn): Add new code for automaton pipeline interface.
10806         (queue_to_ready): Add new code for automaton pipeline interface.
10807         Use MAX_INSN_QUEUE_INDEX instead of INSN_QUEUE_SIZE.
10808         (debug_ready_list): Print newline when the queue is empty.
10809         (max_issue): New function for automaton pipeline interface.
10810         (choose_ready): New function.
10811         (schedule_block): Add new code for automaton pipeline interface.
10812         Print ready list before scheduling each insn.
10813         (sched_init): Add new code for automaton pipeline interface.
10814         Initiate insn cost by -1.
10815         (sched_finish): Free the current automaton state and finalize
10816         automaton pipeline interface.
10817
10818         * sched-rgn.c: Include target.h.
10819         (init_ready_list, new_ready, debug_dependencies): Add new code for
10820         automaton pipeline interface.
10821
10822         * sched-vis.c: Include target.h.
10823         (get_visual_tbl_length): Add code for automaton interface.
10824         (target_units, print_block_visualization):  Add comments.
10825
10826         * Makefile.in (GETRUNTIME, HASHTAB, HOST_GETRUNTIME, HOST_HASHTAB,
10827         USE_HOST_GETRUNTIME, USE_HOST_HASHTAB, HOST_VARRAY): New variables.
10828         (sched-rgn.o, sched-vis.o): Add new dependency file target.h.
10829         (getruntime.o, genautomata.o): New entries.
10830         (genattrtab.o): Add new dependency file genattrtab.h.
10831         (genattrtab): Add new dependencies.  Link it with `libm.a'.
10832         (getruntime.o, hashtab.o): New entries for canadian cross.
10833
10834         * doc/md.texi: Description of automaton based model.
10835
10836         * doc/tm.texi (TARGET_SCHED_ISSUE_RATE, TARGET_SCHED_ADJUST_COST):
10837         Add comments.
10838         (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
10839         TARGET_SCHED_DFA_PRE_CYCLE_INSN,
10840         TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
10841         TARGET_SCHED_DFA_POST_CYCLE_INSN,
10842         TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN,
10843         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
10844         TARGET_SCHED_INIT_DFA_BUBBLES, TARGET_SCHED_DFA_BUBBLE): The new
10845         hook descriptions.
10846         (TRADITIONAL_PIPELINE_INTERFACE, DFA_PIPELINE_INTERFACE,
10847         MAX_DFA_ISSUE_RATE): New macro descriptions.
10848
10849         * doc/contrib.texi: Add dfa based scheduler contribution.
10850
10851         * doc/gcc.texi: Add more information about genattrtab.
10852
10853 2001-08-27  Diego Novillo  <dnovillo@redhat.com>
10854
10855         * flow.c (flow_loop_dump): Do not display insn UIDs if this is not
10856         an RTL basic block.
10857
10858 2001-08-27  Richard Henderson  <rth@redhat.com>
10859
10860         * function.c (expand_function_end): Don't init arg_pointer_save_area.
10861         (get_arg_pointer_save_area): New.  Create an init it here.
10862         (fix_lexical_addr): Use it.
10863         * function.h: Declare it.
10864         * builtins.c (expand_builtin_setjmp_receiver): Use it.
10865         * stmt.c (expand_nl_goto_receiver): Use it.
10866
10867 2001-08-27  Richard Henderson  <rth@redhat.com>
10868
10869         * final.c (final_scan_insn): Don't enter APP_ON mode for
10870         empty asm strings.
10871
10872         * dwarf2asm.c (dw2_asm_output_encoded_addr_rtx): Use proper
10873         alignment for assemble_integer for DW_EH_PE_aligned.
10874         * except.c (output_function_exception_table): Likewise.
10875
10876 2001-08-26  Andreas Jaeger  <aj@suse.de>
10877
10878         * c-tree.h: Add prototyp for c_sizeof_nowarn.
10879
10880 2001-08-25 Dan Nicolaescu  <dann@ics.uci.edu>
10881
10882         * ssa-ccp.c (ssa_const_prop): Free ssa_edges.
10883
10884 2001-08-27  Alan Modra  <amodra@bigpond.net.au>
10885
10886         * config/rs6000/rs6000.c (mask_operand): Rewrite without
10887         bit-shifting loop.
10888         (mask64_operand): Likewise.
10889         (rldic_operand): Delete.
10890         (includes_lshift64_p): Delete.
10891         (includes_rldic_lshift_p): New function.
10892         (includes_rldicr_lshift_p): New function.
10893         (print_operand): Don't call rldic_operand in case 'W'.
10894         * config/rs6000/rs6000-protos.h (rldic_operand): Remove.
10895         (includes_lshift64_p): Remove.
10896         (includes_rldic_lshift_p): Declare.
10897         (includes_rldicr_lshift_p): Declare.
10898         * config/rs6000/rs6000.h (PREDICATE_CODES): Remove rldic_operand.
10899         * config/rs6000/rs6000.md <ashldi3_internal 64 bit patterns>:
10900         Replace match_operand rldic_operand predicate with
10901         const_int_operand.  Replace includes_lshift64_p condition with
10902         includes_rldic_lshift_p.
10903         <ashldi3_internal 64 bit rldicr patterns>: New.
10904
10905 2001-08-27  Andreas Jaeger  <aj@suse.de>
10906
10907         * emit-rtl.c: Use VA_OPEN/VA_CLOSE/VA_FIXEDARG throughout.
10908         * errors.c: Likewise.
10909         * final.c: Likewise.
10910         * dwarf2asm.c: Likewise.
10911         * doprint.c (checkit): Likewise.
10912         * diagnostic.c: Likewise.
10913         * collect2.c: Likewise.
10914         * calls.c: Likewise.
10915         * c-semantics.c (build_stmt): Likewise.
10916         * c-format.c (status_warning): Likewise.
10917         * c-errors.c (pedwarn_c99): Likewise.
10918         * builtins.c (validate_arglist): Likewise.
10919         * config/pj/pj.c (pj_printf): Likewise.
10920         * fix-header.c: Likewise.
10921         * gcc.c: Likewise.
10922         * gcov.c (fnotice): Likewise.
10923         * gensupport.c (message_with_line): Likewise.
10924         * mips-tfile.c: Likewise.
10925         * protoize.c (notice): Likewise.
10926         * read-rtl.c (fatal_with_file_and_line): Likewise.
10927         * rtl-error.c: Likewise.
10928         * tradcpp.c: Likewise.
10929         * tree.c: Likewise.
10930         * cp/tree.c (build_min_nt): Likewise.
10931         (build_min): Likewise.
10932         * cp/lex.c: Likewise.
10933         * cp/errfn.c: Likewise.
10934         * cp/rtti.c (create_pseudo_type_info): Likewise.
10935
10936 Sun Aug 26 20:25:44 2001  Denis Chertykov  <denisc@overta.ru>
10937
10938         * df.c (df_uses_record): Return after recording all uses
10939         in ASM_OPERANDS.
10940
10941 2001-08-26  Daniel Berlin  <dan@cgsoftware.com>
10942
10943         * df.c (df_insn_modify): Realloc the INSN table here, if
10944         necessary, here, too.
10945
10946 2001-08-26  Aldy Hernandez  <aldyh@redhat.com>
10947
10948         * config/mips/mips.c (mips_function_value): Handle complex return
10949         values.
10950
10951 2001-08-25  Hans-Peter Nilsson  <hp@bitrange.com>
10952
10953         * reload1.c (reload): Make all entries in reg_equiv_memory_loc
10954         unshared.
10955         * reload.c (make_memloc): Copy result if it is still
10956         reg_equiv_memory_loc[regno] on return.
10957         (subst_reloads) [ENABLE_CHECKING]: Check that none of
10958         reg_equiv_constant, reg_equiv_memory_loc, reg_equiv_address and
10959         reg_equiv_mem are modified by the substitutions.
10960
10961 Sat Aug 25 23:07:35 CEST 2001  Jan Hubicka  <jh@suse.cz>
10962
10963         * predict.c (expensive_function_p): New.
10964         * rtl.h (expensive_function_p): Declare.
10965         * i386.c (FAST_PROLOGUE_INSN_COUNT): New constant.
10966         (use_fast_prologue_epilogue): New static variable.
10967         (expand_prologue): Set it; emit short prologues if unset.
10968         (expand_epilogue): Likewise.
10969
10970 2001-08-22  Geoffrey Keating  <geoffk@redhat.com>
10971
10972         * config.gcc: Add stormy16-*-elf case.
10973         * config/stormy16/stormy-abi: New file.
10974         * config/stormy16/stormy16-lib2.c: New file.
10975         * config/stormy16/stormy16-protos.h: New file.
10976         * config/stormy16/stormy16.c: New file.
10977         * config/stormy16/stormy16.h: New file.
10978         * config/stormy16/stormy16.md: New file.
10979         * config/stormy16/t-stormy16: New file.
10980
10981 Sat Aug 25 15:46:51 CEST 2001  Jan Hubicka  <jh@suse.cz>
10982
10983         * i386.h (no-accumulate-outgoing-args): Use proper mask.
10984
10985 2001-08-24  David Edelsohn  <edelsohn@gnu.org>
10986
10987         * config/rs6000/rs6000.c (rs6000_initialize_trampoline): Function
10988         descriptor members are pointer size, not constant 4.
10989         * config/rs6000/rs6000.md (define_splits): Remove more unused
10990         constraints.
10991
10992 2001-08-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10993
10994         * sparc.h (ASM_OUTPUT_BYTE): Fix format specifier warning.
10995
10996 2001-08-24  Andreas Jaeger  <aj@suse.de>, rkl@connect.org.uk
10997
10998         * cp/rtti.c (VPARAMS): Fix parameter.
10999
11000 2001-08-24  Zack Weinberg  <zackw@panix.com>
11001
11002         * expmed.c: Default-#define HAVE_insv, HAVE_extv, and HAVE_extzv
11003         to zero.
11004         (mode_for_extraction): No need for #ifdefs.  Add default-case abort
11005         to switch.
11006         (store_bit_field): Eliminate insv_bitsize variable.  Put HAVE_insv
11007         in if controlling use of insv.
11008         (extract_bit_field): Likewise, for extv and extzv.
11009
11010 Fri Aug 24 17:27:46 CEST 2001  Jan Hubicka  <jh@suse.cz>
11011
11012         * i386.md (movcc peep2): Fix load of 0.
11013
11014 2001-08-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11015
11016         * fold-const.c (tree_expr_nonnegative_p): Handle *_DIV_EXPR,
11017         *_MOD_EXPR, SAVE_EXPR and NON_LVALUE_EXPR.
11018
11019 2001-08-23  Jason Merrill  <jason_merrill@redhat.com>
11020
11021         * c-pragma.h: Move weak_syms and weak_decls...
11022         * varasm.c: ...here.  Now static.
11023         (declare_weak, weak_finish, remove_from_pending_weak_list): Don't
11024         depend on HANDLE_PRAGMA_WEAK.
11025
11026         * c-common.c (c_alignof, c_alignof_expr): Move here...
11027         * c-typeck.c: ...from here.
11028         * c-tree.h, c-common.h: Adjust.
11029
11030 2001-08-23  Bernd Schmidt  <bernds@redhat.com>
11031
11032         * config/ia64/ia64.c (rws_update): If !pred, set write_count
11033         instead of incrementing it.
11034
11035         * config/ia64/ia64.c (ia64_sched_reorder): When there's more than one
11036         asm ready, don't try to move them all into the same array element.
11037
11038 Thu Aug 23 17:21:43 CEST 2001  Jan Hubicka  <jh@suse.cz>
11039
11040         * function.c (thread_prologue_and_epilogue_insns): Avoid
11041         fallthru flag on edge to exit.
11042
11043         * i386.md (trunc?fsi splitter): Conditionionize for non-sse.
11044
11045         * flow.c (delete_noop_moves, propagate_block_delete_insn): Purge
11046         dead edges.
11047
11048 2001-08-23  Lars Brinkhoff  <lars@nocrew.org>
11049
11050         * config/mcore/mcore.h (MACHINE_DEPENDENT_SIMPLIFY): Remove.
11051         * config/mcore/mcore.c (mcore_dependent_simplify_rtx): Likewise.
11052         * config/mcore/mcore-protos.h (mcore_dependent_simplify_rtx):
11053         Remove prototype.
11054
11055 2001-08-23  Lars Brinkhoff  <lars@nocrew.org>
11056
11057         * genconstants.c, genpreds.c, libfuncs.h, optabs.h, rtl-error.h:
11058         replace "GNU CC" with "GCC".
11059
11060 2001-08-23  Richard Henderson  <rth@redhat.com>
11061
11062         * config/ia64/ia64.c (ia64_register_move_cost): Add mode arguemnt.
11063         Reorganize.  Handle ADDL like GR, add GR_AND_BR.  Handle TFmode.
11064         (ia64_secondary_reload_class): Need GR between AR/BR and anything.
11065         Need GR between FR and not GR_AND_FR.
11066         * config/ia64/ia64-protos.h (ia64_register_move_cost): Update.
11067         * config/ia64/ia64.h (reg_class): Add GR_AND_BR_REGS, move
11068         AR regs before GR regs.
11069         (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update.
11070         (PREFERRED_RELOAD_CLASS): Tweak for reordered classes.
11071         (REGISTER_MOVE_COST): Update.
11072         (MEMORY_MOVE_COST): Add GR_AND_FR_REGS.
11073
11074 2001-08-23  Richard Henderson  <rth@redhat.com>
11075
11076         * regclass.c (init_reg_sets_1): Don't assume cost 2 within
11077         a register class.
11078
11079 2001-08-22  Geoffrey Keating  <geoffk@redhat.com>
11080
11081         * reload1.c (emit_reload_insns): Don't look for notes
11082         on a NULL store_insn.
11083
11084 2001-08-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11085
11086         * sparc.c (uns_small_int): Don't reference a constant >32-bit.
11087         (addrs_ok_for_ldd_peep): Fix signed/unsigned warning.
11088         (sparc_flat_function_prologue, sparc_flat_function_epilogue): Fix
11089         format specifier warnings.
11090         (sparc_sched_reorder): Mark parameter with ATTRIBUTE_UNUSED.
11091
11092 2001-08-22  David Billinghurst <David.Billinghurst@riotinto.com>
11093
11094         * config/i386/i386-protos.h: Correct declaration of
11095         i386_pe_asm_named_section.
11096
11097 2001-08-22  John David Anglin  <dave@hiauly1.hia.nrc.ca>
11098
11099         * pa32-regs.h (CONDITIONAL_REGISTER_USAGE): Add declaration for
11100         variable i.
11101         * pa64-regs.h (CONDITIONAL_REGISTER_USAGE): Likewise.
11102
11103 2001-08-22  Neil Booth  <neil@daikokuya.demon.co.uk>
11104
11105         * cpperror.c (print_location): Don't show _Pragma.
11106         * cppfiles.c (_cpp_pop_file_buffer): Handle -include file pushing
11107         and file change callback generation here.
11108         (stack_include_file): Update use of cpp_push_buffer.
11109         * cpphash.h (_cpp_pop_file_buffer): Update prototype.
11110         (struct cpp_buffer): Remove type, pfile members.
11111         * cppinit.c (cpp_handle_option): Use free_chain.
11112         * cpplex.c (_cpp_lex_token): Don't do -include file pushing here.
11113         (skip_escaped_newlines, get_effective_char, lex_percent): Take
11114         a cpp_reader rather than a cpp_buffer.
11115         (skip_escaped_newlines, get_effective_char, skip_block_comment,
11116         skip_line_comment, parse_string, lex_percent, lex_dot,
11117         _cpp_lex_token): Update accordingly.
11118         * cpplib.c (_cpp_pop_buffer): Don't do file change callback
11119         generation here.
11120         (cpp_push_buffer): Update prototype.
11121         (run_directive): Update use of cpp_push_buffer.
11122         (_cpp_do__Pragma, cpp_define, cpp_define_builtin, cpp_undef,
11123         handle_assertion): Update use of run_directive.
11124         * cpplib.h (enum cpp_buffer_type): Remove.
11125         (cpp_push_buffer): Update prototype.
11126         * fix-header.c (read_scan_file): Update.
11127
11128 2001-08-22  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
11129
11130         * gcc.c (struct prefix_list): Change prefix to const char *.
11131
11132 2001-08-22  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
11133
11134         * final.c (final_scan_insn): Call ADDR_VEC_ALIGN on next insn.
11135
11136 2001-08-22  Jason Merrill  <jason_merrill@redhat.com>
11137
11138         * explow.c (set_mem_attributes): Avoid returning a bogus alias set
11139         from a new MEM.
11140
11141         * jump.c (squeeze_notes): Take parms by reference.  Handle END being
11142         a squeezable note.
11143         * rtl.h: Adjust.
11144         * ifcvt.c (dead_or_predicable): Adjust.
11145         * loop.c (find_and_verify_loops): Adjust.
11146         * stmt.c (expand_end_case): Adjust.
11147         * flow.c (merge_blocks_move_successor_nojumps): Adjust.  Modify the
11148         head and end insn pointers in the basic block, not just local copies.
11149         (merge_blocks_move_predecessor_nojumps): Likewise.
11150
11151 2001-08-22  Lars Brinkhoff  <lars@nocrew.org>
11152
11153         * Makefile.in, alias.c, basic-block.h, bb-reorder.c, bitmap.c,
11154         bitmap.h, builtin-types.def, builtins.c, builtins.def,
11155         c-aux-info.c, c-common.c, c-common.def, c-common.h,
11156         c-convert.c, c-decl.c, c-dump.c, c-dump.h, c-errors.c,
11157         c-format.c, c-lang.c, c-lex.c, c-lex.h, c-parse.in,
11158         c-pragma.c, c-pragma.h, c-semantics.c, c-tree.h, c-typeck.c,
11159         caller-save.c, calls.c, collect2.c, collect2.h, combine.c,
11160         conditions.h, config.gcc, configure.frag, configure.in,
11161         conflict.c, convert.c, convert.h, cppspec.c, crtstuff.c,
11162         cse.c, cselib.c, cselib.h, dbxout.c, dbxout.h, defaults.h,
11163         dependence.c, df.c, df.h, diagnostic.c, diagnostic.h,
11164         doloop.c, dominance.c, dwarf.h, dwarf2.h, dwarf2asm.c,
11165         dwarf2asm.h, dwarf2out.c, dwarf2out.h, dwarfout.c,
11166         emit-rtl.c, errors.c, errors.h, except.c, except.h,
11167         exgettext, explow.c, expmed.c, expr.c, expr.h, final.c,
11168         fixproto, flags.h, flow.c, fold-const.c, fp-test.c,
11169         function.c, function.h, gbl-ctors.h, gcc.c, gcc.h, gcc.hlp,
11170         gccspec.c, gcov-io.h, gcse.c, genattr.c, genattrtab.c,
11171         gencheck.c, gencodes.c, genconfig.c, genemit.c,
11172         genextract.c, genflags.c, gengenrtl.c, genmultilib,
11173         genopinit.c, genoutput.c, genpeep.c, genrecog.c,
11174         gensupport.c, gensupport.h, ggc-callbacks.c, ggc-common.c,
11175         ggc-none.c, ggc-page.c, ggc-simple.c, ggc.h, global.c,
11176         graph.c, graph.h, gthr-aix.h, gthr-dce.h, gthr-posix.h,
11177         gthr-rtems.h, gthr-single.h, gthr-solaris.h, gthr-vxworks.h,
11178         gthr-win32.h, gthr.h, haifa-sched.c, halfpic.c, halfpic.h,
11179         hard-reg-set.h, hwint.h, ifcvt.c, input.h, insn-addr.h,
11180         integrate.c, integrate.h, jump.c, lcm.c, libgcc2.c,
11181         libgcc2.h, lists.c, local-alloc.c, loop.c, loop.h,
11182         machmode.def, machmode.h, main.c, mbchar.c, mbchar.h,
11183         mips-tdump.c, mips-tfile.c, mklibgcc.in, mkmap-flat.awk,
11184         mkmap-symver.awk, optabs.c, output.h, params.c, params.def,
11185         params.h, predict.c, predict.def, predict.h, prefix.c,
11186         prefix.h, print-rtl.c, print-tree.c, profile.c, protoize.c,
11187         read-rtl.c, real.c, real.h, recog.c, recog.h, reg-stack.c,
11188         regclass.c, regmove.c, regrename.c, regs.h, reload.c,
11189         reload.h, reload1.c, reorg.c, resource.c, resource.h, rtl.c,
11190         rtl.def, rtl.h, rtlanal.c, sbitmap.c, sbitmap.h,
11191         sched-deps.c, sched-ebb.c, sched-int.h, sched-rgn.c,
11192         sched-vis.c, sdbout.c, sdbout.h, sibcall.c, simplify-rtx.c,
11193         ssa-ccp.c, ssa-dce.c, ssa.c, ssa.h, stmt.c, stor-layout.c,
11194         stringpool.c, system.h, timevar.c, timevar.def, timevar.h,
11195         tlink.c, toplev.c, toplev.h, tree.c, tree.def, tree.h,
11196         tsystem.h, unroll.c, unwind-dw2-fde.c, unwind-dw2-fde.h,
11197         unwind-dw2.c, unwind-pe.h, unwind-sjlj.c, unwind.h,
11198         unwind.inc, varasm.c, varray.c, varray.h, xcoffout.c,
11199         xcoffout.h: replace "GNU CC" with "GCC".
11200
11201 2001-08-21  Richard Henderson  <rth@redhat.com>
11202
11203         * final.c (LABEL_ALIGN_AFTER_BARRIER): Default to no alignment.
11204         (final_scan_insn): Consider jump tables data even if we have no
11205         independent text section if !JUMP_TABLES_IN_TEXT_SECTION.  Use
11206         ADDR_VEC_ALIGN.
11207         * config/ia64/ia64.h (JUMP_TABLES_IN_TEXT_SECTION): Remove.
11208         (ASM_OUTPUT_CASE_END): Remove.
11209         (ASM_OUTPUT_ADDR_DIFF_ELT): Emit pc-relative references.
11210         * config/ia64/ia64.md (tablejump): Decode pc-relative references.
11211         * config/ia64/sysv4.h (ASM_OUTPUT_BEFORE_CASE_LABEL): Remove.
11212
11213 2001-08-21  Richard Henderson  <rth@redhat.com>
11214
11215         * config/ia64/ia64.c (emit_all_insn_group_barriers): Flush state
11216         at barrier insns.  Emit stop bits before barriers.
11217
11218         * flow.c (flow_find_cross_jump): Don't consider unconditional
11219         return insns for commoning.
11220
11221         * final.c (compute_alignments): Fix typo.
11222
11223         * expmed.c (CODE_FOR_insv, gen_insv): Provide defaults.
11224         (CODE_FOR_extv, gen_extv, CODE_FOR_extzv, gen_extzv): Likewise.
11225         (store_bit_field): Use mode_for_extraction more places.
11226         (extract_bit_field): Likewise.
11227
11228 2001-08-21  Zack Weinberg  <zackw@panix.com>
11229
11230         * caller-save.c: Don't include insn-codes.h.
11231         (reg_save_code, reg_restore_code): Make arrays of int.
11232         All uses updated to match.
11233         (insert_save, insert_restore): No need to initialize "code"
11234         variable upon declaration.
11235         * Makefile.in: update dependencies; fix typo in clean rule.
11236
11237 2001-08-21  Richard Henderson  <rth@redhat.com>
11238
11239         * ifcvt.c (find_if_block): Allow join_bb as EXIT.
11240         (merge_if_block): Handle fallout from same.
11241
11242 2001-08-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11243
11244         * builtins.c (type_to_class): Fix typo in last change.
11245
11246 2001-08-21  Richard Henderson  <rth@redhat.com>
11247
11248         * config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't emit '#' if
11249         ia64_asm_output_label.
11250
11251         * config/ia64/crtbegin.asm (__do_global_dtors_aux): Use saved
11252         copy of gp while the real gp register contains garbage.
11253
11254 2001-08-21  Zack Weinberg  <zackw@panix.com>
11255
11256         * expmed.c (mode_for_extraction): New function.
11257         (store_bit_field, extract_bit_field): Use it.
11258         * expr.h: Prototype it and provide an enum for its first argument.
11259
11260         * combine.c, function.c, recog.c: Don't include insn-codes.h.
11261         Use mode_for_extraction rather than testing HAVE_insv/extv/extzv
11262         and digging through the insn_data tables.
11263         * Makefile.in: Update dependencies.
11264
11265 2001-08-22  Neil Booth  <neil@daikokuya.demon.co.uk>
11266
11267         * cppfiles.c (stack_include_file): line-map.c now handles include
11268         depth.
11269         (handle_missing_handler): Similarly.
11270         (_cpp_execute_include): Similarly.
11271         (_cpp_pop_file_buffer): Similarly.
11272         * cpphash.h (struct cpp_reader): Remove system_include_depth,
11273         buffer_stack_depth and include_depth.
11274         * cpplib.c (do_include_common): line-map.c now handles include depth.
11275         (cpp_push_buffer): Similarly.
11276         (_cpp_pop_buffer): Similarly.
11277         * cppmacro.c (builtin_macro): Update.
11278         * line-map.c (init_line_maps): Set depth.
11279         (add_line_map): Increment "used" earlier.  Update and use the
11280         include depth.
11281         (trace_include): Use the include depth.
11282         * line-map.h (struct line_maps): New member depth.
11283
11284 2001-08-21  Neil Booth  <neil@daikokuya.demon.co.uk>
11285
11286         * cppfiles.c (stack_include_file): Don't handle -H here.
11287         * cppinit.c (cpp_start_read): Set include tracing after
11288         cpp_post_options and after stacking the main file.
11289         * line-map.c (trace_include): New.
11290         (init_line_maps, add_line_map): Update.
11291         * line-map.h (struct line_maps): New member trace_includes.
11292
11293 2001-08-21  Neil Booth  <neil@daikokuya.demon.co.uk>
11294
11295         * cppfiles.c (stack_include_file): Harmonize system headerness tests.
11296         * cppfiles.c (stack_include_file): Only stack a file if there
11297         is something to do.  Return a boolean indicating whether a
11298         buffer was stacked or not.
11299         (_cpp_execute_include): Similarly.
11300         (_cpp_read_file): Similarly.
11301         * cpphash.h (_cpp_read_file, _cpp_execute_include): Update prototypes.
11302
11303 2001-08-21  Sam Steingold  <sds@gnu.org>
11304
11305         * tradcpp.c (rescan): define obufp_before_macroname before RECACHE
11306         (RECACHE): keep obufp_before_macroname up to date
11307
11308 2001-08-21  Zack Weinberg  <zackw@panix.com>
11309
11310         * stmt.c: Don't include insn-codes.h.
11311         (expand_end_case): Machine specific logic moved to expr.c.
11312         No need to worry about __builtin_classify_type.
11313         (check_for_full_enumeration_handling, emit_case_nodes):
11314         Kill #if 0 blocks.
11315
11316         * builtins.o (expand_builtin_classify_type): Split up so code
11317         can be shared with fold_builtin_classify_type.
11318         (type_to_class, fold_builtin_classify_type): New functions.
11319         (fold_builtins): Handle __builtin_classify_type.
11320
11321         * expr.c (do_tablejump): Now static.
11322         (case_values_threshold, try_casesi, try_tablejump): New;
11323         code mostly from stmt.c (expand_end_case).
11324         (expr.h): Update prototypes.
11325
11326         * Makefile.in (stmt.o): Update dependencies.
11327
11328 2001-08-21  Will Cohen  <wcohen@redhat.com>
11329
11330         * configure/alpha/alpha.h (CONDITIONAL_REGISTER_USAGE): Added local
11331         declaration of variable i.
11332         * configure/rs6000/rs6000.h (CONDITIONAL_REGISTER_USAGE): Added local
11333         declaration of variable i.
11334
11335 2001-08-21  Richard Henderson  <rth@redhat.com>
11336
11337         * crtstuff.c: Fix thinko last change.  Move list tails to start
11338         of CRT_END section.  Tidy ifdefs.
11339         (__EH_FRAME_BEGIN__): Always static for ELF.
11340         (__do_global_ctors_1): Rename from __frame_dummy.
11341         * config/mips/iris6.h (LINK_SPEC): Update for __do_global_ctors_1
11342         name change; don't hide __EH_FRAME_BEGIN__.
11343
11344 2001-08-21  Richard Henderson  <rth@redhat.com>
11345
11346         * gdbinit.in: Move break on exit after break on fancy_abort.
11347
11348         * config/ia64/ia64.c (ia64_return_in_memory): True for variable
11349         sized types.
11350
11351 2001-08-21  Neil Booth  <neil@daikokuya.demon.co.uk>
11352
11353         * cpphash.h (_cpp_push_next_buffer): New.
11354         * cppinit.c (do_includes): Remove.
11355         (push_include, free_chain, _cpp_push_next_buffer): New.
11356         (cpp_start_read): Use them to rework command line option handling.
11357         (cpp_handle_option): Combine handling of -include and -imacros.
11358         * cpplex.c (_cpp_lex_token): Push a new -include buffer if
11359         appropriate.  Always insert missing \n at EOF.
11360         * cpplib.c (start_directive): Get the directive position right.
11361         * cppmain.c (cb_file_change): Always print the first line, unless
11362         preprocessed.
11363
11364 2001-08-20  Andreas Jaeger  <aj@suse.de>
11365
11366         * profile.c (compute_branch_probabilities): Remove extra new-line
11367         in error message.
11368         * flow.c (verify_flow_info): Likewise.
11369
11370 2001-08-20  Diego Novillo  <dnovillo@redhat.com>
11371
11372         * basic-block.h (basic_block): Add new field 'flags'.
11373         (BB_REACHABLE): Define.
11374         (expunge_block): Declare.
11375         * flow.c (ENTRY_BLOCK_PTR): Initialize field 'flags'.
11376         (EXIT_BLOCK_PTR): Ditto.
11377         (expunge_block): Remove static declaration.
11378         (cleanup_cfg): Clear bb->aux on every basic block.
11379         (find_unreachable_blocks): Set BB_REACHABLE bit in bb->flags when
11380         computing reachability.
11381         (delete_unreachable_blocks): Delete block b if b->flags has
11382         BB_REACHABLE unset.
11383
11384 2001-08-20  Diego Novillo  <dnovillo@redhat.com>
11385
11386         * doc/invoke.texi: Replace references to -fdump-tree with -fdump-ast.
11387
11388 2001-08-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11389
11390         * sparc.c (sparc_variable_issue): Fix typo in last change.
11391
11392 2001-08-20  Richard Henderson  <rth@redhat.com>
11393
11394         * varasm.c (assemble_integer): Document ppc-eabi -mrelocatable losage.
11395
11396 2001-08-20  John David Anglin  <dave@hiauly1.hia.nrc.ca>
11397
11398         * pa.h (RETURN_IN_MEMORY): Improve comment.
11399
11400 2001-08-20  Janis Johnson  <janis187@us.ibm.com>
11401
11402         * doc/invoke.texi (Profiling options): Clarify the interactions
11403         between -fprofile-arcs and -ftest-coverage, -fprofile-arcs.
11404
11405 2001-08-20  Jeffrey Oldham  <oldham@codesourcery.com>
11406
11407         * crtstuff.c (__do_global_ctors): Fix typo in preprocessing
11408         command.
11409
11410 2001-08-20  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
11411
11412         * gcc.c (make_relative_prefix): Allocate a sufficiently large
11413         buffer.
11414
11415 2001-08-20  Richard Henderson  <rth@redhat.com>
11416
11417         * final.c (end_final): Fix typo last change.
11418
11419 2001-08-20  Neil Booth  <neil@daikokuya.demon.co.uk>
11420
11421         * cppinit.c (init_standard_includes): The returned buffer
11422         is already malloc-ed.
11423         * gcc.c (add_prefix): Similarly.
11424         * prefix.c (translate_name): Update to support clear buffer
11425         ownership rules.
11426         (update_path): Similarly.  Be sure to free any newly allocated
11427         key.  UPDATE_PATH_HOST_CANONICALIZE takes only one argument.
11428         (tr): New function.
11429         * prefix.h (update_path): Update prototype and document.
11430         * config/i386/xm-djgpp.h (UPDATE_PATH_HOST_CANONICALIZE): Clean
11431         up and update to new buffer ownership rules.
11432         * doc/gcc.texi (UPDATE_PATH_HOST_CANONICALIZE): Update.
11433
11434 Mon Aug 20 01:44:50 CEST 2001  Jan Hubicka  <jh@suse.cz>
11435
11436         * final.c (compute_alignments): New function.
11437         (init_insn_lengths): Do not care label_align.
11438         (LABEL_ALIGN_AFTER_BARRIER): Default to 1.
11439         (LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP): Default to 0.
11440         (JUMP_ALIGN, JUMP_ALIGN_MAX_SKIP): New.
11441         (shorted_branches): Realloc label_align array; do
11442         not call init_insn_lengths; Do not care about loop alignments.
11443         * output.h (compute_alignments): Declare.
11444         * toplev.c (rest_of_compilation): Call compute_alignments.
11445         * tm.texi (JUMP_ALIGN, JUMP_ALIGN_MAX_SKIP): Document.
11446
11447         * predict.c (block_info_def): Add npredecesors, remove nvisited;
11448         change visited to tovisit.
11449         (propagate_freq): Use faster traversing algorithm.
11450         (estimate_loops_at_level, estimate_bb_frequencies): Change visited
11451         to tovisit; reverse meaning.
11452
11453         * predict.c (struct block_info_def): Remove nvisited.
11454         (propagate_freq): Use EDGE_DFS_BACK to detect irreducible regions.
11455         (estimate_bb_frequencies): Call mark_dfs_back_edges.
11456
11457 2001-08-19  Geoffrey Keating  <geoffk@redhat.com>
11458
11459         * doc/invoke.texi (MIPS Options): Document -mfused-madd.
11460         * config/mips/mips.h (MASK_NO_FUSED_MADD): New.
11461         (TARGET_FUSED_MADD): New.
11462         (TARGET_SWITCHES): Add -mfused-madd, -mno-fused-madd.
11463         * config/mips/mips.md: Add TARGET_FUSED_MADD as condition to
11464         the multiply-add instructions.
11465
11466 2001-08-19  Richard Henderson  <rth@redhat.com>
11467
11468         * dwarf2asm.c (dw2_output_indirect_constant_1): The symbol ref
11469         is aligned to pointer size.
11470
11471 2001-08-19  Richard Henderson  <rth@redhat.com>
11472
11473         * config/ia64/ia64.c (ia64_cycle_display): Only emit cycle
11474         display markers during final schedule.
11475
11476 2001-08-19  Richard Henderson  <rth@redhat.com>
11477
11478         * function.c (gen_mem_addressof): Don't call get_alias_set if no decl.
11479
11480 2001-08-19  Richard Henderson  <rth@redhat.com>
11481
11482         * config/ia64/ia64.h (STRIP_NAME_ENCODING): Handle @ and *
11483         in the same string.
11484         (ASM_NAME_TO_STRING): Remove.
11485         * config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Handle @ and *
11486         in the same string.  Remove support for expressions.
11487
11488 2001-08-19  Richard Henderson  <rth@redhat.com>
11489
11490         * config/i386/i386.md (tablejump): Make an expander; handle
11491         pic relative addressing here.
11492         (tablejump_1): Rename from tablejump_pic.
11493         (casesi): Remove.
11494
11495 2001-08-19  Richard Henderson  <rth@redhat.com>
11496
11497         * regclass.c (fix_register): Fix typo.
11498
11499 2001-08-18  Richard Henderson  <rth@redhat.com>
11500
11501         * config/ia64/unwind-ia64.c (UNW_REG_B0): New.
11502         (struct _Unwind_Context): Expand br_loc to hold it.
11503         (uw_frame_state_for): Handle leaf functions better.
11504         (uw_update_reg_address): Update for br_loc change.
11505
11506 2001-08-18  Richard Henderson  <rth@redhat.com>
11507
11508         * crtstuff.c: Move list heads before code that uses them.
11509         (__JCR_LIST__): Remove initial null.
11510         (frame_dummy, __frame_dummy): Do java registration here ...
11511         (__do_global_ctors_aux): ... not here.
11512
11513         * config/ia64/crtbegin.asm (dtor_ptr): Make gp-relative.
11514         (__do_global_dtors_aux): Update to match.
11515         (__JCR_LIST__, __do_jv_register_classes): New.
11516         (.init): Call it.
11517         * config/ia64/crtend.asm (__JCR_END__): New.
11518         (__do_global_ctors_aux): Use a GPREL64I reloc to __CTOR_END__
11519         instead of an indirect LTOFF22 reloc.
11520
11521 2001-08-18  Richard Henderson  <rth@redhat.com>
11522
11523         * flow.c (mark_regs_live_at_end): Use regs_invalidated_by_call.
11524         * regclass.c (init_reg_sets_1): Fix typo.
11525         * config/ia64/ia64.c (ar_pfs_reg_operand): New.
11526         (ia64_expand_call): Pass ar.pfs to sibcall expanders.
11527         (ia64_compute_frame_size): Make ar.unat live when in use.
11528         (ia64_epilogue_uses): Reformat; do not check current_function_is_leaf
11529         for ar.pfs; remove ar.unat handling.
11530         * config/ia64/ia64.h (CALL_REALLY_USED_REGISTERS): ar.unat is
11531         call-saved.
11532         (PREDICATE_CODES): Add ar_pfs_reg_operand.
11533         * config/ia64/ia64-protos.h: Update decls.
11534         * config/ia64/ia64.md (sibcall_nopic): Use ar.pfs.
11535         (sibcall_pic): Likewise.
11536
11537 2001-08-18  Richard Henderson  <rth@redhat.com>
11538
11539         * config/ia64/ia64.c (ia64_sched_reorder2): Also skip past
11540         pred_rel_mutex when searching for insn_group_barrier.
11541         * config/ia64/ia64.md (cycle_display): Combine the expander
11542         and insn patterns.
11543
11544         * config/ia64/ia64.c (ia64_internal_sched_reorder): Emit stop
11545         bit before asm as needed.
11546
11547 2001-08-18  Richard Henderson  <rth@redhat.com>
11548
11549         * timevar.def (TV_MACH_DEP): New.
11550         * toplev.c (rest_of_compilation): Use it.
11551         * config/ia64/ia64.c (ia64_reorg): Push to TV_SCHED2.
11552
11553 2001-08-18  Zack Weinberg  <zackw@panix.com>
11554
11555         * unwind-dw2.c (execute_stack_op): Add default aborts to
11556         the inner switches to prevent warnings.
11557
11558 2001-08-18  Richard Henderson  <rth@redhat.com>
11559
11560         * timevar.h (struct timevar_time_def): Change element type to float.
11561         (ticks_to_msec, clocks_to_msec): Likewise.
11562         (TICKS_TO_MSEC, CLOCKS_TO_MSEC): Rescale to seconds; use type float.
11563         (get_time): Likewise.
11564         (timevar_print): Adjust zero check and printing to match.
11565
11566 2001-08-18  Zack Weinberg  <zackw@panix.com>
11567
11568         * doc/extend.texi, doc/gcc.texi, doc/install-old.texi,
11569         doc/invoke.texi, doc/md.texi, doc/rtl.texi, doc/include/gpl.texi:
11570         Eliminate overfull or underfull hboxes.
11571
11572 2001-08-18  Zack Weinberg  <zackw@panix.com>
11573
11574         * cpperror.c: Use VA_OPEN/VA_CLOSE/VA_FIXEDARG throughout.
11575
11576 2001-08-18  Zack Weinberg  <zackw@panix.com>
11577
11578         * haifa-sched.c: Convert to target hooks.  Macros replaced
11579         are ISSUE_RATE, ADJUST_COST, ADJUST_PRIORITY, MD_SCHED_INIT,
11580         MD_SCHED_REORDER, MD_SCHED_REORDER2, MD_SCHED_VARIABLE_ISSUE,
11581         MD_SCHED_FINISH, and HAVE_cycle_display.
11582         * target-def.h (TARGET_SCHED_ADJUST_COST,
11583         TARGET_SCHED_ADJUST_PRIORITY, TARGET_SCHED_ISSUE_RATE,
11584         TARGET_SCHED_VARIABLE_ISSUE, TARGET_SCHED_INIT,
11585         TARGET_SCHED_FINISH, TARGET_SCHED_REORDER,
11586         TARGET_SCHED_REORDER2, TARGET_SCHED_CYCLE_DISPLAY):
11587         New hook #defines to be overridden.
11588         (TARGET_SCHED): Bring them all together.
11589         (TARGET_INITIALIZER): Update.
11590         * target.h: Don't forward declare struct rtx_def.  Use 'rtx'
11591         instead of 'struct rtx_def *' throughout.
11592         (struct sched): New set of hooks for the scheduler.
11593         * Makefile.in (haifa-sched.o): Depend on target.h.
11594         * doc/tm.texi: Document the new scheduler hooks, together in
11595         their own section, instead of scattered around.
11596         Fix a bunch of underfull/overfull hboxes.
11597
11598         * a29k.h, alpha.h, arm.h, c4x.h, convex.h, d30v.h, i386.h,
11599         ia64.h, m32r.h, m88k.h, mips.h, pa.h, rs6000.h, s390.h, sh.h,
11600         sparc.h: Don't define any of the old scheduler macros.
11601
11602         * a29k.c, alpha.c, arm.c, c4x.c, convex.c, d30v.c, i386.c,
11603         ia64.c, m32r.c, m88k.c, mips.c, pa.c, rs6000.c, s390.c, sh.c,
11604         sparc.c: Create hook functions from code extracted from
11605         corresponding target header, or make existing hooks static, as
11606         appropriate.  Set the appropriate entries in targetm.
11607
11608         * alpha-protos.h, arm-protos.h, c4x-protos.h, d30v-protos.h,
11609         i386-protos.h, ia64-protos.h, m32r-protos.h, pa-protos.h,
11610         rs6000-protos.h, s390-protos.h, sparc-protos.h:
11611         Remove prototypes for functions which are now static.
11612
11613         * d30v.h, d30v.c, m32r.h, m32r.c: Remove #ifdef HAIFA and
11614         related gunk; the Haifa scheduler is now the only choice.
11615
11616 2001-08-18  Zack Weinberg  <zackw@panix.com>
11617
11618         * optabs.h (OTI_flodiv, flodiv_optab): Kill.
11619         * genopinit.c: Put floating point divide insns in sdiv_optab.
11620         * expr.c (expand_expr): Use sdiv_optab, not flodiv_optab.
11621         * config/gofast.h, config/c4x/c4x.h,
11622         config/ia64/hpux_longdouble.h, config/mips/mips.h,
11623         config/pa/long_double.h, config/rs6000/sysv4.h,
11624         config/sparc/sparc.h: Put floating point divide libcalls in sdiv_optab.
11625         * optabs.c (init_optab): Break into new_optab, init_optab, init_optabv.
11626         (init_optabs): Use init_optabv for overflow-trapping optabs.
11627         Don't init flodiv_optab.  Give mov_optab, movstrict_optab, and
11628         cmp_optab RTX codes so have_insn_for can find them.
11629
11630         * optabs.c (expand_simple_binop, expand_simple_unop,
11631         have_insn_for, gen_sub3_insn): New interfaces.
11632         * expr.h: Prototype new functions.
11633         (enum optab_methods): Move here from optabs.h.
11634
11635         * builtins.c, combine.c, doloop.c, function.c, ifcvt.c,
11636         loop.c, profile.c, simplify-rtx.c, stmt.c, unroll.c:
11637         Use new functions instead of working directly with optabs.
11638         * doloop.c, ifcvt.c, loop.c, profile.c, simplify-rtx.c,
11639         unroll.c: Don't include optabs.h.
11640         * caller-save.c, combine.c, function.c, stmt.c: Just include
11641         insn-codes.h, not optabs.h.
11642         * Makefile.in: Update dependencies.
11643
11644         * combine.c (make_compound_operation, simplify_comparison):
11645         Fix typos testing for this or that instruction.
11646
11647 2001-08-18  Herman A.J. ten Brugge  <Haj.Ten.Brugge@net.HCC.nl>
11648
11649         * mklibgcc.in: Prefer LIB1ASMFUNCS over LIB2_DIVMOD_FUNCS when
11650         generating libgcc.a.
11651
11652 2001-08-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11653
11654         * except.c (TYPE_HASH): Delete.
11655
11656         * objc/objc-act.c (HASHFUNCTION): Cast to size_t, not
11657         HOST_WIDE_INT.
11658
11659         * tree.c (TYPE_HASH): Delete.
11660
11661         * tree.h (TYPE_HASH): Define.
11662
11663 2001-08-18  Graham Stott  <grahams@redhat.com>
11664
11665         * config/mips/mips.md (adddi3_internal_2+1): Remove constraints from
11666         define_split.
11667         (adddi3_internal_2+2): Likewise.
11668         (eh_set_lr_di+1): Likewise.
11669
11670 2001-08-17  Richard Henderson  <rth@redhat.com>
11671
11672         * defaults.h (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
11673         UNALIGNED_DOUBLE_INT_ASM_OP, ASM_BYTE_OP): Move from ...
11674         * dwarf2asm.c: ... here.
11675         * dwarfout.c: Remove them.
11676
11677         * varasm.c (assemble_integer): Add align parameter.
11678         (assemble_real, output_constant, output_constructor): Likewise.
11679         * output.h: Update decls.
11680         * dwarf2asm.c, final.c, varasm.c, config/darwin.c, config/nextstep.c,
11681         config/alpha/alpha.c, config/arm/arm.md, config/clipper/clipper.c,
11682         config/m88k/m88k.c, config/mcore/mcore.md, config/mips/mips.h,
11683         config/mips/mips.md, config/pa/pa.c, config/rs6000/rs6000.c,
11684         config/rs6000/rs6000.h, config/s390/s390.h, config/sh/sh.md:
11685         Update all callers.
11686
11687         * final.c (end_final): Abort profile block generation if we
11688         haven't layed it out properly.
11689         * output.h (assemble_eh_integer): Remove stale decl.
11690         * varasm.c (assemble_zeros): Tidy; use assemble_integer.
11691         (min_align): New.
11692         (assemble_integer): Handle unaligned data.
11693         (assemble_real): Abort on unaligned data.
11694         (output_constructor): Don't assume ASM_OUTPUT_ALIGN 0 does
11695         anything useful.
11696         (default_dtor_section_asm_out_destructor): Use assemble_align.
11697         (default_named_section_asm_out_constructor): Likewise.
11698         (default_ctor_section_asm_out_constructor): Likewise.
11699         * config/darwin.c (machopic_asm_out_constructor): Likewise.
11700         (machopic_asm_out_destructor): Likewise.
11701         * config/nextstep.c (nextstep_asm_out_constructor): Likewise.
11702         (nextstep_asm_out_destructor): Likewise.
11703         * config/alpha/alpha.c (vms_asm_out_constructor): Likewise.
11704         (vms_asm_out_destructor): Likewise.
11705
11706 2001-08-17  Richard Henderson  <rth@redhat.com>
11707
11708         * config/mips/iris6.h (TARGET_IRIX6): New.
11709         (current_section_name, current_section_flags): New.
11710         (ASM_OUTPUT_ALIGN, ASM_FILE_START, ASM_FILE_END): New.
11711         (MAX_OFILE_ALIGNMENT): New.
11712         (ASM_OUTPUT_ALIGNED_LOCAL): Use bss_section.
11713         * config/mips/mips.c (mips_make_temp_file, temp_filename): Remove.
11714         (copy_file_data): Split out from
11715         (mips_asm_file_end): ... here.
11716         (mips_asm_file_start): Remove extra .section directive.  Use
11717         tmpfile instead of mips_make_temp_file.
11718         (mips_unique_section): Use const char * as needed for warnings.
11719         (iris6_asm_named_section_1): Renamed from iris6_asm_named_section;
11720         re-add align parameter.
11721         (iris6_asm_named_section): New.
11722         (iris_section_align_entry_eq, iris_section_align_entry_hash): New.
11723         (iris6_asm_output_align, iris6_section_align_1): New.
11724         (iris6_asm_file_start, iris6_asm_file_end): New.
11725         * config/mips/mips-protos.h: Update decls.
11726
11727 2001-08-17  Janis Johnson  <janis187@us.ibm.com>
11728
11729         * doc/install.texi (Install GCC): Add links to build status pages.
11730         (Specific): Ditto.
11731         (Final install): Ditto; request updates for specific info
11732
11733 2001-08-17  Neil Booth  <neil@daikokuya.demon.co.uk>
11734
11735         * cpperror.c (print_location):  Don't take a file name; use the
11736         line map instead.
11737         (_cpp_begin_message): Similarly.
11738         (cpp_ice, cpp_fatal, cpp_error, cpp_error_with_line, cpp_warning,
11739         cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line): Update.
11740         (cpp_pedwarn_with_file_and_line): Remove.
11741         * cppfiles.c (stack_include_file): Update; set filename to stdin
11742         here when appropriate.
11743         * cpphash.h (struct cpp_buffer): Remove nominal_fname.
11744         (_cpp_begin_message): Don't take a file name.
11745         * cppinit.c: Add comment.
11746         * cpplex.c: Fix end-of-directive indicator.
11747         * cpplib.c: Don't include intl.h.
11748         (run_directive, do_diagnostic): Update.
11749         (do_line): Update to not use nominal_fname.
11750         (cpp_push_buffer): Don't take a filename.
11751         * cpplib.h (struct ht): Remove.
11752         (cpp_push_buffer): Don't take a filename.
11753         (cpp_pedwarn_with_file_and_line): Remove.
11754         * cppmacro.c (struct cpp_macro): Remove file.
11755         (builtin_macro): Update.
11756         (_cpp_create_definition): Update.
11757         * cppmain.c: Correct comment.
11758         * fix-header.c (read_scan_file): Update.
11759
11760 2001-08-17  Kazu Hirata  <kazu@hxi.com>
11761
11762         * sbitmap.c: Fix comment formatting.
11763         * sched-deps.c: Likewise.
11764         * sibcall.c: Likewise.
11765         * simplify-rtx.c: Likewise.
11766         * ssa.c: Likewise.
11767         * ssa-ccp.c: Likewise.
11768         * stor-layout.c: Likewise.
11769         * timevar.c: Likewise.
11770         * toplev.c: Likewise.
11771         * unwind-dw2.c: Likewise.
11772         * unwind-dw2-fde.c: Likewise.
11773         * varasm.c: Likewise.
11774
11775 2001-08-17  John David Anglin  <dave@hiauly1.hia.nrc.ca>
11776
11777         * pa.h (RETURN_IN_MEMORY): Return types with a size that is varable
11778         or larger than an integer in memory.
11779
11780 2001-08-17  Zack Weinberg  <zackw@panix.com>
11781
11782         * system.h: Forward-declare struct rtx_def, struct rtvec_def,
11783         and union tree_node.  Typedef rtx, rtvec, and tree.  Fix comment.
11784         * rtl.h: Don't forward-declare union tree_node here.  Don't
11785         typedef rtx or rtvec here.  Change all uses of struct rtx_def *,
11786         struct rtvec_def *, or union tree_node * to use rtx, rtvec,
11787         and tree respectively.
11788         * tree.h: Don't forward-declare struct rtx_def here.  Don't
11789         typedef tree here.  Change all uses of struct rtx_def *,
11790         struct rtvec_def *, or union tree_node * to use rtx, rtvec,
11791         and tree respectively.
11792
11793 2001-08-17  Richard Henderson  <rth@redhat.com>
11794
11795         * config/mips/elf.h, config/mips/elf64.h, config/mips/netbsd.h,
11796         config/mips/openbsd.h: Fix typos last change.
11797
11798 2001-08-17  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
11799
11800         * doc/invoke.texi (Optimize Options): The default for
11801         -finline-limit is 600.
11802
11803 2001-08-17  Richard Henderson  <rth@redhat.com>
11804
11805         * varasm.c (text_section): Allow TEXT_SECTION to override the
11806         printing of TEXT_SECTION_ASM_OP.
11807         * dwarf2out.c (TEXT_SECTION_NAME): Rename from TEXT_SECTION.
11808         (DATA_SECTION, BSS_SECTION): Remove.
11809         * dwarfout.c (TEXT_SECTION_NAME, DATA_SECTION_NAME, DATA1_SECTION_NAME,
11810         RODATA_SECTION_NAME, RODATA1_SECTION_NAME, BSS_SECTION_NAME):
11811         Rename from s/_NAME//.
11812         * config/mips/mips.h (TARGET_FILE_SWITCHING): Add !TARGET_MIPS16.
11813         (ASM_DECLARE_FUNCTION_NAME): Move file switching ...
11814         (TEXT_SECTION): ... here.  New.
11815         * config/mips/elf.h (TEXT_SECTION): New; no file switching.
11816         * config/mips/elf64.h, config/mips/netbsd.h: Likewise.
11817         * config/mips/openbsd.h: Likewise.
11818         * config/mips/mips.c (mips_asm_file_start): Tidy file switching test.
11819         (mips_asm_file_end): Likewise test.
11820         (mips_output_function_epilogue): Likewise.  Switch back to data
11821         section after emitting the function.
11822
11823         * doc/tm.texi (Sections): Document TEXT_SECTION.
11824
11825 2001-08-17  Richard Henderson  <rth@redhat.com>
11826
11827         * dwarf2out.c (dwarf2out_init): Don't emit .debug_loc label here.
11828         (dwarf2out_finish): Do it here.  Emit .debug_loc before .debug_info.
11829
11830 2001-08-17  Richard Henderson  <rth@redhat.com>
11831
11832         * varasm.c (assemble_variable): Don't overalign if DECL_USER_ALIGN.
11833         * crtstuff.c (__CTOR_LIST__, __DTOR_LIST__, __EH_FRAME_BEGIN__,
11834         __JCR_LIST__, __CTOR_END__, __DTOR_END__, __FRAME_END__,__JCR_END__):
11835         Add aligned attribute.
11836
11837 2001-08-17  Andrew Haley  <aph@cambridge.redhat.com>
11838
11839         * config/sh/sh.md: Add modes to unspecs in first insn to match
11840         those in the second.
11841
11842         * Makefile.in: Fix collect2 copy for Cygwin.
11843
11844 Fri Aug 17 15:48:57 CEST 2001  Jan Hubicka  <jh@suse.cz>
11845
11846         Install the proper patch.
11847         * function.c (put_var_into_stack): Temporarily clear DECL_RTL.
11848         (assign_params): Avoid setting DECL_RTL to unfinished RTX.
11849         (expand_function_start): Likewise.
11850         * stmt.c (expand_decl): Likewise.
11851         * varasm.c (make_decl_rtx): Likewise.
11852
11853 Fri Aug 17 15:41:35 CEST 2001  Jan Hubicka  <jh@suse.cz>
11854
11855         * final.c: Undo my previous accidental checkin.
11856         * output.h: Likewise.
11857         * tm.texi: Likewise.
11858
11859 2001-08-16  Richard Henderson  <rth@redhat.com>
11860
11861         * varasm.c (named_section_flags): Remove align parameter.
11862         * varasm.c, dwarf2out.c: Update all callers.
11863         * output.h: Update prototypes.
11864
11865         * target.h (target.asm_out.named_section): Remove align parameter.
11866         * varasm.c, config/a29k/a29k.c, config/alpha/alpha.c,
11867         config/arm/arm.c, config/c4x/c4x.c, config/h8300/h8300.c,
11868         config/i386/i386.c, config/i386/winnt.c, config/m68k/m68k.c,
11869         config/mcore/mcore.c, config/mips/mips.c, config/rs6000/rs6000.c,
11870         config/sh/sh.c, config/sparc/sparc.c: Update implementations to match.
11871
11872         * varasm.c (in_named_entry_eq, in_named_entry_hash): New.
11873         (get_named_section_flags, set_named_section_flags): New.
11874         (named_section_flags): Use them.
11875         (named_section): Do decl vs section flags check here...
11876         (default_section_type_flags): ... not here.
11877         (init_varasm_once): Create in_named_htab.
11878         (resolve_unique_section): Mark reloc unused.
11879
11880 2001-08-16  Richard Henderson  <rth@redhat.com>
11881
11882         * varasm.c (force_const_mem): Keep pool alignment in bits.
11883         (output_constant_pool): Use assemble_align.
11884
11885 2001-08-16  Zack Weinberg  <zackw@panix.com>
11886
11887         * doc/tm.texi: Remove extra @table command.
11888
11889 2001-08-16  Zack Weinberg  <zackw@panix.com>
11890
11891         * final.c (shorten_branches): Clear the end of the label_align
11892         array only if we made it larger.  Break up messy expressions
11893         for clarity.
11894
11895         * diagnostic.c (internal_error): Check for error recursion
11896         before doing ICE suppression.
11897
11898         * timevar.c: Timing variables now count in milliseconds.
11899         (init_timevar): Set up ticks_to_msec and clocks_to_msec here.
11900         (get_time): Not here.
11901         (timevar_print): Don't print any timer whose user, cpu, and
11902         wall times are all zero as displayed.
11903         * timevar.h: Update comment aboout units.  Make timevar
11904         counters unsigned.
11905
11906 Thu Aug 16 17:39:45 CEST 2001  Jan Hubicka  <jh@suse.cz>
11907
11908         * function.c (put_var_into_stack): Temporarily clear DECL_RTL.
11909         (assign_params): Avoid setting DECL_RTL to unfinished RTX.
11910         (expand_function_start): Likewise.
11911         * stmt.c (expand_decl): Likewise.
11912         * varasm.c (make_decl_rtx): Likewise.
11913
11914 2001-08-16  Jason Merrill  <jason_merrill@redhat.com>
11915
11916         * stor-layout.c (layout_decl): Don't set DECL_USER_ALIGN.
11917         (finalize_record_size): Don't set TYPE_USER_ALIGN.
11918
11919 2001-08-16  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
11920
11921         * config/i386/i386.c (ix86_init_mmx_sse_builtins): Remove unused
11922         variables.
11923
11924 2001-08-16  Andreas Jaeger  <aj@suse.de>
11925
11926         * config/s390/s390.c: Include "debug.h" for dwarf2out_do_frame
11927         prototype.
11928
11929 Wed Aug 15 15:22:52 EDT 2001  John Wehle  (john@feith.com)
11930
11931         * rtl.h (only_sets_cc0_p): New prototype.
11932         * jump.c (sets_cc0_p): Handle INSN.
11933         (only_sets_cc0_p): New function.
11934         * flow.c (merge_blocks_nomove): Use only_sets_cc0_p.
11935         (tidy_fallthru_edge): Likewise.
11936         * integrate.c (copy_insn_list): Likewise.
11937         * unroll.c (unroll_loop): Likewise.
11938         (copy_loop_body): Likewise.
11939
11940 2001-08-15  Jason Eckhardt  <jle@redhat.com>
11941
11942         * config/i960/i960.md (trap): Change "faulteq.t" to "faulte.t".
11943
11944 Wed Aug 15 14:24:22 CEST 2001  Jan Hubicka  <jh@suse.cz>
11945
11946         * predict.c (struct block_info_def): Remove nvisited.
11947         (propagate_freq): Use EDGE_DFS_BACK to detect irreducible regions.
11948         (estimate_bb_frequencies): Call mark_dfs_back_edges.
11949
11950         * i386.c (ix86_agi_dependant): Lea causes AGI only on the Pentium
11951         (ix86_adjust_cost): Teach scheduler that latency to load operand can
11952         be masked.
11953
11954 Wed Aug 15 12:41:32 CEST 2001  Jan Hubicka  <jh@suse.cz>
11955
11956         * predict.def: Update hitrates.
11957
11958 2001-08-15  Richard Henderson  <rth@redhat.com>
11959
11960         * except.c (TYPE_HASH): Cast to size_t, not HOST_WIDE_INT.
11961
11962 Tue Aug 14 17:30:59 2001  Jeffrey A Law  (law@cygnus.com)
11963
11964         * flow.c (commit_one_edge_insertion): Don't separate a LOOP_BEG
11965         note from its associated jump.
11966
11967 2001-08-14  Ulrich Weigand  <uweigand@de.ibm.com>
11968
11969         * config/s390/linux64.h (CPP_PREDEFINES): Define __s390__
11970         also on 64-bit s390x targets.
11971
11972 2001-08-14  Nick Clifton  <nickc@cambridge.redhat.com>
11973
11974         * config/arm/arm.c (arm_compute_initial_elimination_offset): New
11975         function.
11976         (arm_expand_prologue): Handled nested functions which take a
11977         variable argument list.
11978         * config/arm/arm.h (ARM_INITIAL_ELIMINATION_OFFSET): Replace
11979         macro with an invocation of
11980         arm_compute_initial_elimination_offset.
11981         * config/arm/arm-protos.h: Prototype
11982         arm_compute_initial_elimination_offset.
11983
11984 2001-08-14  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
11985
11986         * doc/install.texi (Specific, avr): Fix markup.
11987         (Specific, c4x): Ditto.
11988
11989 2001-08-14  Matt Kraai  <kraai@alumni.carnegiemellon.edu>
11990
11991         * predict.c (dump_prediction): Change `bool' parameter to `int'.
11992
11993 2001-08-14  Gabriel Dos Reis  <gdr@codesourcery.com>
11994
11995         * Makefile.in (OBJS): Add rtl-error.o
11996         (rtl-error.o): New rule.
11997         (diagnostic.o): Adjust dependency.
11998         diagnostic.c (file_and_line_for_asm, diagnostic_for_asm,
11999         error_for_asm, _fatal_insn, _fatal_insn_not_found,
12000         warning_for_asm): Move to...
12001         rtl-error.c: ...here.  New file.
12002
12003 2001-08-14  Richard Henderson  <rth@redhat.com>
12004
12005         * dwarf2out.c (dwarf2out_frame_finish): Never emit .eh_frame
12006         if USING_SJLJ_EXCEPTIONS.
12007
12008 2001-08-14  Steve Ellcey <sje@cup.hp.com>
12009
12010         * tlink.c (scan_linker_output): Check string for unsatisfied in
12011         addition to undefined and unresolved.
12012
12013 2001-08-14  Graham Stott  <grahams@redhat.com>
12014
12015         * libgcc2.c (*): Replace EH_FRAME_SECTION with
12016         EH_FRAME_SECTION_NAME.
12017
12018 Tue Aug 14 14:57:07 CEST 2001  Jan Hubicka  <jh@suse.cz>
12019
12020         * genattrtab.c (simplify_test_exp_in_temp): New function.
12021         (simplify_test_exp): Avoid explicit use of temporary obstack.
12022         (simplify_cond, insert_right_side, evaluate_eq_attr,
12023         simplify_and_tree, simplify_or_tree, eliminate_known_true):
12024         Use simplify_test_exp_in_temp.
12025         (optimize_attrs): Iterate until expression stabilizes.
12026
12027 2001-08-13  Ulrich Weigand  <uweigand@de.ibm.com>:
12028
12029         * glimits.h: Remove the __LONG_MAX__ special case for s390x.
12030         * config/s390/linux64.h: Define __LONG_MAX__ in CPP_PREDEFINES.
12031
12032 2001-08-13  Richard Henderson  <rth@redhat.com>
12033
12034         * config/arm/unknown-elf.h (CTOR_LIST_BEGIN, CTOR_LIST_END): Remove.
12035         (DTOR_LIST_BEGIN, DTOR_LIST_END): Remove.
12036         * config/arm/conix-elf.h: Likewise.
12037
12038 2001-08-13  Geoffrey Keating  <geoffk@redhat.com>
12039
12040         * config/svr4.h (LINK_SPEC): Don't do -Wl, here, it is done
12041         in gcc.c.
12042         * config/rs6000/sysv4.h (LINK_SPEC): Likewise.
12043
12044         * gcse.c (hash_scan_set): Expressions that are set as part of
12045         jump instructions are not available.
12046
12047 2001-08-13  Ulrich Weigand  <uweigand@de.ibm.com>
12048
12049         * config/s390/s390.c (print_operand, s390_function_prologue,
12050         s390_va_start): Fixed HOST_WIDE_INT type mismatch.
12051
12052 2001-08-13  Richard Henderson  <rth@redhat.com>
12053
12054         * config/rs6000/xcoff.h (EH_FRAME_IN_DATA_SECTION): New.
12055         * defaults.h (EH_FRAME_SECTION_NAME): Respect it.
12056         * doc/tm.texi (Exception Region Output): Document it.
12057
12058 2001-08-13  Geoffrey Keating  <geoffk@redhat.com>
12059
12060         * config/rs6000/sysv4.h (PREFERRED_DEBUGGING_TYPE): Use
12061         DWARF2 instead of stabs by default.
12062
12063 2001-08-13  David Edelsohn  <edelsohn@gnu.org>
12064
12065         * config/rs6000/rs6000.c: Include optabs.h.
12066
12067 2001-08-13  David Edelsohn  <edelsohn@gnu.org>
12068
12069         * config/rs6000/eabi.asm: Define 64-bit versions of FPR
12070         save/restore routines.
12071         * ginclude/ppc-asm.h: Define 64-bit FUNC_* macros.
12072
12073 2001-08-13  Andreas Jaeger  <aj@suse.de>
12074
12075         * gcc.c (init_spec): Revert last patch by Theodore Papadopoulo,
12076         the english is correct.
12077
12078 2001-08-13  Zack Weinberg  <zackw@panix.com>
12079
12080         * expr.h: Split out optab- and libfunc-related code to...
12081         * optabs.h, libfuncs.h: ... these new headers.
12082
12083         * Makefile.in (CONFIG_H, EXPR_H): Take out insn-codes.h.
12084         (OPTABS_H): New.
12085         (various .o rules): Add $(OPTABS_H) and/or libfuncs.h to
12086         dependencies.
12087         * mkconfig.sh: Don't include insn-codes.h from config.h.
12088
12089         * reload.h: Use #ifdef GCC_INSN_CODES_H to decide whether
12090         enum insn_code is available.  Move reload_in_optab and
12091         reload_out_optab array declarations to optabs.h.
12092         * regmove.c (gen_add3_insn): Move to optabs.c, export from
12093         there, prototype in expr.h.
12094         * gencodes.c: Cleanup: zap global variables, don't use
12095         printf where puts will do, don't bother defining MAX_INSN_CODE
12096         which nothing uses, let CODE_FOR_nothing get its value implicitly.
12097
12098         * genemit.c, genopinit.c: Include optabs.h in generated file.
12099         * genoutput.c: Include insn-codes.h in generated file.
12100         * builtins.c, caller-save.c, combine.c, doloop.c, explow.c,
12101         expmed.c, expr.c, function.c, ifcvt.c, loop.c, optabs.c, profile.c,
12102         reload1.c, simplify-rtx.c, stmt.c, unroll.c, config/alpha/alpha.c,
12103         config/arm/arm.c, config/c4x/c4x.c, config/clipper/clipper.c,
12104         config/i386/i386.c, config/ia64/ia64.c, config/mn10300/mn10300.c,
12105         config/pj/pj.c, config/sh/sh.c, config/sparc/sparc.c:
12106         Include optabs.h.
12107         * builtins.c, calls.c, dwarf2out.c, except.c, expr.c, function.c,
12108         optabs.c, stmt.c, config/c4x/c4x.c, config/clipper/clipper.c,
12109         config/m88k/m88k.c, config/sparc/sparc.c:
12110         Include libfuncs.h.
12111         * reload.c: Include expr.h and optabs.h before reload.h.
12112         * config/alpha/alpha.c: Include tree.h before reload.h.
12113         * config/pa/pa.c: Include expr.h, optabs.h, libfuncs.h,
12114         and reload.h in that order.
12115         * config/sparc/sparc.c: Include debug.h.
12116         * recog.c: Include insn-codes.h.
12117
12118 2001-08-13  Andreas Jaeger  <aj@suse.de>
12119
12120         * config.gcc: Use t-slibgcc-elf to build shared libgcc_s on
12121         s390*linux.
12122
12123 2000-08-13 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
12124
12125         * dwarf2out.c (output_cfa_loc): Fix typo in comment.
12126         * gcc.c (init_spec): Fix typo in comment.
12127         * varasm.c (data_section): Fix typo in comment.
12128
12129 Mon Aug 13 02:27:39 CEST 2001  Jan Hubicka  <jh@suse.cz>
12130
12131         * predict.c (dump_prediction): New argument "USED".
12132         (combine_predictions_for_insn): Determine the used heuristics,
12133         output the case no heuristic applied.
12134         * predict.def (PRED_DS_THEORY, PRED_NO_HEURISTIC): New.
12135
12136 2001-08-13  Andreas Jaeger  <aj@suse.de>
12137
12138         * config/i386/unix.h (ASM_OUTPUT_MI_THUNK): Don't capitalize
12139         register %rip.
12140
12141 2001-08-13  Kazu Hirata  <kazu@hxi.com>
12142
12143         * jump.c: Fix formatting.
12144
12145 2001-08-13  Kazu Hirata  <kazu@hxi.com>
12146
12147         * config/h8300/h8300.md (zero_extendqihi2): Correct the insn
12148         length.
12149
12150 2001-08-12  Geoffrey Keating  <geoffk@redhat.com>
12151
12152         * loop.c (check_dbra_loop): Use condjump_label to compute
12153         jump_label.
12154
12155         * rtl.h: Move prototypes of rtx_alloc and rtvec_alloc around
12156         to better document the files they're in.
12157
12158 2001-08-12  Zack Weinberg  <zackw@panix.com>
12159
12160         * recog.h (struct insn_operand_data): Shrink 'mode' field
12161         to 16 bits.
12162
12163 2001-08-12  Kazu Hirata  <kazu@hxi.com>
12164
12165         * gcc.c: Fix comment formatting.
12166         * gccspec.c: Likewise.
12167         * gcov.c: Likewise.
12168         * gcse.c: Likewise.
12169         * genemit.c: Likewise.
12170         * gengenrtl.c: Likewise.
12171         * genrecog.c: Likewise.
12172         * gensupport.c: Likewise.
12173         * ggc-page.c: Likewise.
12174         * global.c: Likewise.
12175         * graph.c: Likewise.
12176         * ifcvt.c: Likewise.
12177         * integrate.c: Likewise.
12178         * lcm.c: Likewise.
12179         * libgcc2.c: Likewise.
12180         * loop.c: Likewise.
12181         * mbchar.c: Likewise.
12182         * optabs.c: Likewise.
12183         * predict.c: Likewise.
12184         * prefix.c: Likewise.
12185         * profile.c: Likewise.
12186         * protoize.c: Likewise.
12187         * real.c: Likewise.
12188         * recog.c: Likewise.
12189         * regclass.c: Likewise.
12190         * regmove.c: Likewise.
12191         * reg-stack.c: Likewise.
12192         * reload1.c: Likewise.
12193         * resource.c: Likewise.
12194         * rtlanal.c: Likewise.
12195         * rtl.c: Likewise.
12196
12197 2001-08-12  Kazu Hirata  <kazu@hxi.com>
12198
12199         * doc/tm.texi (ENCODE_SECTION_INFO): Add documentation on how
12200         a tree representing a constant is passed to the macro.
12201
12202 2001-08-12  Richard Henderson  <rth@redhat.com>
12203
12204         * config/rs6000/rs6000.c (rs6000_elf_asm_out_constructor): New.
12205         (rs6000_elf_asm_out_destructor): New.
12206         * config/rs6000/sysv4.h (CTORS_SECTION_ASM_OP): Remove.
12207         (DTORS_SECTION_ASM_OP): Remove.
12208         (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): New.
12209         (ASM_OUTPUT_INT): Don't hack TARGET_RELOCATABLE for constructors.
12210
12211 2001-08-12  David Edelsohn  <edelsohn@gnu.org>
12212
12213         Revert:
12214         2001-08-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
12215         * gcc.c (set_collect_gcc_options): New function, split out from
12216         main.
12217         Ignore elided switches.
12218         (do_spec_1): Invoke before executing command.
12219         (set_input): Export.
12220         Move declaration ...
12221         * gcc.h (set_input): ... here.
12222         * config/alpha/osf.h (ASM_FINAL_SPEC): Use %U.s to refer to input
12223         file.
12224
12225 2001-08-12  Richard Henderson  <rth@redhat.com>
12226
12227         * config/rs6000/rs6000.c (rs6000_elf_section_type_flags): Fix
12228         thinko wrt TARGET_RELOCATABLE.
12229
12230 2001-08-12  Neil Booth  <neil@daikokuya.demon.co.uk>
12231
12232         * fix-header.c (cb_file_change): Update prototype.
12233
12234 2001-08-11  Zack Weinberg  <zackw@panix.com>
12235
12236         * toplev.c (set_float_handler): Make static.
12237         * toplev.h: Don't prototype set_float_handler.
12238
12239         * simplify-rtx.c: Don't include setjmp.h.
12240         (simplify_unary_real, simplify_binary_real, simplify_binary_is2orm1):
12241         New functions.
12242         (simplify_unary_operation, simplify_binary_operation): Use them,
12243         via do_float_handler.
12244
12245         * fold-const.c: Don't include setjmp.h.
12246         (exact_real_inverse_1): New function.
12247         (exact_real_inverse): Use it, via do_float_handler.
12248
12249         * varasm.c: Don't include setjmp.h.
12250         (assemble_real_1): New function.
12251         (assemble_real): Use it, via do_float_handler.
12252         Call internal_error if we get a trap here.
12253
12254         * c-parse.in, cse.c, cselib.c, config/i386/i386.c,
12255         config/pj/pj.c, config/s390/s390.c: Don't include setjmp.h.
12256
12257 2001-08-11  Zack Weinberg  <zackw@panix.com>
12258
12259         * defaults.h: Define PREFERRED_STACK_BOUNDARY to
12260         STACK_BOUNDARY if not already defined.
12261
12262         * calls.c, function.c, reload1.c, explow.c: Don't default
12263         PREFERRED_STACK_BOUNDARY.  Remove all #if/#ifdef on
12264         PREFERRRED_STACK_BOUNDARY and/or STACK_BOUNDARY.
12265
12266         * explow.c (allocate_dynamic_stack_space): Change unsafe #if
12267         to run-time test.
12268
12269         * doc/tm.texi: Document that STACK_BOUNDARY is required;
12270         clarify difference between it and PREFERRED_STACK_BOUNDARY.
12271
12272 2001-08-11  Neil Booth  <neil@daikokuya.demon.co.uk>
12273
12274         * cppmacro.c (enter_macro_context): Push macro expansions even
12275         if empty.
12276
12277 2001-08-11  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
12278
12279         * config/rs6000/rs6000.c: Include integrate.h to silence warning.
12280         (rs6000_elf_section_type_flags): Actually return a value.
12281
12282 2001-08-11  Ulrich Weigand  <uweigand@de.ibm.com>
12283
12284         * s390.c, s390.h, s390.md, s390-protos.h, linux.h, t-linux:
12285         Clean up code: add missing comments and prototypes, fix warnings,
12286         remove obsolete code, fix spacing to conform to coding style.
12287
12288 2001-08-11  Ulrich Weigand  <uweigand@de.ibm.com>
12289
12290         * config/s390/s390.c (targetm): Define TARGET_ASM_OPEN_PAREN
12291         and TARGET_ASM_CLOSE_PAREN.
12292         (regclass_map): CC register belongs to class NO_REGS.
12293         (legitimize_pic_address): Don't generate unnecessary moves
12294         (to avoid confusing loop optimization).
12295         (check_and_change_labels): Replace jump_long by indirect_jump.
12296         (s390_final_chunkify): Don't start a new literal pool on section
12297         switch in 64-bit code.
12298         (s390_va_start, s390_va_arg): Fixed incorrect sizes for 64-bit.
12299
12300         * config/s390/s390.h (TARGET_SWITCHES): Renamed debug_arg to debug.
12301         (MAX_BITS_PER_WORD, MAX_LONG_TYPE_SIZE): Set to 64 (for 64-bit).
12302         (HARD_REGNO_MODE_OK, RETURN_IN_MEMORY): Support complex integer
12303         modes correctly.
12304         (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS): Remove CC_REGS.
12305         (EH_RETURN_HANDLER_RTX): Fixed incorrect offset for 64-bit.
12306         (CONST_COSTS): Fixed incorrect costs.
12307
12308         * config/s390/s390.md (fixuns_trunc[sd]f[sd]i2, udivsi3, umodsi3):
12309         Use emit_jump instead of emit_jump_insn (gen_jump).
12310         (divsi3, modsi3): Clobber low word of divmoddisi3 before shifting
12311         (to avoid confusing flow analysis).
12312         (tablejump, tablejump1, tablejump2): Removed.  Replaced by casesi.
12313         (casesi, casesi_jump): New.
12314         (jump_long): Removed.  Functionality merged into indirect_jump.
12315         (indirect_jump): Accept address_operand, not just register_operand.
12316         (cjump_long, icjump_long): Use same logic as indirect_jump.
12317         (builtin_setjmp_setup, builtin_setjmp_receiver, builtin_longjmp):
12318         Fixed broken setjmp/longjmp handling.
12319         (do_builtin_setjmp_setup): Removed.
12320
12321         * config/s390/linux.h (ASM_OUTPUT_DOUBLE_INT): Work around
12322         broken GNU as versions that don't accept .quad with large
12323         negative values.  Use hexadecimal output instead.
12324         (ASM_OUTPUT_ADDR_DIFF_ELT): Adapt to new casesi insn.
12325         (ASM_OPEN_PAREN, ASM_CLOSE_PAREN, FUNCTION_PROLOGUE,
12326         FUNCTION_EPILOGUE): Removed.  Now in targetm.
12327
12328         * config/s390/linux64.h (CALL_USED_REGISTERS): Add CC register.
12329
12330         * config/s390/fixdfdi.h: Add missing copyright statement.
12331         Fix type conflicts on 64-bit.  Add missing SFmode routines.
12332
12333         * s390.c, s390.h, s390.md, linux.h, linux64.h: Fixed incorrect
12334         email address.
12335
12336 2001-08-11  Richard Henderson  <rth@redhat.com>
12337
12338         * rtl.h (REG_EH_RETHROW): Remove.
12339         * rtl.c (reg_note_name): Update.
12340         * combine.c (distribute_notes): Don't check for it.
12341
12342 2001-08-11  Richard Henderson  <rth@redhat.com>
12343
12344         * combine.c (distribute_notes): Place REG_SETJMP.
12345
12346 2001-08-11  Richard Henderson  <rth@redhat.com>
12347
12348         * doc/extend.texi (Arrays and pointers implementation): Discourage
12349         relying on sign-extension of pointers.
12350
12351 2001-08-11  H.J. Lu <hjl@gnu.org>
12352
12353         * config/mips/linux.h (EXTRA_SECTIONS): Remove in_ctors and
12354         in_dtors.
12355         (EXTRA_SECTION_FUNCTIONS): Remove DTORS_SECTION_ASM_OP and
12356         RDATA_SECTION_ASM_OP.
12357
12358 2001-08-11  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
12359
12360         * doc/install.texi (Specific, c4x): Fix cross-reference to the
12361         main manual to work both for info and HTML versions.
12362
12363 2001-08-11  Neil Booth  <neil@daikokuya.demon.co.uk>
12364             Matt Kraai <kraai@alumni.carnegiemellon.edu>
12365
12366         * cpphash.c (_cpp_destroy_hashtable): Use ht_destroy.
12367         * cpphash.h (CPP_IN_SYSTEM_HEADER): Fix.
12368         (struct cpp_pool): New member first.
12369         * cppinit.c (append_include_chain): Plug memory leaks.
12370         * cpplib.c (cpp_register_pragma, cpp_register_pragma_space):
12371         Allocate pragma structures from the (aligned) macro pool to
12372         avoid leaking memory.
12373         * cpplex.c (_cpp_init_pool, _cpp_free_pool): Use pool->first
12374         so we don't leak memory.
12375         * hashtable.c (ht_destroy): New.
12376         * hashtable.h (ht_destroy): New.
12377
12378 2001-08-11  Neil Booth  <neil@daikokuya.demon.co.uk>
12379             Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
12380
12381         * c-lex.c (map): Make const.
12382         (cb_file_change): Update for callback passing a line map.
12383         Don't assume we have a previous map.  Remove sanity check
12384         about popping too many files.
12385         * cpperror.c (print_location): Make map const.
12386         * cppfiles.c (stack_include_file): Update; line maps now hold sysp.
12387         (cpp_make_system_header): Similarly.
12388         (search_from): Similarly.
12389         (_cpp_execute_include): Don't remember where we came from.
12390         * cpphash.h (struct cpp_buffer): Remove return_to_line, sysp.
12391         (struct cpp_reader): Make map const.
12392         (CPP_IN_SYSTEM_HEADER, _cpp_do_file_change): Update.
12393         * cpplib.c (do_line): Update; line maps now hold sysp.
12394         (cpp_push_buffer): Similarly.
12395         (_cpp_do_file_change): Similarly; callback with map instead.
12396         (cpp_get_line_maps): Constify return value.
12397         (_cpp_pop_buffer): Update.
12398         * cpplib.h (struct cpp_file_change): Remove.
12399         (struct cpp_callbacks): Update.
12400         (cpp_get_line_maps): Constify return value.
12401         * cppmacro.c (_cpp_create_definition): Update.
12402         * cppmain.c (struct printer): Constify map.
12403         (maybe_print_line): Similarly.
12404         (print_line): Similarly.  Deduce flags 1 and 2 here.
12405         (cb_file_change): Update.
12406         * line-map.c (free_line_maps): Warn regardless.
12407         (add_line_map): Return pointer to const.  When passed NULL to_file
12408         with LC_LEAVE, use the obvious values for the return point so the
12409         caller doesn't have to figure them out.
12410         (lookup_line): Return pointer to const.
12411         (print_containing_files): Take pointer to const.
12412         * line-map.h (struct line_map): New members reason, sysp.
12413         (add_line_map): Return pointer to const.
12414         (lookup_line): Similarly.
12415         (print_containing_files): Take pointer to const.
12416
12417 2001-08-10  Roman Zippel  <zippel@linux-m68k.org>
12418             Richard Henderson  <rth@redhat.com>
12419
12420         * regmove.c (regmove_optimize): Avoid setting a register twice in
12421         a parallel set.
12422
12423 2001-08-10  Richard Henderson  <rth@redhat.com>
12424
12425         * doc/extend.texi (Arrays and pointers implementation): Document
12426         behavior of pointer/integer conversion.
12427
12428 2001-08-10  Ulrich Weigand  <uweigand@de.ibm.com>
12429
12430         * glimits.h (__LONG_MAX__): Add s390x as 64-bit architecture.
12431
12432 2001-08-10  Richard Henderson  <rth@redhat.com>
12433
12434         * doc/extend.texi (C Implementation): New chapter.
12435         * doc/gcc.texi (Top): Link it in.
12436
12437 2001-08-10  Andrew Cagney  <ac131313@redhat.com>
12438
12439         * doc/install.texi (Specific): Fix CVS merge botch.
12440
12441 2001-08-10  Richard Henderson  <rth@redhat.com>
12442
12443         * config/m68k/m68k.c (m68k_svr3_asm_out_constructor): Protect with
12444         ifdef CTOR_LIST_BEGIN instead of INIT_SECTION_ASM_OP.
12445
12446 2001-08-10  Zack Weinberg  <zackw@stanford.edu>
12447
12448         * calls.c, function.c: Always define PREFERRED_STACK_BOUNDARY
12449         if not already defined.  Remove all #ifdefs on STACK_BOUNDARY;
12450         this macro is now required.
12451
12452         * cselib.c (cselib_process_insn), flow.c (propagate_block),
12453         loop.c (find_and_verify_loops), reload.c (reload): Check
12454         for rtx code of CALL_INSN, not CALL, when deciding if we
12455         need to check for REG_SETJMP note.
12456
12457         * gcse.c (compute_hash_table, compute_store_table): Update
12458         the #ifdef NON_SAVING_SETJMP code to the new REG_SETJMP
12459         logic.
12460
12461         * config/avr/avr.c: Fix typo.
12462         * config/convex/convex.c (expand_movstr): Use adjust_address.
12463         * config/dsp16xx/dsp16xx.c: Define dsp16xx_compare_gen
12464         variable.
12465         * config/dsp16xx/dsp16xx.md: Correct calls to replace_equiv_address.
12466         * config/elxsi/elxsi.c: Include tree.h, expr.h, regs.h, and flags.h.
12467         Fix typo.
12468         * config/elxsi/elxsi.h: Don't define Rmode (typo for Pmode?)
12469         Do define STACK_BOUNDARY.
12470         * config/i370/i370.c: Include expr.h.
12471         * config/i860/sysv3.h, config/i860/sysv4.h, config/m32r/m32r.h,
12472         config/pa/som.h, config/v850/v850.h: Take in_ctors and
12473         in_dtors out of EXTRA_SECTIONS; take CTORS_SECTION_FUNCTION
12474         and DTORS_SECTION_FUNCTION out of EXTRA_SECTION_FUNCTIONS.
12475         * config/m88k/m88k.c: Include c-tree.h after expr.h.
12476         * config/pdp11/pdp11.c: Include expr.h and toplev.h.
12477         * config/romp/romp.c: Include expr.h after tree.h.
12478         Include toplev.h.
12479         (output_fpop): Use xmalloc, not oballoc.
12480         * config/we32k/we32k.c: Include expr.h.
12481
12482 2001-08-10  Kazu Hirata  <kazu@hxi.com>
12483
12484         * config/h8300/h8300.h: Fix formatting.
12485
12486 2001-08-08  Jason Merrill  <jason_merrill@redhat.com>
12487
12488         * c-common.h (RETURN_NULLIFIED_P): Lose.
12489         * c-semantics.c (genrtl_return_stmt): Don't check it.
12490
12491 2001-08-10  Richard Sandiford  <rsandifo@redhat.com>
12492
12493         * config/mips/mips.c (mips_add_large_offset_to_sp): New function.
12494         (mips_annotate_frame_insn): New function.
12495         (mips_emit_frame_related_store): New function.
12496         (save_restore_insns): Don't mark instructions that set up the base
12497         registers as frame-related.  Add REG_FRAME_RELATED_EXPR notes to
12498         the store instructions instead.
12499         (mips_expand_prologue): If the stack size is moved into a temporary
12500         register, do not mark that move as frame-related.  Add a
12501         REG_FRAME_RELATED_EXPR note to the stack adjustment instruction.
12502
12503 2001-08-10  Richard Sandiford  <rsandifo@redhat.com>
12504
12505         * config/mips/mips.c (save_restore_insns): Don't mark the RA's
12506         stack slot as unchanging if current_function_calls_eh_return.
12507
12508 2001-08-10  Richard Sandiford  <rsandifo@redhat.com>
12509
12510         * config/mips/mips.md (reload_incc): Use HARD_REGNO_NREGS to
12511         access the second half of the TFmode scratch operand.
12512
12513 2001-08-10  Anthony Green  <green@redhat.com>
12514
12515         * java/class.c (emit_register_classes): Conditionalize code on
12516         JCR_SECTION_NAME.
12517
12518 2001-08-10  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
12519
12520         * doc/install.texi (Specific, avr): Fix cross-reference to the
12521         main manual to work both for info and HTML versions.
12522
12523 2001-08-09  John David Anglin  <dave@hiauly1.hia.nrc.ca>
12524
12525         * stmt.c (expand_null_return_1): Remove code to generate simple returns
12526         and "use_goto" argument.
12527         (expand_null_return, expand_value_return): Update all callers.
12528         * function.c (expand_function_end): Remove code to generate simple
12529         return.
12530         * config/vax/vax.md (epilogue): New expander for function return.
12531         * doc/md.texi (epilogue): Remove "if defined".
12532
12533 2001-08-09  Zack Weinberg  <zackw@stanford.edu>
12534
12535         * Makefile.in: Partially revert my previous change:
12536         put -DGENERATOR_FILE back in HOST_CFLAGS, take it out
12537         of the hashtab.o and safe-ctype.o rules.
12538
12539 2001-08-09  Richard Henderson  <rth@redhat.com>
12540
12541         * Makefile.in (MAYBE_USE_COLLECT2): Remove; purge all uses.
12542         (USE_COLLECT2): Remove duplicate definition.
12543         * config.gcc (a29k-udi, a29k-wrs-vxworks) [tm_file]: Remove a29k/udi.h.
12544         (use_collect2): Remove dead code.
12545         * configure.in (use_collect2): Remove will_use_collect2 and
12546         maybe_use_collect2; add USE_COLLECT2 to host_xm_defines and xm_defines.
12547         * configure: Rebuild.
12548
12549         * target.h (targetm.asm_out.constructor): New.
12550         (targetm.asm_out.destructor, targetm.have_ctors_dtors): New.
12551         * target-def.h (TARGET_ASM_CONSTRUCTOR): New.
12552         (TARGET_ASM_DESTRUCTOR, TARGET_HAVE_CTORS_DTORS): New.
12553         * varasm.c (in_ctors, in_dtors): New.
12554         (assemble_constructor, assemble_destructor): Remove.
12555         (default_stabs_asm_out_destructor): New.
12556         (default_named_section_asm_out_destructor): New.
12557         (dtors_section, default_dtor_section_asm_out_destructor): New.
12558         (default_stabs_asm_out_constructor): New.
12559         (default_named_section_asm_out_constructor): New.
12560         (ctors_section, default_ctor_section_asm_out_constructor): New.
12561         * output.h: Update declarations.
12562         * c-decl.c (c_expand_body): Use target hooks instead of
12563         assemble_constructor and assemble_destructor.
12564         * profile.c (output_func_start_profiler): Likewise.
12565         * objc/objc-act.c (finish_objc): Likewise.
12566         (build_module_descriptor): Tidy.  Set TREE_PUBLIC properly
12567         for the constructor.
12568         * objc/Make-lang.in (objc-act.o): Depend on TARGET_H.
12569
12570         * crtstuff.c (CTORS_SECTION_ASM_OP): Don't define.
12571         (DTORS_SECTION_ASM_OP): Likewise.
12572         (__CTOR_LIST__): Use attribute section when possible.
12573         (__DTOR_LIST__, __CTOR_END__, __DTOR_END__): Likewise.
12574
12575         * defaults.h (EH_FRAME_SECTION_NAME): Don't depend on
12576         ASM_OUTPUT_CONSTRUCTOR.
12577
12578         * config/darwin.c (machopic_asm_out_constructor): New.
12579         (machopic_asm_out_destructor): New.
12580         * config/darwin-protos.h: Update declarations.
12581         * config/darwin.h (ASM_OUTPUT_CONSTRUCTOR): Remove.
12582         (ASM_OUTPUT_DESTRUCTOR): Remove.
12583         (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): New.
12584         * config/nextstep.c (nextstep_asm_out_constructor): New.
12585         (nextstep_asm_out_destructor): New.
12586         * config/nextstep.h (ASM_OUTPUT_CONSTRUCTOR): Remove.
12587         (ASM_OUTPUT_DESTRUCTOR): Remove.
12588         (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): New.
12589         * config/nextstep21.h: Undef TARGET_ASM_*STRUCTOR instead of
12590         ASM_OUTPUT_*STRUCTOR.
12591         * config/i386/aix386ng.h: Likewise.
12592
12593         * config/elfos.h (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Remove.
12594         (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): No ctors/dtors.
12595         (CTORS_SECTION_FUNCTION, DTORS_SECTION_FUNCTION): Remove.
12596         (ASM_OUTPUT_CONSTRUCTOR, ASM_OUTPUT_DESTRUCTOR): Remove.
12597         * config/lynx.h: Likewise.
12598         * config/netware.h: Likewise.
12599         * config/psos.h: Likewise.
12600         * config/alpha/alpha-interix.h: Likewise.
12601         * config/alpha/elf.h: Likewise.
12602         * config/arc/arc.h: Likewise.
12603         * config/arm/aof.h: Likewise.
12604         * config/arm/coff.h: Likewise.
12605         * config/arm/elf.h: Likewise.
12606         * config/c4x/c4x.h: Likewise.
12607         * config/h8300/h8300.h: Likewise.
12608         * config/i386/cygwin.h: Likewise.
12609         * config/i386/djgpp.h: Likewise.
12610         * config/i386/i386-coff.h: Likewise.
12611         * config/i386/i386-interix.h: Likewise.
12612         * config/i386/sco5.h: Likewise.
12613         * config/i386/vsta.h: Likewise.
12614         * config/i386/win32.h: Likewise.
12615         * config/i960/i960-coff.h: Likewise.
12616         * config/ia64/sysv4.h: Likewise.
12617         * config/m68hc11/m68hc11.h: Likewise.
12618         * config/m68k/coff.h: Likewise.
12619         * config/m68k/mot3300.h: Likewise.
12620         * config/m88k/m88k.h: Likewise.
12621         * config/mcore/mcore-pe.h: Likewise.
12622         * config/mcore/mcore.h: Likewise.
12623         * config/mips/elf.h: Likewise.
12624         * config/mips/elf64.h: Likewise.
12625         * config/mips/iris6.h: Likewise.
12626         * config/pa/pa64-hpux.h: Likewise.
12627         * config/rs6000/sysv4.h: Likewise.
12628         * config/sh/sh.h: Likewise.
12629         * config/sparc/litecoff.h: Likewise.
12630
12631         * config/svr3.h (CTORS_SECTION_ASM_OP): Remove.
12632         (CTORS_SECTION_FUNCTION, DTORS_SECTION_FUNCTION): Remove.
12633         (ASM_OUTPUT_CONSTRUCTOR, ASM_OUTPUT_DESTRUCTOR): Remove.
12634         * config/1750a/1750a.h (ASM_OUTPUT_CONSTRUCTOR): Remove.
12635         (ASM_OUTPUT_DESTRUCTOR): Remove.
12636         * config/a29k/a29k.c: Move include of tree.h.
12637         * config/a29k/udi.h: Delete file.
12638         * config/alpha/alpha.c (vms_asm_out_constructor): New.
12639         (vms_asm_out_destructor): New.
12640         * config/alpha/vms.h (EXTRA_SECTIONS): No ctors/dtors.
12641         (EXTRA_SECTION_FUNCTIONS): Likewise.
12642         (ASM_OUTPUT_CONSTRUCTOR, ASM_OUTPUT_DESTRUCTOR): Remove.
12643         (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): New.
12644         * config/c4x/c4x.c: Move include of tree.h.
12645         * config/clipper/clipper.c (clix_asm_out_constructor): New.
12646         (clix_asm_out_destructor): New.
12647         * config/clipper/clix.h (ASM_OUTPUT_CONSTRUCTOR): Remove.
12648         (ASM_OUTPUT_DESTRUCTOR): Remove.
12649         (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): New.
12650         * config/i386/aix386.h (ASM_OUTPUT_CONSTRUCTOR): Remove.
12651         (TARGET_ASM_CONSTRUCTOR): New.
12652         * config/i386/i386.c (ix86_svr3_asm_out_constructor): New.
12653         (sco_asm_out_constructor): New.
12654         * config/i386/sco5.h (TARGET_ASM_CONSTRUCTOR): New.
12655         * config/i386/svr3gas.h: Remove stack grows up code.
12656         Remove code duplicated from i386/sysv3.h.
12657         (TARGET_ASM_CONSTRUCTOR): New.
12658         (ASM_OUTPUT_CONSTRUCTOR, ASM_OUTPUT_DESTRUCTOR): Remove.
12659         (DTORS_SECTION_FUNCTION, CTORS_SECTION_FUNCTION): Remove.
12660         * config/i386/sysv3.h (ASM_OUTPUT_CONSTRUCTOR): Remove.
12661         (TARGET_ASM_CONSTRUCTOR): New.
12662         * config/m68hc11/m68hc11.c (m68hc11_asm_out_constructor): New.
12663         (m68hc11_asm_out_destructor): New.
12664         * config/m68hc11/m68hc11.h (TARGET_ASM_CONSTRUCTOR): New.
12665         (TARGET_ASM_DESTRUCTOR): New.
12666         * config/m68k/auxgas.h: Don't undef ASM_OUTPUT_*STRUCTOR.
12667         * config/m68k/dpx2.h: Properly undef all the bits inherited from
12668         config/svr3.h pertaining to section manipulation.
12669         * config/m68k/dpx2g.h: Remove #if 0 code.
12670         * config/m68k/m68k.c (m68k_svr3_asm_out_constructor): New.
12671         * config/m68k/tower-as.h (ASM_OUTPUT_SOURCE_LINE): Fix typo.
12672         (ASM_OUTPUT_CONSTRUCTOR): Remove.
12673         (TARGET_ASM_CONSTRUCTOR): New.
12674         * config/m88k/m88k.c (m88k_layout_frame): Don't use assign_stack_local.
12675         (m88k_svr3_asm_out_constructor): New.
12676         (m88k_svr3_asm_out_destructor): New.
12677         * config/m88k/sysv3.h (ASM_OUTPUT_CONSTRUCTOR): Remove.
12678         (ASM_OUTPUT_DESTRUCTOR): Remove.
12679         (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): New.
12680         * config/mips/mips.h: Remove #if 0 ASM_OUTPUT_*STRUCTOR code.
12681         * config/rs6000/aix.h: Likewise.
12682         * config/mips/rtems64.h: Don't undef removed constructor related bits.
12683         * config/mips/vxworks.h: Likewise.
12684         * config/rs6000/lynx.h: Likewise.
12685         * config/sh/elf.h: Likewise.
12686         * config/rs6000/sysv4.h (CTORS_SECTION_ASM_OP): New.
12687         (DTORS_SECTION_ASM_OP): New.
12688         * config/sparc/linux64.h (ASM_OUTPUT_CONSTRUCTOR): Remove.
12689         (ASM_OUTPUT_DESTRUCTOR): Remove.
12690         * config/sparc/sol2-sld-64.h: Likewise.
12691         * config/vax/vax.c (vms_asm_out_constructor): New.
12692         (vms_asm_out_destructor): New.
12693         * config/vax/vms.h (ASM_OUTPUT_CONSTRUCTOR): Remove.
12694         (ASM_OUTPUT_DESTRUCTOR): Remove.
12695         (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): New.
12696
12697         * doc/tm.texi (@node Initialization): Update.
12698
12699 2001-08-09  Richard Henderson  <rth@redhat.com>
12700
12701         * config/alpha/crtbegin.asm (__JCR_LIST__): New.
12702         (__do_global_dtors_aux): Use gp-relative static data to avoid
12703         one dynamic relocation.
12704         (__do_frame_setup): Register Java classes.
12705         * config/alpha/crtend.asm (__JCR_END__): New.
12706
12707 2001-08-09  Zack Weinberg  <zackw@stanford.edu>
12708
12709         * Makefile.in (HOST_CFLAGS): Take out -DGENERATOR_FILE.
12710         (CONFIG_H, TCONFIG_H, TM_P_H): Update.
12711         (GEN, STAGESTUFF): Add new files.
12712         (insn-constants.h, s-constants, tm-preds.h, s-preds,
12713         genconstants, genpreds, genconstants.o, genpreds.o): New rules.
12714         (hashtab.o, safe-ctype.o): Add -DGENERATOR_FILE.
12715         * mkconfig.sh: Include tm-preds.h in tm_p.h; insn-constants.h
12716         as well as insn-codes.h and insn-flags.h in config.h; and no
12717         extra headers in tconfig.h and hconfig.h.
12718
12719         * gencodes.c: Eliminate code to generate predicate declarations
12720         or #defines for md-file constants.
12721         * genconstants.c, genpreds.c: New files.
12722
12723         * i386.md: Re-order guard expressions such that TARGET_64BIT
12724         comes first, when this permits better optimization.  Add
12725         TARGET_64BIT to more x86-64 patterns.  Add comment explaining
12726         why this is desirable.
12727
12728 2001-08-09  Jakub Jelinek  <jakub@redhat.com>
12729
12730         * config/ia64/fde-glibc.c: Require glibc 2.2.4+ headers.
12731         (find_fde_for_dso): Remove.
12732         (_Unwind_IteratePhdrCallback): New.
12733         (_Unwind_FindTableEntry): Use dl_iterate_phdr.
12734         * config/ia64/crtbegin.asm (__ia64_app_header): Remove.
12735
12736 Thu Aug  9 11:30:20 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12737
12738         * expr.c (emit_single_push_insn): Only exists ifdef PUSH_ROUNDING.
12739         (move_by_pieces_1): If would call it, abort if no PUSH_ROUNDING.
12740
12741 2001-08-09  Graham Stott  <grahams@redhat.com>
12742
12743         * sched-vis.c (MAX_VISUAL_NO_UNIT): Define.
12744         (vis_no_unit): Use it.
12745         (visualize_no_unit): Add the insn only if room exists.
12746
12747 2001-08-09  Graham Stott  <grahams@redhat.com>
12748
12749         * predict.c (estimate_probability): Replace magic numbers with
12750         appropriate enumeration.
12751
12752 2001-08-09  Graham Stott  <grahams@redhat.com>
12753
12754         * cppexp.c (EXTRACT_PRIO): Uppercase and parenthsize macro
12755         parameter.
12756         (EXTRACT_FLAGS): Likewise.
12757
12758 2001-08-09  Aldy Hernandez  <aldyh@redhat.com>
12759
12760         * config/mips/mips.c    (mips_legitimate_address_p): Check for
12761         CONST_INT in last patch.
12762
12763 2001-08-08  Anthony Green  <green@redhat.com>
12764
12765         * java/class.c (emit_register_classes): Use assemble_jcr if
12766         possible.  Keep the original mechanism as a fallback.
12767         * defaults.h (JCR_SECTION_NAME): Define if we have named section
12768         and weak symbol support.
12769         * crtstuff.c (__JCR_LIST__): Define.
12770         (__JCR_END__): Define.
12771         (_Jv_RegiserClasses): Define weak symbol if possible.
12772         (__do_global_ctors_aux): Register classes for ELF targets with
12773         weak symbol support.
12774
12775 2001-08-08  Kazu Hirata  <kazu@hxi.com>
12776
12777         * dbxout.c: Fix comment formatting.
12778         * dependence.c: Likewise.
12779         * df.c: Likewise.
12780         * diagnostic.c: Likewise.
12781         * dominance.c: Likewise.
12782         * doprint.c: Likewise.
12783         * dwarf2out.c: Likewise.
12784         * dwarfout.c: Likewise.
12785         * emit-rtl.c: Likewise.
12786         * except.c: Likewise.
12787         * explow.c: Likewise.
12788         * expmed.c: Likewise.
12789         * expr.c: Likewise.
12790         * flow.c: Likewise.
12791         * fold-const.c: Likewise.
12792         * function.c: Likewise.
12793
12794 2001-08-08  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
12795
12796         * global.c (retry_global_alloc): Avoid shadowing allocno.
12797
12798 2001-08-08  Mark Mitchell  <mark@codesourcery.com>
12799
12800         * except.c (remove_fixup_regions): Fix typo.
12801
12802 2001-08-08  Jan van Male <jan.vanmale@fenk.wau.nl>
12803
12804         * emit-rtl.c (adjust_address, adjust_address_nv): Cast offset to
12805         unsigned HOST_WIDE_INT to avoid warning.
12806         * final.c (final): Cast INSN_UID to unsigned to avoid warning.
12807         * flow.c (set_block_for_new_insns): Likewise.
12808
12809 Wed Aug  8 21:08:14 CEST 2001  Jan Hubicka  <jh@suse.cz>
12810
12811         * sibcall.c (return_value_pseudo): New static variable.
12812         (skip_copy_to_return_value): Handle return_value_pseudo.
12813         (call_ends_block_p): Ensure that return_value_pseudo is set.
12814         (optimize_sibling_and_tail_recursive_call): Discover the
12815         load of pseudo return value in alternate exit block.
12816
12817 Wed Aug  8 21:06:43 CEST 2001  Jan Hubicka  <jh@suse.cz>
12818
12819         * calls.c (ECF_ALWAYS_RETURN): New constant.
12820         (emit_call_1): Add REG_ALWAYS_RETURN note if needed.
12821         (expand_call): Use LCF_ALWAYS_RETURN for __bb_fork_func.
12822         (emit_library_call_value_1): Handle LCT_ALWAYS_RETRUN.
12823         * flow.c (need_fake_edge_p): Handle REG_ALWAYS_RETURN.
12824         * rtl.c (reg_note_name): New name.
12825         * rtl.h (enum reg_note): Add REG_ALWAYS_RETURN.
12826
12827 2001-08-07  Aldy Hernandez  <aldyh@redhat.com>
12828
12829         * config/mips/mips.c (mips_legitimate_address_p): Limit "la" addresses.
12830
12831 2001-08-08  Jason Merrill  <jason_merrill@redhat.com>
12832
12833         * alias.c (get_alias_set): Return a previously calculated
12834         alias set for a VAR_DECL.
12835         * function.c (gen_mem_addressof): Calculate the alias set before
12836         touching the RTL.
12837
12838 Wed Aug  8 18:44:37 CEST 2001  Jan Hubicka  <jh@suse.cz>
12839
12840         * predict.def: Set hitrates according our experimental run.
12841
12842 Wed Aug  8 18:01:58 CEST 2001  Jan Hubicka  <jh@suse.cz>
12843
12844         * i386.h (HARD_REGNO_RENAME_OK): New macro.
12845
12846 2001-08-08  H.J. Lu <hjl@gnu.org>
12847
12848         * config/mips/mips.c (mips_unique_section): New. Copied from
12849         config/mips/elf.h.
12850
12851         * config/mips/mips-protos.h (mips_unique_section): New
12852         prototype.
12853
12854         * config/mips/elf.h (UNIQUE_SECTION): Use mips_unique_section.
12855
12856         * config/mips/little.h: New. Generic little endian mips
12857         targets. Only mips*-*-linux* is converted to use it so far.
12858
12859         * config/mips/linux.h: Include "gofast.h" and "mips/mips.h".
12860         (WCHAR_TYPE): Defined
12861         (WCHAR_TYPE_SIZE): Likewise.
12862         (INIT_SUBTARGET_OPTABS): Likewise.
12863         (BSS_SECTION_ASM_OP): Likewise.
12864         (SBSS_SECTION_ASM_OP): Likewise.
12865         (ASM_OUTPUT_ALIGNED_BSS): Likewise.
12866         (ASM_DECLARE_OBJECT_NAME): Likewise.
12867         (UNIQUE_SECTION): Likewise.
12868         (EXTRA_SECTIONS): Likewise.
12869         (ASM_OUTPUT_CONSTRUCTOR): Likewise.
12870         (ASM_OUTPUT_DESTRUCTOR): Likewise.
12871         (ASM_OUTPUT_DEF): Likewise.
12872         (HANDLE_SYSV_PRAGMA): Removed.
12873         (NO_IMPLICIT_EXTERN_C): Likewise.
12874         (TARGET_MEM_FUNCTIONS): Likewise.
12875         (STARTFILE_SPEC): Likewise.
12876         (ENDFILE_SPEC): Likewise.
12877         (LIB_SPEC): Likewise.
12878         (INVOKE__main): Likewise.
12879         (CTOR_LIST_BEGIN): Likewise.
12880         (CTOR_LIST_END): Likewise.
12881         (DTOR_LIST_BEGIN): Likewise.
12882         (DTOR_LIST_END): Likewise.
12883         (SET_ASM_OP): Likewise.
12884         (ASM_OUTPUT_SOURCE_LINE): Likewise.
12885         (ASM_OUTPUT_DEF): Likewise.
12886         (ASM_OUTPUT_IDENT): Likewise.
12887
12888         * config/mips/mips.h (ASM_SPEC): Undefine before define.
12889         (CPLUSPLUS_CPP_SPEC): Likewise.
12890         (ASM_APP_ON) Redefine only if not defined.
12891         (ASM_APP_OFF): Likewise.
12892         (ASM_OUTPUT_SOURCE_LINE): Likewise.
12893         (ASM_OUTPUT_IDENT): Likewise.
12894
12895         * config.gcc: Update tm_file for Linux/mips.
12896
12897 2001-08-08  Bernd Schmidt  <bernds@redhat.com>
12898
12899         * cselib.c (cselib_record_sets): If insn is predicated, turn
12900         sources into IF_THEN_ELSEs.
12901
12902         * config/ia64/ia64.md (cond_opsi2_internal, cond_opsi2_internal_b):
12903         Turn into define_insn_and_split.
12904
12905         * sched-deps.c: Include "cselib.h".
12906         (add_insn_mem_dependence, sched_analyze_1, sched_analyze_2):
12907         Use cselib to turn memory addresses into VALUEs.
12908         (sched_analyze): Call cselib_init/cselib_finish if necessary.
12909         * sched-int.h (struct sched_info): New member USE_CSELIB.
12910         * sched-ebb.c (ebb_sched_info): Initialize it.
12911         * sched-rgn.c (rgn_sched_info): Likewise.
12912         * Makefile.in (sched-deps.o): Update dependencies.
12913
12914         * cselib.h (cselib_subst_to_values): Declare.
12915         * cselib.c (cselib_subst_to_values): No longer static.  Allow MEMs
12916         that have no value and autoincs to be handled by generating a new
12917         dummy value.
12918
12919 2001-08-08  Graham Stott  <grahams@redhat.com>
12920
12921         * final.c (shorten_branches): Update the INSN_ADDRESSES of insns
12922         within fixed length SEQUENCE.
12923
12924 2001-08-08  Graham Stott  <grahams@redhat.com>
12925
12926         * diagnostic.h (diagnostic_format_decoder): Parenthesize macro parameter.
12927         (diagnostic_prefixing_rule): Likewise.
12928         (diagnostic_line_cutoff): Likewise.
12929         (diagnostic_kind_count): Likewise.
12930
12931 2001-08-08  Graham Stott  <grahams@redhat.com>
12932
12933         * alias.c (find_base_decl): Delete redundent assignment.
12934
12935 2001-08-08  Graham Stott  <grahams@redhat.com>
12936
12937         * dependence.c (INDEX_LIMIT_CHECK): Uppercase macro parameter.
12938         (abs): Uppercase and paranthesize macro parameter.
12939         (MEM_DEPENDENCY): Add whitespace.
12940
12941 2001-08-08  Graham Stott  <grahams@redhat.com>
12942
12943         * config/mips/mips.c (mips_legitimate_address_p): Fix enable checking
12944         failure check for CONST_INT
12945
12946 2001-08-08  Graham Stott  <grahams@redhat.com>
12947
12948         * flow.c (back_edge_of_syntactic_loop_p): Add whitespace.
12949         (libcall_dead_p): Likewise.
12950
12951         (mark_used_regs): Constify fmt.
12952         (find_use_as_address): Likewise.
12953
12954 2001-08-08  Graham Stott  <grahams@redhat.com>
12955
12956         * c-typeck.c (RESTORE_SPELLING_DEPTH): Uppercase and parenthesize macro
12957          parameter.
12958
12959 2001-08-08  Graham Stott  <grahams@redhat.com>
12960
12961         * combine.c (combine_simplify_rtx): Update comment and
12962         remove erroneous test.
12963
12964 2001-08-07  Neil Booth  <neil@daikokuya.demon.co.uk>
12965
12966         * cppinit.c (cpp_finish): Pop the final buffer without comment.
12967         * cpplex.c (_cpp_lex_token): Don't pop the final buffer; and
12968         take care to avoid multiple no-newline at EOF warnings in that
12969         case.
12970
12971 Tue Aug  7 22:18:06 CEST 2001  Jan Hubicka  <jh@suse.cz>
12972
12973         * calls.c (expand_call): Do not emit INSN_SETJMP note.
12974         (emit_library_call_value_1): Likewise.
12975         (emit_call_1): Emit REG_SETJMP note.
12976         * cse.c (cse_end_of_basic_block): Use REG_SETJMP instead
12977         of INSN_SETJMP
12978         * cselib.c (cselib_process_insn): Likewise.
12979         * flow.c (propagate_block): Likewise.
12980         * loop.c (find_and_verify_loops): Likewise.
12981         * reload.c (find_equiv_regs): Likewise.
12982         * reload1.c (reload): Likewise.
12983         * resource.c (mark_referenced_resources,
12984         mark_set_resources): Likewise.
12985         * sched-deps (sched_analyze_insn, sched_analyze): Likewise.
12986         * final.c (final_scan_insn): Remove NOTE_INSN_SETJMP.
12987         * haifa-sched.c (unlink_other_notes): Likewise.
12988         (reemit_notes): Likewise.
12989         * sched-ebb.c (sched_ebb): Likewise.
12990         * sched-rgc.c (sched_region): Likewise.
12991         * rtl.c (note_insn_name): Likewise.
12992         (reg_note_name): Add REG_SETJMP
12993         * rtl.h (reg_note): Add REG_SETJMP.
12994         (insn_note): Remove NOTE_INSN_SETJMP.
12995
12996         * profile.c (branch_prob): Add fake edges for setjmp.
12997
12998 2001-08-07  Daniel Jacobowitz  <drow@mvista.com>
12999
13000         * config.gcc: Quote target_cpu_default2 correctly for
13001         powerpc*-*-* targets.
13002
13003 2001-08-07  Neil Booth  <neil@daikokuya.demon.co.uk>
13004
13005         * cpplib.h, line-map.h: Update comments.
13006         * cppmain.c (printer_init): Move inline.
13007         (maybe_print_line, print_line): Take a map pointer.
13008         (cb_ident, cb_define, cb_undef, cb_include, cb_def_pragma): Update.
13009         (cb_file_change): Don't use prior value of print.map.
13010
13011 2001-08-07  David Edelsohn  <edelsohn@gnu.org>
13012
13013         * doc/install.texi: Document fine-grained multilib configuration.
13014
13015 Tue Aug  7 16:52:54 CEST 2001  Jan Hubicka  <jh@suse.cz>
13016
13017         * rtlanal.c (find_first_parameter_load): Call note_stores
13018         only on the instructions.
13019
13020 Tue Aug  7 14:56:16 CEST 2001  Jan Hubicka  <jh@suse.cz>
13021
13022         * alias.c (nonlocal_mentioned_p):
13023         Rename CONST_CALL_P to CONST_OR_PURE_CALL_P
13024         * calls.c (emit_call_1): Likewise.
13025         * cse.c (cse_insn, invalidate_skipped_block): Likewise.
13026         * cselib.c (cselib_process_insn): Likewise.
13027         * df.c (df_insns_modify): Likewise.
13028         * flow.c (need_fake_edge_p): Likewise.
13029         (propagate_one_insn): Likewise.
13030         * haifa-sched.c (reemit_notes): Likewise.
13031         * integrate.c (copy_insn_list): Likewise.
13032         * jump.c (delete_prior_computation): Likewise.
13033         * local-alloc.c (validate_equiv_mem): Likewise.
13034         * loop.c (scan_loop): Likewise.
13035         * predict.c (estimate_probability): Likewise.
13036         * reload.c (reload): Likewise.
13037         * sched-deps (sched_analyze): Likewise.
13038         * rtl.h (CONST_CALL_P): rename to CONST_OR_PURE_CALL_P.
13039         * gcse.c (compute_hash_table): Likewise.
13040         (mark_call): Likewise.
13041         (store_killed_in_insn): Likewise.
13042
13043 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
13044
13045         * c-semantics.c (make_rtl_for_local_static): Use DECL_RTL_SET_P.
13046
13047 2001-08-06  Richard Henderson  <rth@redhat.com>
13048
13049         * varasm.c (assemble_gc_entry): Remove.
13050         * output.h: Likewise.
13051
13052 2001-08-06  Richard Henderson  <rth@redhat.com>
13053
13054         * varasm.c (assemble_constructor): Take a symbol_ref and a
13055         priority instead of a bare string.  Move priority handling
13056         here from cp/decl2.c.
13057         * output.h: Update decls.
13058
13059         * c-decl.c (c_expand_body): Update calls to assemble_constructor
13060         and assemble_destructor.
13061         * profile.c (output_func_start_profiler): Likewise.
13062         * objc/objc-act.c (finish_objc): Likewise.
13063         (build_module_descriptor): Return the symbol not the symbol name.
13064
13065 2001-08-06  David Edelsohn  <edelsohn@gnu.org>
13066
13067         * config/rs6000/darwin.h (DOUBLE_INT_ASM_OP): Add whitespace.
13068         * config/rs6000/linux64.h (RS6000_MCOUNT): Define.
13069         ({SAVE,RESTORE}_FP_{PREFFIX,SUFFIX}): Define.
13070         * config/rs6000/rs6000.h (ASM_OUTPUT_DOUBLE_INT): Remove whitespace.
13071         * config/rs6000/sysv4.h (DOUBLE_INT_ASM_OP): Add whitespace.
13072         * config/rs6000/xcoff.h (DOUBLE_INT_ASM_OP): Add whitespace.
13073
13074 2001-08-06  Neil Booth  <neil@daikokuya.demon.co.uk>
13075
13076         * cpperror.c (print_containing_files): Moved to line-map.c.
13077         (print_location): line-map.c handles re-listing or otherwise.
13078         * cpphash.h (struct lexer_state): Remove next_bol.
13079         (struct cpp_buffer): Remove include_stack_listed.
13080         * cpplib.c (do_line, cpp_push_buffer, _cpp_pop_buffer):
13081         Remove faked buffer handling.
13082         (_cpp_do_file_change): Tweak.
13083         * cpplib.h (enum cpp_buffer_type): Remove BUF_FAKE.
13084         * cppmain.c (struct printer): Remove filename.
13085         (print_line, cb_file_change): Update accordingly.
13086         * line-map.c: Include intl.h.
13087         (init_line_maps): Initialize last_listed.
13088         (free_line_maps): Sanity check, warn if ENABLED_CHECKING.
13089         (add_line_map): Sanity check inputs, warn if ENABLED_CHECKING.
13090         (print_containing_files): New.
13091         * line-map.h (struct line_maps): New member last_listed.
13092         (print_containing_files, INCLUDED_FROM): New.
13093         * Makefile.in: Update.
13094         * po/POTFILES.in: Add line-map.c.
13095
13096 2001-08-06  Richard Henderson  <rth@redhat.com>
13097
13098         * except.c (convert_from_eh_region_ranges_1): Never mark
13099         USE or CLOBBER insns as throwing.
13100
13101         * expr.c (store_constructor): Don't clobber memory targets.
13102
13103 2001-08-06  Andreas Jaeger  <aj@suse.de>
13104
13105         * profile.c (branch_prob): Remove unused variable insn.
13106
13107         * Makefile.in (local-alloc.o): Add dependency on except.h.
13108
13109         * local-alloc.c: Include except.h for can_throw_internal prototype.
13110
13111 2001-08-06  Richard Henderson  <rth@redhat.com>
13112
13113         * config/i386/i386.h (FORCE_PREFERRED_STACK_BOUNDARY_IN_MAIN): New.
13114         * function.c (expand_main_function): Implement it.
13115         * doc/tm.texi: Document it.
13116
13117 2001-08-06  Stan Shebs  <shebs@apple.com>
13118
13119         * doc/install.texi: Document powerpc-*-darwin* details.
13120
13121 2001-08-06  Daniel Berlin  <dan@cgsoftware.com>
13122
13123         * config/rs6000/aix.h (CPP_CPU_SPEC): Move back to rs6000.h
13124         (ASM_CPU_SPEC): Move back to rs6000.h
13125         #undef CPP_DEFAULT_SPEC and ASM_DEFAULT_SPEC before redefining them.
13126
13127         * config/rs6000/darwin.h (DOUBLE_INT_ASM_OP): New macro.
13128
13129         * config/rs6000/linux.h: Remove vtable thunks stuff we accidently
13130         readded.
13131
13132         * config/rs6000/linux64.h: Ditto.
13133
13134         * config/rs6000/rs6000.h: Move CPP_CPU_SPEC and ASM_CPU_SPEC back
13135         to here. Define default ASM_DEFAULT_SPEC and CPP_DEFAULT SPEC to
13136         nothing.
13137
13138         Remove accidently readded definitions of FUNCTION_PROLOGUE,
13139         FUNCTION_EPILOGUE,  ASM_OPEN_PAREN, ASM_CLOSE_PAREN
13140
13141         * config/rs6000/sysv4.h: Move CPP_CPU_SPEC and ASM_CPU_SPEC back
13142         to rs6000.h
13143
13144 2001-08-05  Richard Henderson  <rth@redhat.com>
13145
13146         * local-alloc.c (update_equiv_regs): Do not move insns that
13147         can throw.
13148
13149 2001-08-05  Jan Hubicka  <jh@suse.cz>
13150
13151         * Makefile.in (reload1.o): Add dedendancy on except.h
13152         * basic-block.h (purge_all_dead_edges, purge_dead_edges): Update
13153         prototypes.
13154         * flow.c (purge_dead_edges, purge_all_dead_edges): Return bool
13155         indicating wehther edges has been cleaned up.
13156         * reload1.c: Inlucde except.h
13157         (fixup_abnormal_edges): Accept deleted insns.
13158         * toplev.c (rest_of_compilation): Purge dead edges unconditionally
13159         after combine.
13160
13161 2001-08-06  Neil Booth  <neil@daikokuya.demon.co.uk>
13162
13163         * cpplib.c (do_line): Correct line number after pop_buffer.
13164
13165 2001-08-05  Neil Booth  <neil@daikokuya.demon.co.uk>
13166
13167         PR preprocessor/3824
13168         * line-map.c: Update comments.
13169         * line-map.h: Update comments.
13170         * tradcif.y: Don't consider large numbers unsigned.
13171
13172 2001-08-05  Neil Booth  <neil@daikokuya.demon.co.uk>
13173
13174         PR preprocessor/3081
13175         * c-lex.c (map): New.
13176         (cb_file_change): Update map and use it.
13177         (cb_def_pragma, cb_define, cb_undef): Use map and line.
13178         (c_lex): Update to use map.
13179         * cpperror.c (print_location): Move to using logical line numbers.
13180         * cppfiles.c (stack_include_file): Update for new _cpp_do_file_change.
13181         (cpp_make_system_header): Similarly.
13182         (_cpp_execute_include): Stop line numbering hacks.  Store the
13183         line we will return to.
13184         * cpphash.h (CPP_BUF_LINE): Remove.
13185         (struct cpp_buffer): Remove lineno and pseudo_newlines.
13186         Add map and return_to_line.
13187         (_cpp_do_file_change): Update.
13188         * cppinit.c (cpp_start_read): Update line kludge.
13189         * cpplex.c (handle_newline): Don't update lineno and pseudo_newlines.
13190         (trigraph_ok): Use logical line numbers for diagnostics.
13191         (skip_block_comment): Likewise.
13192         (skip_whitespace): Likewise.
13193         (skip_line_comment): Use pfile->line instead.
13194         (_cpp_lex_token): Update to use logical line numbering exclusively.
13195         Handle BOL locally.  Accept new lines in directives, but keep
13196         pfile->line decremented.  Diagnostics use logical lines.  Update
13197         directive handling.
13198         * cpplib.c (SEEN_EOL): New.
13199         (skip_rest_of_line, check_eol): Use it.
13200         (end_directive): Increase line number when accepting the newline
13201         at the end of a directive.
13202         (run_directive): Simplify.
13203         (do_line): Bad LC_LEAVEs become LC_RENAMEs.  Update.
13204         (_cpp_do_file_change): Update to take buffer line number as an
13205         argument, and store the current map in the cpp_reader.  Remove
13206         line number kludges.
13207         (_cpp_do__Pragma): Restore output position after a _Pragma.
13208         (cpp_push_buffer): Don't set output line or lineno.
13209         (_cpp_pop_buffer): Transfer more info from a faked buffer.
13210         Remove line kludge.  Set output_line.
13211         * cppmacro.c (builtin_macro): Update handling of __LINE__.
13212         (parse_arg): Use logical lines.
13213         (save_lookahead_token): Save EOFs too now.
13214         * cppmain.c (struct printer): Fix comments.
13215         (printer_init): Simplify, let caller do errors.
13216         (scan_translation_unit, check_multiline_token, dump_macro): Update.
13217         (maybe_print_line): Simplify.
13218         (print_line): Don't print a linemarker if -P.
13219         (cb_define, cb_undef, cb_def_pragma, cb_ident, cb_include): Update.
13220         (cb_file_change): Simplify.
13221         * line-map.h (LAST_SOURCE_LINE): Fix.
13222         (CURRENT_LINE_MAP): New.
13223
13224 2001-08-05  Bernd Schmidt  <bernds@redhat.com>
13225
13226         * doloop.c (doloop_modify_runtime): Properly compute number of
13227         iterations if loop was unrolled.
13228
13229         * alias.c (rtx_equal_for_memref_p): VALUEs are only identical
13230         if their CSELIB_VAL_PTRs are.
13231
13232         * config/ia64/ia64.c (struct spill_fill_data): New member prev_insn.
13233         (setup_spill_pointers): Initialize it.
13234         (spill_restore_mem): Set it.
13235         (do_spill, do_restore): Use it to add REG_INC note.
13236         * config/ia64/ia64.md (movti_internal): Add REG_INC notes as needed.
13237
13238         * config/ia64/ia64.c (ia64_sched_reorder): Defer scheduling of
13239         asms if other insns are available.
13240
13241         * config/ia64/ia64.c (condop_operator): New predicate.
13242         * config/ia64/ia64.h (PREDICATE_CODES): Add it.
13243         * config/ia64/ia64.md (cond_opsi2_internal and splitters): New
13244         patterns.
13245
13246         * expr.c (expand_expr, case COND_EXPR): Prefer working with a
13247         temporary register than directly using a MEM.
13248
13249 2001-08-04  Hans-Peter Nilsson  <hp@bitrange.com>
13250
13251         * config/sh/sh.c (sh_asm_named_section): Fix typo in align
13252         parameter in last change.
13253
13254 2001-08-04  Zack Weinberg  <zackw@panix.com>
13255
13256         * sparc.md: Don't use #if inside C test expression.
13257
13258 2001-08-04  Richard Henderson  <rth@redhat.com>
13259
13260         * i386.c: Revert 07-30 ix86_output_main_function_alignment_hack.
13261
13262 2001-08-04  Neil Booth  <neil@daikokuya.demon.co.uk>
13263
13264         * cpphash.h (struct cpp_reader): New member directive_line.
13265         * cpplib.h (struct cpp_callbacks): Update prototypes of callbacks.
13266         * cpplib.c (do_define, do_undef, do_ident, do_include_common,
13267         do_pragma): Pass line to callbacks.
13268         (start_directive): Record line of directive.
13269         * cppmain.c (cb_ident, cb_define, cb_undef, cb_def_pragma,
13270         cb_include): Similarly.
13271         * c-lex.c (cb_ident, cb_define, cb_undef, cb_def_pragma):
13272         Similarly.
13273
13274 2001-08-04  Hans-Peter Nilsson  <hp@bitrange.com>
13275
13276         * config/d30v/d30v.h: Fix typo in start of UNIQUE_SECTION
13277         comment.
13278
13279 Sat Aug  4 13:51:36 CEST 2001  Jan Hubicka  <jh@suse.cz>
13280
13281         * loop.c (try_copy_prop); Kill invalidated REG_EQUAL notes.
13282
13283         * reload1.c (fixup_abnormal_edges): New static function.
13284         (reload): Use it.
13285
13286         * flow.c (need_fake_edge_p): New function.
13287         (flow_call_edges_add): Fix handling of noreturn and sibling calls;
13288         avoid call insn to be very last insn in the insn stream.
13289
13290         * profile.c (branch_prob): Call flow_call_edges_add instead of
13291         doing that by hand; cleanup cfg to re-merge basic blocks once
13292         we are done.
13293
13294 2001-08-04  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
13295
13296         * Makefile.in (CPPLIB_H): New, so that dependencies on cpplib.h
13297         are also on line-map.h.
13298         * cppfiles.c (stack_include_file): Update.
13299         * cpphash.h (struct cpp_buffer): New member return_at_eof.
13300         (_cpp_pop_buffer): New.
13301         * cppinit.c (cpp_destroy, cpp_finish): Update.
13302         (do_includes): Mark each buffer to return at EOF.
13303         * cpplex.c (_cpp_lex_token): Pop buffers at EOF.  Continue or
13304         return as requested.
13305         * cpplib.c (run_directive, do_line, cpp_push_buffer): Update.
13306         (cpp_pop_buffer): Rename _cpp_pop_buffer.  Stop skipping.
13307         * cpplib.h (cpp_pop_buffer): Remove.
13308         (cpp_scan_buffer_nooutput): Rename cpp_scan_nooutput.
13309         * cppmacro.c (cpp_scan_buffer_nooutput): Similarly.  No need to pop
13310         buffers.
13311         * cppmain.c (scan_buffer): Rename scan_translation_unit.  No need
13312         to pop buffers.
13313         (do_preprocessing): Update.
13314         * fix-header.c (read_scan_file): Update.  No need to pop buffers.
13315         * c-parse.in (_yylex): Similarly.
13316         * scan-decls.c (scan_decls): Similarly.
13317         * line-map.h: Update comments.
13318
13319         * objc/Make-lang.in (objc-act.o): Update dependencies.
13320
13321 2001-08-04  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
13322
13323         * config/m68hc11/m68hc11.md ("cmphi_1", "cmpqi_1"): Allow memory
13324         and soft register for operand 0.
13325         ("cmphi_z_used", "cmpqi_z_used"): Allow memory for operand 0.
13326
13327 2001-08-04  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
13328
13329         * config/m68hc11/m68hc11.md ("bitcmpqi"): Allow memory and soft
13330         register for operand 0.
13331         ("bitcmpqi_z_used"): Allow memory for operand 0.
13332         (split "bitcmpqi"): New split to handle address reg as operand 1.
13333
13334 2001-08-04  Andreas Jaeger  <aj@suse.de>
13335
13336         * gcse.c: Revert Daniel's last patch.
13337
13338 2001-08-03  Zack Weinberg  <zackw@stanford.edu>
13339
13340         * sparc-protos.h: Add prototypes for fp_zero_operand and
13341         reg_or_0_operand.
13342         * sh-protos.h: Add prototype for fpul_operand.
13343
13344 2001-08-04  Hans-Peter Nilsson  <hp@bitrange.com>
13345
13346         * doc/extend.texi (Other Builtins): Fix typo in last change.
13347
13348 2001-08-03  Richard Henderson  <rth@redhat.com>
13349
13350         * target.h (gcc_target): Add asm_out.named_section,
13351         section_type_flags, have_named_sections.
13352         * target-def.h (TARGET_ASM_NAMED_SECTION): New.
13353         (TARGET_HAVE_NAMED_SECTIONS): New.
13354         (TARGET_SECTION_TYPE_FLAGS): New.
13355
13356         * Makefile.in (toplev.o): Depend on TARGET_H.
13357         (varasm.o, dbxout.o): Likewise.
13358         * c-common.c (decl_attributes): Check targetm.have_named_sections
13359         instead of ifdef ASM_OUTPUT_SECTION_NAME.
13360         * dbxout.c (dbxout_function_decl): Likewise.
13361         (dbxout_function_end): Likewise.
13362         * toplev.c (compile_file): Likewise.
13363         * varasm.c (exception_section): Likewise.
13364         * cp/decl2.c (finish_objects): Likewise.
13365
13366         * defaults.h (EH_FRAME_SECTION): Remove.
13367         (EH_FRAME_SECTION_ASM_OP): Remove.
13368         (EH_FRAME_SECTION_NAME): New.
13369         (UNIQUE_SECTION): Don't depend on ASM_OUTPUT_SECTION_NAME.
13370         (UNIQUE_SECTION_P): Remove.
13371         * dwarf2out.c (SECTION_FORMAT): Remove.
13372         (ASM_OUTPUT_SECTION): Remove.
13373         (output_call_frame_info): Use named_section_flags.
13374         (output_comp_unit, dwarf2out_start_source_file): Likewise.
13375         (dwarf2out_end_source_file, dwarf2out_define): Likewise.
13376         (dwarf2out_undef, dwarf2out_init, dwarf2out_finish): Likewise.
13377         * varasm.c (in_eh_frame, eh_frame_section): Remove.
13378         (named_section_flags): New.
13379         (named_section): Use it and targetm.section_type_flags.
13380         (resolve_unique_section): New.
13381         (assemble_start_function): Use it.
13382         (asm_emit_uninitialised, assemble_variable): Likewise.
13383         (default_section_type_flags): New.
13384         (default_no_named_section, default_elf_asm_named_section): New.
13385         (default_coff_asm_named_section, default_pe_asm_named_section): New.
13386         * output.h: Update varasm.c decls.
13387         (SECTION_*): New flags.
13388
13389         * crtstuff.c: Check EH_FRAME_SECTION_NAME not EH_FRAME_SECTION_ASM_OP.
13390         (__EH_FRAME_BEGIN__, __FRAME_END__): Use attribute section.
13391
13392         * config/elfos.h (UNIQUE_SECTION_P): Remove.
13393         * config/alpha/elf.h, config/arm/linux-elf.h: Likewise.
13394         * config/arm/pe.h, config/arm/unknown-elf.h: Likewise.
13395         * config/i386/cygwin.h, config/i386/djgpp.h: Likewise.
13396         * config/i386/i386-interix.h, config/i386/win32.h: Likewise.
13397         * config/ia64/sysv4.h, config/mcore/mcore-pe.h: Likewise.
13398         * config/mips/elf.h, config/mips/elf64.h: Likewise.
13399         * config/mips/iris6gld.h, config/mips/mips.h: Likewise.
13400         * config/pa/pa64-hpux.h,
13401
13402         * config/elfos.h (ASM_OUTPUT_SECTION_NAME): Remove.
13403         (TARGET_ASM_NAMED_SECTION): New.
13404         * config/psos.h, config/a29k/a29k.h, config/alpha/elf.h: Likewise.
13405         * config/alpha/vms.h, config/arm/coff.h: Likewise.
13406         * config/arm/conix-elf.h, config/arm/elf.h: Likewise.
13407         * config/arm/linux-elf.h, config/arm/pe.h: Likewise.
13408         * config/arm/unknown-elf.h, config/avr/avr.h: Likewise.
13409         * config/c4x/c4x.h, config/h8300/h8300.h: Likewise.
13410         * config/i386/cygwin.h, config/i386/djgpp.h: Likewise.
13411         * config/i386/i386-interix.h, config/i386/i386elf.h : Likewise.
13412         * config/i386/sco5.h, config/i386/win32.h: Likewise.
13413         * config/m68k/coff.h, config/mcore/mcore-pe.h: Likewise.
13414         * config/mcore/mcore.h, config/mips/elf.h: Likewise.
13415         * config/mips/elf64.h, config/mips/iris6.h: Likewise.
13416         * config/mips/netbsd.h, config/mips/openbsd.h: Likewise.
13417         * config/pa/pa64-hpux.h, config/rs6000/sysv4.h: Likewise.
13418         * config/rs6000/xcoff.h, config/sh/sh.h: Likewise.
13419         * config/sparc/sysv4.h: Likewise.
13420
13421         * config/nextstep.h: Error until named sections implemented.
13422
13423         * config/a29k/a29k.c (a29k_asm_named_section): New.
13424         * config/alpha/alpha.c (SECTION_VMS_OVERLAY): New.
13425         (vms_section_type_flags, vms_asm_named_section): New.
13426         * config/arm/arm.c (arm_elf_asm_named_section): New.
13427         * config/avr/avr.c (asm_output_section_name): Remove.
13428         * config/avr/avr-protos.h: Update.
13429         * config/c4x/c4x.c (c4x_asm_named_section): New.
13430         * config/h8300/h8300.c (h8300_asm_named_section): New.
13431         * config/i386/i386.c (sco_asm_named_section): New.
13432         * config/i386/winnt.c (SECTION_PE_SHARED): New.
13433         (i386_pe_section_type_flags): New.
13434         (i386_pe_asm_named_section): New.
13435         * config/i386/i386-protos.h: Update.
13436         * config/m68k/m68k.c (m68k_coff_asm_named_section): New.
13437         * config/mcore/mcore.c (mcore_asm_named_section): New.
13438         * config/mips/mips.c (iris6_asm_named_section): New.
13439         * config/mips/mips.h (ENCODE_SECTION_INFO): Use DECL_ONE_ONLY
13440         instead of UNIQUE_SECTION_P.
13441         * config/rs6000/rs6000.c (rs6000_elf_section_type_flags): New.
13442         (xcoff_asm_named_section): New.
13443         * config/sh/sh.c (sh_asm_named_section): New.
13444         * config/sparc/sparc.c (sparc_elf_asm_named_section): New.
13445
13446         * config/i386/djgpp.h (EH_FRAME_SECTION_ASM_OP): Remove.
13447         * config/i386/sco5.h (EH_FRAME_SECTION_ASM_OP*): Remove.
13448         (EH_FRAME_SECTION_NAME): New.
13449         (EXCEPTION_SECTION): New.
13450         * config/ia64/ia64.h (EH_FRAME_SECTION_ASM_OP): Remove.
13451         (DEBUG_*_SECTION): Remove.
13452         * config/m68k/rtemself.h (EH_FRAME_SECTION_ASM_OP): Remove.
13453         * config/mips/iris6.h (DEBUG_*_SECTION): Remove.
13454         (EH_FRAME_SECTION_ASM_OP): Remove.
13455
13456         * doc/tm.texi (UNIQUE_SECTION_P): Remove.
13457         (ASM_OUTPUT_SECTION_NAME): Remove.
13458         (TARGET_ASM_NAMED_SECTION): New.
13459         (TARGET_HAVE_NAMED_SECTIONS): New.
13460         (TARGET_SECTION_TYPE_FLAGS): New.
13461         (EH_FRAME_SECTION_ASM_OP): Remove.
13462         (EH_FRAME_SECTION_NAME): New.
13463
13464 2001-08-03  Zack Weinberg  <zackw@stanford.edu>
13465
13466         * builtins.c (fold_builtin_constant_p): Return integer_zero_node
13467         for complex expressions when cfun == 0.
13468         * doc/extend.texi: Document that __builtin_constant_p can be
13469         used in data initializers as well as functions.
13470
13471 2001-08-03  Alexandre Oliva  <aoliva@redhat.com>
13472
13473         * config/mn10300/mn10300.h (CONDITIONAL_REGISTER_USAGE): Declare
13474         variable I locally, instead of expecting a declaration in the
13475         calling context.
13476
13477 2001-08-03  Richard Henderson  <rth@redhat.com>
13478
13479         * except.c (collect_one_action_chain): Add an explicit cleanup
13480         action if regions surrounding a catch were encoded entirely
13481         within the call-site entry.
13482
13483 2001-08-03  Richard Henderson  <rth@redhat.com>
13484
13485         * dbxout.c (dbxout_symbol_location): Flatten subregs first;
13486         don't take REGNO of a non-register.
13487
13488 2001-08-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
13489
13490         * gthr-dce.h (__GTHREAD_MUTEX_INIT_FUNCTION and
13491         __GTHREAD_MUTEX_INIT_DEFAULT): New macros for mutex initialization.
13492         (__gthread_key_delete): Remove code for __PTHREAD_LIBRARY_VERSION_1 >= 1
13493         (__gthread_mutex_init_function): New function for mutex initialization.
13494
13495 2001-08-03  Daniel Berlin  <dan@cgsoftware.com>
13496
13497         * Makefile.in: Revert screwed up commit.
13498
13499 2001-08-03  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
13500
13501         * config/m68hc11/t-m68hc11-gas (T_CPPFLAGS): Add _ctor and _dtor.
13502         * config/m68hc11/larith.asm (_exit): Split in several sub-sections
13503         merged by linker script to get a final _exit().
13504         (__do_global_dtors): New for destructor handling in specific exit
13505         section.
13506         (__do_global_ctors): New for constructors in specific install section.
13507         (__map_data_section): Map data sections before running constructors.
13508         * config/m68hc11/m68hc11.h (INT_ASM_OP): Define to use .word.
13509         (CTORS_SECTION_ASM_OP): Define to put in readonly section.
13510         (DTORS_SECTION_ASM_OP): Likewise.
13511         (CTORS_SECTION_FUNCTION): Define to force a reference to
13512         __do_global_ctors.
13513         (DTORS_SECTION_FUNCTION): Likewise for __do_global_dtors.
13514
13515 2001-08-03  Daniel Berlin  <dan@cgsoftware.com>
13516
13517         * ChangeLog: Fix date on previous ChangeLog entry for GCSE.
13518
13519         * Makefile.in: Add df.h to gcse.c dependencies.
13520
13521 2001-08-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
13522
13523         * varasm.c (output_constant_def_contents): Use for the length of a
13524         string constant either its TREE_STRING_LENGTH or its int_size_in_bytes
13525         depending on which is larger.
13526
13527 2001-08-03  Daniel Berlin  <dan@cgsoftware.com>
13528
13529         * gcse.c: Include df.h for use as a dataflow analyzer.
13530         Remove regvec.
13531         Declaration of reg_set_info: gone.
13532         New df_analyzer variable used by store motion.
13533         (reg_set_info): Deleted.
13534         (mark_mem_regs): New function, analyze regs used by a mem.
13535         (store_ops_ok): Use dataflow analyzer results to determine if
13536         necessary regs are changed in the block.
13537         (find_moveable_store): Remove check for symbol ref, we can handle
13538         much more complex expressions now.
13539         (compute_store_table): Remove most of the code, it's unnecessary
13540         now that the dataflow analyzer records the info for us.
13541         (store_killed_after): Add parameter to say whether to do the
13542         store_ops_okay test, used to speed up testing when we already know
13543         the answer, and just want to know if the store itself was killed.
13544         (build_store_vector): Largely rewritten to calculate the various
13545         vectors properly, and somewhat optimized.
13546         (store_motion): Init the df_analyzer, get REG_DEF chains.
13547         Also handle trapping expressions (since mems almost always trap)
13548         (simple_mem): Redefine what a simple mem is.
13549
13550 2001-08-03  DJ Delorie  <dj@redhat.com>
13551
13552         * ifcvt.c (noce_get_alt_condition): Don't make an auxiliary
13553         set from a constant part of the condition.
13554
13555 2001-08-01  Andrew Cagney  <ac131313@redhat.com>
13556
13557         * mkdeps.c (deps_add_default_target): Make local variable
13558         ``start'' a const char pointer.
13559         * dwarf2out.c (compute_section_prefix): Localize use of ``p''.
13560
13561 2001-08-03  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
13562
13563         * doc/install.texi (Configuration): Fix markup.
13564         (Specific, i?86-*-udk): Likewise.
13565         (Specific, alpha*-dec-osf*): Warn against --with-gnu-as,
13566         --with-gnu-ld.
13567         Document --enable-threads and --enable-libgcj status.
13568         (Specific, mips-sgi-irix*): Canonicalize triples.
13569         (Specific, mips-sgi-irix5): Warn about problems with this config.
13570         Mention required GNU as patch.
13571         Native assembler problems are fixed.
13572         (Specific, mips-sgi-irix6): Update O32 ABI support status.
13573         Document --enable-threads and --enable-libgcj status.
13574
13575 2001-08-02  Nick Clifton  <nickc@cambridge.redhat.com>
13576
13577         * Makefile.in, mklibgcc.in: Restore changes with fixed invocation
13578         of mkinstalldirs.
13579
13580 2001-08-03  Richard Henderson  <rth@redhat.com>
13581
13582         * config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't write to
13583         constant data.
13584
13585 2001-08-03  Richard Henderson  <rth@redhat.com>
13586
13587         * rtlanal.c (find_first_parameter_load): Stop if we
13588         reach a CODE_LABEL at BOUNDARY.
13589
13590 2001-08-03  Richard Henderson  <rth@redhat.com>
13591
13592         * config/alpha/alpha.md (force_movdi): New insn.
13593         * config/alpha/alpha.c (alpha_expand_prologue): Use it.
13594         Tweek FRP marking of VMS prologue insns.
13595         * config/alpha/vms.h (EPILOGUE_USES): New.
13596
13597 2001-08-02  Richard Henderson  <rth@redhat.com>
13598
13599         * Makefile.in, mklibgcc.in: Revert mkinstalldirs change.
13600
13601 2001-08-02  Lars Brinkhoff  <lars@nocrew.org>
13602
13603         * combine.c, config.gcc, cse.c, defaults.h, real.c, reload.c,
13604         simplify-rtx.c, config/alpha/alpha.h, config/avr/avr.h,
13605         config/convex/convex.h, config/d30v/d30v.c,
13606         config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
13607         config/elxsi/elxsi.h, config/fr30/fr30.h, config/m88k/m88k.c,
13608         config/mips/mips.h, config/mn10200/mn10200.h,
13609         config/mn10300/mn10300.h, config/pdp11/pdp11.md,
13610         config/v850/v850.h, config/vax/openbsd.h,
13611         config/vax/openbsd1.h, config/vax/ultrix.h,
13612         config/vax/vax-protos.h, config/vax/vax.c, config/vax/vax.h,
13613         config/vax/vax.md, config/vax/vaxv.h, config/vax/xm-vms.h,
13614         cp/decl2.c, doc/contrib.texi, doc/cpp.texi, doc/gcc.texi,
13615         doc/install.texi, doc/invoke.texi, doc/md.texi, doc/rtl.texi,
13616         doc/tm.texi: consistently use "VAX", "VAXen", and "MicroVAX"
13617         in comments and documentation.
13618
13619 2001-08-03  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
13620
13621         * line-map.c: New.
13622         * line-map.h: New.
13623         * Makefile.in (line-map.o): New.
13624         (LIBCPP_OBJS, LIBCPP_DEPS): Update.
13625         * c-lex.c (cb_file_change): Update for new cpp_file_change structure.
13626         * cpperror.c (print_containing_files): Similarly.
13627         (print_location): Update.  Don't output a space before _Pragma.
13628         * cppfiles.c (stack_include_file): Set to line 1 immediately.
13629         (stack_include_filee, cpp_make_system_header): Update.
13630         (_cpp_execute_include): Get logical line number right for calling
13631         as-yet-unterminated #include.
13632         * cpphash.h (struct cpp_reader): Add line_maps.
13633         (_cpp_do_file_change): Update.
13634         * cppinit.c (cpp_create_reader): Initialize line maps.
13635         (cpp_destroy): Destroy line maps.
13636         (cpp_start_read): Get logical line number right.
13637         * cpplex.c (parse_string): Only warn once for multi-line strings.
13638         Use boolean variable for null warning.
13639         * cpplib.c (_cpp_handle_directive): End the directive if it isn't
13640         already.
13641         (do_include_common): End the directive early.
13642         (do_line): Don't warn about out-of-range lines in preprocessed
13643         source.  Update.  Remove unused variables.
13644         (_cpp_do_file_change): Update for new line mapping.
13645         (pragma_cb): New typedef.
13646         (cpp_register_pragma): Stop looking ahead before calling the
13647         handler.  Clean up.
13648         (do_pragma_system_header): End directive early.
13649         (cpp_get_line_maps): New.
13650         (cpp_pop_buffer): Fudge logical line.  Update.
13651         * cpplib.h: Include line-map.h
13652         (enum cpp_fc_reason): Remove.
13653         (struct cpp_file_change): Update.
13654         (cpp_get_line_maps): New.
13655         * cppmain.c (struct_printer): New member map.
13656         (cb_file_change): Update for new mappings.
13657         * fix-header.c (cb_file_change): Similarly.
13658
13659 2001-08-02  Nick Clifton  <nickc@cambridge.redhat.com>
13660
13661         * Makefile.in (libgcc.mk): Define mkinstalldirs.
13662         * mklibgcc.in: Use mkinstalldirs instead of mkdir.
13663
13664 2001-08-02  Lars Brinkhoff  <lars@nocrew.org>
13665
13666         * config/vax/vax.c: include expr.h.
13667
13668 2001-08-02  Nick Clifton  <nickc@cambridge.redhat.com>
13669
13670         * Makefile.in ($(srcdir)/configure): Only rebuild in
13671         maintainer mode.
13672         ($(srcdir)/config.in): Only define in maintainer mode.
13673         ($(srcdir)/cstamp-h.in): Only define in maintainer mode.
13674
13675 2001-08-02  David Edelsohn  <edelsohn@gnu.org>
13676
13677         * doc/install.texi (Install GCC: Binaries): Update Bull info.
13678
13679 2001-08-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
13680
13681         * gcc.c (set_collect_gcc_options): New function, split out from
13682         main.
13683         Ignore elided switches.
13684         (do_spec_1): Invoke before executing command.
13685         (set_input): Export.
13686         Move declaration ...
13687         * gcc.h (set_input): ... here.
13688         * config/alpha/osf.h (ASM_FINAL_SPEC): Use %U.s to refer to input
13689         file.
13690
13691 2001-08-02  Nathan Sidwell  <nathan@codesourcery.com>
13692
13693         Kill -fhonor-std.
13694         * doc/c-tree.texi (Namespaces): Remove std & -fhonor-std
13695         interaction.
13696         * doc/invoke.texi (C++ Dialect Options): Remove -fno-honor-std.
13697
13698 2001-08-02  Richard Sandiford  <rsandifo@redhat.com>
13699
13700         * mips.md (movdicc): Make conditional on TARGET_64BIT.  Likewise
13701         for the unnamed instructions it expands to.
13702
13703 2001-08-02  Richard Henderson  <rth@redhat.com>
13704
13705         * regclass.c (call_really_used_regs): Conditionally define.
13706         (init_reg_sets_1): Don't use it if not defined.
13707         (fix_register): Similarly, don't set it.
13708
13709 2001-08-01  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
13710
13711         * params.def (PARAM_MAX_INLINE_INSNS): Change default to 600.
13712         Correct comment that had been missed in the previous change.
13713
13714 2001-08-01  Stan Shebs  <shebs@apple.com>
13715
13716         * config/darwin.c (machopic_stub_name): Try matching by name.
13717         (update_stubs): New function.
13718         (darwin_encode_section_info):  Call it and update_non_lazy_ptrs
13719         unconditionally.
13720
13721 2001-08-01  Richard Henderson  <rth@redhat.com>
13722
13723         * except.c (output_function_exception_table): Use assemble_align.
13724         * varasm.c (assemble_eh_label): Remove.
13725         (assemble_eh_align, assemble_eh_integer): Remove.
13726
13727 2001-08-01  Robert Lipe  <robertl@caldera.com>
13728
13729         * dwarfout.c: Remove reference to README.DWARF.
13730
13731 2001-08-01  Andrew MacLeod  <amacleod@redhat.com>
13732
13733         * regclass.c (call_really_used_regs): New array for registers which
13734         are actually used by a call.
13735         (init_reg_sets_1): Initialize regs_invalidated_by_call with the
13736         new array.
13737         (fix_register): Set call_really_used too.
13738         * config/ia64/ia64.h (CALL_REALLY_USED_REGISTERS): Initialize.
13739         * doc/tm.texi (CALL_REALLY_USED_REGISTERS): Document.
13740
13741 2001-08-01  Richard Henderson  <rth@redhat.com>
13742
13743         * read-rtl.c (read_name): Consider \r whitespace.
13744
13745 2001-07-11  Andrew Cagney  <ac131313@redhat.com>
13746
13747         * config.gcc: Recognize powerpc-*-netbsd*.
13748
13749         * doc/install.texi (Host/target specific installation notes for
13750         GCC): Mention powerpc-*-netbsd*.
13751
13752         * config/rs6000/netbsd.h: New file.
13753         (STANDARD_STARTFILE_PREFIX, LINK_SHLIB_SPEC): Redefine.
13754         (LIB_DEFAULT_SPEC, STARTFILE_DEFAULT_SPEC): Redefine.
13755         (ENDFILE_DEFAULT_SPEC, LINK_START_DEFAULT_SPEC): Redefine.
13756         (LINK_OS_DEFAULT_SPEC, CPP_OS_DEFAULT_SPEC): Redefine.
13757         (TARGET_VERSION): Redefine.
13758
13759         * config/rs6000/t-ppccomm (MULTILIB_MATCHES_SYSV): Recognize
13760         mcall-netbsd as a match for mcall-sysv.
13761         (EXTRA_MULTILIB_PARTS): Add ncrti$(objext) and ncrtn$(objext).
13762         (ncrti.S, ncrtn.S): New targets.
13763         ($(T)ncrti$(objext), $(T)ncrtn$(objext)): New targets.
13764
13765         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Recognize
13766         "netbsd' as a V4 ABI.
13767         (ASM_SPEC): Check for -mcall-netbsd.
13768         (CC1_SPEC, CC1_SPEC, LINK_START_SPEC, LINK_OS_SPEC): Ditto.
13769         (CPP_ENDIAN_SPEC, CPP_SPEC, STARTFILE_SPEC): Ditto.
13770         (LIB_SPEC, ENDFILE_SPEC): Ditto.
13771         (LIB_NETBSD_SPEC, STARTFILE_NETBSD_SPEC): Define.
13772         (ENDFILE_NETBSD_SPEC, LINK_START_NETBSD_SPEC): Define.
13773         (LINK_OS_NETBSD_SPEC, CPP_OS_NETBSD_SPEC): Define.
13774         (SUBTARGET_EXTRA_SPECS): Add NetBSD specs.
13775
13776         * doc/invoke.texi (Option Summary): Add -mcall-netbsd.
13777         (RS/6000 and PowerPC Options): Mention -mcall-netbsd.
13778
13779 2001-08-01  Mark Kettenis  <kettenis@gnu.org>
13780
13781         * unwind-pe.h (base_of_encoded_value, read_encoded_value): Define
13782         only if NO_BASE_OF_ENCODED_VALUE isn't defined.
13783         * unwind-dw2-fde.c (NO_BASE_OF_ENCODED_VALUE): Define before
13784         including "unwind-pe.h".
13785
13786 Wed Aug  1 20:01:42 CEST 2001  Jan Hubicka  <jh@suse.cz>
13787
13788         * rs6000.md (define_splits): Kill unused constraints.
13789
13790 Wed Aug  1 20:02:12 CEST 2001 Graham Stott  <grahams@redhat.com>
13791                               Jan Hubicka  <jh@suse.cz>
13792
13793         * function.c (thread_prologue_and_epilogue_insns): Kill code
13794         dealing with non-existent CFG.
13795
13796 2001-08-01  Kazu Hirata  <kazu@hxi.com>
13797
13798         * alias.c: Fix comment formatting.
13799         * bitmap.c: Likewise.
13800         * builtins.c: Likewise.
13801         * calls.c: Likewise.
13802         * c-common.c: Likewise.
13803         * c-decl.c: Likewise.
13804         * c-dump.c: Likewise.
13805         * c-lex.c: Likewise.
13806         * collect2.c: Likewise.
13807         * combine.c: Likewise.
13808         * conflict.c: Likewise.
13809         * cppfiles.c: Likewise.
13810         * cppinit.c: Likewise.
13811         * cpplex.c: Likewise.
13812         * cpplib.c: Likewise.
13813         * cppmacro.c: Likewise.
13814         * cppspec.c: Likewise.
13815         * c-pragma.c: Likewise.
13816         * crtstuff.c: Likewise.
13817         * cse.c: Likewise.
13818         * cselib.c: Likewise.
13819         * c-semantics.c: Likewise.
13820         * c-typeck.c: Likewise.
13821
13822 2001-08-01  H.J. Lu <hjl@gnu.org>
13823
13824         * config/mips/linux.h (ASM_OUTPUT_IDENT): Defined.
13825
13826 2001-08-01  H.J. Lu <hjl@gnu.org>
13827
13828         * gcc/config/mips/linux.h (ASM_OUTPUT_SOURCE_LINE): Defined.
13829
13830 2001-08-01  Ziemowit Laski  <zlaski@apple.com>
13831
13832         * c-parse.in (OBJC_NEED_RAW_IDENTIFIER): Define macro and flag for
13833         contextualizing Objective-C class name lookup by the lexer.
13834         (typespec_reserved_nonattr): Disable ObjC class name lookup after
13835         seeing a TYPESPEC.
13836         (protocoldef): Add support for forward @protocol declarations.
13837         (yylexname): Suppress ObjC class name lookup in certain contexts;
13838         re-enable after lookup is complete.
13839         (_yylex): Re-enable ObjC class name lookup when certain
13840         punctuation marks are seen.
13841
13842         * objc/objc-act.c (check_protocol_recursively): New function used
13843         for finding circular dependencies in protocols.
13844         (objc_declare_protocols): New function for handling forward
13845         @protocol declarations.
13846         (receiver_is_class_object): Detect the case when 'self' is used
13847         inside of a class method.
13848         (build_message_expr): Issue a warning if class method is desired
13849         but instance method is found instead.
13850         (conforms_to_protocol): Streamline.
13851         (objc_comptypes): Detect the fact that 'Bar<Foo> foo' conforms to
13852         protocol Foo, even if 'Bar foo' does not.
13853         (check_protocols): Streamline.
13854         (start_protocol): Add checks for circular and duplicate protocol
13855         definitions.
13856         (encode_aggregate_within): For typedefs of structs, encode the
13857         underlying struct.
13858         * objc/objc-act.h (PROTOCOL_DEFINED): New tree accessor.
13859         (objc_declare_protocols): New prototype.
13860
13861 2001-08-01  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
13862
13863         * cpphash.h (struct cpp_reader): New members line, pseudo_newlines.
13864         * cpplex.c (handle_newline): Update prototype.  Maintain logical
13865         line number.
13866         (skip_escaped_newlines, skip_block_comment, parse_string):
13867         Update accordingly.
13868         (_cpp_lex_token): Update, and store token position within the token.
13869         * cpplib.h (struct cpp_token): Add line and column entries.
13870         * cppmacro.c (replace_args): Position stringified tokens correctly.
13871
13872 2001-08-01  Andreas Jaeger  <aj@suse.de>
13873
13874         * basic-block.h: Add prototype for last_loop_beg_note.
13875
13876 2001-07-31  Alexandre Petit-Bianco  <apbianco@redhat.com>
13877
13878         * expr.c (safe_from_p): Use WITH_CLEANUP_EXPR_RTL instead of
13879         RTL_EXPR_RTL while handling WITH_CLEANUP_EXPR nodes. Fixed typo in
13880         comment.
13881         (expand_expr): Use WITH_CLEANUP_EXPR_RTL instead of RTL_EXPR_RTL
13882         while handling WITH_CLEANUP_EXPR node. Use second operand calling
13883         expand_decl_cleanup.
13884         * tree.c (firt_rtl_op): The third operand of WITH_CLEANUP_EXPR is
13885         the first RTX.
13886         (simple_cst_equal): WITH_CLEANUP_EXPR node to use its second
13887         operand while calling simple_cst_equal.
13888         * tree.def (WITH_CLEANUP_EXPR): Switched operands: the second
13889         operand is the cleanup expression, the third is the RTL_EXPR.
13890         * tree.h (WITH_CLEANUP_EXPR_RTL): New macro.
13891
13892 2001-07-31  Jeff Sturm  <jsturm@one-point.com>
13893
13894         * except.c (duplicate_eh_regions): Test n_array[i] for NULL.
13895
13896 2001-07-31  matthew green  <mrg@eterna.com.au>
13897
13898         * config.gcc (i386-*-netbsdelf): New description.
13899         * config/i386/netbsd-elf.h: New file.
13900
13901 2001-07-30  Geoffrey Keating  <geoffk@redhat.com>
13902
13903         * loop.c (check_dbra_loop): Use single_set to compute
13904         jump_label.
13905
13906 2001-07-31  Daniel Berlin  <dan@cgsoftware.com>
13907
13908         PowerPC reorg and support for powerpc64-*-linux*.
13909
13910         Also fixes emitting of constants on 32 bit and 64 bit
13911         platforms.
13912
13913         * config.gcc: powerpc64-*-linux* is a new target.
13914         Things that needed aix.h now also include xcoff.h
13915
13916         * config/rs6000/rs6000.h: Split XCOFF specific stuff into
13917         xcoff.h.
13918         Move AIX specific stuff into aix.h.
13919         (TARGET_AIX): Renamed to TARGET_XCOFF, since the AIX ABI is used
13920         with more than just XCOFF now.
13921         (SET_ASM_OP): Remove, now defined where needed.
13922         (FUNCTION_PROLOGUE): New macro definition.
13923         (FUNCTION_EPILOGUE): New macro definition.
13924         (ASM_OPEN_PAREN, ASM_CLOSE_PAREN): New macro definition.
13925
13926         * config/rs6000/xcoff.h: New file.
13927
13928         * config/rs6000/linux64.h: New file.
13929
13930         * config/rs6000/darwin.h: Copy needed AIX alignment definitions.
13931
13932 2001-07-31  Alan Modra  <amodra@bigpond.net.au>
13933
13934         * rs6000.c (print_operand_address): Handle ELF syntax.
13935         (output_toc): Simplify.  Use DOUBLE_INT_ASM_OP.
13936         * rs6000.md (load_toc_aix_di): Handle ELF syntax.
13937         * rs6000.h (ASM_OUTPUT_DOUBLE_INT, ASM_LONG): Use DOUBLE_INT_ASM_OP.
13938
13939 2001-07-31  David Edelsohn  <edelsohn@gnu.org>
13940
13941         * rs6000.c (rs6000_override_options): Only disable
13942         flag_function_sections for XCOFF.
13943         (exact_log2_cint_operand): New predicate.
13944         (reg_or_{add,sub}_cint64_operand): New predicates.
13945         (add_operand): Compare CONST_INT with fewer function calls.
13946         (rs6000_emit_set_const, rs6000_emit_set_long_const): New functions.
13947         (print_operand, case 'p'): Ensure positive operand.
13948         (rs6000_emit_load_toc_table): No load_toc_v4_pic_di.
13949         * rs6000.h (CONST_OK_FOR_LETTER_P, case 'N'): Ensure positive value.
13950         (PREDICATE_CODES): Add new predicates.
13951         * rs6000.md (addsi3): Split 32-bit constants more correctly.
13952         (divsi3, modsi3): Ensure positive power-of-2.
13953         (adddi3): Use new predicate.  Split 32-bit constants more
13954         correctly.  Re-arrange splitter to handle any constant.
13955         (subdi3): Use new predicate.
13956         (divdi3, moddi3): Ensure positive power-of-2.
13957         (movdi): Use rs6000_emit_set_const.
13958         (load_toc_v4_pic_di): Delete.
13959
13960 2001-07-31  Graham Stott <grahams@redhat.com>
13961
13962         * function.c (pad_below): Revert 2001-07-26 patch.
13963
13964 Tue Jul 31 15:37:35 CEST 2001  Jan Hubicka  <jh@suse.cz>
13965
13966         * reg-stack (convert_regs_1): Fix best edge condition.
13967
13968 Tue Jul 31 15:33:27 CEST 2001  Jan Hubicka  <jh@suse.cz>
13969
13970         * jump.c (duplicate_loop_exit_test): Better test for jumps
13971         entering the loop; create loop pre_header.
13972
13973 2001-07-31 Hartmut Penner <hpenner@de.ibm.com>
13974
13975         * doc/install.texi: Add s390 and s390x as new targets.
13976         * doc/invoke.texi: Add documentation of S/390 and zSeries
13977         target options.
13978         * doc/md.texi: Add documentation of S/390 and zSeries constraints.
13979
13980 2001-07-30  Roman Zippel  <zippel@linux-m68k.org>
13981
13982         * config/m68k/m68k.md: Replace all general_operand with
13983         nonimmediate_operand for all destinations.
13984         * config/m68k/m68k.c (not_sp_operand): Likewise.
13985
13986 Mon Jul 30 23:20:34 EDT 2001  John Wehle  (john@feith.com)
13987
13988         * flow.c (merge_blocks): Return 1 if an extra jump is inserted.
13989
13990 2001-07-30  Richard Henderson  <rth@redhat.com>
13991
13992         * config/ia64/ia64.h (DEBUG_RANGES_SECTION): New.
13993         * config/mips/iris6.h (DEBUG_RANGES_SECTION): New.
13994
13995 2001-07-30  Roman Zippel  <zippel@linux-m68k.org>
13996
13997         * config/m68k/m68k.h (TARGET_SWITCHES/TARGET_OPTIONS):
13998         Add missing doc strings
13999         * config/m68k/linux-aout.h (SUBTARGET_SWITCHES): Likewise
14000         * config/m68k/linux.h (SUBTARGET_SWITCHES): Likewise
14001
14002 Mon Jul 30 22:16:08 CEST 2001  Jan Hubicka  <jh@suse.cz>
14003
14004         * i386.c (ix86_output_main_function_alignment_hack): New function.
14005         (TARGET_ASM_FUNCTION_PROLOGUE): Default to it.
14006
14007         * flow.c (mark_dfs_back_edges): Move from loop_p ; mark back
14008         edges by EDGE_DFS_BACK flag.
14009         (dump_edge_info): Add dfs_back flag.
14010         * basic-block.h (EDGE_DFS_BACK): New constant.
14011         (mark_dfs_back_edges): Declare.
14012         * alias.c (loop_p): Remove.
14013         (mark_constant_function): Use mark_dfs_back_edges.
14014
14015         * reg-stack.c (block_info_def): Add predecessors counter and stack_out.
14016         (reg_to_stack): Call mark_dfs_back_edges; count the predecessors.
14017         (compensate_edge): Break out from ...
14018         (convert_regs_1): ... here; do smart choosing of stack_out to copy.
14019         (convert_regs_2): Set block_done once block is really done;
14020         Do updating of the predecessors counts.
14021
14022         * toplev.c (rest_of_compilation): Recompute block_for_insn
14023         before post-reload cfg_cleanup.
14024         * function.c (thread_prologue_epilogue_insns):
14025         Call set_block_for_new_insns when emitting prologue directly.
14026
14027 2001-07-30  Andreas Jaeger  <aj@suse.de>
14028
14029         * jump.c: Add prototype for mark_modified_reg.
14030
14031         * cse.c (set_live_p): Add unused attribute.
14032
14033         * gcov.c (calculate_branch_probs): Use gcov_type to avoid
14034         overflow.
14035         (scan_for_source_files): Use long for count to avoid overflow.
14036         (output_data): Likewise.
14037         (output_data): Don't use string concatatenation to silence gcc
14038         -traditional.
14039
14040         * predict.c: Fix typos and grammar.
14041
14042         * gcse.c (insert_insn_end_bb): Remove unused variables.
14043
14044 Mon Jul 30 21:54:53 CEST 2001  Jan Hubicka  <jh@suse.cz>
14045
14046         * flow.c (mark_set_1): Use REG_FREQ_FROM_BB.
14047         (attempt_auto_inc): LIkewise.
14048         (mark_used_reg): Likewise.
14049         (try_pre_increment_1): Likewise.
14050         * regclass.c (regclass): Likewise.
14051         * global.c (allocno_compare): Update comment; change scaling factor.
14052         * local-alloc.c (QTY_CMP_PRI): Likewise.
14053         * regs.h (REG_FREQ_FROM_BB): New.
14054         (REG_FREQ_MAX): Likewise.
14055
14056 2001-07-30  H.J. Lu <hjl@gnu.org>
14057
14058         * config/mips/linux.h (CPLUSPLUS_CPP_SPEC): Add
14059         -D_GNU_SOURCE.
14060
14061 2001-07-30  H.J. Lu  (hjl@gnu.org)
14062
14063         * config/mips/linux.h (ASM_DECLARE_FUNCTION_NAME): Defined.
14064         (ASM_DECLARE_FUNCTION_SIZE): Likewise.
14065         (FUNCTION_NAME_ALREADY_DECLARED): Likewise.
14066
14067 2001-07-30  Nick Clifton  <nickc@cambridge.redhat.com>
14068
14069         * config/arm/t-arm-elf (MULTILIB_EXCEPTIONS): Skip -mthumb as well
14070         as -mthumb-interwork when -mcpu=arm7 is specified.
14071
14072 Mon Jul 30 17:44:43 CEST 2001  Jan Hubicka  <jh@suse.cz>
14073
14074         * predict.def (noreturn, loop branch, loop exit): Mark as first
14075         match heuristics.
14076
14077 Mon Jul 30 12:52:11 CEST 2001  Jan Hubicka  <jh@suse.cz>
14078
14079         * combine.c (try_combine): Avoid barrier after noop jumps.
14080
14081 2001-07-29  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
14082
14083         * cpphash.h (struct cpp_reader): Remove import_warning.
14084         * cpplib.c (skip_rest_of_line): Don't bother turning off
14085         macro expansion.
14086         (parse_include): Move include handling to...
14087         (do_include_common): ... here.  Move import warning from...
14088         (do_import): ... here.
14089         (do_pragma_poison): Don't do a callback for poison identifiers.
14090         * cpplib.h (struct cpp_callbacks): Don't do poison callbacks.
14091         * cppmain.c (setup_callbacks): Similarly.
14092
14093 Sun Jul 29 23:26:50 CEST 2001  Jan Hubicka  <jh@suse.cz>
14094
14095         * rtlanal.c (parms_set, find_first_parameter_load): Break out from...;
14096         handle multiple sets.
14097         * except.c (sjlj_mark_call_sites): .... here.
14098         * gcse.c (insert_insn_end_bb): Use find_first_parameter_load.
14099
14100 Sun Jul 29 21:38:45 CEST 2001  Jan Hubicka  <jh@suse.cz>
14101
14102         Suggested by Richard Henderson and Richard Kenner:
14103         * combine.c (recog_for_combine): Use the fake recog
14104         only if instruction does not match.
14105         * rtl.h (NOOP_MOVE_INSN_CODE): New.
14106         * rtlanal.c (noop_move_p): Always return 1 for NOOP_MOVE_INSN_CODE.
14107
14108         * combine.c (try_combine): Discover noop jump as direct jump.
14109
14110 2001-07-29  Daniel Berlin  <dan@cgsoftware.com>
14111
14112         * df.c (df_rd_global_compute): Add successors to worklist, not
14113         current item.
14114         (df_ru_global_compute): Ditto.
14115
14116 2001-07-27  Daniel Berlin  <dan@cgsoftware.com>
14117
14118         * regclass.c (reg_scan_mark_refs): Increment REG_N_REFS when we
14119         increment REG_N_SETS.
14120
14121 2001-07-26  Daniel Berlin  <dan@cgsoftware.com>
14122
14123         * sbitmap.h: New prototype for sbitmap_a_xor_b.
14124
14125         * sbitmap.c (sbitmap_a_xor_b): New function.
14126         ifdef the basic block stuff on IN_GCC.
14127
14128 2001-07-29  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
14129
14130         * cppexp.c (parse_defined): Always record the macro name.
14131         (lex): Don't worry about identifiers, or special-case
14132         CPP_NOT here.
14133         (_cpp_parse_expr): Figure out at the end of the routine
14134         whether we saw a valid !defined() expression.
14135         * cppfiles.c (stack_include_file): Update for mi_valid.
14136         (_cpp_pop_file_buffer): Similarly.
14137         * cpplex.c (_cpp_lex_token): Similarly.
14138         * cpphash.h (enum mi_state, enum mi_ind, mi_state,
14139         mi_if_not_defined, mi_lexed): Remove.
14140         (mi_valid): New.
14141         * cpplib.c (do_if): Simplify.
14142         (do_endif, push_conditional, _cpp_handle_directive): Update
14143         for renaming of mi_state to mi_valid.
14144 doc:
14145         * cpp.texi: Add index entries for digraphs, and add comment
14146         that C++ refers to them as alternative tokens.
14147
14148 Sun Jul 29 18:59:13 CEST 2001  Jan Hubicka  <jh@suse.cz>
14149
14150         * basic-block.h (CLEANUP_PRE_LOOP): New.
14151         * except.c (finish_eh_generation): Update call of cleanup_cfg.
14152         * sibcall.c (optimize_sibling_calls): Likewise.
14153         * toplev.c (rest_of_compilation): Likewise.
14154         * flow.c (try_forward_edges): Take argument MODE;
14155         do not forward over loop pre-headers if CLEANUP_PRE_LOOP.
14156         (try_optimize_cfg): Update call of try_forward_edges.
14157
14158 Sun Jul 29 18:59:56 CEST 2001  Roman Zippel  <zippel@linux-m68k.org>
14159                                 Jan Hubicka  <jh@suse.cz>
14160
14161         * (validate_replace_rtx_1): Fix simplification of MINUS.
14162
14163 2001-07-29  Neil Booth  <neil@daikokuya.demon.co.uk>
14164
14165         PR preprocessor/3669
14166         * cppinit.c (init_dependency_output): Turn off dump requests
14167         if sending dependencies to stdout.
14168
14169 2001-07-28  Richard Henderson  <rth@redhat.com>
14170
14171         * flow.c (life_analysis): Elide PROP_ALLOW_CFG_CHANGES if
14172         not optimizing.
14173
14174 2001-07-28  Golubev I. N.  <gin@mo.msk.ru>
14175
14176         * config/i386/sco5.h (DWARF2_DEBUGGING_INFO): Define.
14177
14178 2001-07-28  Kazu Hirata  <kazu@hxi.com>
14179
14180         * config/h8300/h8300.h (ENCODE_SECTION_INFO): Check to see if DECL
14181         is VAR_DECL first to prevent an ICE.
14182
14183 2001-07-28  Richard Henderson  <rth@redhat.com>
14184
14185         * varasm.c (immed_real_const_1): Don't elide special cases for
14186         nested functions.
14187         (clear_const_double_mem): Clear const_tiny_rtx too.
14188
14189 2001-07-28  Richard Henderson  <rth@redhat.com>
14190
14191         * dwarf2out.c (dw_val_class_offset): New.
14192         (struct dw_ranges_struct, dw_ranges_ref): New.
14193         (ranges_table, ranges_table_allocated): New.
14194         (ranges_table_in_use, RANGES_TABLE_INCREMENT): New.
14195         (add_AT_offset, add_ranges, output_ranges): New.
14196         (print_die, output_die): Handle dw_val_class_offset.
14197         (attr_checksum, size_of_die, value_format): Likewise.
14198         (gen_lexical_block_die): Handle non-contiguous blocks.
14199         (gen_block_die): Likewise.
14200         (dwarf2out_finish): Add a DW_AT_entry_pc to the compilation unit
14201         if needed.  Dump the ranges table.
14202         * final.c (final_start_function): Remove unnecessary notes and
14203         rebuild the block tree before numbering the blocks.
14204         * function.c (reorder_blocks_0): Walk the existing block tree
14205         to unmark all blocks.
14206         (reorder_blocks_1): Create block fragments when duplicate block
14207         notes are seen.
14208         (reorder_fix_fragments): New.
14209         (reorder_blocks): Call it.
14210         * tree.h (BLOCK_FRAGMENT_ORIGIN, BLOCK_FRAGMENT_CHAIN): New.
14211
14212 2001-07-28  Richard Henderson  <rth@redhat.com>
14213
14214         * emit-rtl.c (adjust_address): Make a copy of the memory address.
14215
14216 2001-07-28  Richard Henderson  <rth@redhat.com>
14217
14218         * flow.c (add_to_mem_set_list): New function.
14219         (init_propagate_block_info): Use it.
14220         (mark_set_1): Likewise.
14221         (insn_dead_p): Canonicalize memory address for dead store
14222         comparison.  Allow wider mode stores to kill narrower mode stores.
14223         (invalidate_mems_from_autoinc): Use invalidate_mems_from_set.
14224         (invalidate_mems_from_set): Don't handle MEMs.
14225
14226 2001-07-28  Kazu Hirata  <kazu@hxi.com>
14227
14228         * config/h8300/h8300.h: Fix formatting.
14229
14230 Sat Jul 28 23:35:22 CEST 2001  Jan Hubicka  <jh@suse.cz>
14231
14232         * basic-block.h (EDGE_FREQUENCY): New macro.
14233         * bb-reorder (fixup_reorder_chain): Set counts and frequencies
14234         for new BB/edges.
14235         * flow.c (find_sub_basic_blocks): Likewise.
14236         (try_crossjump_to_edge): Likewise; use EDGE_FREQUENCY
14237         (redirect_edge_and_branch): Use EDGE_FREQUENCY.
14238
14239         * predict.c (DEF_PREDICTOR): New argument FLAGS.
14240         (HITRATE): New macro.
14241         (PRED_FLAG_FIRST_MATCH): New constant.
14242         (predictor_info): New field flgags.
14243         (combine_predictions_for_insn): Use DS theory to combine
14244         probabilities; set the edge probabilities when finished.
14245         (estimate_probability): Avoid duplicated matches
14246         of LOOP_BRANCH heuristics for nested loops; update comment.
14247         * predict.def: Add flags for each prediction, set probabilities
14248         according to B&L paper.
14249         * predict.h (DEF_PREDICTOR): New argument FLAGS.
14250
14251         * profile.c (compute_branch_probabilities):  Cleanup way the edge
14252         probabilities are computed and REG_BR_PROB notes are dropped; if
14253         values does not match, emit error.
14254         (init_branch_prob): Do error instead of warning when profile driven
14255         feedback is missing or corrupt.
14256
14257 2001-07-27  DJ Delorie  <dj@redhat.com>
14258
14259         * ifcvt.c (noce_get_alt_condition): If the condition is a compare
14260         against a constant, try to adjust the compare to have the desired
14261         constant in it so that min/max optimizations happen more often.
14262
14263 Fri Jul 27 17:53:00 CEST 2001  Jan Hubicka  <jh@suse.cz>
14264
14265         * flow.c (last_loop_beg_note): New function.
14266         (redirect_edge_and_branch): Use it.
14267         (split_edge): Likewise.
14268
14269         * alias.c (loop_p): Avoid uninitialized memory access.
14270
14271         * flow.c (try_forward_edges): Avoid accessing freed memory.
14272
14273         * flow.c (backward_edge_of_syntactic_loop_p): Avoid uninitialized
14274         variable access.
14275
14276 2001-07-26  Andrew Haley  <aph@redhat.com>
14277         Joern Rennecke <amylaar@redhat.com>
14278
14279         * config/sh/linux.h (CPP_DEFAULT_CPU_SPEC): New.
14280         (SUBTARGET_CPP_ENDIAN_SPEC): New.
14281         (SUBTARGET_CPP_SPEC): New.
14282         (CPP_SPEC): Remove.
14283         * config/sh/sh.h (SUBTARGET_CPP_ENDIAN_SPEC): New.
14284         (SUBTARGET_CPP_PTR_SPEC): New.
14285         (CPP_DEFAULT_CPU_SPEC): New.
14286         (EXTRA_SPECS): Add SUBTARGET_CPP_ENDIAN_SPEC,
14287         SUBTARGET_CPP_PTR_SPEC, and CPP_DEFAULT_CPU_SPEC.
14288         (CPP_SPEC): Break out parts into SUBTARGET_CPP_ENDIAN_SPEC,
14289         SUBTARGET_CPP_PTR_SPEC, and CPP_DEFAULT_CPU_SPEC.
14290         (SUBTARGET_CPP_SPEC): Define as an empty string.
14291
14292 2001-07-27  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
14293
14294         * doc/install.texi (Configuration): Properly link the host
14295         specific instructions also when generating HTML.
14296
14297 Fri Jul 27 00:33:35 EDT 2001  John Wehle  (john@feith.com)
14298
14299         * flow.c (redirect_edge_and_branch_force): Test
14300         target->global_live_at_start.
14301
14302 2001-07-26  Richard Henderson  <rth@redhat.com>
14303
14304         * simplify-rtx.c (avoid_constant_pool_reference): Export.
14305         * rtl.h (avoid_constant_pool_reference): Declare it.
14306         * dwarf2out.c (add_location_or_const_value_attribute): Use it.
14307         (add_const_value_attribute): Use add_AT_unsigned for unsigned values.
14308
14309 Thu Jul 26 22:30:22 CEST 2001  Jan Hubicka  <jh@suse.cz>
14310
14311         * rtl.h (cleanup_barriers): Declare.
14312         * jump.c (cleanup_barriers): New function.
14313         * toplev.c (rest_of_compilation): Call cleanup_barriers
14314         before loop optimizer and after bb_reorder.
14315
14316         * flow.c (back_edge_of_syntactic_loop_p): New.
14317         (split_edge): Use it.
14318
14319 2001-07-26  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
14320
14321         * glimits.h (_MACH_MACHLIMITS_H_): Delete.
14322
14323 Thu Jul 26 22:22:21 2001  Denis Chertykov  <denisc@overta.ru>
14324
14325         * cse.c (cse_process_notes): Replace any registers if the address
14326         remains valid.
14327
14328 Thu Jul 26 14:04:03 EDT 2001  John Wehle  (john@feith.com)
14329
14330         * basic-block.h (PROP_ALLOW_CFG_CHANGES): Define.
14331         (PROP_FINAL): Include PROP_ALLOW_CFG_CHANGES.
14332         (propagate_block): Update prototype.
14333         * flow.c (update_life_info): Simplify the CFG and
14334         recalculate the global regs which are alive when
14335         removing dead code during a global update.
14336         (propagate_block): Return non-zero if an INSN is
14337         deleted.
14338
14339 2001-07-26  Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
14340
14341         * Makefile.in (LIBICONV): Define.
14342
14343 2001-07-26  Catherine Moore  <clm@redhat.com>
14344
14345         * config/v850/v850.h (ENCODE_SECTION_INFO):  Change order
14346         of conditional to avoid tree checking errors.
14347
14348 2001-07-26  Kazu Hirata  <kazu@hxi.com>
14349
14350         * regmove.c (regmove_optimize): Don't replace a reg with
14351         another reg of a different mode.
14352
14353 2001-07-26  Andrew MacLeod  <amacleod@redhat.com>
14354
14355         * params.def (PARAM_MAX_PENDING_LIST_LENGTH): Add parameter to
14356         limit length of dependency flush list.
14357         * params.h (MAX_PENDING_LIST_LENGTH): Define.
14358         * sched-int.h  (struct deps): Add pending_flush_length field.
14359         * sched-deps.c (flush_pending_lists): Last_pending_memory_flush now
14360         has 1 element in it.
14361         (sched_analyze_1): Use MAX_PENDING_LIST_LENGTH.
14362         (sched_analyze): After a jump, if the pending memory flush list is too
14363         large, flush the pending lists.
14364         (init_deps): Initialize pending_flush_length to 0.
14365         * doc/invoke.texi (max_pending_list_length): Document parameter.
14366
14367 2001-07-26  Neil Booth  <neil@daikokuya.demon.co.uk>
14368
14369         * toplev.c, varasm.c, final.c: Include xcoffout.h if appropriate.
14370         * dbxout.c (dbxout_global_decl): Move outside #ifdef.
14371         * Makefile.in (varasm.o, final.o, toplev.o): Update dependencies.
14372
14373 2001-07-26  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
14374
14375         * cpphash.h (struct_lexer_state): Delete was_skipping.
14376         Move skipping here from struct cpp_reader.
14377         * cpplex.c (parse_identifier): Update.
14378         (_cpp_lex_token): Don't skip tokens in a directive.
14379         * cpplib.c (struct if_stack): Update.
14380         (start_directive, end_directive): Don't change skipping state.
14381         (_cpp_handle_directive): Update.
14382         (do_ifdef, do_ifndef, do_if, do_elif): Similarly.
14383         (do_else, do_endif): Update; only check for excess tokens if not
14384         in a skipped conditional block.
14385         (push_conditional): Update for new struct if_stack.
14386
14387 2001-07-26  Graham Stott  <grahams@redhat.com>
14388
14389         * function.c (locate_and_pad_parm): Also pad initial offset
14390         so that the total argument size also includes the padding.
14391
14392 2001-07-26  Graham Stott <grahams@redhat.com>
14393
14394         * gensupport.c (alter_output_for_insn): Correct enable checking failure
14395         change XSTR to XTMPL.
14396
14397         (process_one_cond_exec): Likewise
14398
14399 2001-07-25  Richard Henderson  <rth@redhat.com>
14400
14401         * varasm.c (assemble_variable): Create DECL_RTL before setting
14402         TREE_ASM_WRITTEN.
14403
14404 Thu Jul 26 00:19:30 CEST 2001  Jan Hubicka  <jh@suse.cz>
14405
14406         * predict.c (estimate_probability): Avoid duplicated predictions.
14407
14408         * loop.c (find_and_verify_loops): Grok multiple barriers.
14409
14410 Wed Jul 25 18:00:05 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14411
14412         * config/alpha/alpha.c (print_operand, case '/'): Don't write '/'.
14413
14414         * dbxout.c: Consistently use putc instead of fputc.
14415         (print_wide_int): New function; call instead of direct fprintf.
14416         (dbxout_type_index): Adjust calls of CHARS to be more accurate.
14417         (dbxout_type_fields, dbxout_type_method_1): Likewise.
14418         (dbxout_type_methods, dbxout_range_type, dbxout_type): Likewise.
14419         (print_int_cst_octal): Likewise.
14420         (print_octal): Show we wrote characters.
14421         (dbxout_type): Set have_used_extensions in more places.
14422
14423 2001-07-25  Catherine Moore  <clm@redhat.com>
14424
14425         * config/v850/v850.c (v850_va_arg):  Use addr
14426         instead of valist to build incr.
14427
14428 Wed Jul 25 22:48:59 CEST 2001  Jan Hubicka  <jh@suse.cz>
14429
14430         * flow.c (delete_dead_jumptables): New function.
14431         (life_analyzis): Call it.
14432         * bb-reorder.c (skip_insns_after_block): Handle contradictory
14433         sequences.
14434
14435 2001-07-25  Richard Henderson  <rth@redhat.com>
14436
14437         * except.c (reachable_handlers): Handle a region being removed
14438         out from under a RESX.
14439
14440 2001-07-25  Richard Henderson  <rth@redhat.com>
14441
14442         * config/alpha/alpha.c (alpha_emit_conditional_move): Always
14443         swap GE/GT if it is an fp comparison.
14444
14445 2001-07-25  Andrew Haley  <aph@cambridge.redhat.com>
14446
14447         * alias.c (rtx_equal_for_memref_p): Allow strings as types in
14448         operands.
14449
14450 Wed Jul 25 08:25:01 2001  Jeffrey A Law  (law@cygnus.com)
14451
14452         * ssa.c (rename_insn_1): Do not wrap an assignment to a
14453         paradoxical SUBREG inside a SEQUENCE.  Fix minor formatting
14454         glitch.
14455
14456         * ssa-ccp.c (visit_expression): Handle CALL_INSNs that can
14457         throw an exception.
14458         (visit_expression): When attempting to simplify an expression,
14459         retrieve any modes for arguments before they are simplified
14460         to constants.
14461
14462 2001-07-25  Andrew MacLeod  <amacleod@redhat.com>
14463             Janis Johnson  <janis@us.ibm.com>
14464
14465         * stmt.c (expand_goto): A nonlocal goto can be a call too.
14466         * builtins.c (expand_builtin_longjmp): Reverse label and static chain
14467         pointer parameters to match documented usage of nonlocal_goto.
14468         * config/ia64/ia64.md (nonlocal_goto): Revert label and static chain
14469         parameters to their correct order.
14470         * config/sparc/sparc.md (nonlocal_goto): Revert label and static chain
14471         parameters to their correct order.
14472
14473 2001-07-25  Andrew MacLeod  <amacleod@redhat.com>
14474
14475         * config/ia64/ia64.h (STRIP_NAME_ENCODING): Strip out '*' as well.
14476
14477 2001-07-25  Jan Hubicka  <jh@suse.cz>
14478             Richard Henderson  <rth@redhat.com>
14479
14480         * flow.c (find_sub_basic_blocks): Fix handling of the last BB in
14481         the sequence.
14482         (make_edges): New argument update_p; populate the edge cache if set.
14483         (find_basic_blocks): Update make_edges invocation.
14484
14485 2001-07-24  Joel Sherrill <joel@OARcorp.com>
14486
14487         * config/i960/i960.h (CPP_SPEC): Define _SOFT_FLOAT for -msoft-float.
14488
14489 2001-07-24  Joel Sherrill <joel@OARcorp.com>
14490
14491         * config/sparc/rtems.h (CPP_PREDEFINES): Remove redundant
14492         -Acpu and -Amachine.h.
14493         * config/sparc/rtemself.h (CPP_PREDEFINES): Likewise.
14494         Corrected header to say ELF not a.out.
14495         * config/sparc/sparc.h (CPP_CPU_SPEC): Define _SOFT_FLOAT
14496         when given -msoft-float.
14497
14498 2001-07-24  Joel Sherrill <joel@OARcorp.com>
14499
14500         * config.gcc (arm*-*-rtems*): Include crtinit.o and crtfini.o as
14501         extra multilib parts like arm-elf.
14502         (i960-*-coff*, i960-*-rtems): Should not use collect2.
14503         (m68020-*-elf*, m68k-*-elf*, m68k-*-rtems*): Include crtinit.o and
14504         crtfini.o as extra multilib parts.
14505
14506 2001-07-24  Joel Sherrill <joel@OARcorp.com>
14507
14508         * configure.in: Add rtems as a supported thread model.
14509         * gthr-rtems.h: Add missing entry point __gthread_active_p.
14510         * configure: Rebuilt.
14511
14512 2001-07-24  Lars Brinkhoff  <lars@nocrew.org>
14513
14514         * stor-layout.c (get_mode_alignment): make it work when
14515         BITS_PER_UNIT is not a power of two.
14516         * builtins.c (get_pointer_alignment): Likewise.
14517
14518 2001-07-24  Richard Henderson  <rth@redhat.com>
14519
14520         * simplify-rtx.c (avoid_constant_pool_reference): Coerce
14521         the retrieved constant into the expected mode.
14522
14523 Wed Jul 25 01:41:27 CEST 2001  Jan Hubicka  <jh@suse.cz>
14524
14525         * flow.c (try_simplify_condjump): Avoid duplicated edges.
14526         (verify_flow_info): Check for duplicated edges; clarify
14527         error reporting.
14528
14529         * flow.c (block_label): Update basic_block_for_insn.
14530         (commit_edge_insertions): Call compute_bb_for_insn.
14531
14532         * flow.c (purge_dead_edges): Handle conditional jumps and conditional
14533         returns too.
14534
14535         * flow.c (redirect_edge_and_branch,
14536         try_optimize_cfg): Use redirect_edge_succ_nodup
14537         (redirect_edge_succ_nodup): New.
14538         * basic_block.h (redirect_edge_succ_nodup): Declare.
14539
14540         * toplev.c (rest_of_compilation): Rebuild CFG before cfg_cleanup
14541         after gcse.
14542
14543 Wed Jul 25 00:32:49 CEST 2001  Jan Hubicka  <jh@suse.cz>
14544
14545         * flow.c (try_forward_edges): Accept fallthru edge; Update comment.
14546         (try_crossjump_to_edge): Update commetns.
14547         (try_crossjump_bb): Likewise.
14548
14549 2001-07-24  Richard Henderson  <rth@redhat.com>
14550
14551         * combine.c (distribute_notes): Move set of need_refresh
14552         for noop_move_p down to catch all cases.
14553
14554 Tue Jul 24 20:32:44 CEST 2001  Jan Hubicka  <jh@suse.cz>
14555
14556         * recog.c (split_all_insns_noflow): New.
14557         * rtl.h (split_all_insns_noflow): Declare.
14558         * ia64.c (ia64_reorg): Use split_all_insns_noflow.
14559         * m68hc11.c (m68hc11_reorg): Likewise.
14560         * sh.c (machine_dependent_reorg): Likewise.
14561         * toplev.c (rest_of_compilation): Likewise for last split_all_insns
14562         call.
14563
14564 2001-07-18  Andrew Haley  <aph@cambridge.redhat.com>
14565
14566         * config/sh/sh.md (ashlsi3_std splitter): Split only after reload.
14567         (ashlsi3_n splitter): Likewise.
14568         (lshrsi3_n splitter): Likewise.
14569
14570         (GOTaddr2picreg): Make const SImode.
14571         (sym_label2reg): Likewise.
14572         (symGOT2reg): Likewise.
14573         (symGOTOFF2reg) Likewise.
14574
14575         (casesi_worker_0): Make unspec SImode.
14576
14577 2001-07-18  Andrew Haley  <aph@cambridge.redhat.com>
14578
14579         * config/sh/sh.c (barrier_align): Check that an operand really is
14580         an insn before extracting its INSN_CODE.
14581
14582 2001-07-24  Andrew Haley  <aph@cambridge.redhat.com>
14583
14584         * config/sh/sh.h (OVERRIDE_OPTIONS): Add braces to get rid of
14585         dangling else.
14586
14587         * config/sh/sh.h (INITIALIZE_TRAMPOLINE): Truncate operands
14588         for SImode to prevent overflow.
14589
14590 2001-07-24  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
14591
14592         * config/mips/irix6-libc-compat.c: New file.
14593         * config/mips/t-iris6 (LIB2FUNCS_STATIC_EXTRA): Use it.
14594         * doc/install.texi (Specific, mips*-sgi-irix6): Mention structure
14595         passing workaround.
14596
14597 2001-07-24  lars brinkhoff  <lars@nocrew.org>
14598
14599         * rtl.texi (REG_POINTER): Document.
14600         (Machine Modes): Document BImode, OImode, PQImode, PHImode,
14601         QFmode, HFmode, TQFmode, QCmode, and HCmode.
14602
14603 Tue Jul 24 10:49:40 CEST 2001  Jan Hubicka  <jh@suse.cz>
14604
14605         * flow.c (delete_noop_moves): Do not confuse libcall regions.
14606
14607 2001-07-23  Richard Henderson  <rth@redhat.com>
14608
14609         * flow.c (try_simplify_condjump): Use tidy_fallthru_edge.
14610
14611 2001-07-23  Kazu Hirata  <kazu@hxi.com>
14612
14613         * config/h8300/h8300-protos.h: Add a prototype for
14614         general_operand_dst_push.
14615         * config/h8300/h8300.c (general_operand_dst_push): New.
14616         * config/h8300/h8300.h (OK_FOR_T): New.
14617         (EXTRA_CONSTRAINT): Use it.
14618         * config/h8300/h8300.md (movqi_push): Remove and integrate into
14619         the existing movqi pattern.
14620         (movhi_push): Likewise.
14621
14622         * reload.c: Fix comment typos.
14623
14624 Mon Jul 23 23:34:07 CEST 2001  Jan Hubicka  <jh@suse.cz>
14625
14626         * gcse.c (cprop_insn): Update call of cprop_cc0_jump.
14627
14628 2001-07-23  H.J. Lu  (hjl@gnu.org)
14629
14630         * doc/extend.texi: Update __builtin_return_address and
14631         __builtin_frame_address.
14632
14633 2001-07-23  Richard Henderson  <rth@redhat.com>
14634
14635         * config/i386/i386.c (ix86_expand_setcc): Don't use method 0
14636         before CSE.
14637         * config/i386/i386.md: New setcc+movzbl peephole2.
14638
14639 2001-07-23  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
14640
14641         * objc/Make-lang.in (objc-act.o): Depend on debug.h.
14642         * objc/objc-act.c: Include debug.h.
14643         (synth_module_prologue): Save and restore debug hooks too.
14644
14645 2001-07-23  lars brinkhoff  <lars@nocrew.org>
14646
14647         * tm.texi (TARGET_FLOAT_FORMAT): Document IBM_FLOAT_FORMAT
14648         and C4X_FLOAT_FORMAT.
14649         (BOOL_TYPE_SIZE): Document.
14650
14651 Mon Jul 23 11:54:23 2001  Clinton Popetz  <cpopetz@cpopetz.com>
14652
14653         * unroll.c (loop_iterations): Fix miscalculation of initial
14654         giv offset.
14655
14656 2001-07-13  Andrew Haley  <aph@redhat.com>
14657
14658         * doc/tm.texi (MD_CAN_REDIRECT_BRANCH): New macro.
14659         * config/sh/sh.h (MD_CAN_REDIRECT_BRANCH): New macro.
14660         * config/sh/sh.c (sh_can_redirect_branch): New function.
14661         * config/sh/sh-protos.h (sh_can_redirect_branch): Declare.
14662         * reorg.c (steal_delay_list_from_target): Use
14663         MD_CAN_REDIRECT_BRANCH to see if redirection is possible.
14664
14665 Mon Jul 23 17:20:18 CEST 2001  Jan Hubicka  <jh@suse.cz>
14666
14667         * flow.c (try_simplify_condjump): Unlink insn chain on
14668         fallthru edge; use can_fallthru.
14669
14670 Mon Jul 23 16:03:19 CEST 2001  Jan Hubicka  <jh@suse.cz>
14671
14672         * basic-block.h (find_sub_basic_block): Declare.
14673         * flow.c (make_edges): New arguments MIN and MAX;
14674         (find_sub_basic_blocks): Revamp to use make_edges
14675         and purge_dead_edges.
14676         (find_basic_blocks): Update call of find_sub_basic_block.
14677
14678         * recog.c (split_all_insns): Always expect CFG to be consistent;
14679         call find_sub_basic_blocks in case something has changed.
14680         * toplev.c (rest_of_compilation): Always call split_all_insns once CFG
14681         has been built.
14682
14683         * basic-block.h (delete_noop_moves): Declare.
14684         * combine.c (combine_instructions): Call it.
14685         (recog_for_combine): Tolerate noop moves
14686         (distribute_notes): Force refresh when register dies at noop move.
14687         * flow.c (delete_noop_moves): Use BB structure; delete JUMP insns
14688         too.
14689         (life_analysis): Update delete_noop_moves call.
14690         (set_noop_p): Move too ...
14691         * rtlanal.c (noop_move_p): ... here.
14692         * rtl.h (noop_move_p): Declare.
14693
14694         * basic-block.h (purge_all_dead_edges, purge_dead_edges): New functions.
14695         * toplev.c (rest_of_compilation): Conditionally call purge_all_dead_edges
14696         after combine.
14697         * gcse.c (cprop_cc0_jump, cprop_insn): New argument "basic_block".
14698         (cprop_jump): Likewise; call purge_dead_edges if substitution succeeded.
14699
14700 2001-07-23  Hans-Peter Nilsson  <hp@bitrange.com>
14701
14702         * reload.c (push_reload): Fix typo in comment.
14703         (find_reloads_address): Ditto.
14704         (reg_overlap_mentioned_for_reload_p): Ditto in head comment.
14705
14706 2001-07-22  Richard Henderson  <rth@redhat.com>
14707
14708         * flow.c: Grammar check and clarify a lot of comments.
14709         (try_simplify_condjump): Rename variables to be clearer.
14710         (try_forward_edges): Skip complex and fallthru edges.
14711         Rearrange tests to avoid duplicate checks.
14712         (flow_find_cross_jump): Likewise.
14713         (outgoing_edges_match): Allow match if neither branch has
14714         probability data.  Loosen probability match to 5%.
14715         (try_crossjump_to_edge): Hoist repeated indirection into
14716         local variables.
14717         (try_crossjump_bb): Don't check complex edges.  Eliminate
14718         redundant crossjump tests.
14719         (try_optimize_cfg): Fix use of bool.  Reorganize cheaper
14720         checks before more expensive checks.
14721
14722 2001-07-22  Richard Henderson  <rth@redhat.com>
14723
14724         * fold-const.c (fold): Test vs FLOAT_TYPE_P instead of
14725         INTEGRAL_TYPE_P when folding comparisons with operand_equal_p
14726         arguments.
14727
14728 2001-07-22  Richard Henderson  <rth@redhat.com>
14729
14730         * m68k.c (const_uint32_operand): Abort if mode is <= 32 bits.
14731         (const_sint32_operand): Likewise.
14732         * m68k.md (anon mulsi pattern): Use const_int_operand not
14733         const_sint32_operand.
14734         (umulsi3_highpart): Zero extend a constant input.
14735         (smulsi3_highpart): Don't bother checking SImode constant.
14736         (const_umulsi3_highpart): Give op3 DImode.
14737         (const_smulsi3_highpart): Likewise.
14738
14739 2001-07-22  Richard Henderson  <rth@redhat.com>
14740
14741         * flow.c (split_block): Make sure bb_note is included in the
14742         new block when splitting before a label.
14743
14744 Sun Jul 22 23:28:56 CEST 2001  Jan Hubicka  <jh@suse.cz>
14745
14746         * basic-block.h (redirect_edge_and_branch_force,
14747         redirect_edge_and_branch, block_label, forwarder_block_p): Declare.
14748         * flow.c (redirect_edge_and_branch_force,
14749         redirect_edge_and_branch, block_label, forwarder_block_p): Make global.
14750         (redirect_edge_and_branch_force): Fix copying of lifeness information.
14751         (block_label): Handle EXIT_BLOCK_PTR by returning NULL.
14752         * ifcvt.c (dead_or_predictable): Take BB as an new destination
14753         instead of label; update CFG after transformation.
14754         (find_if_case_1): Update call, use redirect_edge_and_branch_force
14755         for finishing the transformation; handle even case where ELSE
14756         does not follow THEN.
14757         (find_if_case_2): Update call of dead_or_predictable; simplify
14758         CFG update.
14759
14760         * emit-rtl.c (split_branch_probability): New global variable.
14761         (try_split): Take care to set split_branch_probability and
14762         create REG_BR_PROB note for new jump insns.
14763         * md.texi (define_split): Document new feature.
14764
14765         * i386.c (ix86_split_fp_branch): Redistribute branch probability notes.
14766
14767 2001-07-22  Neil Booth  <neil@daikokuya.demon.co.uk>
14768
14769         * varasm.c: Don't inlcude dbxout.h, sdbout.h or xcoffout.h.
14770         (asm_out_file): Remove redundant declaration.
14771         (assemble_asm): Remove old #if 0 block.
14772         (assemble_variable): Remove end of function; debug output is
14773         now handled with global_decl.  Remove old #if 0 block.  Update.
14774         Remove saved_in_section and associated no-op code.
14775         * Makefile.in (varasm.o): Correct dependencies.
14776
14777 Sun Jul 22 17:55:11 2001  Alexandre Oliva  <aoliva@redhat.com>
14778
14779         * config/i386/freebsd-aout.h (ASM_PREFERRED_EH_DATA_FORMAT): Use
14780         the definition in defaults.h.
14781
14782 Sun Jul 22 21:31:04 CEST 2001  Jan Hubicka  <jh@suse.cz>
14783
14784         * jump.c: Update comments.
14785         (delete_barrier_successors, delete_unreferenced_labels,
14786         delete_noop_moves, tension_vector_labels, delete_from_jump_chain,
14787         delete_labelref_insn, redirect_tablejump, jump_optimize_1,
14788         jump_optimize, jump_optimize_minimal): Kill.
14789         (rebuild_jump_labels): Move code from jump_optimize_1.
14790         (purge_line_number_notes): Likewise.
14791         (copy_loop_headers): Likewise.
14792         * reg-stack.c: Update comment.
14793         * stmt.c: Likewise.
14794         * rtl.h (jump_optimize, jump_optimize_1, JUMP_NOOP_MOVES,
14795         JUMP_AFTER_REGSCAN): Kill.
14796         * toplev.c (rest_of_compilation): Use cleanup_cfg, call
14797         purge_line_number_notes and copy_loop_headers.
14798
14799 2001-07-22 Neil Booth  <neil@daikokuya.demon.co.uk>
14800            Richard Henderson  <rth@redhat.com>
14801
14802         * dbxout.c (dbxout_global_decl): New.
14803         (xcoff_debug_hooks, dbx_debug_hooks): Use it.
14804         * sdbout.c (sdbout_finish): New.
14805         (sdbout_debug_hooks): Use it, add comments.
14806         (sdbout_global_decl): Defer initialised public vars to
14807         sdbout_finish.
14808         * varasm.c (assemble_variable): Don't output debug information
14809         for file-scope variables.
14810
14811 2001-07-22  Richard Henderson  <rth@redhat.com>
14812
14813         * config/alpha/alpha.c (get_trap_mode_suffix): New.
14814         (get_round_mode_suffix): New.
14815         (print_operand): Use them for [/].  Remove support for [&'`()+].
14816         * config/alpha/alpha.h (PRINT_OPERAND_PUNCT_VALID_P): Update.
14817         * config/alpha/alpha.md (attr round_suffix): New.
14818         (attr trap_suffix): New.
14819         (all insns): Set them appropriately.  Use %/ instead of the
14820         myriad punctuators.
14821
14822 2001-07-22  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
14823
14824         * dbxout.c, sdbout.c, varasm.c: Revert most recent debug patch.
14825
14826 2001-07-22  Richard Henderson  <rth@redhat.com>
14827
14828         * regrename.c (regrename_optimize): Compute nregs for each
14829         potential target register.
14830
14831 2001-07-21 Neil Booth  <neil@daikokuya.demon.co.uk>
14832            Richard Henderson  <rth@redhat.com>
14833
14834         * dbxout.c (dbxout_global_decl): New.
14835         (xcoff_debug_hooks, dbx_debug_hooks): Use it.
14836         * sdbout.c (sdbout_finish): New.
14837         (sdbout_debug_hooks): Use it, add comments.
14838         (sdbout_global_decl): Defer initialised public vars to
14839         sdbout_finish.
14840         * varasm.c (assemble_variable): Don't output debug information
14841         for file-scope variables.
14842
14843 2001-07-21  H.J. Lu  (hjl@gnu.org)
14844
14845         * config/mips/mips.c (mips_cpu): Moved into ...
14846         (override_options): Here.
14847
14848         * config/mips/mips.h (mips_cpu_attr): Replace mips_cpu with
14849         mips_tune.
14850         (mips_cpu): Removed.
14851
14852 2001-07-21  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
14853
14854         * config/m68hc11/m68hc11.md ("andqi3"): Accept d as second operand.
14855         ("iorqi3"): Likewise.
14856         ("xorqi3"): Likewise.
14857         ("*addhi3"): Fix constraint to avoid reloading in a soft register.
14858         ("*subhi3_sp): Likewise.
14859         ("*subhi3"): Likewise.
14860         ("extendhisi2"): Accept D, X and Y as source operand to avoid
14861         reload problems.
14862
14863 2001-07-21  Nathan Sidwell  <nathan@codesourcery.com>
14864
14865         * doc/tm.texi: Remove DEFAULT_VTABLE_THUNKS.
14866         * config/freebsd.h: Likewise.
14867         * config/linux.h: Likewise.
14868         * config/openbsd.h: Likewise.
14869         * config/alpha/linux-elf.h: Likewise.
14870         * config/arm/linux-elf.h: Likewise.
14871         * config/d30v/d30v.h: Likewise.
14872         * config/fr30/fr30.h: Likewise.
14873         * config/ia64/aix.h: Likewise.
14874         * config/ia64/ia64.h: Likewise.
14875         * config/mips/linux.h: Likewise.
14876         * config/pj/pj.h: Likewise.
14877         * config/rs6000/linux.h: Likewise.
14878         * config/sparc/linux.h: Likewise.
14879         * config/sparc/linux64.h: Likewise.
14880
14881 2001-07-20  Bruce Korb  <bkorb@gnu.org>
14882
14883         * fixinc/fixincl.c(test_for_changes): force unsigned char comparisons
14884         because getc() and char* may disagree on signedness.
14885
14886 2001-07-20  Richard Henderson  <rth@redhat.com>
14887
14888         * doc/rtl.texi (REG_DEAD): Update for current semantics.
14889
14890         * flow.c (try_redirect_by_replacing_jump): Correctly compute which
14891         insns to delete in the presence of cc0 in a jump insn.
14892
14893 Fri Jul 20 22:14:49 CEST 2001  Roman Zippel  <zippel@linux-m68k.org>
14894                                 Jan Hubicka  <jh@suse.cz>
14895
14896         * m68k.md (zero_extend?i?i2 expander): Use gen_lowpart instead
14897         of doing the change by hand.
14898
14899 Fri Jul 20 21:59:42 CEST 2001  Jan Hubicka  <jh@suse.cz>
14900
14901         * rtlanal.c (set_noop_p): Return true for noop jumps.
14902
14903         * expr.c (emit_single_push_insn): Add call to push expander.
14904         * expr.h (optab_index): Add OTI_push
14905         (push_optab): New constant.
14906         * genopinit.c (optabs): Add push_optab.
14907         * optabs.c (init_optab): Init push optab.
14908         * md.texi (push??1): Document
14909
14910 2001-07-20  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
14911
14912         * config/m68hc11/m68hc11.md ("movdi", "movdi_internal"): Use an
14913         expand to emit the pattern; put a REG_INC note for push/pop
14914         instructions.
14915         ("movdf", "movdf_internal"): Likewise.
14916         ("movsi", "movsi_internal"): Likewise.
14917         ("movsf", "movsf_internal"): Likewise.
14918         ("movhi", "movqi"): Emit a REG_INC note for push/pop instructions.
14919
14920 2001-07-20  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
14921
14922         * config/m68hc11/m68hc11.c (m68hc11_gen_highpart): Don't use
14923         gen_highpart.
14924
14925 2001-07-20  Daniel Berlin  <dan@cgsoftware.com>
14926
14927         * params.def: Change default max inline insns to 100.
14928
14929 2001-07-20  Diego Novillo  <dnovillo@redhat.com>
14930
14931         * combine.c (combine_simplify_rtx): Generate a new shift operation
14932         when simplifying the first operand of a (neg (ashift)) expression.
14933
14934 2001-07-20  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
14935
14936         * regclass.c (N_REG_INTS): Use only 32 bits per element.
14937
14938 2001-07-20  Kelley Cook  <kelley.cook@home.com>
14939
14940         * doc/install.texi (sparc-sun-solaris*): Add in 4.x assembler bug
14941         information.   Move rest into ...
14942         (*-*-solaris): ... here.  Eliminate redundant information and
14943         reword necessary packages section.  Delete 4.x assembler bug info.
14944         (sparc-sun-*): Merge into ...
14945         (sparc-sun-sunos*): here.
14946
14947 2001-07-20  Catherine Moore  <clm@redhat.com>
14948
14949         * config/v850/v850.md (casesi): Generate LABEL_REF
14950         with Pmode.
14951
14952 Fri Jul 20 14:12:57 CEST 2001  Jan Hubicka  <jh@suse.cz>
14953
14954         * i386-protos.h (ix86_zero_extend_to_Pmode): Declare.
14955         * i386.c (ix86_zero_extend_to_Pmode): Make global.
14956         * i386.md (strclrsi expander): Use it.
14957
14958 Fri Jul 20 13:24:16 CEST 2001  Jan Hubicka  <jh@suse.cz>
14959
14960         * integrate.c (copy_insn_list): handle
14961         NOTE_INSN_DELETED_LABEL, as if it were CODE_LABEL.
14962         (copy_rtx_and_substitute): Likewise; behave to NOTE_INSN_DELETED_LABEL
14963         identically as to CODE_LABEL.
14964
14965         * fold-const (fold): Convert A/B/C to A/(B*C) and
14966         A/(B/C) to (A/B)*C
14967
14968         * except.c (connect_post_landing_pads): Delete the RESX insns.
14969
14970 2001-07-20  Aldy Hernandez  <aldyh@redhat.com>
14971
14972         * config/mips/mips.h (ISA_HAS_NMADD_NMSUB): New macro.
14973
14974         * config/mips/mips.md (nmadd/nmsub): Use macro.
14975
14976 2001-07-20  Nathan Sidwell  <nathan@codesourcery.com>
14977
14978         * cppinit.c (remove_dup_dir): Make static.
14979         (remove_dup_dirs): Make static. Only warn about preempting a
14980         system directory with a non-system directory.
14981
14982 2001-07-19  Geoffrey Keating  <geoffk@redhat.com>
14983
14984         * ifcvt.c (noce_try_store_flag_constants): Correct order
14985         of parameters to trunc_int_for_mode.
14986
14987 2001-07-19  Mark Mitchell  <mark@codesourcery.com>
14988
14989         * reorg.c (fill_simple_delay_slots): If an instruction might throw
14990         an exception that will be caught within this function, do not fill
14991         its delay slot with any subsequent instruction.
14992
14993 2001-07-19  Steve Ellcey <sje@cup.hp.com>
14994
14995         * tm.texi (POINTERS_EXTEND_UNSIGNED) Modify definition.
14996         * optabs.c (can_extend_p) Check HAVE_ptr_extend for a specialized
14997         pointer extension instruction.
14998         * combine.c (nonzero_bits,num_sign_bit_copies) Likewise.
14999         * simplify-rtx.c (simplify_unary_operation) Likewise.
15000         * explow.c (convert_memory_address) Check value of
15001         POINTERS_EXTEND_UNSIGNED to avoid some conversions when
15002         less than zero.
15003         * config/ia64/t-hpux (LIBGCC, INSTALL_LIBGCC, MULTILIB_OPTIONS,
15004         MULTILIB_DIRNAMES, MULTILIB_MATCHES) Add multilib support.
15005         * config/ia64/hpux.h (CPP_SPEC, ASM_SPEC, SUBTARGET_SWITCHES)
15006         Add Multilib Support.
15007         (POINTERS_EXTEND_UNSIGNED)  Define for ILP32 support.
15008         * config/ia64/ia64.h (MASK_ILP32, TARGET_ILP32, SUBTARGET_SWITCHES)
15009         Add Multilib Support.
15010         (POINTER_SIZE, LONG_TYPE_SIZE, MAX_LONG_TYPE_SIZE) Modify for ILP32
15011         support.
15012         * config/ia64/ia64.c (rtx_needs_barrier) Add support for addp4.
15013         * config/ia64/ia64.md (ptr_extend) New instruction to "swizzle"
15014         a 32 bit HP-UX pointer into a 64 bit HP-UX pointer.
15015
15016 2001-07-19  Alexandre Oliva  <aoliva@redhat.com>
15017
15018         * simplify-rtx.c (simplify_replace_rtx): Try to obtain mode from
15019         old and new operands in `<', `3' and `b'.
15020
15021 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
15022
15023         * Makefile.in (emit-rtl.o, c-decl.o): Depend on debug.h.
15024         (final.o): Don't depend on xcoffout.h, dbxout.h or sdbout.h.
15025         (toplev.o): Don't depend on xcoffout.h.
15026         * c-decl.c: Include debug.h
15027         (duplicate_decls): Use debug hook.
15028         * dbxout.c (dbxout_source_file, dbxout_args): Make static.
15029         (dbx_debug_hooks, xcoff_debug_hooks): Update.
15030         (dbxout_types): Remove.
15031         * dbxout.h (dbxout_source_file, dbxout_types, dbxout_args): Remove.
15032         * debug.c (do_nothing_debug_hooks): Update.
15033         (debug_true_tree, debug_nothing_rtx): New.
15034         * debug.h (struct rtx_def): New.
15035         (struct gcc_debug_hooks): New hooks ignore_block,
15036         outlining_inline_function and label.
15037         (debug_true_tree, debug_nothing_rtx, dwarf2out_frame_init,
15038         dwarf2out_frame_finish): New.
15039         * dwarf2out.c (dwarf2out_ignore_block, dwarf2out_abstract_function):
15040         Make static, update prototype.
15041         (dwarf2_debug_hooks): Update.
15042         * dwarf2out.h (dwarf2out_ignore_block, dwarf2out_abstract_function,
15043         dwarf2out_frame_init, dwarf2out_frame_finish): Remove.
15044         * dwarfout.c (dwarf_debug_hooks): Update.
15045         * emit-rtl.c: Include debug.h.
15046         (remove_unnecessary_notes): Use debug hook.
15047         * final.c: Don't include dbxout.h, xcoffout.h or sdbout.h.
15048         (final_scan_insn): Use debug hook.
15049         * integrate.c (output_inline_function): Use debug hook.
15050         * sdbout.c (sdbout_toplevel_data, sdbout_label): Make static.
15051         (sdb_debug_hooks): Update.
15052         * sdbout.h (sdbout_label, sdbout_toplevel_data): Remove.
15053         * toplev.c: Don't include xcoffout.h.
15054         (note_outlining_of_inline_function, debug_ignore_block): Remove.
15055         * toplev.h (note_outlining_of_inline_function, debug_ignore_block):
15056         Remove.
15057         * tree.h (dwarf2out_do_frame): Remove.
15058
15059 2001-07-19  Catherine Moore  <clm@cygnus.com>
15060
15061         * config/v850/v850.h (ASM_OUTPUT_LABELREF): Restore.
15062
15063 2001-07-19  Geoffrey Keating  <geoffk@redhat.com>
15064
15065         * reload1.c (eliminate_regs_in_insn): When updating a set
15066         to the frame pointer to the hardware frame pointer, perform
15067         the update always not just when REPLACE is set.
15068
15069         * reload1.c (choose_reload_regs): Don't inherit a reload
15070         that crosses multiple registers if registers past the first
15071         don't fit in the desired class.
15072
15073         * ifcvt.c (noce_try_store_flag_constants): Use trunc_int_for_mode
15074         when negating constants.
15075
15076 2001-07-19  Toon Moene  <toon@moene.indiv.nluug.nl>
15077
15078         * tree.def: Document restriction on {L|R}SHIFT_EXPR's second argument.
15079         * doc/tree.texi: Ditto.
15080
15081 2001-07-19  Mark Kettenis  <kettenis@wins.uva.nl>
15082             Jakub Jelinek  <jakub@redhat.com>
15083
15084         * unwind-dw2.c (_Unwind_FrameState): Add eh_ptr.
15085         (extract_cie_info): Handle "eh" augmentation properly,
15086         remember eh_ptr.
15087         (struct frame_state, __frame_state_for): New.
15088
15089 2001-07-19  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
15090
15091         * config/alpha/osf.h (ASM_OUTPUT_WEAK_ALIAS, ASM_WEAKEN_LABEL,
15092         HANDLE_SYSV_PRAGMA): Define.
15093         * mips-tfile.c (add_ext_symbol): Pass complete symbol ptr, inline
15094         previous args.
15095         (copy_object): Caller changed.
15096
15097 2001-07-19  Andreas Schwab  <schwab@suse.de>
15098
15099         * configure.in (assembler dwarf2 debug_line support): Define nop
15100         insn for m68k.
15101         * configure: Regenerated.
15102
15103 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
15104
15105         * Makefile.in (toplev.o, dwarfout.o, final.o): Don't depend on
15106         dwarfout.h.
15107         * dbxout.c (dbxout_function): Rename dbxout_funciton_decl, move
15108         to conditionally compiled block.
15109         (dbx_debug_hooks, xcoff_debug_hooks): Update.
15110         * dbxout.h (dbxout_function): Remove.
15111         * debug.c (do_nothing_debug_hooks): Update.
15112         * debug.h (struct gcc_debug_hooks): New hooks function_decl,
15113         global_decl, deferred_inline_function.
15114         * dwarf2out.c (dwarf2_debug_hooks): Update.
15115         (dwarf2out_global_decl): New.
15116         * dwarfout.c: Don't include dwarfout.h.
15117         (dwarfout_global_decl, dwarfout_function_decl,
15118         dwarfout_deferred_inline_function): New.
15119         (dwarf_debug_hooks): Update.
15120         * dwarfout.h: Remove.
15121         * final.c: Don't include dwarfout.h.
15122         * sdbout.c (sdbout_global_decl): New.
15123         (sdbout_debug_hooks): Update.
15124         * toplev.c: Don't include dwarfout.h.
15125         (check_global_declarations, rest_of_compilation): Use new debug hooks.
15126         (note_deferral_of_defined_inline_function): Remove.
15127         * toplev.h (note_deferral_of_defined_inline_function): Remove.
15128         * ch/Makefile.in (lex.o): No dependence on dwarfout.h.
15129         * ch/lex.c: Don't include dwarfout.h.
15130         * cp/Make-lang.in (decl2.o): No dependence on dwarfout.h, dwarf2out.h.
15131         (semantics.o, optimize.o): Depend on debug.h not dwarfout.h.
15132         * cp/decl2.c: Don't include dwarfout.h and dwarf2out.h.
15133         * cp/optimize.c: Include debug.h.
15134         (maybe_clone_body): Use debug hook.
15135         * cp/semantics.c: Include debug.h.
15136         (expand_body): Use debug hook.
15137         * po/POTFILES.in: Remove dwarfout.h.
15138
15139 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
15140
15141         * c-lex.c (c_lex): Remove CPP_INT, CPP_FLOAT cases.
15142         * c-parse.in (yyerror, _yylex): Similarly.
15143         * cppexp.c (parse_number, parse_defined, lex, _cpp_parse_expr):
15144         Don't use CPP_INT, CPP_FLOAT; CPP_NUMBER is enough.
15145         Update comments.
15146         * cpplib.h (CPP_INT, CPP_FLOAT): Remove.
15147         * cp/spew.c (read_token, yyerror): Remove CPP_INT, CPP_FLOAT cases.
15148
15149 2001-07-18  Jeff Sturm  <jsturm@one-point.com>
15150
15151         * dwarf2out.c (dwarf2out_abstract_function): Don't emit
15152         in-class declaration at -g1.  Fixes c++/2814.
15153
15154 2001-07-18  Richard Henderson  <rth@redhat.com>
15155
15156         * doc/md.texi (reload_in/out): Document restrictions in predicates
15157         and constraints for these patterns.  Document empty string matching
15158         ALL_REGS.
15159
15160 2001-07-18  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
15161
15162         * defaults.h (ASM_OUTPUT_WEAK_ALIAS): Check for ASM_WEAKEN_LABEL.
15163
15164 Wed Jul 18 20:47:36 CEST 2001  Jan Hubicka  <jh@suse.cz>
15165
15166         * cse.c: Undo my previous patch.
15167
15168 2001-07-18  Tom Tromey  <tromey@redhat.com>
15169
15170         For PR java/2812:
15171         * configure: Rebuilt.
15172         * configure.in: Don't check for iconv.h or iconv(); use AM_ICONV
15173         instead.
15174         * aclocal.m4 (AM_ICONV): New macro from Bruno Haible.
15175
15176 Wed Jul 18 18:46:30 CEST 2001  Richard Henderson <rth@cygnus.com>
15177                                 Jan Hubicka  <jh@suse.cz>
15178
15179         * flow.c (redirect_edge_and_branch): Bail out on complex edges.
15180         (try_optimize_cfg): Do not remove tail recursive labels before sibcall.
15181         * jump.c (mark_jump_label): Do not forward branches.
15182
15183 Wed Jul 18 18:35:01 CEST 2001  Jan Hubicka  <jh@suse.cz>
15184
15185         * cse.c (delete_trivially_dead_insns): Delete the libcall block
15186         when return value is unused.
15187
15188 Wed Jul 18 18:28:16 CEST 2001  Jan Hubicka  <jh@suse.cz>
15189
15190         * gcse.c (pre_insert_copy_insn): Call update_ld_motion_stores.
15191
15192 Wed Jul 18 12:05:29 2001  Nicola Pero  <n.pero@mi.flashnet.it>
15193
15194         * gthr-posix.h (__gthread_objc_mutex_trylock): Fixed return value
15195         on error.  We can't blindly return the result of
15196         pthread_mutex_trylock because it returns a positive number on
15197         error, while we must return -1 on error.
15198         (__gthread_objc_mutex_lock, __gthread_objc_mutex_unlock): Similar
15199         fixes.
15200         Reported by Stephen Brandon <stephen@brandonitconsulting.co.uk>.
15201
15202 2001-07-18  Andreas Jaeger  <aj@suse.de>
15203
15204         * integrate.c (output_inline_function): Correct type of debug_hooks.
15205
15206 2001-07-18  Toon Moene  <toon@moene.indiv.nluug.nl>
15207
15208         * combine.c (combine_simplify_rtx): DIV can be treated
15209         associatively for floats if unsafe math optimisations are enabled.
15210
15211 2001-07-17  Richard Henderson  <rth@redhat.com>
15212
15213         * reload.c (push_secondary_reload): Accept empty-string for ALL_REGS.
15214
15215 2001-07-17  Richard Henderson  <rth@redhat.com>
15216
15217         * calls.c (prepare_call_address): New parameter SIBCALLP.  If true,
15218         don't force the function address into a register.
15219         (expand_call, emit_library_call_value_1): Update callers.
15220         * builtins.c (expand_builtin_apply): Likewise.
15221         * expr.h (prepare_call_address): Update decl.
15222
15223 2001-07-17  Chandrakala Chavva  <cchavva@redhat.com>
15224
15225         * config.gcc: For *-*-chorusos triplet, get chorus.h file from
15226         config directory.
15227         * config/i386/chorus.h: Move up.
15228         * config/sparc/chorus.h: Likewise.
15229         * config/rs6000/chorus.h: Likewise.
15230         * config/chorus.h: Moved here.
15231
15232 2001-07-17  Andreas Schwab  <schwab@suse.de>
15233
15234         * configure.in  (assembler eh_frame optimization): Handle big
15235         endian.
15236         * configure: Regenerated.
15237
15238 Tue Jul 17 23:43:31 CEST 2001  Jan Hubicka  <jh@suse.cz>
15239
15240         * expr.c (epxand_expr): Convert divisions into multiplications by
15241         reciprocals if -ffast-math.
15242
15243 2001-07-17  Neil Booth  <neil@daikokuya.demon.co.uk>
15244
15245         * dbxout.c (dbxout_really_begin_function): Rename to
15246         dbxout_begin_function.
15247         (dbx_debug_hooks, xcoff_debug_hooks): Update.
15248         (dbxout_begin_function): Remove.
15249         (dbxout_function): Update.
15250         (dbxout_source_line): Update prototype.
15251         * dbxout.h (dbxout_begin_function): Remove.
15252         * debug.c (do_nothing_debug_hooks): Update.
15253         (debug_nothing_tree): Update.
15254         (debug_nothing_charstar_rtx): Remove.
15255         * debug.h (union tree_node): Declare.
15256         (struct rtx_def): Remove.
15257         (gcc_debug_hooks): New hooks begin_prologue, end_prologue,
15258         begin_function.  Change source_line prototype.
15259         (debug_nothing_tree): New.
15260         (debug_nothing_charstar_rtx): Delete.
15261         (dwarf2out_begin_prologue): Moved from ...
15262         * tree.h: ... here.
15263         * dwarf2out.c (dwarf2_debug_hooks): Update.
15264         (dwarf2out_begin_prologue): Update prototype.  If genuine dwarf2
15265         debug info, call dwarf2out_source_line.
15266         (dwarf2out_souce_line): Update prototype.
15267         * dwarfout.c (dwarfout_begin_function): Rename dwarfout_end_prologue.
15268         Change prototype, make static.
15269         (dwarfout_source_line): Update prototype.
15270         (dwarf_debug_hooks): Update.
15271         * dwarfout.h (dwarfout_begin_function): Remove.
15272         * final.c (final_start_function, final_scan_insn): Use appropriate
15273         debug hooks, update to use notice_source_line.
15274         (output_source_line): Rename notice_source_line.  Don't call the
15275         source_line debug hook.
15276         * sdbout.c (sdbout_begin_function): Rename sdbout_begin_prologue,
15277         make static, update prototype.
15278         (sdbout_mark_begin_function): Rename sdbout_begin_function, update
15279         prototype.
15280         (sdbout_end_prologue): New.
15281         (sdbout_source_line): Update prototype.
15282         (sdbout_debug_hooks): Update.
15283         (sdbout_symbol): Remove unused var.
15284         * sdbout.h (sdbout_begin_function, sdbout_mark_begin_function):
15285         Delete.
15286         * varasm.c: Include debug.h.
15287         (assemble_start_function): Use begin_function debug_hook.
15288         * xcoffout.c (xcoffout_begin_prologue): Rename xcoffout_begin_function,
15289         update with prototype.
15290         (xcoffout_source_line): Update prototype.
15291         * xcoffout.h (xcoffout_begin_prologue): Rename xcoffout_begin_function,
15292         update prototype.
15293         (xcoffout_source_line): Update prototype.
15294
15295 2001-07-17  Richard Henderson  <rth@redhat.com>
15296
15297         * c-typeck.c (build_binary_op): Do not shorten unsigned
15298         right shift after sign extension.
15299
15300 Tue Jul 17 16:56:05 CEST 2001  Jan Hubicka  <jh@suse.cz>
15301
15302         * combine.c (combine_simplify_rtx): Attempt to simplify
15303         a*(b/c) as (a*b)/c for floats in unsafe_math mode.
15304
15305         * simplify-rtx.c (avoid_constatn_pool_reference): New static function.
15306         (simplify_binary_operation, simplify_unary_operation,
15307          simplify_relational_operation): Use it.
15308
15309         * combine.c (combine_simplify_rtx): Don't do associative law
15310         on divisions; allow associative law on floats.
15311
15312 2001-07-17  H.J. Lu <hjl@gnu.org>
15313             Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
15314
15315         * c-pragma.h (HANDLE_PRAGMA_WEAK): Define iff ASM_WEAKEN_LABEL and
15316         ASM_OUTPUT_WEAK_ALIAS are defined.
15317         * defaults.h (ASM_OUTPUT_WEAK_ALIAS): Define if possible.
15318         * config/mips/iris6.h (ASM_OUTPUT_WEAK_ALIAS, ASM_WEAKEN_LABEL):
15319         Moved ...
15320         * config/mips/iris5.h: ... here.
15321         (HANDLE_SYSV_PRAGMA): Defined as 1.
15322         * varasm.c (weak_finish): Use ASM_OUTPUT_WEAK_ALIAS.
15323         * doc/tm.texi (ASM_OUTPUT_WEAK_ALIAS): Support the undefined weak
15324         symbol.
15325
15326 2001-07-17  Joseph S. Myers  <jsm28@cam.ac.uk>
15327
15328         * c-parse.in (all_prefix_attributes): New variable.
15329         (PUSH_DECLSPEC_STACK, POP_DECLSPEC_STACK): New macros.
15330         (maybe_resetattrs): New production.
15331         (c_parse_init, datadef, fndef, datadecl, setspecs, setattrs, decl,
15332         maybe_type_quals_setattrs, initdecls, notype_initdecls, initdcl,
15333         notype_initdcl, nested_function, notype_nested_function,
15334         component_decl, components, components_notype,
15335         component_declarator, component_notype_declarator,
15336         absdcl_maybe_attribute, parm, firstparm, setspecs_fp, ivar_decl,
15337         ivars, mydecl, myparm): Update.  Avoid prefix attributes just
15338         after a comma being applied to more than one declarator.
15339         * doc/extend.texi (Attribute Syntax): Update.  Remove
15340         documentation of bugs that are no longer present.
15341
15342 2001-07-13  Eric Christopher  <echristo@redhat.com>
15343
15344         * config/mips/mips.h: Change TUNE_MIPS* options to use
15345         mips_tune.
15346         (EXTRA_SPECS): Add cc1_cpu_spec.
15347         * config/mips/mips.md (muldf3): Fix typo.
15348
15349 2001-07-16  Richard Henderson  <rth@redhat.com>
15350
15351         * config/m68k/m68k.c: Include expr.h and reload.h.
15352         (print_operand_address) [16 bit int]: Cast INTVAL to int for %d.
15353         [general int]: Use HOST_WIDE_INT_PRINT_DEC.
15354
15355 2001-07-16  Daniel Berlin  <dan@cgsoftware.com>
15356             Richard Henderson  <rth@redhat.com>
15357
15358         * cse.c (set_live_p): Take INSN argument for cc0; update callers.
15359         (insn_live_p): Fix fall off end of function.
15360         (dead_libcall_p): Remove COUNTS argument; update callers.
15361         (delete_trivially_dead_insns): Remove unused variables.
15362
15363 2001-07-17  Andreas Jaeger  <aj@suse.de>
15364
15365         * config/i386/unix.h (ASM_OUTPUT_MI_THUNK): Fix output format for
15366         x86-64 pic support.
15367
15368         * lcm.c (optimize_mode_switching): Avoid warning for unused
15369         variable if !NORMAL_MODE.
15370
15371         * flow.c (try_crossjump_to_edge): Remove unused variable.
15372
15373 2001-07-16  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15374
15375         * inclhack.def (ultrix_atexit_param): New hack to fix ultrix 4.3
15376         atexit declaration in stdlib.h.
15377
15378 2001-07-16  Richard Begg  <Richard.Begg@colesmyer.com.au>
15379
15380         * fixinc/inclhack.def(hpux_vsnprintf): brokenness in stdio.h
15381
15382 Mon Jul 16 22:48:00 CEST 2001  Jan Hubicka  <jh@suse.cz>
15383
15384         * basic-block.h (CLEANUP_PRE_SIBCALL): New constant.
15385         * except.c (finish_eh_generation): Update call of cleanup_cfg;
15386         do rebuild_jump_labels instead of jump_optimize
15387         * sibcall.c (optimize_sibling_and_tail_recursive_call): Likewise.
15388         * toplev.c (rest_of_compulation): Likewise for -Wreturn_type.
15389         * flow.c (try_optimize_cfg): Remove unneeded code_labels.
15390
15391         * flow.c: Include timevar.h
15392         (find_basic_block): Push/pop timevar;
15393         (cleanup_cfg): Likewise.
15394         * timevar.def (TV_CFG, TV_CLEANUP_CFG): New.
15395         * Makefile: Add dependencies on timevar.h
15396
15397         * integrate.c (save_for_inline): Kill all BASIC_BLOCK notes.
15398         (copy_insn_list): Avoid killing of BASIC_BLOCK notes.
15399
15400         * rtl.h (delete_trivially_dead_insns): Add new parameter.
15401         * toplev.c (rest_of_compilation): Update calls.
15402         * cse.c (set_live_p, insn_live_p, dead_libcall_p): Break out from ...
15403         (delete_trivially_dead_insns): ... here; accept new argument
15404         preserve_basic_blocks; preserve basic blocks if set.
15405
15406         * reg-stack.c (stack_regs_mentioned): Return 0 if
15407         stack_regs_mentioned_data is not initialized.
15408         (reg_to_stack): Make stack_regs_mentioned survive after the
15409         reg-stack is completted; do not call cleanup_cfg.
15410         * toplev.c (rest_of_compilation): Do cleanup_cfg before bb-reorder;
15411         make cleanup_cfg after bb-reorder to output to debug file.
15412
15413 2001-07-16  Richard Henderson  <rth@redhat.com>
15414
15415         * regclass.c (init_reg_sets): Use only 32 bits per initializer
15416         from int_reg_class_contents.
15417
15418 2001-07-16  Richard Henderson  <rth@redhat.com>
15419
15420         * hard-reg-set.h (regs_invalidated_by_call): Declare.
15421         * regclass.c (regs_invalidated_by_call): Move from cse.c.
15422         (init_reg_sets_1): Move initialization from cse_main.
15423         * cse.c (regs_invalidated_by_call): Move to regclass.c.
15424         (cse_main): Move its initialization also.
15425         * df.c (df_insn_refs_record): Use regs_invalidated_by_call.
15426         * flow.c (propagate_one_insn): Likewise.
15427         * gcse.c (compute_hash_table): Likewise.
15428         (compute_kill_rd, compute_store_table): Likewise.
15429         * sched-deps.c (sched_analyze_1): Likewise.
15430
15431 Mon Jul 16 18:07:07 2001  J"orn Rennecke <amylaar@redhat.com>
15432
15433         * gcse.c (pre_insert_copy_insn): Use gen_move_insn instead of
15434         gen_rtx_SET.
15435
15436 2001-07-16  Steve Ellcey <sje@cup.hp.com>
15437
15438         * dominance.c (calc_dfs_tree_nonrec): Reverse order of tests
15439         in if statement so we don't access undefined memory.
15440
15441 2001-07-16  Daniel Berlin  <dan@cgsoftware.com>
15442
15443         * gcse.c: Update comment at top.
15444         Update comment on mem handling.
15445         mem_last_set, mem_first_set, mem_set_in_block: gone.
15446         Declaration of reg_set_info: gone.
15447         (oprs_unchanged_p): Don't use mem_*set_* anymore. They are
15448         pointless with load_killed_in_block_p (they are *more*
15449         conservative then it, not less, and less accurate).
15450         (oprs_not_set_p): Ditto.
15451         (alloc_gcse_mem): Don't allocate mem_set_in_block
15452         (free_gcse_mem): Don't free it, either.
15453         (record_last_mem_set_info): Update comment in front, remove
15454         mem_*set_* stuff. Note the reason we don't handle stores directly
15455         here.
15456         (compute_hash_table): Update comments to reflect reality. Remove
15457         mem_*set_* references.
15458         (reset_opr_set_tables): Remove mem_*set_* references.
15459         (mark_call): Ditto.
15460         (mark_set): Ditto.  Also remove double sets of bitmaps for REG's.
15461         (mark_clobber): Ditto (on both parts, we double set here too).
15462         (expr_killed_p): Remove mem_set_in_block test.
15463         (compute_transp): Remove mem_set_in_block test.
15464
15465         * ssa-ccp.c: (optimize_unexecutable_edges): Add note about removal
15466         of edge, and removal of phi alternative to dump file.
15467         (ssa_ccp_substitute_constants): Add note about register now being
15468         constant, and which uses were replaced in what insns to dump file.
15469
15470 2001-07-16  Andreas Jaeger  <aj@suse.de>
15471
15472         * gcov.c (output_data): Use HOST_WIDEST_INT_PRINT_DEC to output
15473         variables of type HOST_WIDEST_INT.
15474
15475         * libgcc2.c (__bb_exit_func): Handle gcov_type as long long.
15476         (__bb_exit_func): Correct type of count_max to avoid overflow.
15477         (num_digits): Handle long long argument.
15478
15479         * combine.c (gen_lowpart_for_combine): Remove unused variable.
15480
15481 2001-07-16  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
15482
15483         * output.h (sdb_begin_function_line): Restore as an extern
15484         variable.
15485         * sdbout.c (sdb_begin_function_line): Make extern.
15486
15487 2001-07-15  Richard Henderson  <rth@redhat.com>
15488
15489         * machmode.def (Pmode): Redefine if GENERATOR_FILE.
15490         * genrecog.c (maybe_both_true_mode): New.
15491         (maybe_both_true_2): Use it.
15492         (write_switch): Don't put Pmode in a switch.
15493         * rtl.c (mode arrays): Don't explicitly size them.
15494
15495 Sun Jul 15 14:07:36 CEST 2001  Jan Hubicka  <jh@suse.cz>
15496
15497         * toplev.c (rest_of_compilation): Fix register_life_up_to_date
15498         handling; move unconditional splitting before mode switching.
15499
15500         * i386.md (type): Add fistp type.
15501         (i387, length_attr, scheduling definitions): Handle this type.
15502         (fix_trunc?f?i2): Revamp to use mode switching.
15503         (fix_trunct?f?i_nonmemory, fix_trunc?f?i_memory): New patterns.
15504         * i386.h (fp_cw_mode): New enum
15505         (OPTIMIZE_MODE_SWITCHING, NUM_MODES_FOR_MODE_SWITCHING, MODE_NEEDED,
15506         MODE_PRIORITY_TO_MODE, ENUM_MODE_SET): New macros.
15507
15508 Sun Jul 15 12:53:51 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15509
15510         * Makefile.in (integrate.o): Add debug.h.
15511         * integrate.c (debug.h): Add.
15512         (output_inline_function): Save, reset, and restore debug_hooks.
15513
15514 2001-07-15  Richard Henderson  <rth@redhat.com>
15515
15516         * config/alpha/alpha.c (alpha_emit_xfloating_compare): Use CCmode
15517         instead of COMPARE for the EQUIV expression.
15518
15519 2001-07-15  Richard Henderson  <rth@redhat.com>
15520
15521         * flow.c (redirect_edge_and_branch_force): Initialize
15522         global_live_at_start and global_live_at_end.
15523         (allocate_bb_life_data): Export.
15524         * basic-block.h (allocate_bb_life_data): Declare.
15525         * toplev.c (rest_of_compilation): Call it.
15526
15527 2001-07-15  Richard Henderson  <rth@redhat.com>
15528
15529         * config/alpha/alpha.c (alpha_tablejump_addr_vec): New.
15530         (alpha_tablejump_best_label): New.
15531         * config/alpha/alpha-protos.h: Declare them.
15532         * config/alpha/alpha.md: Use braced strings for code blocks.
15533         (tablejump_osf): Break out add with r29.
15534         (tablejump_osf_internal): Remove.
15535         (tablejump_osf_nt_internal): Rename from tablejump_nt_internal,
15536         use alpha_tablejump_addr_vec and alpha_tablejump_best_label.
15537
15538 Sun Jul 15 00:53:35 CEST 2001  Jan Hubicka  <jh@suse.cz>
15539
15540         * loop.c (scan_loop): Add USEs inside PARALLELs into dependencies
15541         of the movable.
15542
15543         * toplev.c (rest_of_compilation): Allow new pseudoes for mode switching.
15544
15545         * i386-protos.h (ix86_split_fp_branch): Update prototype.
15546         (ix86_fp_jump_nontrivial_p): New.
15547         * i386.md (fp_jcc_?): Update call of split_fp_branch;
15548         use ix86_fp_jump_nontrivial_p.
15549         * i386.c (ix86_fp_jump_nontrivial_p): New.
15550         (ix86_split_fp_branch): Accept code instead of rtx.
15551         (ix86_expand_compare): Expand comparison early in case
15552         doing so is resonably cheap.
15553
15554 2001-07-15  Nick Clifton  <nickc@cambridge.redhat.com>
15555
15556         * config/rs6000/sysv4.h (CPP_ENDIAN_BIG_SPEC): Assert 'endian'
15557         not 'machine'.
15558         (CPP_ENDIAN_LITTLE_SPEC): Assert 'endian' not 'machine'.
15559         (CPP_ENDIAN_SOLARIS_SPEC): Assert 'endian' not 'machine'.
15560
15561 2001-07-15  Neil Booth  <neil@daikokuya.demon.co.uk>
15562
15563         * dbxout.c (dbxout_source_line): Make static, update prototype.
15564         (dbx_debug_hooks, xcoff_debug_hooks): Add new hooks.
15565         (dbxout_init, dbxout_finish, dbxout_source_line,
15566         dbxout_begin_block, dbxout_end_block): Update for new prototypes.
15567         * dbxout.h (dbxout_source_line): Delete.
15568         * debug.c (debug_nothing_file, debug_nothing_file_int,
15569         debug_nothing_file_charstar_rtx): New.
15570         (do_nothing_debug_hooks): Update.
15571         (debug_nothing_void, debug_nothing_charstar_rtx,
15572         dwarf2out_end_epilogue): New.
15573         (debug_nothing_file_charstar, debug_nothing_file_int_int): Rename.
15574         * debug.h (struct rtx_def): Declare.
15575         (gcc_debug_hooks): New hooks source_line, end_epilogue
15576         and end_function.
15577         (debug_nothing_void, debug_nothing_charstar_rtx,
15578         dwarf2out_end_epilogue): New.
15579         (debug_nothing_file_charstar, debug_nothing_file_int_int): Rename.
15580         * dwarf2out.c (dwarf2out_source_line): Make static, update prototype.
15581         (dwarf2_debug_hooks): Update.
15582         (dwarf2out_init, dwarf2out_finish, dwarf2out_source_line,
15583         dwarf2out_begin_block, dwarf2out_end_block): Update for new prototypes.
15584         * dwarf2out.h (dwarf2out_source_line): Remove.
15585         * dwarfout.c (dwarfout_end_epilogue, dwarfout_end_function):
15586         Make static, update prototype.
15587         (dwarfout_init, dwarfout_finish, dwarfout_source_line,
15588         dwarfout_begin_block, dwarfout_end_block): Update for new prototypes.
15589         (dwarf_debug_hooks): Update.
15590         * dwarfout.h (dwarfout_end_epilogue, dwarfout_source_line,
15591         dwarfout_end_function): Remove.
15592         * final.c (profile_function): Use debug hooks for ending functions
15593         and epilogues.
15594         (output_source_line, final_end_function): Update prototype,
15595         use debug hooks.
15596         (final_start_function, final_scan_insn): Update.
15597         * output.h (sdb_begin_function_line): Remove.
15598         (final_end_function): Update prototype.
15599         * sdbout.c (sdb_begin_function_line): Make static.
15600         (PUT_SDB_EPILOGUE_END): Move to sdbout_end_epilogue.
15601         (sdbout_source_line): New.
15602         (sdbout_end_epilogue, sdbout_end_function): Make static, update
15603         prototypes.
15604         (sdb_debug_hooks): Update.
15605         (sdbout_init, sdbout_source_line,
15606         sdbout_begin_block, sdbout_end_block): Update for new prototypes.
15607         * sdbout.h (sdbout_end_epilogue, sdbout_end_function): Remove.
15608         * toplev.c (compile_file, rest_of_compilation): Update.
15609         * tree.h (dwarf2out_end_epilogue): Move to debug.h.
15610         * xcoffout.c (xcoffout_source_line, xcoffout_begin_block,
15611         xcoffout_end_block, xcoffout_end_epilogue, xcoffout_end_function):
15612         Update for prototype changes.
15613         * xcoffout.h (xcoffout_source_line, xcoffout_begin_block,
15614         xcoffout_end_block, xcoffout_end_epilogue): Update prototypes.
15615
15616 2001-07-15  Richard Henderson  <rth@redhat.com>
15617
15618         * config/alpha/alpha.h (TARGET_ABI_OSF): New.
15619         (TARGET_ABI_WINDOWS_NT, TARGET_ABI_OPEN_VMS): Rename; update users.
15620         * config/alpha/alpha-protos.h: Update TARGET_ABI_* users.
15621         * config/alpha/alpha.c: Likewise.
15622         * config/alpha/alpha.md: Likewise.
15623         * config/alpha/alpha32.h: Likewise.
15624         * config/alpha/vms.h: Likewise.
15625         (OPEN_VMS): Remove.
15626
15627 2001-07-14  Richard Henderson  <rth@redhat.com>
15628
15629         * config/alpha/alpha.md: Use define_constants for unspec values.
15630         Substitute throughout.
15631
15632 2001-07-14  Tim Josling  <tej@melbpc.org.au>
15633
15634         * tree.def (EXPON_EXPR) remove. Never supported anyway.
15635
15636 2001-07-14  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15637
15638         * pa.md: Remove unused constraints from define_split's.
15639
15640 2001-04-14  Richard Henderson  <rth@redhat.com>
15641
15642         * ifcvt.c (find_cond_trap): Test for exit block.
15643
15644 Sun Jul 15 00:50:20 CEST 2001  Jan Hubicka  <jh@suse.cz>
15645
15646         Re-install recently reverted patch.
15647         * emit-rtl.c (try_split): Update mark_jump_label call.
15648         * flow.c (find_sub_basic_blocks): Likewise.
15649         * jump.c (cross_jump_death_matters, find_cross_jump, do_cross_jump,
15650         jump_back_p): Kill.
15651         (mark_all_labels): Kill second parameter.
15652         (jump_optimize, jump_optimize_1): Kill cross_jump parameter.
15653         (rebuild_jump_labels, jump_optimize_minimal): Update call
15654         of jump_optimize_1.
15655         (jump_optimize_1): Kill crossjumping code.
15656         (mark_jump_label): Kill cross_jump parameter.
15657         * rtl.h (mark_jump_label, jump_optimize): Update prototypes.
15658         (JUMP_CROSS_JUMP, JUMP_CROSS_JUMP_DEATH_MATTERS): Kill.
15659         * reg-stack.c (reg_to_stack): Do not rebuild if not needed; do
15660          splitting.
15661         * toplev.c (enum dump_file_index): Kill DFI_jump2; put DFI_stack before
15662         DFI_bpro.
15663         (dump_file_info): Likewise.
15664         (rest_of_compilation): Update calls to jump_optimize; kill jump2 pass;
15665         reorganize passes to do reg-stack first, bb-reorder second.
15666         * invoke.texi (-d letters doc): Remove the jump2 pass.
15667
15668 2001-07-14  Richard Henderson  <rth@redhat.com>
15669
15670         * ifcvt.c (find_cond_trap): New.
15671         (find_if_header): Call it.
15672         (merge_if_block): Relax existing jump sanity check.
15673         * jump.c (jump_optimize_1): Remove conditional trap handling.
15674
15675 2001-07-14  Alan Modra  <amodra@bigpond.net.au>
15676
15677         * config/pa/pa.c (emit_hpdiv_const): Return reg is r2 for 64-bit
15678         millicode.
15679         (insn_refs_are_delayed): Correct comment.
15680         * config/pa/pa.h (INSN_REFERENCES_ARE_DELAYED): Likewise.
15681         * config/pa/pa.md (mulsi3): If TARGET_64BIT, clobber r2
15682         instead of r31.  Make associated insn !TARGET_64BIT, and
15683         provide an additional 64-bit insn that clobbers r2.
15684         (divsi3): Likewise.
15685         (udivsi3): Likewise.
15686         (modsi3): Likewise.
15687         (umodsi3): Likewise.
15688
15689 Sat Jul 14 02:58:38 CEST 2001  Jan Hubicka  <jh@suse.cz>
15690
15691         * bb-reorder.c (skip_insn_after_block): Get past the line number notes.
15692
15693         * flow.c (redirect_edge_and_branch_force, split_edge,
15694         try_crossjump_to_edge): Use set_block_for_new_insns.
15695         * bb-reorder.c (emit_jump_to_block_after): Call set_block_for_new_insns.
15696
15697 2001-07-13  H.J. Lu  (hjl@gnu.org)
15698
15699         * config/elfos.h (UNIQUE_SECTION): Enable .bss section with
15700         the correct patch.
15701
15702 2001-07-13  Geoffrey Keating  <geoffk@redhat.com>
15703
15704         Revert H.J. Lu's UNIQUE_SECTION patch of 2001-07-13.
15705
15706 2001-07-13  Joseph S. Myers  <jsm28@cam.ac.uk>
15707
15708         * c-common.c (decl_attributes): Take a pointer to the node to
15709         which attributes are to be attached, and a flags argument.
15710         * c-common.h (enum attribute_flags): New.
15711         (decl_attributes): Update prototype.
15712         * c-decl.c (start_decl, push_parm_decl, finish_struct,
15713         finish_enum, start_function): Update calls to decl_attributes.
15714         * c-parse.in (component_declarator, component_notype_declarator,
15715         label): Update calls to decl_attributes.
15716
15717 Fri Jul 13 23:04:00 2001  Denis Chertykov  <denisc@overta.ru>
15718
15719         * config/avr/avr.md (strlenhi): PARALLEL keyword removed.
15720         * config/avr/avr.c (legitimate_address_p): Return value changed
15721         from letter to register classes. For better debugging.
15722
15723 2001-07-13  Kazu Hirata  <kazu@hxi.com>
15724
15725         * jump.c (reversed_comparison_code_parts): Fix comment typos.
15726
15727 2001-07-13  H.J. Lu  (hjl@gnu.org)
15728
15729         * config/elfos.h (UNIQUE_SECTION): Enable .bss section.
15730
15731 2001-07-13  Marc Espie  <espie@cvs.openbsd.org>
15732
15733         * config.gcc (*-*-openbsd*):  Add fragment to compile libgcc
15734         correctly for shared configurations.
15735         * config/t-libgcc-pic:  New.
15736         * config/{i386,m68k,sparc}/t-openbsd:  New.
15737         * config/openbsd.h:  Include cpu_spec in cpp_spec where needed.
15738         Support -shared.  Support debugging libraries with -g.
15739         * config/i386/openbsd.h:  Correct ASM_COMMENT_START.  Ensure dwarf2
15740         frame information does not emit pointer diffs.
15741         * config/sparc/openbsd.h:  Ensure dwarf2 frame information does not
15742         emit pointer diffs.
15743
15744 2001-07-13  Geoffrey Keating  <geoffk@redhat.com>
15745
15746         Revert Jan Hubicka's patch of Fri Jul 13 14:46:21 CEST 2001.
15747
15748 2001-07-13  David Edelsohn  <edelsohn@gnu.org>
15749
15750         * combine.c (try_combine): Ensure const_int pow2 is positive.
15751
15752 2001-07-13  Hartmut Penner  <hpenner@de.ibm.com>
15753
15754         * config.gcc: Add configuration for s/390.
15755         * config/s390/s390.c: New. Subroutines for code generation.
15756         * config/s390/s390.h: New. Definitions for s/390.
15757         * config/s390/s390-protos.h: New. Prototypes.
15758         * config/s390/linux.h: New. Definitions for linux for s/390.
15759         * config/s390/linux64.h: New. Definitions for linux for zSeries.
15760         * config/s390/t-linux: New. Makefile fragment.
15761         * config/s390/s390.md: New. Machine description for s/390 and zSeries.
15762         * config/s390/fixdfdi.h: New. Fix L_fix*di.
15763
15764 Fri Jul 13 14:46:21 CEST 2001  Jan Hubicka  <jh@suse.cz>
15765
15766         * emit-rtl.c (try_split): Update mark_jump_label call.
15767         * flow.c (find_sub_basic_blocks): Likewise.
15768         * jump.c (cross_jump_death_matters, find_cross_jump, do_cross_jump,
15769         jump_back_p): Kill.
15770         (mark_all_labels): Kill second parameter.
15771         (jump_optimize, jump_optimize_1): Kill cross_jump parameter.
15772         (rebuild_jump_labels, jump_optimize_minimal): Update call
15773         of jump_optimize_1.
15774         (jump_optimize_1): Kill crossjumping code.
15775         (mark_jump_label): Kill cross_jump parameter.
15776         * rtl.h (mark_jump_label, jump_optimize): Update prototypes.
15777         (JUMP_CROSS_JUMP, JUMP_CROSS_JUMP_DEATH_MATTERS): Kill.
15778         * reg-stack.c (reg_to_stack): Do not rebuild if not needed; do
15779          splitting.
15780         * toplev.c (enum dump_file_index): Kill DFI_jump2; put DFI_stack before
15781         DFI_bpro.
15782         (rest_of_compilation): Update calls to jump_optimize; kill jump2 pass;
15783         reorganize passes to do reg-stack first, bb-reorder second.
15784         * invoke.texi (-d letters doc): Remove the jump2 pass.
15785
15786 2001-07-12  Steve Ellcey <sje@cup.hp.com>
15787
15788         * toplev.c (compile_file): Put call of ASM_FILE_START inside ifdef.
15789
15790 Thu Jul 12 17:57:16 CEST 2001  Jan Hubicka  <jh@suse.cz>
15791
15792         * flow.c (try_optimize_cfg): Delete whole chain of trivially dead
15793         basic blocks.
15794         (verify_flow_info): Make diagnostics prettier.
15795
15796 Thu Jul 12 16:48:54 CEST 2001  Jan Hubicka  <jh@suse.cz>
15797
15798         * flow.c (find_basic_blocks_1): Do not emit NOP after call.
15799
15800         * flow.c (outgoing_edges_match): Return early if condition reversal
15801         failed.
15802
15803 2001-07-06  Richard Sandiford  <rsandifo@redhat.com>
15804
15805         * config/mips/mips.c (print_operand): Extend '%D' to memory operands.
15806         (mips_move_2words): When splitting a move into two instructions,
15807         prefix the second address operand with '%D'.
15808
15809 2001-07-12  Neil Booth  <neil@daikokuya.demon.co.uk>
15810
15811         * Makefile.in (final.o): Depend on debug.h.
15812         * dbxout.c (dbxout_begin_block, dbxout_end_block): New.
15813         (dbx_debug_hooks): Add new hooks.
15814         (xcoff_debug_hooks): New.
15815         * debug.c (debug_nothing_file_int_int): New.
15816         (do_nothing_debug_hooks): Update.
15817         * debug.h (gcc_debug_hooks): New hooks begin_block and end_block.
15818         (debug_nothing_file_int_int): New.
15819         * dwarf2out.c (dwarf2out_begin_block, dwarf2out_end_block): Make
15820         static, update prototype.
15821         (dwarf2_debug_hooks): Update.
15822         * dwarf2out.h (dwarf2out_begin_block, dwarf2out_end_block): Remove.
15823         * dwarfout.c (dwarfout_begin_block, dwarfout_end_block): Make
15824         static, update prototype.
15825         (dwarf_debug_hooks): Update.
15826         * dwarfout.h (dwarfout_begin_block, dwarfout_end_block): Remove.
15827         * final.c: Include debug.h.
15828         (final_scan_insn): Use debug hooks when beginning and ending blocks.
15829         * sdbout.c (sdbout_begin_block, sdbout_end_block): Make
15830         static, update prototype.
15831         (sdb_debug_hooks): Update.
15832         * sdbout.h (sdbout_begin_block, sdbout_end_block): Remove.
15833         * toplev.c: Distinguish between xcoff and dbx.
15834
15835         * f/lex.c (ffelex_file_pop_, ffelex_file_push_, ffelex_hash_):
15836         Call all debug hooks, not just dwarf ones.
15837
15838 2001-07-11  Timothy Wall  <twall@redhat.com>
15839
15840         * config.gcc: Add configuration for AIX5/IA64.
15841         * config/ia64/aix.h: New.  AIX5/IA64-specific configuration.
15842         * config/ia64/crt[in].asm: New.  Generic static ctor/dtor
15843         support prefix/suffix code.
15844         * config/ia64/t-aix: New.  Makefile fragment.
15845         * config/ia64/unwind-aix.c: New.  Unwind table entry lookup.
15846
15847 2001-07-11  Kazu Hirata  <kazu@hxi.com>
15848
15849         * recog.c (validate_change): Fix a comment typo.
15850
15851 2001-07-11  Neil Booth  <neil@daikokuya.demon.co.uk>
15852
15853         * Makefile.in (c-lex.o): Wrap long lines.  Depend on debug.h.
15854         * c-lex.c (cb_file_change, cb_define, cb_undef): Use debug
15855         hooks directly.
15856         * dbxout.c (dbx_debug_hooks): Add new hooks.
15857         (dbxout_start_new_source_file): Rename dbxout_start_source_file,
15858         make static.
15859         (dbxout_resume_previous_source_file): Rename dbxout_end_source_file,
15860         make static.
15861         * dbxout.h (dbxout_start_new_source_file,
15862         dbxout_resume_previous_source_file): Delete.
15863         * debug.c (do_nothing_debug_hooks): Add new hooks.
15864         (debug_nothing_init_finish): Rename debug_nothing_file_charstar.
15865         (debug_nothing_int_charstar, debug_nothing_int): New.
15866         * debug.h (gcc_debug_hooks): New hooks define, undef,
15867         start_source_file and end_source_file.
15868         (debug_nothing_init_finish): Rename debug_nothing_file_charstar.
15869         (debug_nothing_int_charstar, debug_nothing_int): New.
15870         * dwarf2out.c (dwarf2_debug_hooks): Add new hooks.  Move into
15871         the conditionally compiled section.
15872         (dwarf2out_start_source_file, dwarf2out_end_source_file,
15873         dwarf2out_define, dwarf2out_undef): Make static.
15874         * dwarf2out.h (dwarf2out_start_source_file, dwarf2out_end_source_file,
15875         dwarf2out_define, dwarf2out_undef): Remove.
15876         * dwarfout.c (dwarf_debug_hooks): Add new hooks.
15877         (dwarfout_start_source_file, dwarfout_end_source_file,
15878         dwarfout_define, dwarfout_undef): Make static.
15879         (dwarfout_start_source_file_check,
15880         dwarfout_end_source_file_check): New.
15881         (dwarfout_define, dwarfout_finish): Update.
15882         * dwarfout.h (dwarfout_start_new_source_file,
15883         dwarfout_resume_previous_source_file, dwarfout_define,
15884         dwarfout_undef): Remove.
15885         * sdbout.c (sdb_debug_hooks): Add new hooks.
15886         (sdbout_start_new_source_file): Rename sdbout_start_source_file,
15887         make static.
15888         (sdbout_resume_previous_source_file): Rename sdbout_end_source_file,
15889         make static, take an arg.
15890         * sdbout.h (sdbout_start_new_source_file,
15891         sdbout_resume_previous_source_file): Delete.
15892         * toplev.c (debug_start_source_file, debug_end_source_file,
15893         debug_define, debug_undef): Delete.
15894         * toplev.h (debug_start_source_file, debug_end_source_file,
15895         debug_define, debug_undef): Delete.
15896
15897         * java/jcf-parse.c: Include debug.h.
15898         (parse_class_file): Update to use debug hooks directly.
15899         * java/Make-lang.in (jcf-parse.o): Depend on debug.h.
15900
15901 Wed Jul 11 10:07:18 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15902
15903         * alias.c (set_mem_alias_set): New function.
15904         * rtl.h (set_mem_alias_set): Declare it.
15905         * builtins.c (expand_builtin_return_addr): Call it instead of
15906         using MEM_ALIAS_SET accessor.
15907         (expand_builtin_setjmp_setup, expand_builtin_longjmp): Likewise.
15908         (get_memory_rtx, expand_builtin_va_arg): Likewise.
15909         (expand_builtin_va_copy):Likewise.
15910         * caller-save.c (setup_save_areas): Likewise.
15911         * calls.c (compute_argument_addresses): Likewise.
15912         * explow.c (set_mem_attributes): Likewise.
15913         * expr.c (emit_single_push_insn, emit_push_insn): Likewise.
15914         (expand_assignment, store_constructor_field, store_field): Likewise.
15915         (expand_expr_unaligned): Likewise.
15916         * function.c (assign_stack_temp_for_type): Likewise.
15917         (put_reg_into_stack, gen_mem_addressof): Likewise.
15918         * ifcvt.c (noce_try_cmove_arith): Likewise.
15919         * reload1.c (reload, alter_reg): Likewise.
15920         * config/alpha/alpha.c (get_aligned_mem): Likewise.
15921         (alpha_set_memflags_1, alpha_expand_unaligned_load): Likewise.
15922         (alpha_expand_unaligned_store): Likewise
15923         (alpha_expand_unaligned_load_words): Likewise.
15924         (alpha_expand_unaligned_store_words): Likewise.
15925         (alpha_expand_block_clear, alpha_expand_prologue): Likewise.
15926         (alpha_expand_epilogue): Likewise.
15927         * config/arc/arc.c (arc_setup_incoming_varargs): Likewise.
15928         * config/clipper/clipper.c (clipper_builtin_saveregs): Likewise.
15929         * config/i386/i386.c (legitimize_pic_address): Likewise.
15930         * config/i960/i960.c (setup_incoming_varargs): Likewise.
15931         * config/ia64/ia64.c (spill_restore_mem): Likewise.
15932         * config/m32r/m32r.c (m32r_setup_incoming_varargs): Likewise.
15933         * config/m8k/m88k.c (m88k_builtin_saveregs): Likewise.
15934         * config/mips/mips.c (mips_va_arg): Likewise.
15935         * config/mn10300/mn10300.c (mn10300_builtin_saveregs): Likewise.
15936         * config/pa/pa.c (hppa_builtin_saveregs): Likewise.
15937         * config/rs6000/rs6000.c (rs6000_emit_move): Likewise.
15938         (setup_incoming_varargs, rs6000_va_arg): Likewise.
15939         (rs6000_emit_eh_toc_restore, rs6000_emit_prologue): Likewise.
15940         (rs6000_emit_epilogue): Likewise.
15941         * config/sh/sh.c (sh_builtin_saveregs): Likewise.
15942         * config/sparc/sparc.c (sparc_va_arg): Likewise.
15943         * config/v850/v850.c (v850_va_arg): Likewise.
15944
15945 Wed Jul 11 21:27:25 CEST 2001  Jan Hubicka  <jh@suse.cz>
15946
15947         * flow.c (merge_blocks_move_successor_nojumps): Do not crash
15948         when fallthru edge is present.
15949         (mege_blocks): Handle case where creation of jump insn
15950         is required.
15951
15952         * basic-block.h (CLEANUP_EXPENSIVE, CLEANUP_CROSSJUMP,
15953         CLEANUP_POST_REGSTACK): New constants.
15954         * except.c (finish_eh_generation): Update call of cleanup_cfg,
15955         * jump.c (rtx_renumbered_equal_p): Handle 't' fields.
15956         * output.h (cleanup_cfg): Update prototype.
15957         * reg-stack.c (reg_to_stack): Use cleanup_cfg instead of jump_optimize
15958         * sibcall.c (optimize_sibling_and_tail_recursive_call): Update
15959         cleanup_cfg call; kill missleading comment.
15960         * toplev.c (rest_of_compilation): Update all cleanup_cfg calls.
15961         * flow.c (merge_blocks, try_optimize_cfg, cleanup_cfg): Accept mode
15962         parameter; control optimizations performed using it.
15963         (flow_find_cross_jump, outgoing_edges_match, try_crossjump_to_edge,
15964         try_crossjump_bb): New functions.
15965
15966 2001-07-11  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15967
15968         * pa.c (pa_output_function_prologue): Delete prototype.  Make function
15969         extern.
15970         * pa.h (ASM_OUTPUT_MI_THUNK): Rename output_function_prologue to
15971         pa_output_function_prologue.
15972         * pa-protos.h (pa_output_function_prologue): New prototype.
15973
15974 2001-07-11  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15975
15976         * stmt.c (emit_case_nodes): Widen high and low instead of new_bound
15977         and low to get correct sign extension in low+high test.
15978
15979 2001-07-11  Janis Johnson <janis@us.ibm.com>
15980
15981         * gcov.c (arcdata): Use gcov_type to fix branch percentage
15982         for large hit count.
15983
15984         * profile.c (branch_prob): Fix .bbg info for computed gotos
15985         and C++ EH code.
15986
15987 2001-07-11  Mark Mitchell  <mark@codesourcery.com>
15988
15989         * stmt.c (parse_output_constraint): New function, split out
15990         from ...
15991         (expand_asm_operands): ... here.  Use parse_output_constraint.
15992         * tree.h (parse_output_constraint): Declare it.
15993
15994 2001-07-11  Richard Henderson  <rth@redhat.com>
15995
15996         * bitmap.c: Comment some functions; fiddle whitespace.
15997         (bitmap_free): Don't export.
15998         (bitmap_element_allocate): Use memset.
15999         * bitmap.h (bitmap_free): Don't declare.
16000
16001 2001-07-11  Daniel Berlin  <dan@cgsoftware.com>
16002
16003         * gcse.c, lcm.c, sched-deps.c:
16004         s/free on sbitmap vectors/sbitmap_vector_free on sbitmap vectors/g
16005
16006         * flow.c (flow_loops_find): Free dom if we found no loops, since
16007         we aren't going to save it.
16008
16009         * lcm.c (pre_edge_rev_lcm): Free st_antin, st_antout when we are
16010         done.
16011
16012 Wed Jul 11 09:00:48 2001  Jeffrey A Law  (law@cygnus.com)
16013
16014         * ssa-ccp.c (ssa_fast_dce): Free worklist when completed.
16015
16016 Wed Jul 11 10:07:18 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16017
16018         * dwarf2out.c (dwarf2out_init, dwarf2out_finish): Add dummy version
16019         #ifndef DWARF2_DEBUGGING_INFO.
16020
16021 2001-07-11  Richard Sandiford  <rsandifo@redhat.com>
16022
16023         * simplify-rtx.c (simplify_gen_subreg): Return null for QUEUED rtxes.
16024
16025 2001-07-11  Richard Sandiford  <rsandifo@redhat.com>
16026
16027         * config/mips/mips.c (gen_int_relational): Tell the caller not to
16028         reverse a branch if a NE comparison is implemented with GTU.
16029
16030 2001-07-11  Richard Sandiford  <rsandifo@redhat.com>
16031             H.J. Lu  <hjl@gnu.org>
16032
16033         * mips.md (call_internal1): Use CONSTANT_ADDRESS_P to check for
16034         constant addresses.
16035         (call_internal2): Likewise.
16036         (call_value_internal1): Likewise.
16037         (call_value_internal2): Likewise.
16038         (call_value_multiple_internal1): Likewise.
16039         (call_value_multiple_internal2): Likewise.
16040
16041 2001-07-10  Kazu Hirata  <kazu@hxi.com>
16042
16043         * calls.c (emit_library_call_value_1): Fix a comment typo.
16044         * dwarf2out.c (mem_loc_descriptor): Likewise.
16045         * config/i386/i386.c (ix86_expand_aligntest): Likewise.
16046
16047 2001-07-11  David Billinghurst <David.Billinghurst@riotinto.com>
16048
16049         * simplify-rtx.c (simplify_subreg): Fix typo in comment
16050
16051 Tue Jul 10 07:27:53 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16052
16053         * recog.c (offsettable_address_p): Handle LO_SUM case.
16054         * config/mips/mips.c (double_memory_operand): Use adjust_address_nv
16055         instead of plus_constant.
16056
16057 2001-07-10  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
16058
16059         * reload1.c (merge_assigned_reloads): After a RELOAD_OTHER merge,
16060         fix setting of the reloads of that reload to RELOAD_FOR_OTHER_ADDRESS.
16061
16062 Tue Jul 10 07:27:53 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16063
16064         * config/rs6000/rs6000.c (print_operand, case 'L', 'Y', 'Z'): Use
16065         adjust_address_nv instead of plus_constant.
16066
16067 2001-07-10  Neil Booth  <neil@daikokuya.demon.co.uk>
16068
16069         * Makefile.in (toplev.o, sdbout.o, dbxout.o, dwarfout.o,
16070         dwarf2out.o): Depend on debug.h, wrap long lines.
16071         * dbxout.c: Include debug.h.
16072         (dbx_debug_hooks): New.
16073         (dbxout_init): Make static, take just 2 args.
16074         (dbxout_finish): Make static.
16075         * dbxout.h (dbxout_init, dbxout_finish): Delete.
16076         * debug.c: New file.
16077         * debug.h: New file.
16078         * dwarf2out.c: Include debug.h.
16079         (dwarf2_debug_hooks): New.
16080         (dwarf2out_init): Make static.
16081         (dwarf2out_finish): Make static, take 2 args.
16082         * dwarf2out.h (dwarf2out_init, dwarf2out_finish): Delete.
16083         * dwarfout.c: Include debug.h.
16084         (dwarf_debug_hooks): New.
16085         (dwarfout_init): Make static.
16086         (dwarfout_finish): Make static, take 2 args.
16087         * dwarfout.h (dwarfout_init, dwarfout_finish): Delete.
16088         * sdbout.c: Include debug.h.
16089         (sdb_debug_hooks): New.
16090         (sdbout_init): Make static, take 2 args.
16091         * sdbout.h (sdbout_init): Delete.
16092         * toplev.c: Include debug.h.
16093         (debug_hooks): New.
16094         (compile_file): Set deubg_hooks based on command line options.
16095         Use the hooks unconditionally rather than conditional compilation.
16096
16097 Tue Jul 10 09:04:45 2001  Jeffrey A Law  (law@cygnus.com)
16098
16099         * ssa-ccp.c (first_phi_node): Remove.  Replace uses with calls to
16100         first_insn_after_basic_block_note instead.
16101
16102         * df.c (df_bb_refs_unlink): #if 0 out for now.
16103
16104 2001-07-10  David Billinghurst <David.Billinghurst@riotinto.com
16105
16106         * ssa.h: Add prototype for ssa_const_prop
16107         * ssa-ccp.c: Add prototype for ssa_fast_dce and mark_references
16108         (ssa_ccp_substitute_constants): Fix signed vs unsigned comparison
16109         (ssa_fast_dce): Remove unused variable
16110
16111 2001-07-10  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
16112
16113         * diagnostic.c (finish_diagnostic): Rename to
16114         diagnostic_finish. Make it take an 'output_buffer *'.  Adjust
16115         calls thourghout.
16116
16117 2001-07-10  Jason Merrill  <jason_merrill@redhat.com>
16118
16119         * dwarf2out.c (dwarf2out_line): Emit -dA comment even when we have
16120         .loc support.
16121
16122         * collect2.c (main): Set COLLECT_NO_DEMANGLE for subprocesses.
16123         (dump_file): Only pad the demangled name with spaces if the
16124         mangled name was padded with spaces.
16125
16126 2001-07-10  Bernd Schmidt  <bernds@redhat.com>
16127
16128         * bb-reorder.c (make_reorder_chain_1): Correct branch/fallthru
16129         edge detection.
16130
16131 Tue Jul 10 07:27:53 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16132
16133         * expr.c (expand_expr, case COMPONENT_REF): Don't force using bitfield
16134         extraction if no direct load if either EXPAND_CONST_ADDRESS or
16135         EXPAND_INITIALIZER.
16136
16137         * emit-rtl.c (adjust_address, adjust_address_nv): Change criteria for
16138         whether can put offset inside LO_SUM to check mode alignment, not size.
16139
16140 2001-07-10  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
16141
16142         * doc/tm.texi (Misc): Fix thinko.
16143
16144 2001-07-10  Jan van Male  <jan.vanmale@fenk.wau.nl>
16145
16146         * regmove.c (replace_in_call_usage): Fix warnings.
16147         * sched-deps.c (add_dependence): Fix warnings.
16148         * simplify-rtx.c (simplify_subreg): Likewise.
16149         Return NULL_RTX instead of NULL.
16150
16151         * reg-stack.c (emit_swap_insn): Eliminate warnings.
16152         (subst_asm_stack_regs): Likewise.
16153
16154         * combine.c (num_sign_bit_copies): Cast bitwidth to int to avoid
16155         warnings.
16156
16157         * dwarf2out.c (output_call_frame_info): Declare i as int.
16158         (build_abbrev_table): Declare n_alloc as int.
16159         (dwarf2out_finish): Initialize die.
16160         * except.c: Declare sjlj_funcdef_number as unsigned.
16161         (connect_post_landing_pads): Declare j as unsigned.
16162         (convert_to_eh_region_ranges): Initialize call_site.
16163         (output_function_exception_table): Initialize tt_format_size.
16164         * expr.c (move_by_pieces_1): Initialize to1.
16165         (store_constructor): Initialize minelt and maxelt.
16166         * flow.c (mark_regs_live_at_end): Declare i as unsigned.
16167         * function.c (instantiate_decls): Avoid signed/unsigned warning.
16168
16169         * c-decl.c (combine_parm_decls): Unused, remove.
16170         * c-tree.h: Remove prototype for combine_parm_decls.
16171
16172         * reload.c (push_reload): Fix warning.
16173         (regno_clobbered_p): Likewise.
16174         * reload1.c (replace_pseudos_in_call_usage): Likewise.
16175         (reload_combine): Likewise.
16176
16177         * bitmap.c: Rename bitmap_zero to bitmap_zero_bits to fix warnings.
16178         * bitmap.h: Rename bitmap_zero to bitmap_zero_bits to fix
16179         warnings.
16180         * bitmap.c (bitmap_operation): Change user.
16181         * bitmap.h (EXECUTE_IF_AND_COMPL_IN_BITMAP): Likewise.
16182
16183 2001-07-10  Eric Christopher  <echristo@redhat.com>
16184
16185         * config/mips/mips.c (override_options): Fix typo.
16186
16187 2001-07-09  Stan Shebs  <shebs@apple.com>
16188
16189         * target.h (struct gcc_target): New fields init_builtins and
16190         expand_builtin.
16191         * target-def.h (TARGET_INIT_BUILTINS): New macro.
16192         (TARGET_EXPAND_BUILTIN): New macro.
16193         (TARGET_INITIALIZER): Add them.
16194         * builtins.c: Include target.h.
16195         (expand_builtin): Use targetm.expand_builtin.
16196         (default_init_builtins): New function.
16197         (default_expand_builtin): New function.
16198         * expr.h (default_init_builtins): Declare.
16199         (default_expand_builtin): Declare.
16200         * c-common.c (c_common_nodes_and_builtins): Use
16201         targetm.init_builtins.
16202         * defaults.h (MD_INIT_BUILTINS): Remove.
16203         * Makefile.in (builtins.o): Depend on target.h.
16204
16205         * config/arm/arm.c (TARGET_INIT_BUILTINS): Define.
16206         (TARGET_EXPAND_BUILTIN): Define.
16207         * config/arm/arm.h (MD_INIT_BUILTINS): Remove.
16208         (MD_EXPAND_BUILTIN): Remove.
16209
16210         * config/c4x/c4x.c (TARGET_INIT_BUILTINS): Define.
16211         (TARGET_EXPAND_BUILTIN): Define.
16212         (c4x_init_builtins): Make endlink arg a local.
16213         (c4x_print_operand): Fix typos in adjust_address usages.
16214         * config/c4x/c4x-protos.h (c4x_init_builtins): Update decl.
16215         * config/c4x/c4x.h (MD_INIT_BUILTINS): Remove.
16216         (MD_EXPAND_BUILTIN): Remove.
16217
16218         * config/i386/i386.c (TARGET_INIT_BUILTINS): Define.
16219         (TARGET_EXPAND_BUILTIN): Define.
16220         (ix86_init_mmx_sse_builtins): New function, was ix86_init_builtins.
16221         (ix86_init_builtins): Call new function only if TARGET_MMX.
16222         * config/i386/i386-protos.h (ix86_init_mmx_sse_builtins): Declare.
16223         * config/i386/i386.h (MD_INIT_BUILTINS): Remove.
16224         (MD_EXPAND_BUILTIN): Remove.
16225
16226         * config/ia64/ia64.c (TARGET_INIT_BUILTINS): Define.
16227         (TARGET_EXPAND_BUILTIN): Define.
16228         * config/ia64/ia64.h (MD_INIT_BUILTINS): Remove.
16229         (MD_EXPAND_BUILTIN): Remove.
16230
16231         * doc/tm.texi: Document these changes.
16232
16233 2001-07-09  Diego Novillo  <dnovillo@redhat.com>
16234
16235         * basic-block.h (tree_node): Forward declare if needed.
16236         (struct basic_block_def): Add fields 'head_tree' and 'end_tree'.
16237         (BLOCK_HEAD_TREE): Define.
16238         (BLOCK_END_TREE): Define.
16239         (struct loops): Rename field 'tree' to 'tree_root'.
16240         * flow.c (entry_exit_blocks): Add initializers for 'head_tree' and
16241         'end_tree'.
16242         (flow_loops_tree_build): Rename reference to field 'tree' to
16243         'tree_root'.
16244         (flow_loops_level_compute): Ditto.
16245         * predict.c (estimate_bb_frequencies): Ditto.
16246         * tree.h (struct tree_common): Add field 'aux'.
16247
16248 2001-07-09  Stan Shebs  <shebs@apple.com>
16249
16250         * config/darwin.c (darwin_encode_section_info): Don't mark any
16251         DECL_EXTERNAL node as defined.
16252
16253 2001-07-09  John David Anglin  <dave@hiauly1.hia.nrc.ca>
16254
16255         * pa.c (pa_init_machine_status, pa_mark_machine_status,
16256         pa_free_machine_status, hppa_init_pic_save): Delete.
16257         (hppa_pic_save_rtx): New.  Use get_hard_reg_initial_val.
16258         (hppa_profile_hook): Use hppa_pic_save_rtx.
16259         * pa.h (struct machine_function, PIC_OFFSET_TABLE_SAVE_RTX,
16260         hppa_init_pic_save): Delete.
16261         (hppa_pic_save_rtx): Declare.
16262         * pa.md (call, call_value, sibcall, sibcall_value,
16263         builtin_setjmp_receiver): Use hppa_pic_save_rtx.
16264
16265 2001-07-09  Kazu Hirata  <kazu@hxi.com>
16266
16267         * config/h8300/t-h8300 (LIB1ASMFUNCS): Add _floatdisf and _fixsfdi.
16268         * config/mn10200/t-mn10200 (LIB1ASMFUNCS): Likewise.
16269
16270 2001-07-09  Andreas Jaeger  <aj@suse.de>
16271
16272         * output.h: Add declaration of final_forward_branch_p.
16273
16274         * config/i386/i386.c (output_fix_trunc): Remove unused variable.
16275
16276         * varray.c: Include errors.h for internal_error and trim_filename
16277         declarations.
16278
16279         * Makefile.in (varray.o): Add errors.h.
16280
16281 2001-07-09  Toon Moene  <toon@moene.indiv.nluug.nl>
16282
16283         * expr.h: Adjust prototypes for have_add2_insn, have_sub2_insn.
16284         * optabs.c (have_add2_insn): Check whether the add insn chosen
16285         really accepts the operands.  (have_sub2_insn): Ditto for sub insn.
16286         * reload1.c (reload_cse_move2add): Adjust calls of have_add2_insn.
16287
16288 Mon Jul  9 13:26:40 2001  Jeffrey A Law  (law@cygnus.com)
16289
16290         * Makefile.in (OBJS): Add ssa-ccp.o
16291         (ssa-ccp.o): Add dependencies.
16292         * toplev.c (DFI_ssa_ccp): New dump file enum.
16293         (dump_file): Add entry for dumping after SSA CCP.
16294         (flag_ssa_ccp): New flag variable.
16295         (f_options): Add -fssa-ccp.
16296         (rest_of_compilation): Run SSA CCP if requested.
16297         * timevar.def (TV_SSA_CCP): New timevar.
16298         * ssa.c (mark_phi_and_copy_regs): Handle deleted PHI nodes.
16299         * doc/gcc.texi (Passes): Add documentation for SSA CCP pass.
16300         Fix minor typo in SSA DCE documentation.
16301         * doc/invoke.texi: Add documentation for new flag -fssa-ccp.
16302         Add documentation for new dump option.  Renumber dump files
16303         appropriately.
16304
16305 Mon Jul  9 21:36:00 CEST 2001  Jan Hubicka  <jh@suse.cz>
16306
16307         * emit-rtl.c (gen_highpart_mode): New.
16308         * rtl.h (gen_highpart_mode): Declare.
16309         * sparc.md (insn splitters): Use gen_highpart_mode, whenever the
16310         operand can be VOIDmode constant.
16311
16312 Mon Jul  9 17:23:10 CEST 2001  Jan Hubicka  <jh@suse.cz>
16313
16314         * flow.c (redirect_edge_and_branch_force): New.
16315         (can_fallthru): Ensure that basic blocks are succeeding.
16316         (try_optimize_cfg): Do not delete basic block if it is the last one.
16317
16318         * flow.c (try_redirect_by_replacing_jump): Do not remove
16319         jumps with side effects, unlink chain on fallthru edge;
16320         set block for new jump instruction; avoid basic block to
16321         over by line number note.
16322
16323         * flow.c (try_simplify_condjump): Verify that the condjump
16324         is not always falling through.
16325
16326         Re-install patch:
16327         * flow.c (try_redirect_by_replacing_jump): Remove cc0 setter.
16328
16329         * flow.c (forwarder_block_p): Fix for fallthru blocks.
16330         (try_redirect_by_replacing_jump): Update properly the count
16331         and frequency information.
16332
16333 Mon Jul  9 06:41:07 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16334
16335         * emit-rtl.c (adjust_address, adjust_address_nv): Handle an
16336         address that is a LO_SUM specially.
16337         * explow.c (plus_constant_wide, case LO_SUM): Deleted.
16338
16339         * c-lang.c (start_cdtor): Remove extra parameter from start_function.
16340
16341         * emit-rtl.c (adjust_address_nv, replace_equiv_address_nv): New fcns.
16342         (operand_subword): Use them.
16343         (change_address_1): Renamed from change_address; new arg VALIDATE.
16344         * expr.h: Reflect above changes; change_address now macro.
16345         * alias.c (canon_rtx): Use replace_equiv_address_nv instead of
16346         making MEM.
16347         * cselib.c (add_mem_for_addr): Likewise.
16348         * expr.c (protect_from_queue, emit_move_insn_1): Likewise.
16349         * regmove.c (try_apply_stack_adjustment): Likewise.
16350         * reload.c (push_reload, make_memloc): Likewise.
16351         * reload1.c (eliminate_regs): Likewise.
16352         * simplify-rtx.c (simplify_replace_rtx): Likewise.
16353         * caller-save.c (setup_save_areas): Use adjust_address_nv instead of
16354         adjust_addess.
16355         * combine.c (make_extraction, simplify_shift_const): Likewise.
16356         (gen_lowpart_for_combine): Likewise.
16357         * cse.c (gen_lowpart_if_possible): Likewise.
16358         * function.c (fixup_var_refs_1, purge_addressof_1): Likewise.
16359         * expr.c (expand_expr, case COMPONENT_REF): Likewise.
16360         * optabs.c (gen_move_insn): Likewise.
16361         * reload1.c (alter_reg): Likewise.
16362         * simplify-rtx.c (simplify_subreg): Likewise.
16363         * stmt.c (expand_anon_union_decl): Likewise.
16364         * recog.c (validate_replace_rtx_1): Likewise.
16365         (expr.h): Include.
16366         * Makefile.in (recog.o): Add $(EXPR_H).
16367         * explow.c (stabilize): Call replace_equiv_address.
16368         * expr.c (move_by_pieces_1, store_by_pieces_2): Likewise.
16369         * final.c (alter_subreg): OFFSET is HOST_WIDE_INT.
16370
16371 2001-07-03  Andrew Haley  <aph@redhat.com>
16372
16373         * expmed.c (store_fixed_bit_field): Don't use a mode bigger than
16374         the mode of the memory location.
16375
16376 2001-07-09  Bo Thorsen  <bo@suse.co.uk>
16377
16378         * config/i386/unix.h (ASM_OUTPUT_MI_THUNK): Fix x86-64 vtable support.
16379
16380 2001-07-09  Neil Booth  <neil@daikokuya.demon.co.uk>
16381
16382         * final.c (output_addr_const): Use target opening and
16383         closing parentheses.
16384         * target-def.h: Define TARGET_ASM_OPEN_PAREN, TARGET_ASM_CLOSE_PAREN
16385         defaults, add to TARGET_ASM_OUT.
16386         * target.h (struct gcc_target): Add open_paren and close_paren.
16387         * doc/md.texi: Update.
16388         * doc/tm.texi: Document TARGET_ASM_FUNCTION_END_PROLOGUE,
16389         TARGET_ASM_FUNCTION_BEGIN_EPILOGUE, TARGET_ASM_OPEN_PAREN and
16390         TARGET_ASM_CLOSE_PAREN.
16391         * config/i386/i386.c (TARGET_ASM_OPEN_PAREN, TARGET_ASM_CLOSE_PAREN):
16392         Override.
16393         * config/pdp11/pdp11.c (TARGET_ASM_OPEN_PAREN, TARGET_ASM_CLOSE_PAREN):
16394         Override.
16395         * config/1750a/1750a.h (ASM_OPEN_PAREN, ASM_CLOSE_PAREN): Remove.
16396         * config/a29k/a29k.h: Similarly.
16397         * config/alpha/alpha.h: Similarly.
16398         * config/arc/arc.h: Similarly.
16399         * config/arm/aof.h: Similarly.
16400         * config/arm/aout.h: Similarly.
16401         * config/avr/avr.h: Similarly.
16402         * config/c4x/c4x.h: Similarly.
16403         * config/clipper/clipper.h: Similarly.
16404         * config/convex/convex.h: Similarly.
16405         * config/d30v/d30v.h: Similarly.
16406         * config/dsp16xx/dsp16xx.h: Similarly.
16407         * config/elxsi/elxsi.h: Similarly.
16408         * config/fr30/fr30.h: Similarly.
16409         * config/h8300/h8300.h: Similarly.
16410         * config/i370/i370.h: Similarly.
16411         * config/i386/i386.h: Similarly.
16412         * config/i860/i860.h: Similarly.
16413         * config/i960/i960.h: Similarly.
16414         * config/ia64/ia64.h: Similarly.
16415         * config/m32r/m32r.h: Similarly.
16416         * config/m68hc11/m68hc11.h: Similarly.
16417         * config/m68k/m68k.h: Similarly.
16418         * config/m88k/m88k.h: Similarly.
16419         * config/mcore/mcore.h: Similarly.
16420         * config/mips/mips.h: Similarly.
16421         * config/mn10200/mn10200.h: Similarly.
16422         * config/mn10300/mn10300.h: Similarly.
16423         * config/ns32k/ns32k.h: Similarly.
16424         * config/pa/pa.h: Similarly.
16425         * config/pdp11/pdp11.h: Similarly.
16426         * config/pj/pj.h: Similarly.
16427         * config/romp/romp.h: Similarly.
16428         * config/rs6000/rs6000.h: Similarly.
16429         * config/sh/sh.h: Similarly.
16430         * config/sparc/sparc.h: Similarly.
16431         * config/v850/v850.h: Similarly.
16432         * config/vax/vax.h: Similarly.
16433         * config/we32k/we32k.h: Similarly.
16434
16435 2001-07-09  Joseph S. Myers  <jsm28@cam.ac.uk>
16436
16437         * doc/c-tree.texi: Document representation of attributes.
16438
16439 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
16440
16441         * doc/tm.texi: Update some places for the rename of target to
16442         targetm.  Fix typo.
16443
16444 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
16445
16446         * target.h (struct gcc_target): Add insert_attributes.
16447         * target-def.h (TARGET_INSERT_ATTRIBUTES): Define.
16448         (TARGET_INITIALIZER): Update.
16449         * tree.c, tree.h (default_insert_attributes): New function.
16450         Update comments on other default functions to refer to targetm,
16451         not target.
16452         * doc/tm.texi (INSERT_ATTRIBUTES): Update to document
16453         TARGET_INSERT_ATTRIBUTES.
16454         (SET_DEFAULT_DECL_ATTRIBUTES): Remove.
16455         * c-common.c (decl_attributes): Use targetm.insert_attributes.
16456         Don't use PRAGMA_INSERT_ATTRIBUTES.
16457         * Makefile.in (c-common.o): Depend on $(TARGET_H).
16458         * c-decl.c (start_decl, start_function): Don't call
16459         SET_DEFAULT_DECL_ATTRIBUTES.
16460         * config/c4x/c4x.h (SET_DEFAULT_DECL_ATTRIBUTES): Don't define.
16461         * config/c4x/c4x-protos.h (c4x_set_default_attributes): Don't
16462         declare.
16463         * config/c4x/c4x.c (TARGET_INSERT_ATTRIBUTES): Define.
16464         (c4x_check_attribute): Avoid modifying attribute list itself.
16465         (c4x_set_default_attributes): Rename to c4x_insert_attributes.
16466         Make static.
16467         * config/sh/sh.h (PRAGMA_INSERT_ATTRIBUTES): Don't define.
16468         * config/sh/sh-protos.h (sh_pragma_insert_attributes): Don't
16469         declare.
16470         * config/sh/sh.c (TARGET_INSERT_ATTRIBUTES): Define.
16471         (sh_pragma_insert_attributes): Rename to sh_insert_attributes.
16472         Make static.
16473         * config/v850/v850.h (SET_DEFAULT_DECL_ATTRIBUTES): Don't define.
16474         * config/v850/v850-protos.h (v850_set_default_decl_attr): Don't
16475         declare.
16476         * config/v850/v850.c (TARGET_INSERT_ATTRIBUTES): Define.
16477         (v850_set_default_decl_attr): Rename to v850_insert_attributes.
16478         Adjust parameters.  Make static.
16479
16480 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
16481
16482         * c-common.c (decl_attributes): Only take a single attributes
16483         parameter.
16484         * c-common.h (decl_attributes): Update prototype.
16485         * c-decl.c (start_decl, start_function): Only take a single
16486         attributes parameter.  Update calls to decl_attributes.
16487         (finish_struct, finish_enum): Update calls to decl_attributes.
16488         (push_parm_decl): Expect unified list of attributes.  Update call
16489         to decl_attributes.
16490         * c-parse.in (fndef, initdcl, notype_initdcl, nested_function,
16491         notype_nested_function, component_declarator,
16492         component_notype_declarator, label): Update calls to
16493         decl_attributes.
16494         (absdcl_maybe_attribute, parm, firstparm, myparm): Unify attribute
16495         lists that are passed to push_parm_decl.
16496         * c-tree.h (start_function, start_decl): Update prototypes.
16497         * config/sh/sh-protos.h, config/sh/sh.c
16498         (sh_pragma_insert_attributes): Only take a single attributes
16499         parameter.
16500         * config/sh/sh.h (PRAGMA_INSERT_ATTRIBUTES): Likewise.
16501         * doc/tm.texi (INSERT_ATTRIBUTES): Update.
16502         * objc/objc-act.c (define_decl, generate_objc_symtab_decl,
16503         build_module_descriptor, generate_static_references,
16504         generate_strings, build_selector_translation_table,
16505         generate_descriptor_table, generate_protocols,
16506         generate_ivars_list, generate_dispatch_table,
16507         generate_protocol_list, generate_category,
16508         generate_shared_structures, really_start_method, add_objc_decls,
16509         generate_classref_translation_entry): Update calls to start_decl
16510         and start_function.
16511         (build_tmp_function_decl, start_method_def): Unify attribute lists
16512         that are passed to push_parm_decl.
16513
16514 2001-07-08  Neil Booth  <neil@daikokuya.demon.co.uk>
16515
16516         * final.c (no_asm_to_stream): New.
16517         (final_scan_insn): Use target structures for prologue ends
16518         and epilogue starts.
16519         * output.h (no_asm_to_stream): New.
16520         * target-def.h (TARGET_ASM_FUNCTION_END_PROLOGUE,
16521         TARGET_ASM_FUNCTION_BEGIN_EPILOGUE): New.
16522         (TARGET_ASM_OUT): Update.
16523         * target.h (struct gcc_target): New members function_end_prologue
16524         and function_begin_epilogue.
16525         * config/1750/1750.h (ASM_OUTPUT_FUNNAM): Delete as unused.
16526         * config/alpha/alpha-protos.h (output_end_prologue): Delete.
16527         * config/alpha/alpha.c (output_end_prologue): Rename to
16528         alpha_output_function_end_prologue.  Use in target struct
16529         and make static.
16530         * config/alpha/alpha.h (FUNCTION_END_PROLOGUE): Delete.
16531         * config/ia64/ia64-protos.h (ia64_output_end_prologue): Delete.
16532         * config/ia64/ia64.c (ia64_output_end_prologue): Rename to
16533         ia64_output_function_end_prologue.  Use in target struct
16534         and make static.
16535         (ia64_function_prologue, ia64_funciton_epilogue): Rename
16536         mistyped prototypes.
16537         * config/ia64/ia64.h (FUNCTION_END_PROLOGUE): Delete.
16538         * config/m88k/m88k-protos.h (m88k_end_prologue, m88k_begin_epilogue):
16539         Delete.
16540         * config/m88k/m88k.c (m88k_end_prologue, m88k_begin_epilogue): Rename
16541         an use in target struct, make static.
16542         * config/ia64/ia64.h (FUNCTION_END_PROLOGUE, FUNCTION_BEGIN_EPILOGUE):
16543         Delete.
16544
16545 2001-07-08  Richard Henderson  <rth@redhat.com>
16546
16547         * stmt.c (emit_case_nodes): Convert modes properly in low+high test.
16548
16549 2001-07-08  Richard Henderson  <rth@redhat.com>
16550
16551         * config/i386/i386.md: Remove constraints strings from define_split
16552         and define_peephole2 patterns.
16553         (eh_return_si, eh_return_di): Split eh_return_1 for modes.
16554         (eh_return): Use them.
16555
16556 2001-07-08  Richard Henderson  <rth@redhat.com>
16557
16558         * doc/tm.texi (Exception Handling): New subnode of Stack and Calling.
16559         Document MD_FALLBACK_FRAME_STATE_FOR.
16560
16561 2001-07-07  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
16562
16563         * config/m68hc11/m68hc11.c (m68hc11_initial_elimination_offset):
16564         Take into account m68hc11_sp_correction for FRAME_POINTER_REGNUM
16565         elimination.
16566         * config/m68hc11/m68hc11.h (STARTING_FRAME_OFFSET): Use 0.
16567
16568 2001-07-07  Nick Clifton  <nickc@cambridge.redhat.com>
16569
16570         * config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Append # to end
16571         of the label inside NAME as opposed to just the end of NAME.
16572
16573 2001-07-07  Neil Booth  <neil@daikokuya.demon.co.uk>
16574
16575         * config/alpha/alpha-protos.h (vms_valid_decl_attribute_p): Delete.
16576         * config/alpha/alpha.c (alpha_init_machine_status,
16577         alpha_mark_machine_status, alpha_free_machine_status): Delete.
16578         (TARGET_VALID_DECL_ATTRIBUTE): Define for VMS.
16579         (vms_valid_decl_attribute_p): Make static, conditionally compile.
16580         * config/alpha/alpha.h (VALID_MACHINE_DECL_ATTRIBUTE): Delete.
16581
16582 2001-07-06  Stan Shebs  <shebs@apple.com>
16583
16584         * target.h (targetm): Rename global from "target", so as not to
16585         conflict with local variables.
16586         * c-decl.c: Ditto.
16587         * c-typeck.c: Ditto.
16588         * final.c: Ditto.
16589         * tree.c: Ditto.
16590         * cp/decl.c: Ditto.
16591         * cp/decl2.c: Ditto.
16592         * cp/typeck.c: Ditto.
16593         * 1750a/1750a.c: Ditto.
16594         * a29k/a29k.c: Ditto.
16595         * arc/arc.c: Ditto.
16596         * arm/arm.c: Ditto.
16597         * avr/avr.c: Ditto.
16598         * clipper/clipper.c: Ditto.
16599         * convex/convex.c: Ditto.
16600         * d30v/d30v.c: Ditto.
16601         * dsp16xx/dsp16xx.c: Ditto.
16602         * elxsi/elxsi.c: Ditto.
16603         * fr30/fr30.c: Ditto.
16604         * h8300/h8300.c: Ditto.
16605         * i370/i370.c: Ditto.
16606         * i386/i386.c: Ditto.
16607         * i860/i860.c: Ditto.
16608         * i960/i960.c: Ditto.
16609         * ia64/ia64.c: Ditto.
16610         * m32r/m32r.c: Ditto.
16611         * m68hc11/m68hc11.c: Ditto.
16612         * m68k/m68k.c: Ditto.
16613         * m88k/m88k.c: Ditto.
16614         * mips/mips.c: Ditto.
16615         * ns32k/ns32k.c: Ditto.
16616         * pa/pa.c: Ditto.
16617         * pdp11/pdp11.c: Ditto.
16618         * romp/romp.c: Ditto.
16619         * rs6000/rs6000.c: Ditto.
16620         * sh/sh.c: Ditto.
16621         * sparc/sparc.c: Ditto.
16622         * vax/vax.c: Ditto.
16623         * we32k/we32k.c: Ditto.
16624         * doc/tm.texi: Update the manual to match.
16625
16626 2001-07-06  Richard Henderson  <rth@redhat.com>
16627
16628         * except.h (MUST_USE_SJLJ_EXCEPTIONS): Examine the value of
16629         DWARF2_UNWIND_INFO not just whether it is defined.
16630
16631 2001-07-06  Diego Novillo  <dnovillo@redhat.com>
16632
16633         * combine.c (combine_simplify_rtx): Also recompute 'mode' if the
16634         call to simplify_binary_operation returns a new pattern.
16635
16636 2001-07-06  Roman Lechtchinsky  <rl@cs.tu-berlin.de>
16637
16638         * glimits.h (__SHRT_MAX__): New.
16639         (SHRT_MIN, USHRT_MAX): Define in terms of SHRT_MAX.
16640         (SHRT_MAX): Define in terms of __SHRT_MAX__.
16641
16642 2001-07-06  Jan van Male  <jan.vanmale@fenk.wau.nl>
16643
16644         * alias.c (base_alias_check): Cast GET_MODE_UNIT_SIZE to int to
16645         avoid warnings.
16646
16647 2001-07-06  Richard Henderson  <rth@redhat.com>
16648
16649         * bitmap.c (bitmap_release_memory): Move adjacent to the
16650         allocation functions.
16651         (bitmap_first_set_bit, bitmap_last_set_bit): Streamline knowing
16652         the implementation.  Binary search for the set bit.
16653         (bitmap_union_of_diff): Allocate the temporary on the stack
16654         instead of using xmalloc.
16655
16656 2001-07-06  Richard Henderson  <rth@redhat.com>
16657
16658         * genrecog.c (validate_pattern): Warn for constraints in
16659         define_{expand,split,peephole2}.  Remove strict_low_part
16660         before looking up match_dup.
16661
16662 2001-07-06  DJ Delorie  <dj@redhat.com>
16663
16664         * doc/gcc.texi (Makefile): Rename to be a more general purpose
16665         chapter about various build hints and history.  Add section
16666         talking about the various types of native and cross builds.
16667
16668 2001-07-06  Neil Booth  <neil@daikokuya.demon.co.uk>
16669
16670         * Makefile.in (final.o): Depend on target.h.
16671         * final.c: Include target.h.
16672         (default_function_pro_epilogue): New.
16673         (final_start_function): Use target structure for function prologues.
16674         (final_end_function): Use target structure for function epilogues.
16675         * fold-const.c (real_hex_to_f): Constify s and p.
16676         * output.h (default_function_pro_epilogue): New.
16677         * real.h (real_hex_to_f): Update prototype.
16678         * target-def.h (TARGET_ASM_FUNCTION_PROLOGUE,
16679         TARGET_ASM_FUNCTION_EPILOGUE, TARGET_ASM_OUT): New.
16680         (TARGET_INITIALIZER): Update.
16681         * target.h (gcc_target): Add struct asm_out.
16682         * doc/tm.texi: Update.
16683
16684 config:
16685         Update each arch to use TARGET_ASM_FUNCTION_PROLOGUE and
16686         TARGET_ASM_FUNCTION_EPILOGUE.  Move macro code to functions
16687         in cpu/cpu.c, or rename old functions consistently.  Take
16688         a HOST_WIDE INT not an int as the SIZE parameter.  Remove now
16689         redundant macros and prototypes.  Make new functions static.
16690
16691         * 1750a/1750a.c: Similarly.
16692         * 1750a/1750a.h: Similarly.
16693         * a29k/a29k-protos.h: Similarly.
16694         * a29k/a29k.c: Similarly.
16695         * a29k/a29k.h: Similarly.
16696         * arc/arc-protos.h: Similarly.
16697         * arc/arc.c: Similarly.
16698         * arc/arc.h: Similarly.
16699         * arm/arm-protos.h: Similarly.
16700         * arm/arm.c: Similarly.
16701         * arm/arm.h: Similarly.
16702         * avr/avr-protos.h: Similarly.
16703         * avr/avr.c: Similarly.
16704         * avr/avr.h: Similarly.
16705         * clipper/clipper-protos.h: Similarly.
16706         * clipper/clipper.c: Similarly.
16707         * clipper/clipper.h: Similarly.
16708         * convex/convex.c: Similarly.
16709         * convex/convex.h: Similarly.
16710         * d30v/d30v-protos.h: Similarly.
16711         * d30v/d30v.c: Similarly.
16712         * d30v/d30v.h: Similarly.
16713         * d30v/d30v.md: Similarly.
16714         * dsp16xx/dsp16xx-protos.h: Similarly.
16715         * dsp16xx/dsp16xx.c: Similarly.
16716         * dsp16xx/dsp16xx.h: Similarly.
16717         * elxsi/elxsi.c: Similarly.
16718         * elxsi/elxsi.h: Similarly.
16719         * fr30/fr30.c: Similarly.
16720         * fr30/fr30.md: Similarly.
16721         * h8300/h8300-protos.h: Similarly.
16722         * h8300/h8300.c: Similarly.
16723         * h8300/h8300.h: Similarly.
16724         * i370/i370-protos.h: Similarly.
16725         * i370/i370.c: Similarly.
16726         * i370/i370.h: Similarly.
16727         * i386/i386.c: Similarly.
16728         * i386/osf1elf.h: Similarly.
16729         * i386/osfrose.h: Similarly.
16730         * i860/i860-protos.h: Similarly.
16731         * i860/i860.c: Similarly.
16732         * i860/i860.h: Similarly.
16733         * i960/i960-protos.h: Similarly.
16734         * i960/i960.c: Similarly.
16735         * i960/i960.h: Similarly.
16736         * ia64/ia64-protos.h: Similarly.
16737         * ia64/ia64.c: Similarly.
16738         * ia64/ia64.h: Similarly.
16739         * m32r/m32r-protos.h: Similarly.
16740         * m32r/m32r.c: Similarly.
16741         * m32r/m32r.h: Similarly.
16742         * m68hc11/m68hc11-protos.h: Similarly.
16743         * m68hc11/m68hc11.c: Similarly.
16744         * m68hc11/m68hc11.h: Similarly.
16745         * m68k/crds.h: Similarly.
16746         * m68k/dpx2.h: Similarly.
16747         * m68k/m68k-protos.h: Similarly.
16748         * m68k/m68k.c: Similarly.
16749         * m68k/m68k.h: Similarly.
16750         * m68k/news.h: Similarly.
16751         * m88k/m88k-protos.h: Similarly.
16752         * m88k/m88k.c: Similarly.
16753         * m88k/m88k.h: Similarly.
16754         * mips/mips-protos.h: Similarly.
16755         * mips/mips.c: Similarly.
16756         * mips/mips.h: Similarly.
16757         * ns32k/merlin.h: Similarly.
16758         * ns32k/ns32k.c: Similarly.
16759         * ns32k/ns32k.h: Similarly.
16760         * ns32k/tek6000.h: Similarly.
16761         * pa/pa-protos.h: Similarly.
16762         * pa/pa.c: Similarly.
16763         * pa/pa.h: Similarly.
16764         * pdp11/2bsd.h: Similarly.
16765         * pdp11/pdp11-protos.h: Similarly.
16766         * pdp11/pdp11.c: Similarly.
16767         * pdp11/pdp11.h: Similarly.
16768         * romp/romp-protos.h: Similarly.
16769         * romp/romp.c: Similarly.
16770         * romp/romp.h: Similarly.
16771         * rs6000/rs6000-protos.h: Similarly.
16772         * rs6000/rs6000.c: Similarly.
16773         * rs6000/rs6000.h: Similarly.
16774         * rs6000/sysv4.h: Similarly.
16775         * sh/sh-protos.h: Similarly.
16776         * sh/sh.c: Similarly.
16777         * sh/sh.h: Similarly.
16778         * sparc/sparc-protos.h: Similarly.
16779         * sparc/sparc.c: Similarly.
16780         * sparc/sparc.h: Similarly.
16781         * vax/vax.c: Similarly.
16782         * vax/vax.h: Similarly.
16783         * vax/vms.h: Similarly.
16784         * we32k/we32k.c: Similarly.
16785         * we32k/we32k.h: Similarly.
16786
16787 Fri Jul  6 11:47:59 2001  Jeffrey A Law  (law@cygnus.com)
16788
16789         * basic-block.h (first_insn_after_basic_block_note): Declare.
16790         * flow.c (first_insn_after_basic_block_note): Define.  Moved
16791         from...
16792         * ssa.c (first_insn_after_basic_block_note): Remove.
16793         * ssa-dce.c (find_inherently_necessary): Consider BARRIERs
16794         necessary.
16795         (ssa_eliminate_dead_code): Properly update the CFG and PHI
16796         nodes when we find a dead conditional branch.  Insert BARRIERs
16797         after any blocks with no successors, but which do not have
16798         any BARRIERs.
16799
16800 2001-07-06  Zack Weinberg  <zackw@stanford.edu>
16801
16802         * varray.c (varray_check_failed): Use internal_error.
16803
16804 2001-07-05  Andrew Haley  <aph@redhat.com>
16805
16806         * Makefile.in (LIB2_DIVMOD_FUNCS): New.
16807         (LIB2FUNCS): Move divmod functions to LIB2_DIVMOD_FUNCS.
16808         * mklibgcc.in: Compile LIB2_DIVMOD_FUNCS.
16809
16810 2001-07-02  Jason Merrill  <jason_merrill@redhat.com>
16811
16812         * dwarf2out.c (mem_loc_descriptor): Only look through a constant pool
16813         reference if the target constant is also a SYMBOL_REF.
16814
16815 2001-07-05  Eric Christopher  <echristo@redhat.com>
16816
16817         * config/mips/mips.h (MASK_MIPS3900): Remove.
16818         (MASK_MIPS16,MASK_NO_CHECK_ZERO_DIV,MASK_CHECK_RANGE_DIV,
16819         MASK_UNINIT_CONST_IN_RODATA): Change for 3900 mask removal.
16820         (TARGET_MIPS3900): Change to use mips_arch.
16821         (TARGET_MIPS4000): New.
16822         (TARGET_MIPS4100): New.
16823         (TARGET_MIPS4300): New.
16824         (TARGET_SWITCHES): Change 3900 and 4650 options to NULL.
16825         (SUBTARGET_TARGET_OPTIONS): Add -march. Change help text
16826         for -mipsX.
16827         (GENERATE_BRANCHLIKELY): Move TARGET_MIPS3900.
16828         (ISA_HAS_BRANCHLIKELY): To here.
16829         (CC1_CPU_SPEC):  New.
16830         (CC1_SPEC): Use here.  Remove 4650 and 3900 options.
16831         (mips_arch_string): Declare.
16832         (mips_arch): Declare.
16833         (TARGET_OPTIONS): Add -march and -mtune.
16834
16835         * config/mips/mips.c (mips_arch_string): New.
16836         (mips_arch): New.
16837         (override_options): Handle -march for codegen and -mtune
16838         for scheduling. Use mips_arch. Move tx39 target default here.
16839         (mips_parse_cpu): Move error message to override_options.
16840
16841         * config/mips/r3900.h (TARGET_DEFAULT): Remove.
16842
16843         * config/mips/mips.md: Use TARGET_MIPS4000 and TARGET_MIPS4300.
16844
16845         * doc/invoke.texi (Option Summary): Add -march and -mtune entries.
16846         (MIPS Options): Ditto.  Change mcpu entry to historical text.
16847
16848 2001-07-05  H.J. Lu  (hjl@gnu.org)
16849
16850         * config/mips/mips.c (mips_parse_cpu): New function to parse
16851         -march=*/-mcpu=*.
16852
16853 2001-07-05  Jim Wilson  <wilson@redhat.com>
16854
16855         * config/ia64/lib1funcs.asm: Revert 2001-07-02 change.
16856         * config/ia64/t-ia64: Likewise.
16857         (LIB1ASMFUNCS): Update comment.
16858
16859 2001-07-05  David Edelsohn  <edelsohn@gnu.org>
16860
16861         * doc/install.texi (Install GCC: Binaries): Fix typo.
16862
16863 2001-07-04  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
16864
16865         * config/m68hc11/m68hc11.md ("*ashlsi3"): Operand 1 can be a memory
16866         reference using the stack pointer, adjust it since we push Y
16867         temporarily.
16868         ("*ashrsi3"): Likewise.
16869         ("*lshrsi3"): Likewise.
16870
16871 2001-07-05  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
16872
16873         * config/m68hc11/m68hc11.h (RETURN_ADDR_RTX): Fix return address
16874         when -fomit-frame-pointer is used.
16875
16876 2001-07-05  Jeffrey Oldham  <oldham@codesourcery.com>
16877
16878         * flow.c: Reverse Jan Hubicka's patch of 02July2001.
16879         (try_redirect_by_replacing_jump): Reverse updating properly the
16880         count and frequency information.  Reverse removing cc0 setter.
16881         (forwarder_block_p): Reverse fixing for fallthru blocks.
16882
16883 2001-07-05  DJ Delorie  <dj@redhat.com>
16884
16885         * gcc.c (TARGET_OPTION_TRANSLATE_TABLE): New.
16886         (translate_options): If the above is defined, use it to map
16887         given options to new options.
16888         * doc/tm.texi: Document it.
16889
16890 2001-07-05  Brad Lucier <lucier@math.purdue.edu>
16891             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
16892
16893         * doc/invoke.texi (Optimize Options): Document that -fgcse may
16894         cause programs using computed gotos to run more slowly.
16895
16896 2001-07-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
16897
16898         * doc/install.texi (Specific): Markup, spelling and typo fixes.
16899         Fixed sorting.
16900         Consistently require binutils 2.11.2, not prereleases.
16901         (Specific, decstation-*): Canonicalize as mips-dec-*.
16902         (Specific, i?86-*-sco3.2v5*): Remove make bootstrap requirement,
16903         always necessary.
16904         (Specific, m68k-altos): Removed reference to README.altos, deleted.
16905         (Specific, mips-*): Reword MIPS C compiler requirements.
16906         (Specific, powerpc*-*-*): New, mention --with-cpu once.
16907         (Specific, sunv5): Removed, obsolete.
16908
16909 2001-07-05  Nathan Sidwell  <nathan@codesourcery.com>
16910
16911         * dwarf2out.c (output_loc_list): Use an all ones mask for
16912         .text asm output and don't rely on long long
16913         literals. Reformat some long lines.
16914
16915 2001-07-05  Andreas Jaeger  <aj@suse.de>
16916
16917         * doc/gcc.texi (GNU/Linux): Remove accidental re-add of GPL
16918         section.
16919
16920 2001-07-04  Daniel Berlin  <dan@cgsoftware.com>
16921
16922         * dwarf2out.c (dwarf2out_define): Update comment.
16923         (dwarf2out_undef): Ditto.
16924         (dwarf2out_start_source_file): Ditto.
16925         (dwarf2out_end_source_file): Ditto.
16926         (dwarf2out_finish): Output DW_MACINFO_end_file for primary file,
16927         since we never call the start/end debug hook for the primary file.
16928
16929 2001-07-04  Kazu Hirata  <kazu@hxi.com>
16930
16931         * config/h8300/h8300.c (get_shift_alg): Remove an extra operand
16932         from shll.
16933
16934 2001-07-04  Nathan Sidwell  <nathan@codesourcery.com>
16935
16936         * cppinit.c (remove_dup_dirs): Inform if a system include
16937         directory is being reordered.
16938         * doc/invoke.texi (Directory Options): GCC warns if you hide a
16939         system include.
16940         * doc/cpp.texi (Search Paths): Likewise.
16941         * doc/gcc.texi (Interoperation): Remove information about
16942         -I/usr/include.
16943
16944 2001-07-04  Nathan Sidwell  <nathan@codesourcery.com>
16945
16946         * varray.h (VARRAY_TOP_GENERIC_PTR): Remove spurious parameter.
16947         (VARRAY_TOP_CHAR_PTR): Likewise.
16948
16949 2001-07-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16950
16951         * gcc.c (process_command): Don't assign elements of a const char*.
16952
16953 Wed Jul  4 13:40:02 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16954
16955         * emit-rtl.c (change_address): Don't abort if invalid address while
16956         reload is in progress.
16957
16958 2001-07-04  Daniel Berlin  <dan@cgsoftware.com>
16959
16960         * c-lex.c (cb_file_change): Pass line number to
16961         debug_start_source_file.
16962         (cb_undefine): Pass correct line number to debug_undef.
16963
16964         * toplev.c (debug_start_source_file): Add line number to
16965         parameters. Pass it along to dwarf2out_start_source_file.
16966         (decode_g_option): Stop resetting debug level back to normal when
16967         we change debug formats, unless the current level is
16968         none. (Before, -g3 -gdwarf-2 would use debug level 2, rather than
16969         3).
16970
16971         * toplev.h (debug_start_source_file): Add line number to
16972         parameters.
16973
16974         * dwarf2out.h (dwarf2out_start_source_file): Add line number to
16975         parameters.
16976
16977         * dwarf2out.c (dwarf2out_start_source_file): Add line number to
16978         parameters.
16979         Output debug_macinfo data for starting file if requested.
16980         (dwarf2out_end_source_file): Output debug_macinfo data for ending
16981         file if requested.
16982         (dwarf2out_define): Output debug_macinfo data for defining a macro
16983         if requested.
16984         (dwarf2out_undef): Output debug_macinfo data for undefining a
16985         macro if requested.
16986         (DEBUG_MACINFO_SECTION): New. DWARF2 macro info section name.
16987         (DEBUG_MACINFO_SECTION_LABEL): New. DWARF2 macro info section label.
16988         (macinfo_section_label): New. DWARF2 macro info section label.
16989         (dwarf2out_init): If we want macro info, output the start label
16990         for the section.
16991         (dwarf2out_finish): If we want macro info, add a DW_AT_macro_info
16992         attribute to the compilation unit die pointing to the macro info.
16993
16994 2001-07-04  Daniel Berlin  <dan@cgsoftware.com>
16995
16996         * dwarf2out.c (new_loc_list): Move to inside #ifdef
16997         DWARF2_DEBUGGING_INFO.
16998         (add_loc_descr_to_loc_list): Ditto.
16999         (output_loc_list): Ditto.
17000         Also, fix thinko in curr not being initialized.
17001         (gen_internal_sym): Ditto.
17002
17003 Wed Jul  4 13:40:02 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17004
17005         * emit-rtl.c (replace_equiv_address): New function.
17006         * expr.h (replace_equiv_address): New declaration.
17007         * explow.c (validize_mem): Call it instead of change_address and
17008         also call if -fforce-addr and address is constant.
17009         * expr.c: Replace more calls to change_address with adjust_address
17010         and/or replace_equiv_address or to validize_mem.
17011         * function.c, regmove.c, config/alpha/alpha.c: Likewise.
17012         * config/arm/arm.md, config/clipper/clipper.md: Likewise.
17013         * config/dsp16xx/dsp16xx.md, config/fr30/fr30.c: Likewise.
17014         * config/i370/i370.md, config/i860/i860.md: Likewise.
17015         * config/i960/i960.md, config/mips/mips.c: Likewise.
17016         * config/mips/mips.md, config/pa/pa.md: Likewise.
17017         * config/pdp11/pdp11.md, config/rs6000/rs6000.c: Likewise.
17018         * config/rs6000/rs6000.md, config/sh/sh.md: Likewise.
17019
17020 2001-07-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17021
17022         * bitmap.c (bitmap_union_of_diff): Don't use BITMAP_ALLOCA.
17023
17024         * bitmap.h (BITMAP_ALLOCA): Don't pass alloca as an argument to a
17025         function.
17026
17027 2001-07-04  Joseph S. Myers  <jsm28@cam.ac.uk>
17028
17029         * doc/include: New directory.
17030         * doc/fdl.texi: Move to doc/include/fdl.texi.
17031         * doc/texinfo.tex: Move to doc/include/texinfo.tex.
17032         * doc/include/funding.texi, doc/include/gpl.texi: New files.
17033         * doc/gcc.texi: Use funding.texi and gpl.texi.
17034         * Makefile.in ($(docdir)/cpp.info, $(docdir)/gcc.info,
17035         $(docdir)/cppinternals.info, cpp.dvi. gcc.dvi. cppinternals.dvi):
17036         Update dependencies and use -I $(docdir)/include.
17037
17038 2001-07-04  Anthony Green  <green@redhat.com>
17039
17040         * config/v850/t-v850 (v850-c.o): Add missing dependencies.
17041
17042 2001-07-04  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
17043
17044         * doc/install.texi (sparc64-*-*): Remove garbage.
17045
17046 Wed Jul  4 09:07:44 2001  Jan van Male  <jan.vanmale@fenk.wau.nl>
17047
17048         * i386.c (ix86_expand_builtin, case IX86_BUILTIN_SETPS):
17049         Fix typo in last change to use adjust_address.
17050
17051 2001-07-04  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
17052
17053         * doc/install.texi (Specific): Update information for *-*-solaris*.
17054
17055 Tue Jul  3 22:33:15 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17056
17057         * explow.c (plus_constant_wide): Reinitialize Y for restart.
17058
17059 2001-07-03  Stan Shebs  <shebs@apple.com>
17060
17061         * config/darwin.h (SECTION_FUNCTION): Remove WAS_TEXT argument, remove
17062         case for flag_no_mach_text_sections.
17063         (EXTRA_SECTION_FUNCTIONS): Remove arg from uses of SECTION_FUNCTION.
17064         * config/darwin.c (flag_no_mach_text_sections): Remove.
17065         * config/darwin-protos.h (darwin_init_pragma): Remove decl.
17066
17067 Tue Jul  3 15:35:52 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17068
17069         * explow.c (plus_constant_wide, case PLUS): Call find_constant_term
17070         and avoid checking for constant as first operand.
17071         * recog.c (find_constant_term_loc): No longer static.
17072         (adj_offettable_operand): Delete.
17073         * rtl.h (adj_offsettable_operand): Delete declaration.
17074         (find_constant_term): Add declaration.
17075         * caller-save.c: Replace calls to adj_offsettable_operand with calls
17076         to adjust_address.
17077         * config/arm/arm.c, config/c4x/c4x.c: Likewise.
17078         * config/clipper/clipper.md, config/h8300/h8300.c: Likewise.
17079         * config/i386/i386.c, config/i386/i386.md: Likewise.
17080         * config/i860/i860.c, config/i960/i960.c: Likewise.
17081         * config/i960/i960.md, config/m68hc11/m68hc11.c: Likewise.
17082         * config/m68k/m68k.c, config/m68k/m68k.md: Likewise.
17083         * config/m88k/m88k.md, config/mcore/mcore.c: Likewise.
17084         * config/mips/mips.c, config/mips/mips.md: Likewise.
17085         * config/mn10200/mn10200.c, config/mn10300/mn10300.c: Likewise.
17086         * config/ns32k/ns32k.c, config/ns32k/ns32k.md: Likewise.
17087         * config/pa/pa.c, config/pdp11/pdp11.c: Likewise.
17088         * config/pdp11/pdp11.md, config/sh/sh.c, config/v850/v850.c: Likewise.
17089         * config/vax/vax.md, config/ns32k/ns32k.c: Likewise.
17090         * config/ns32k/ns32k.md: Likewise.
17091
17092 2001-07-03  Zack Weinberg  <zackw@stanford.edu>
17093
17094         * rtl.c (copy_rtx): Handle 'T' format letter.
17095         * gensupport.c (collect_insn_data): Likewise.
17096         * print-rtl.c (print_rtx): Print 'T' slots like 's'.
17097
17098 2001-07-03  Nick Clifton  <nickc@cambridge.redhat.com>
17099
17100         * doc/invoke.texi (Directory Options): Specifiy range for <N> in
17101         -B option.  Use 'dir' not 'foo' as example directory name.
17102
17103 2001-07-03  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
17104
17105         * config/i386/sol2.h (ASM_PREFERRED_EH_DATA_FORMAT): Define.
17106         Fixes PRs bootstrap/3067, bootstrap/3249, bootstrap/3275.
17107
17108 2001-07-03  Joseph S. Myers  <jsm28@cam.ac.uk>
17109
17110         * doc/cppinternals.texi: Improve formatting and logical markup.
17111
17112 2001-07-03  Andreas Jaeger  <aj@suse.de>
17113
17114         * Makefile.in (insn-recog.o): Add dependency on reload.h.
17115
17116         * genrecog.c (write_header): Include reload.h for prototypes in
17117         insn-recog.c.
17118
17119 2001-07-03  Neil Booth  <neil@daikokuya.demon.co.uk>
17120
17121 config:
17122         * i386/cygwin.h (VALID_MACHINE_DECL_ATTRIBUTE,
17123         VALID_MACHINE_TYPE_ATTRIBUTE): Remove.
17124         * i386/i386-protos.h (i386_pe_valid_decl_attribute_p,
17125         i386_pe_valid_type_attribute_p): Add.
17126         * i386/i386.c (TARGET_INITIALIZER): Override for cygwin targets.
17127         * i386/winnt.c (i386_valid_decl_attribute_p): Return directly.
17128
17129 Mon Jul  2 21:52:19 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17130
17131         * explow.c (plus_constant_wide, case LO_SUM): New case.
17132         (plus_constant_for_output_wide): Delete.
17133         * rtl.h (plus_constant_for_output): Delete.
17134         * alias.c (canon_rtx, init_alias_analysis): Call plus_constant
17135         instead of plus_constant_for_output.
17136         * recog.c (offsettable_address_p, adj_offsettable_operand): Likewise.
17137         * config/darwin.c, config/arm/arm.c, config/m68k/m68k.c: Likewise.
17138         * config/m88k/m88k.c, config/mips/mips.c, config/pa/pa.c: Likewise.
17139         * config/rs6000/rs6000.c, config/sparc/sparc.c: Likewise.
17140         * config/sparc/sparc.md: Likewise.
17141         Convert some change_address calls to adjust_address.
17142
17143 2001-07-03  Joseph S. Myers  <jsm28@cam.ac.uk>
17144
17145         * doc/extend.texi, doc/gcc.texi, doc/invoke.texi, doc/md.texi,
17146         doc/rtl.texi, doc/tm.texi: Improve formatting.  Improve
17147         documentation of -std and -Wwrite-strings.
17148
17149 2001-07-02  Geoffrey Keating  <geoffk@redhat.com>
17150
17151         * cse.c (canon_hash): Don't register registers in very small
17152         register classes, as extending their lifetime might cause
17153         reload to fail.
17154
17155 Mon Jul  2 23:14:00 CEST 2001  Jan Hubicka  <jh@suse.cz>
17156
17157         * flow.c (try_redirect_by_replacing_jump): Remove cc0 setter.
17158
17159         * flow.c (forwarder_block_p): Fix for fallthru blocks.
17160         (try_redirect_by_replacing_jump): Update properly the count
17161         and frequency information.
17162
17163 Mon Jul  2 14:20:13 2001  Jeffrey A Law  (law@cygnus.com)
17164
17165         * toplev.c (dump_file_index): Move SSA dumps just after first
17166         jump dump.
17167         (dump_file): Corresponding changes.
17168         (rest_of_compilation): Move SSA path to just after the first
17169         jump pass.
17170         * doc/gcc.texi (Passes): Update due to movement of SSA path.
17171         * doc/invoke.texi: Update dump file #s as they were completely
17172         out of date with reality.
17173
17174 2001-07-02  Geoffrey Keating  <geoffk@redhat.com>
17175
17176         * doc/tm.texi (Frame Layout): Document STACK_PUSH_CODE.
17177
17178         * expr.c (emit_move_insn_1): Deal with non-default
17179         STACK_PUSH_CODE.
17180
17181         * expr.c (emit_single_push_insn): Fix warning.
17182
17183 2001-07-02  Toshiyasu Morita  <toshiyasu.morita@hsa.hitachi.com>
17184
17185         * expr.c (emit_move_insn_1): Avoid modifying
17186         cfun->expr->x_stack_pointer when PUSH_ROUNDING is defined.
17187
17188 Mon Jul  2 15:33:31 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17189
17190         * emit-rtl.c (adjust_address): New function.
17191         * expr.h (adjust_address): Add declaration.
17192         * builtins.c: Replace some calls to change_address with calls to it
17193         or to validize_mem.
17194         * caller-save.c, dwarf2out.c, except.c, expmed.c, expr.c: Likewise.
17195         * function.c, config/a29k/a29k.md, config/alpha/alpha.c: Likewise.
17196         * config/arm/arm.c, config/convex/convex.c: Likewise.
17197         * config/dsp16xx/dsp16xx.md, config/fr30/fr30.c: Likewise.
17198         * config/i386/i386.c, config/i386/i386.md: Likewise.
17199         * config/ia64/ia64.c, config/ia64/ia64.md: Likewise.
17200         * config/m32r/m32r.c, config/m68k/m68k.md: Likewise.
17201         * config/m88k/m88k.c, config/mips/mips.md: Likewise.
17202         * config/ns32k/ns32k.c, config/rs6000/rs6000.c: Likewise.
17203         * config/sh/sh.c, config/sparc/sparc.md: Likewise.
17204
17205 2001-07-02  Jim Wilson  <wilson@redhat.com>
17206
17207         * config/ia64/ia64.h: Delete obsolete lib1funcs.asm comment.
17208
17209 2001-07-02  Steve Ellcey  <sje@cup.hp.com>
17210
17211         * config/ia64/t-ia64: Change LIB1ASMFUNCS to use single underscore.
17212         * config/ia64/lib1funcs.asm: Change macro names to match t-ia64.
17213
17214 2001-07-02  Zack Weinberg  <zackw@stanford.edu>
17215
17216         * cppinit.c (lang_defaults): New table.
17217         (set_lang): Just read from lang_defaults into the live options
17218         structure.
17219
17220 2001-07-02  Zack Weinberg  <zackw@stanford.edu>
17221
17222         * Makefile.in (doc): Depend on $(GENERATED_MANPAGES).
17223         * doc/.cvsignore: Add gcc.1, cpp.1, gcov.1.
17224         * doc/gcc.1, doc/cpp.1, doc/gcov.1: Removed.
17225
17226 2001-07-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
17227
17228         * doc/install.texi: Various spelling and markup fixes.
17229         (Installing GCC): Component specific installation instructions are
17230         gone.
17231         Fix reference.
17232         Warn about removing old install dir in the presence of shared libs.
17233         (Configuration): Invoke with options target to match configure
17234         --help.
17235         Consistently refer to gas, gld pathnames.
17236         Invert --enable-multilib documentation.
17237         Remove references to old compiler versions.
17238
17239 Mon Jul  2 12:50:51 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17240
17241         * flow.c (try_simplify_condjump): Fix typo in updating fallthru flags.
17242
17243 2001-07-02  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
17244
17245         * doc/install.texi (Specific, mips*-sgi-irix4): Split from IRIX 5
17246         section.
17247         (Specific, mips*-sgi-irix5): Note IDO download.
17248         Reworded MIPS C hints.
17249         Use GNU as instead of GAS.
17250         Markup fixes.
17251         Removed SGI Freeware reference, IRIX 6 only.
17252         (Specific, mips*-sgi-irix6): Removed ranlib caveats, obsolete.
17253         Note N64 library requirement/workaround.
17254         Update O32 hints.
17255         Complete list of structure passing bug victims.
17256
17257 2001-07-02  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
17258
17259         * doc/install.texi: Remove CVS Id.
17260
17261 2001-07-02  Andreas Jaeger  <aj@suse.de>
17262
17263         * ssa-dce.c (note_inherently_necessary_set): Add unused attribute.
17264         (find_inherently_necessary): Remove unused variable.
17265
17266 2001-07-02  Nathan Sidwell  <nathan@codesourcery.com>
17267
17268         * c-common.h (TDI_inlined): New ast dump phase.
17269         (dump_flag_name): New function.
17270         * c-dump.c (dump_files): Add inlined phase.
17271         (dump_flag_name): Define.
17272         * doc/invoke.texi (-fdump-ast-inlined): Document.
17273
17274 Mon Jul  2 06:29:36 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17275
17276         * stor-layout.c (layout_decl): Revert change to handling of alignment
17277         in packed types.
17278
17279 Sun Jul  1 11:53:52 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17280
17281         * c-common.c (decl_attributes, case A_MODE): Don't call layout_decl
17282         for FIELD_DECL.
17283
17284 2001-07-01  Geoffrey Keating  <geoffk@redhat.com>
17285
17286         * doc/tm.texi (FUNCTION_ARG): Document that the last call
17287         is special.
17288
17289 2001-07-01  Nathan Sidwell  <nathan@codesourcery.com>
17290
17291         * tlink.c (recompile_files): Remove COMPILER_PATH and
17292         LIBRARY_PATH from the environment.
17293
17294 2001-07-01  Zack Weinberg  <zackw@stanford.edu>
17295
17296         * c-common.h (enum rid): Add RID_FIRST_AT, RID_LAST_AT,
17297         RID_LAST_PQ.  Move RID_FIRST_PQ down with the other FIRST/LAST
17298         enumerators.
17299         (OBJC_IS_AT_KEYWORD, OBJC_IS_PQ_KEYWORD): New macros.
17300
17301         * c-parse.in (OBJC_STRING): Kill.
17302         (objc_string): Decompose to [objc_string] '@' STRING.
17303         (reswords): Take the leading '@' off all the Objective C keywords.
17304         (objc_rid_sans_at): Kill.
17305         (init_reswords): Don't initialize it.
17306         (yylexname): Use OBJC_IS_AT_KEYWORD and OBJC_IS_PQ_KEYWORD.
17307         (_yylex): Kill reconsider label.  Look ahead one token after
17308         an '@'; if we get an identifier, check whether it's an
17309         Objective C @-keyword.  If so, return the keyword.  Otherwise,
17310         put back the token and return the '@' as a terminal.
17311
17312         * cpplib.c (lex_macro_node): Remove unnecessary check for
17313         leading '@' on identifier.  Clarify control flow and commentary.
17314
17315 Sun Jul  1 11:53:52 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17316
17317         * cse.c (new_label_ref): Variable deleted.
17318         (insert): Remove set of new_label_ref.
17319         (check_for_label_ref): New function.
17320         (cse_basic_block): Don't check new_label_ref; call check_for_label_ref.
17321
17322 See ChangeLog.5 for earlier changes.