d0986da6a6933143e5da7ce29ce3791a4a1e5324
[gcc.git] / gcc / ChangeLog
1 2000-06-06 Gabriel Dos Reis <gdr@codesourcery.com>
2
3 * diagnostic.c (output_maximum_width): Remove.
4 (doing_line_wrapping): Tweak.
5 (diagnostic_buffer): New object.
6 (global_output_buffer): New object.
7 (output_destroy_prefix): New function.
8 (default_initialize_buffer): Likewise.
9 (reshape_diagnostic_buffer): Likewise.
10 (initialize_diagnostics): Likewise.
11 (output_clear): Tweak.
12 (line_wrapper_printf): Adjust call to init_output_buffer.
13 (vline_wrapper_message_with_location): Likewise. Use
14 output_destroy_prefix.
15 (v_message_with_decl): Likewise.
16
17 * diagnostic.h (struct output_buffer): Constify prefix.
18 (init_output_buffer, output_get_prefix): Constify.
19 (diagnostic_message_length_per_line): Likewise.
20 (reshape_diagnostic_buffer): Declare.
21 (default_initialize_buffer): Declare.
22 (initialize_diagnostics): Declare.
23 (diagnostic_buffer): Declare new obbject.
24
25 * toplev.c: #include diagnostic.h
26 (display_help): Document diagnostic formatting options.
27 (decode_f_option): Handle diagnostic formatting options.
28 (main): Setup initialization for diagnostic messages outputter.
29
30 * toplev.h (set_message_length): Remove.
31
32 * Makefile.in (toplev.o): Depends upon diagnostic.h
33
34 * invoke.texi : Document diagnostics formatting options.
35
36 Tue Jun 6 19:25:32 2000 Philippe De Muyter <phdm@macqel.be>
37
38 * configure.in (Make the links): Typo fix : the file that must be
39 included without #ifdef IN_GCC is `auto-host.h', not `auto-config.h'.
40 * configure: File rebuilt.
41
42 2000-06-06 Nathan Sidwell <nathan@codesourcery.com>
43
44 * eh-common.h (EH_ALLOC_SIZE, EH_ALLOC_ALIGN): New #defines.
45 (eh_context): Add alloc_mask and alloc_buffer emergency fallback
46 space.
47 * libgcc2.c (__eh_alloc): Moved from cp/exception.cc. Fallback on
48 emergency eh_context buffer, if malloc fails.
49 (__eh_free): Moved from cp/exception.cc. Release to emergency
50 eh_context buffer, if appropriate.
51
52 2000-06-06 Jason Merrill <jason@casey.soma.redhat.com>
53
54 * expr.c (store_expr): Fix typo.
55
56 2000-06-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
57
58 * m68k.c (legitimize_pic_address): Move prototype ...
59
60 * m68k-protos.h (legitimize_pic_address): ... here.
61
62 * m68k.md (legitimize_pic_address): Delete prototypes.
63 (untyped_call): Invoke GEN_CALL(), not gen_call().
64
65 * nextstep.c: Include system.h and toplev.h.
66 (get_directive_line): Don't prototype.
67 (handle_pragma): Mark parameters with ATTRIBUTE_UNUSED and constify.
68
69 * nextstep.h (handle_pragma): Prototype.
70 (SECTION_FUNCTION): Prototype FUNCTION(). Move prototype of
71 objc_section_init ...
72 (EXTRA_SECTION_FUNCTIONS): ... here.
73
74 Tue Jun 6 08:17:26 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
75
76 * sdbout.c (struct sdb_file): NAME now const.
77 (sdbout_init): input_file_name now const.
78 (sdbout_start_new_source_file): FILENAME now const.
79 * sdbout.c (sdbout_init, sdbout_start_new_source_file): Reflect above.
80
81 2000-06-06 Gabriel Dos Reis <gdr@codesourcery.com>
82
83 * c-typeck.c (build_conditional_expr): Handle complex data types.
84
85 2000-06-05 Jason Merrill <jason@casey.soma.redhat.com>
86
87 * explow.c (maybe_set_unchanging): New function, broken out from...
88 (set_mem_attributes): Here.
89 * expr.h: Declare it.
90 * stmt.c (expand_decl): Call it.
91
92 2000-06-05 Richard Henderson <rth@cygnus.com>
93
94 * reload1.c (choose_reload_regs): Mind CLASS_CANNOT_CHANGE_SIZE
95 while looking for a register to inherit from.
96
97 2000-06-05 Jason Merrill <jason@casey.soma.redhat.com>
98
99 * Makefile.in (libgcc.ready): Lose.
100 (libgcc.mk): Just use mv, not move-if-change.
101 (LIBGCC_DEPS): New macro.
102 (libgcc.a): Use it.
103 (stmp-multilib): Likewise.
104 * mklibgcc.in (stmp-dirs): New target. Make everything depend on
105 it rather than the directories themselves.
106 (LIB2ADD): Depend on the list file rather than 'force'.
107
108 * fold-const.c (fold, case COND_EXPR): Elide conversion between
109 cv-qualified versions of types.
110
111 Mon Jun 5 14:06:18 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
112
113 * config/sparc/sparc.c (short_branch): Correct error in range
114 computation.
115
116 2000-06-05 J. David Anglin <dave@hiauly1.hia.nrc.ca>
117
118 * fixinc/inclhack.def: New include hacks for ultrix.
119 * (nested_ultrix): Replaced by ultrix_nested_svc.
120 * (ultrix_atof_param): test_text string added.
121 * (ultrix_ifdef): Modified select string.
122
123 2000-06-05 Zack Weinberg <zack@wolery.cumb.org>
124
125 * objc/objc-act.c (generate_method_descriptors): Register
126 objc_method_prototype_template as a GC root.
127 (comp_method_with_proto): Register function_type as a GC root.
128 (comp_proto_with_proto): Replace function_type1 and
129 function_type2 with a two-element array; register it as a GC root.
130
131 (generate_protocols, build_protocol_initializer,
132 generate_protocol_list, build_category_initializer,
133 build_shared_structure_initializer): Do not cache cast_type
134 and/or cast_type2.
135
136 2000-06-05 J. David Anglin <dave@hiauly1.hia.nrc.ca>
137
138 * function.c (assign_parms): Add missing argument to set_mem_attributes
139 call.
140
141 2000-06-05 Nathan Sidwell <nathan@codesourcery.com>
142
143 * tree.h (VOID_TYPE_P): New macro.
144 (COMPLETE_OR_VOID_TYPE_P): Use VOID_TYPE_P.
145 * c-decl.c (grokdeclarator): Use VOID_TYPE_P.
146 (get_parm_info): Likewise.
147 (store_parm_decls): Likewise.
148 (combine_parm_decls): Likewise.
149 (finish_function): Likewise.
150 * c-typeck.c (build_function_call): Likewise.
151 (build_binary_op): Likewise.
152 (build_conditional_expr): Likewise.
153 (internal_build_compound_expr): Likewise.
154 (convert_for_assignment): Likewise.
155 * stmt.c (expend_expr_stmt): Likewise.
156 (warn_if_unused_value): Likewise.
157 (expand_return): Likewise.
158 * c-parse.in (primary): Likewise.
159 * c-parse.y, c-parse.c, c-parse.h: Regenerate.
160 * objc/objc-parse.y, objc/objc-parse.c: Regenerate.
161
162 Mon Jun 5 06:46:28 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
163
164 * alias.c (get_alias_set): If compnent is addressable, use alias
165 set of component.
166 * c-decl.c (init_decl_processing): Don't call record_component_aliases.
167 (grokdeclarator): Likewise.
168 * c-typeck.c (common_type): Likewise.
169
170 2000-06-04 Alex Samuel <samuel@codesourcery.com>
171
172 * Makefile.in (OBJS): Remove dyn_string.o
173 (dyn-string.o): Delete rule.
174 * dyn-string.c: Delete file
175 * dyn-string.h: Likewise.
176
177 2000-06-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
178
179 * Makefile.in (intl.*): Honor non-zero exit codes in the intl
180 subdir.
181
182 S2000-06-03 Geoff Keating <geoffk@cygnus.com>
183
184 * alias.c (record_component_aliases): Don't inspect
185 DECL_NONADDRESSABLE_P of non-FIELD_DECL components of structures.
186
187 at Jun 3 19:05:30 2000 Michael Meissner <meissner@redhat.com>
188
189 * ifcvt.c (process_insns): If IFCVT_MODIFY_INSN is defined, call
190 it with the pattern to do machine dependent work.
191 (cond_exec_process_if_block): If IFCVT_MODIFY_TESTS is defined,
192 use it to modify the true/false tests used in conditional
193 execution. If IFCVT_MODIFY_FINAL and IFCVT_MODIFY_CANCEL are
194 defined, invoke them if the conversion to conditional execution
195 was successful or not.
196
197 * tm.texi (IFCVT_MODIFY_TESTS): Document.
198 (IFCVT_MODIFY_INSN): Ditto.
199 (IFCVT_MODIFY_FINAL): Ditto.
200 (IFCVT_MODIFY_CANCEL): Ditto.
201
202 Sat Jun 3 15:26:13 2000 Matt Kraai <kraai@alumni.carnegiemellon.edu>
203
204 * toplev.c (main): Fix misspellings of possibility and language.
205
206 2000-06-03 Richard Henderson <rth@cygnus.com>
207
208 * alias.c (record_alias_subset): Initialize has_zero_child in the
209 superset.
210
211 2000-06-03 Richard Earnshaw (rearnsha@arm.com)
212
213 * arm.md (untyped_call): Use GEN_CALL macro.
214
215 2000-06-02 Pekka Nikander <pnr@teldanex.tcm.hut.fi>
216
217 * Makefile.in: Use $(MAKE) not "make"
218
219 Fri Jun 2 19:31:03 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
220
221 * alias.c (struct alias_set_entry): New field has_zero_child.
222 (mem_in_disjoint_alias_sets_p): Return 0 if set in either ase.
223 (get_alias_set): If language-dependent routine set TYPE_ALIAS_SET,
224 do nothing.
225 Call record_component_aliases for aggregate types.
226 (record_alias_subset): Set has_zero_child.
227 (record_component_aliases, case ARRAY_TYPE): Do nothing if
228 TYPE_NONALIASES_COMPONENT.
229 (record_component_aliases, case RECORD_TYPE): Test
230 DECL_NONADDRESSABLE_P.
231 * c-decl.c (grokdeclarator): Set DECL_NONADDRESSABLE_P instead
232 of TREE_ADDRESSABLE.
233 * calls.c (initialize_argument_information): Only test
234 TYPE_TRANSPARENT_UNION for UNION_TYPE.
235 * function.c (assign_parms): Likewise.
236 * integrate.c (function_cannot_inline_p): Likewise.
237 * stor-layout.c (finish_record_layout): Don't call
238 record_component_aliases.
239 * tree.h (struct tree_int_cst): Use struct tree_common.
240 (struct tree_real_cst, struct tree_string): Likewise.
241 (struct tree_complex, struct tree_identifier): Likewise.
242 (struct tree_list, struct tree_vec, struct tree_exp): Likewise.
243 (struct tree_block, struct tree_type, struct tree_decl): Likewise.
244 (TYPE_TRANSPARENT_UNION): Use UNION_TYPE_CHECK.
245 (TYPE_NONALIASES_COMPONENT): New macro.
246 (TYPE_AMBIENT_BOUNDEDNESS): Use FUNCTION_TYPE_CHECK.
247 (DECL_NONADDRESSABLE_P): New macro.
248 (struct tree_decl): Reorder bits for clarity of how many left;
249 add non_adressable.
250
251 2000-06-02 Jason Merrill <jason@casey.soma.redhat.com>
252
253 * Makefile.in (libgcc.a): Also depend on $(LIB2ADD).
254 * mklibgcc.in (force): New target.
255 Make LIB2ADD stuff depend on it.
256
257 2000-06-02 Richard Henderson <rth@cygnus.com>
258
259 * alias.c (lang_get_alias_set): Remove.
260 (get_alias_set): Call it directly, not indirectly.
261 * c-common.c (lang_get_alias_set): Rename from c_get_alias_set.
262 * c-common.h (c_get_alias_set): Don't declare.
263 * c-decl.c (init_decl_processing): Don't set lang_get_alias_set.
264 * expr.h (lang_get_alias_set): Declare as function, not pointer.
265
266 2000-06-02 Bruce Korb <bkorb@gnu.org>
267
268 * fixinc/server.c(sig_handler): resume closing server on SIGPIPE
269 (server_setup): define the server's master pid
270 (close_server): actually do the deed IFF we are the server's master
271
272 2000-06-02 Jakub Jelinek <jakub@redhat.com>
273
274 * c-common.c (c_get_alias_set): Check whether signed_type did not
275 return its argument before calling get_alias_set on the result.
276
277 2000-06-02 Andrew MacLeod <amacleod@cygnus.com>
278
279 * expr.c (emit_group_load): Fix typo, GET_MODE not GET_CODE.
280
281 Fri Jun 2 00:22:52 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
282
283 * sh.h (CPP_SPEC): Add -D__NOMACSAVE__ for -mnomacsave.
284 (CONDITIONAL_REGISTER_USAGE): Mac registers are call used
285 for TARGET_NOMACSAVE.
286 (NOMACSAVE_BIT): Define.
287 (TARGET_NOMACSAVE): Define.
288 (TARGET_SWITCHES): Add "nomacsave".
289
290 2000-06-02 Toshiyasu Morita <toshi.morita@sega.com>
291
292 * sh.md (untyped_call): Remove excess parameters
293
294 2000-06-01 Loren J. Rittle <ljrittle@acm.org>
295
296 * fixinc/inclhack.def (osf_namespace_a): Relax expression to
297 match that used before the conversion to c_fix style.
298 * fixinc/fixincl.x: regenerate
299
300 2000-06-01 Stan Cox <scox@cygnus.com>
301
302 * varray.h (VARRAY_PUSH_GENERIC_PTR, VARRAY_PUSH_CHAR_PTR): Fix
303 macro argument typo.
304
305 2000-06-01 Zack Weinberg <zack@wolery.cumb.org>
306
307 * cpplex.c (maybe_macroexpand): Use CPP_WTRADITIONAL. Improve
308 error message.
309 * cpplib.c (parse_include): Remove support for VAX-C
310 "#include starlet" misfeature.
311
312 2000-05-31 Laurynas Biveinis <lauras@softhome.net>
313
314 * cppfiles.c: conditionally define O_BINARY.
315 (open_include_file): pass O_BINARY to open().
316
317 2000-06-01 Richard Henderson <rth@cygnus.com>
318
319 * i960.c (i960_br_predict_opcode): Remove.
320 (i960_print_operand) [+]: Emit branch prediction hints.
321 (i960_function_arg): Return early for VOIDmode.
322 (i960_round_align): Return early for incomplete types.
323 * i960.h (PRINT_OPERAND_PUNCT_VALID_P): New.
324 * i960.md (all conditional branches): Add "%+".
325
326 Thu Jun 1 12:24:21 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
327
328 * alias.c (get_alias_set): Don't call language-specific routine more
329 than is needed and clean up code a bit.
330 * c-common.c (c_get_alias_set): All references whose type
331 is char get alias set 0, but character types need not.
332 * varasm.c (make_function_rtl): Don't call set_mem_attributes.
333 (make_decl_rtl): Don't call it for FUNCTION_DECL.
334
335 2000-06-01 Bruce Korb <bkorb@gnu.org>
336
337 * fixinc/tests/base/...: new base result files
338
339 Thu Jun 1 09:37:35 2000 Clinton Popetz <cpopetz@cygnus.com>
340
341 * config/i386/i386.c (ix86_use_fcomi_compare): Make global.
342 * config/i386/i386-protos.h (ix86_use_fcomi_compare): Declare.
343 * config/i386/i386.md (*fp_jcc_3, *fp_jcc_4): Disable if we
344 will use FCOMI.
345
346 2000-06-01 Richard Henderson <rth@cygnus.com>
347
348 * Makefile.in (c-decl.o): Depend on $(EXPR_H), not expr.h.
349
350 * c-decl.c (init_decl_processing): Set lang_get_alias_set first thing.
351
352 2000-05-31 Richard Henderson <rth@cygnus.com>
353
354 * config/ia64/ia64.c (sdata_symbolic_operand): Consider small
355 CONSTANT_POOL_ADDRESS_P addresses for .sdata.
356 * config/ia64/sysv4.h (SELECT_RTX_SECTION): New.
357
358 2000-05-31 Richard Henderson <rth@cygnus.com>
359
360 * config/ia64/ia64-protos.h (ia64_expand_prediction): Remove.
361 * config/ia64/ia64.c (ia64_expand_prediction): Move code ...
362 (ia64_print_operand) [+]: ... here. Use current_output_insn.
363 * config/ia64/ia64.h (PRINT_OPERAND_PUNCT_VALID_P): New.
364 * config/ia64/ia64.md (all branch/call patterns): Use %+.
365
366 2000-05-31 Richard Henderson <rth@cygnus.com>
367
368 * ifcvt.c (cond_exec_process_insns): Don't ever ignore clobbers.
369
370 2000-05-31 Richard Henderson <rth@cygnus.com>
371
372 * ifcvt.c (merge_if_block): Be prepared for JOIN to have no
373 remaining edges.
374 (find_if_block): Allow THEN with no outgoing edges.
375 * flow.c (merge_blocks_nomove): Remove a barrier not following
376 a jump as well.
377
378 2000-05-31 Richard Henderson <rth@cygnus.com>
379
380 * flow.c (propagate_block): Move initialization of mem_set_list ...
381 (init_propagate_block_info): ... here. Also track blocks with
382 no successors; don't scan insns if ! PROP_SCAN_DEAD_CODE.
383
384 2000-05-31 Richard Henderson <rth@cygnus.com>
385
386 * jump.c (jump_optimize_1): Revert 05-18 change.
387
388 2000-05-31 Mark Mitchell <mark@codesourcery.com>
389
390 * invoke.texi: Remove documentation for -fguiding-decls.
391
392 2000-05-31 Richard Henderson <rth@cygnus.com>
393
394 * configure.in: Fix typo last change.
395
396 2000-05-31 Philipp Thomas <pthomas@suse.de>
397
398 * configure.in (enable-nls): Enable if build == host, i.e. when
399 not building a canadian cross compiler.
400 (enable-maintainer-mode): Added for use with i18n.
401 * aclocal.m4 (AM_GNU_GETTEXT): Only build catalogs that are a
402 cross section of ALL_LINGUAS and LINGUAS.
403 * configure: Rebuild.
404
405 2000-05-31 Bruce Korb <bkorb@gnu.org>
406
407 * fixinc/check.tpl: rework to use test result tree
408 * fixinc/Makefile.in: change invocation of check script
409 * fixinc/check.diff: No longer needed
410 * fixinc/fixincl.x: regenerate
411 * fixinc/inclhack.def: add new tests
412 * fixinc/tests/base/arch/i960/archI960.h: New test result
413 * fixinc/tests/base/curses.h: modified test result
414 * fixinc/tests/base/stdio.h: ditto
415 * fixinc/tests/base/time.h: ditto
416 * fixinc/tests/base/sys/asm.h: ditto
417 * fixinc/tests/base/sys/stat.h: ditto
418 * fixinc/tests/base/sys/wait.h: ditto
419
420 Wed May 31 13:17:20 2000 Philippe De Muyter <phdm@macqel.be>
421
422 * except.c (clear_function_eh_region): Do not free NULL.
423
424 Wed May 31 08:07:52 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
425
426 * Makefile.in (c-decl.o): Depend on rtl.h and expr.h.
427 * alias.c (struct alias_entry): alias_set is HOST_WIDE_INT.
428 (REG_BASE_VALUE): Remove unneeded cast to unsigned.
429 (get_alias_set_entry): ALIAS_SET arg is HOST_WIDE_INT.
430 (find_base_decl): New function, from c_find_base_decl in c-common.c.
431 (new_alias_set): Moved from tree.c; return is HOST_WIDE_INT.
432 (get_alias_set): Likewise.
433 Major rework to do more things and allow language-specific code
434 to just handle special-cases.
435 (record_alias_subset): Args are HOST_WIDE_INT.
436 (record_component_alias): Local vars are HOST_WIDE_INT.
437 Don't handle COMPLEX_EXPR.
438 (get_varargs_alias_set): Moved from builtins.c.
439 (get_frame_alias_set): New function.
440 * builtins.c (expand_builtin_return_address): Use frame alias set.
441 (expand_builtin_setjmp, expand_builtin_longjmp): Use alias set
442 for setjmp buffer.
443 (get_memory_rtx): Rework to use set_mem_attributes.
444 (get_varargs_alias_set): Deleted from here.
445 * c-common.c (c_apply_type_quals_to_decl): Alias sets now HOST_WIDE_INT.
446 (c_find_base_decl): Deleted from here.
447 (c_get_alias_set): Remove many cases and rework to just handle
448 C-specific cases.
449 * c-common.h (c_get_alias_set): Returns HOST_WIDE_INT.
450 * c-decl.c (rtl.h, expr.h): Now included.
451 (init_decl_processing): Call record_component_aliases on array types.
452 (grokdeclarator): Likewise.
453 Set TREE_ADDRESSABLE for all fields that are not bitfields.
454 * c-typeck.c (common_type): Call record_component_aliases for array.
455 * caller-save.c (setup_save_areas): Rework register loop for unsigned.
456 Set all save areas to the frame alias set.
457 * calls.c (initialie_argument_information): Call set_mem_attributes.
458 (compute_argument_addresses, expand_call): Likewise.
459 * explow.c (set_mem_attributes): New function.
460 (stabilize): Use MEM_COPY_ATTRIBUTES and force_reg.
461 * expr.c (struct move_by_pieces): Remove {to,from}_{struct,readonly}.
462 LEN and OFFSET now HOST_WIDE_INT.
463 (clear_by_pieces): Similar changes.
464 (move_by_pieces): LEN now HOST_WIDE_INT; don't set deleted fields.
465 (move_by_pieces_ninsns): Now returns unsigned HOST_WIDE_INT.
466 (move_by_pieces_1): Don't use deleted fields, use MEM_COPY_ATTRIBUTES.
467 (clear_by_pieces_1): Likewise.
468 (emit_push_insn): Call set_mem_attributes.
469 (expand_expr, case INDIRECT_REF): Likewise.
470 (expand_expr, case VAR_DECL): Call change_address.
471 * expr.h (ADD_PARM_SIZE, SUB_PARM_SIZE): Use host_integerp and
472 tree_low_cst.
473 (get_varargs_alias_set, get_frame_alias_set): New decls.
474 (record_base_value, record_alias_subset, lang_get_alias_set): Likewise.
475 (new_alias_set, set_mem_attributes): Likewse.
476 * function.c (struct temp_slot): ALIAS_SET is HOST_WIDE_INT.
477 (assign_stack_temp_for_type): Likewise.
478 Can split slot even if alias set since can copy.
479 Set MEM_ALIAS_SET and MEM_SET_IN_STRUCT_P.
480 (assign_temp): Use host_integerp and tree_low_cst.
481 (put_var_into_stack): Properly handle SAVE_EXPR.
482 (put_addressof_into_stack): Likewise.
483 (assign_parms): Call set_mem_attributes.
484 Delete #if 0 code.
485 (fix_lexical_address): Put reference to chain into frame alias set.
486 (expand_function_start): Call set_mem_attributes.
487 * integrate.c (expand_inline_function): Likewise.
488 * recog.c (adj_offsettable_operand): Use MEM_COPY_ATTRIBUTES.
489 * regmove.c (try_apply_stack_adjustment): Likewise.
490 * reload.c (push_reload, make_memloc): Likewise.
491 * reload1.c (alter_reg): Make alias sets for spilled pseudos.
492 * rtl.def (MEM): Update comment.
493 * rtl.h (MEM_ALIAS_SET): Now uses XCWINT.
494 (move_by_pieces): Change length to HOST_WIDE_INT.
495 (record_base_value, record_alias_subset): Delete from here.
496 * stmt.c (expand_decl): Call set_mem_attributes.
497 * stor-layout.c (finish_record_layout): Call record_component_aliases.i
498 * toplev.c (compile_file): Call init_alias_once earlier.
499 * tree.c (lang_get_alias_set, get_alias_set, new_alias_set): Deleted
500 from here: now in alias.c.
501 * tree.h (struct tree_type): alias_set is HOST_WIDE_INT.
502 (struct tree_decl): Likewise.
503 (get_alias_set, new_alias_set, lang_get_alias_set): Deleted from here.
504 * varasm.c (make_function_rtl, make_decl_rtl): Call set_mem_attributes.
505 (output_constant_def, force_const_mem): Likewise.
506
507 * flow.c (propagate_block): If block has no successors, stores to
508 frame are dead if not used.
509
510 2000-05-31 Nathan Sidwell <nathan@codesourcery.com>
511
512 * stmt (expand_end_case): Reorder conversion sequence for jump
513 table to avoid extra truncations.
514
515 Wed May 31 01:31:42 2000 Jeffrey A Law (law@cygnus.com)
516
517 * ifcvt.c (cond_exec_process_if_block): Do nothing if the last insn
518 in the block is more than just a simple conditional branch.
519 (noce_process_if_block): Similarly.
520
521 Tue May 30 22:25:57 2000 Alexandre Oliva <aoliva@cygnus.com>
522
523 * optabs.c (prepare_float_lib_cmp): Protect *px and *py from
524 queue.
525
526 2000-05-30 Michael Meissner <meissner@redhat.com>
527
528 * dwarf2out.c (dwarf2out_frame_debug_expr): Ignore HIGH
529 instructions. Treat LO_SUM operations as loading the full integer
530 constant.
531
532 2000-05-30 Richard Henderson <rth@cygnus.com>
533
534 * combine.c (get_pos_from_mask): Test exact_log2 result as signed.
535
536 2000-05-30 Richard Henderson <rth@cygnus.com>
537
538 * bb-reorder.c (emit_jump_to_block_after): Protect use of HAVE_return.
539
540 2000-05-30 Bruce Korb <bkorb@gnu.org>
541
542 * fixinc/tests/*: Added expected result files for fixinc's make check
543 * fixinc/fixfixes(char_macro_*_fix): Restore original algorithm
544
545 2000-05-30 Richard Henderson <rth@cygnus.com>
546
547 * config/alpha/alpha.md (*setne_internal): Use match_operator
548 instead of working down from insn.
549
550 2000-05-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
551
552 * invoke.texi (-Wtraditional): Update WRT function macros.
553
554 Tue May 30 09:57:32 2000 Philippe De Muyter <phdm@macqel.be>
555
556 * except.c (free_exception_table): Do not free NULL.
557
558 2000-05-29 Zack Weinberg <zack@wolery.cumb.org>
559
560 * cpplib.c (do_if): Don't save and restore only_seen_white here.
561 * cppexp.c (_cpp_parse_expr): Save and restore only_seen_white
562 and skipping here.
563
564 2000-05-29 Richard Earnshaw (rearnsha@arm.com)
565
566 * flow.c (mark_used_reg): If a register is unconditionally live,
567 remove any conditional death information.
568
569 2000-05-29 Richard Henderson <rth@cygnus.com>
570
571 * final.c (current_output_insn): New.
572 (final_scan_insn): Set it.
573 * output.h: Declare it.
574
575 2000-05-29 Richard Henderson <rth@cygnus.com>
576
577 * stor-layout.c (finalize_record_size): Fix typo.
578
579 * jump.c (redirect_jump): Don't emit NOTE_INSN_FUNCTION_END
580 if nlabel is null.
581
582 2000-05-29 Zack Weinberg <zack@wolery.cumb.org>
583
584 * cpplib.h (cpp_reader): Remove if_stack. Change
585 potential_control_macro to a cpp_hashnode *. Add skipping flag.
586 * cpphash.h (struct ihash): Change control_macro to a
587 cpp_hashnode * and shorten name to cmacro.
588 Add NEVER_REINCLUDE constant.
589
590 * cppfiles.c (redundant_include_p): Drop cpp_reader argument.
591 Examine the cmacro node directly, no need to call cpp_defined.
592 (_cpp_execute_include, read_include_file): Set cmacro to
593 NEVER_REINCLUDE, not U"".
594 * cpplex.c (cpp_push_buffer): Don't set new->if_stack.
595 (cpp_get_token): If pfile->skipping is true, discard text and
596 keep scanning until we hit a directive; don't expand macros.
597
598 * cpplib.c (struct if_stack): Remove if_succeeded, add
599 was_skipping. Change control_macro to a cpp_hashnode * and
600 shorten name to cmacro. Remove typedef IF_STACK.
601 (parse_ifdef), detect_if_not_defined): Return a cpp_hashnode *.
602 (conditional_skip, skip_if_group,
603 consider_directive_while_skipping): Delete.
604 (push_conditional): New.
605 (_cpp_handle_directive): Don't process directives other than
606 conditionals if we are skipping.
607
608 (do_ifdef, do_ifndef, do_if, do_else, do_elif, do_endif):
609 Update to new scheme.
610 (validate_else): Skip rest of line here, unconditionally.
611 (_cpp_unwind_if_stack): The stack is per-buffer. Force
612 pfile->skipping off.
613
614 (all): Remove `scare quotes' from error messages.
615
616 2000-05-29 Richard Henderson <rth@cygnus.com>
617
618 * function.c (emit_return_into_block): New line_note arg; emit it.
619 (thread_prologue_and_epilogue_insns): Attempt to locate a line note
620 for the close brace to accompany HAVE_return. Move all line notes
621 following the epilogue to before the NOTE_INSN_EPILOGUE_BEG.
622
623 2000-05-29 Richard Henderson <rth@cygnus.com>
624
625 * longlong.h [__alpha] (count_leading_zeros): New.
626 (count_trailing_zeros): New.
627 (COUNT_LEADING_ZEROS_0): New.
628
629 * config/alpha/alpha.c (alpha_zero_comparison_operator): New.
630 (alpha_split_conditional_move): New.
631 * config/alpha/alpha-protos.h: Prototype them.
632 * config/alpha/alpha.h (PREDICATE_CODES): Update.
633 (CPP_CPU_DEFAULT_SPEC): Fix typo for EV67.
634 * config/alpha/alpha.md: Update ffs cix commentary.
635 (*ze_and_ne): New.
636 (*nabssf2, *nabsdf2): New.
637 (*mov[qhsd]icc_internal): Use add_operand.
638 (if_then_else constant splitters): New.
639 (*cmp_sadd_di, *cmp_sadd_si, *cmp_sadd_sidi): New.
640 (*cmp_ssub_di, *cmp_ssub_si, *cmp_ssub_sidi): New.
641
642 2000-05-29 Richard Henderson <rth@cygnus.com>
643
644 * combine.c (force_to_mode) [MINUS]: Convert subtraction from
645 a constant to NEG or NOT when conditions allow.
646
647 * combine.c (combine_simplify_rtx): Don't create an if_then_else
648 unless both args are general_operand. Don't canonicalize plus
649 to ior unless it helps.
650
651 * toplev.c (rest_of_compilation): Set no_new_pseudos after flow1;
652 instead track register_life_up_to_date. Toggle no_new_pseudos
653 around if_convert.
654
655 2000-05-28 Geoff Keating <geoffk@cygnus.com>
656
657 * config/rs6000/rs6000.c (output_cbranch): Escape '%' characters
658 so output_operand doesn't see them.
659
660 Sun May 28 18:37:07 2000 Clinton Popetz <cpopetz@cygnus.com>
661
662 * lcm.c (make_preds_opaque): Fix comment.
663 (optimize_mode_switching): Use NORMAL_MODE instead of
664 MODE_USES_IN_EXIT_BLOCK. Change leftover instance of
665 FP_MODE_NONE to no_mode. Rename MODE_AT_ENTRY to NORMAL_MODE.
666 Handle insertions before an existing NOTE_INSN_BASIC_BLOCK.
667 * tm.texi (OPTIMIZE_MODE_SWITCHING): Refer to NORMAL_MODE.
668 (MODE_USES_IN_EXIT_BLOCK): Delete.
669 (MODE_AT_ENTRY) Rename to NORMAL_MODE.
670 * sh.h (MODE_USES_IN_EXIT_BLOCK): Delete.
671 (MODE_AT_ENTRY): Rename to NORMAL_MODE.
672 (MODE_NEEDED): Don't look for USE.
673 (EPILOGUE_USES): Define.
674
675 Sun May 28 23:26:59 2000 Philippe De Muyter <phdm@macqel.be>
676
677 * mklibgcc.in (all): Variable initialised to `libgcc'.
678
679 2000-05-28 Gabriel Dos Reis <gdr@codesourcery.com>
680
681 * toplev.h (skip_leading_substring): New macro.
682 * toplev.c (decode_f_option): Use skip_leading_substring instead
683 of strncmp.
684 (decode_W_option): Likewise.
685
686 2000-05-28 Nick Clifton <nickc@cygnus.com>
687
688 * tm.texi (CONDITIONAL_REGISTER_USAGE): Document that it can
689 modify reg_names.
690
691 2000-05-28 Richard Henderson <rth@cygnus.com>
692
693 * regclass.c (record_operand_costs): Protect reg_changes_size
694 with CLASS_CANNOT_CHANGE_SIZE.
695
696 * loop.c (instrument_loop_bct): Set JUMP_LABEL on the new insn.
697
698 2000-05-28 Richard Henderson <rth@cygnus.com>
699
700 * function.c (diddle_return_value): A pcc-style struct return
701 returns a pointer.
702
703 2000-05-27 Zack Weinberg <zack@wolery.cumb.org>
704
705 * cppfiles.c: Read files in, using mmap if possible, then
706 prescan them separately.
707 (read_file, read_with_read): New functions.
708 * cpplex.c: Don't define UCHAR_MAX.
709 (_cpp_read_and_prescan): Rename to _cpp_prescan. Don't read
710 the file here.
711
712 * cppinit.c (handle_option): Automatically define __cplusplus,
713 __OBJC__, __ASEEMBLER__, _LANGUAGE_FORTRAN here when we see
714 the respective -lang switch.
715
716 * cpphash.h (enum node_type, struct hashnode, _cpp_lookup
717 prototype): Move to...
718 * cpplib.h: ... here. Rename struct hashnode to struct
719 cpp_hashnode and give it a typedef. Rename _cpp_lookup to
720 cpp_lookup. Add 'fe_value' slot, a union tree_node *.
721
722 2000-05-27 Geoffrey Keating <geoffk@cygnus.com>
723
724 * config/rs6000/rs6000.md (movsi): Constify 'name'.
725
726 * regclass.c [CLASS_CANNOT_CHANGE_SIZE]
727 (class_can_change_size): New variable.
728 (reg_changes_size): New variable.
729 (init_reg_sets_1): Initialise class_can_change_size.
730 (record_operand_costs): Remove subreg_changes_size.
731 Don't pass it around. Instead update reg_changes_size.
732 (regclass): Initialise and free reg_changes_size. If a register
733 changes size, don't preference it to a class that contains
734 registers that can't change size.
735 (record_reg_classes): Don't look at subreg_changes_size.
736
737 2000-05-27 Richard Henderson <rth@cygnus.com>
738
739 * print-rtl.c (reg_names): Remove const.
740 * regclass.c (reg_names): Likewise.
741 * regs.h (reg_names): Likewise.
742 * hard-reg-set.h (reg_names): Likewise.
743
744 2000-05-27 Richard Henderson <rth@cygnus.com>
745
746 * config/rs6000/rs6000.md (untyped_call): Use GEN_CALL.
747
748 2000-05-27 Richard Henderson <rth@cygnus.com>
749
750 * config/alpha/alpha.c (alpha_does_function_need_gp): Test
751 TARGET_PROFILING_NEEDS_GP in the if, instead of with an ifdef.
752 (alpha_expand_prologue): Emit prologue_mcount if needed.
753 * config/alpha/alpha.h (TARGET_PROFILING_NEEDS_GP): Default to 0.
754 * config/alpha/alpha.md (prologue_mcount): New.
755 * config/alpha/linux.h (FUNCTION_PROFILER): Remove.
756 (TARGET_PROFILING_NEEDS_GP): Undef before redefining.
757 * config/alpha/netbsd.h: Likewise.
758
759 2000-05-27 Richard Henderson <rth@cygnus.com>
760
761 * config/alpha/elf.h (SELECT_SECTION): Mirror Kenner's May 19
762 change to config/elfos.h.
763
764 2000-05-27 Richard Henderson <rth@cygnus.com>
765
766 * Makefile.in (resource.o): Depend on except.h.
767 * except.h (output_exception_table_data): Prototype.
768 * genconfig.c (gen_peephole2): Prototype.
769 * genemit.c (main): Include ggc.h.
770 * genoutput.c: Revert parts of last change: include errors.h
771 (main): Set progname.
772 * recog.c: Include hard-reg-set.h before recog.h.
773 * resource.c: Include except.h.
774
775 * config/alpha/alpha-protos.h (alpha_arg_info_reg_val): Protect
776 with RTX_CODE.
777 (alpha_write_linkage): Protect with BUFSIZ.
778 (alpha_need_linkage): Update prototype.
779 * config/alpha/alpha.c (function_arg): Move VMS code here.
780 (alpha_links_base): Remove.
781 (alpha_links): New.
782 (mark_alpha_links_node, mark_alpha_links): New.
783 (alpha_write_one_linkage): New.
784 (alpha_need_linkage): Use a splay tree. Build the linkage symbol.
785 (alpha_write_linkage): Use splay_tree_foreach.
786 * config/alpha/alpha.md (call_vms): Use alpha_need_linkage
787 to get the linkage symbol.
788 (call_value_vms): Likewise.
789 * config/alpha/elf.h (output_file_directive): Remove decl.
790 (ctors_section, dtors_section): Prototype.
791 (sbss_section, sdata_section): Prototype.
792 * config/alpha/vms.h (FUNCTION_ARG): Remove.
793 (readonly_section, link_section, literals_section): Prototype.
794 (ctors_section, dtors_section): Prototype.
795 (vms_valid_decl_attribute_p): Remove decl.
796 (alpha_arg_type, alpha_arg_info_reg_val): Likewise.
797
798 2000-05-27 Geoff Keating <geoffk@cygnus.com>
799
800 * reload.c (get_secondary_mem): Don't widen floating-point modes.
801
802 * combine.c (subst): Honour CLASS_CANNOT_CHANGE_SIZE when
803 substituting the REG in a (subreg:X (reg:Y ...)).
804
805 2000-05-28 Neil Booth <NeilB@earthling.net>
806
807 * cpplex.c (_cpp_lex_line): Merge vertical space. Flag
808 first token of a line BOL. Update EOF code for this.
809 Remove illegal directive check - it appears in the (not
810 yet committed) caller.
811 * cpplib.h (BOL): New flag.
812
813 2000-05-28 Neil Booth <NeilB@earthling.net>
814
815 * cpplex.c (_cpp_init_toklist): No comment space to initialise.
816 (_cpp_free_toklist): No comment space to free.
817 (expand_comment_space): Remove.
818 (save_comment_space): Place the comment in the current token and
819 not in a separate comment space.
820 (_cpp_lex_line): Save comments during plain code and #define
821 directives only.
822 * cpplib.h (struct _cpp_toklist): Remove comment space.
823
824 2000-05-28 Neil Booth <NeilB@earthling.net>
825
826 * cppexp.c (parse_assertion): Supply extra argument to
827 _cpp_init_toklist.
828 * cpplib.c (do_assert, do_unassert): Similarly.
829 * cpphash.h (_cpp_init_toklist) Update.
830 (_cpp_expand_token_space): New.
831 (DUMMY_TOKEN, NO_DUMMY_TOKEN): New.
832 * cpplex.c (_cpp_init_toklist): New argument.
833 (parse_string2): New argument multiline_ok.
834 (spell_token): Take a const cpp_token *.
835 (INIT_NAME): Replace with INIT_TOKEN_NAME. Update tokens_used.
836 (SPELL_ macros): Replace with enum.
837 (expand_token_space): Replace with _cpp_expand_token_space.
838 Take COUNT argument.
839 (IS_DIRECTIVE): Update.
840 (_cpp_lex_line): Update token structure before parsing number.
841 Don't assume start at beginning of token list.
842 (save_comment): Use INIT_TOKEN_NAME.
843
844 2000-05-27 Zack Weinberg <zack@wolery.cumb.org>
845
846 * configure.in (stage1_warn_cflags): Add -Wstrict-prototypes
847 -Wmissing-prototypes.
848 * configure: Regenerate.
849 * gcc.texi: Remove explanation of MD_CALL_PROTOTYPES.
850
851 * builtins.c, calls.c: Change all instances of gen_call_* or
852 gen_sibcall_* to GEN_CALL_* and GEN_SIBCALL_*.
853 * calls.c (struct_value_size_rtx): Separate definition from
854 initialization to avoid unused variable warning.
855
856 * genflags.c (gen_macro): New function.
857 (gen_proto): Call it for gen_call_* and gen_sibcall_*.
858 (gen_nonproto): Delete.
859 (gen_insn): Put all insns on the same obstack.
860 (main): Generate prototypes for everything unconditionally.
861
862 * configure.in: Add AC_CHECK_TYPE(ssize_t). Remove commented
863 out check for wchar_t.
864 * acconfig.h: Add template for ssize_t. Remove @TOP@.
865 * system.h: Add infrastructure for defining missing
866 TYPE_MAX/TYPE_MIN macros. Use it to provide fallback
867 definitions of UCHAR_MAX and SSIZE_MAX.
868 * configure: Regenerate.
869 * config.in: Regenerate.
870
871 * Makefile.in (libgcc2.ready): Rename to libgcc.ready.
872 Depend on $(LANGUAGES) as well as $(GCC_PATCHES) and fixed
873 headers.
874 (clean): No need to delete libgcc1.a, libgcc1-asm.a,
875 libgcc2.a, or libgcc1.null.
876
877 2000-05-27 Richard Henderson <rth@cygnus.com>
878
879 * Makefile.in (recog.o): Don't depend on resource.h.
880 * recog.c: Don't include resource.h.
881 (recog_last_allowed_insn): Remove.
882 (recog_next_insn): Remove.
883 (struct peep2_insn_data): New.
884 (peep2_insn_data, peep2_current): New.
885 (peep2_next_insn): New.
886 (peep2_regno_dead_p, peep2_reg_dead_p): New.
887 (peep2_find_free_register): New.
888 (peephole2_optimize): Track life information by insn as we go.
889 * recog.h: Update declarations.
890 * resource.c (find_free_register, reg_dead_p): Remove.
891 * resource.h: Remove their declarations.
892 * toplev.c: Include hard-reg-set.h before recog.h.
893
894 * genconfig.c (max_insns_per_peep2): New.
895 (gen_peephole2): New.
896 (main): Call it.
897 * genemit.c (output_peephole2_scratches): Generate calls to
898 peep2_find_free_register; adjust surrounding code.
899 (main): Have insn-emit.c include hard-reg-set.h before recog.h.
900 * genrecog.c (change_state): Don't track last_insn.
901 (write_action): Write into *_pmatch_len before accepting.
902 (write_tree): Adjust peephole2_insns and subroutines to match.
903
904 * config/i386/i386.md (all peepholes): Use peep2_regno_dead_p.
905
906 * config/alpha/alpha.c (hard_fp_register_operand): Mind the mode.
907 (hard_int_register_operand): New.
908 * config/alpha/alpha-protos.h: Declare it.
909 * config/alpha/alpha.h (PREDICATE_CODES): Update.
910 * config/alpha/alpha.md (peep2 patterns): Use hard_int_register_operand
911 as needed; use peep2_reg_dead_p instead of dead_or_set_p.
912
913 2000-05-27 Richard Henderson <rth@cygnus.com>
914
915 * function.c (thread_prologue_epilogue_insns): Don't move the
916 line note at the head of the chain. Only force a lineno note
917 before the end of block 0.
918
919 2000-05-27 Richard Henderson <rth@cygnus.com>
920
921 * gensupport.c (collect_insn_data): Record the maximum number
922 of alternatives, not the last seen.
923
924 * genoutput.c: Don't include errors.h.
925 (struct data): Add lineno member.
926 (have_error): New.
927 (scan_operands): Use message_with_line instead of error.
928 (validate_insn_alternatives): Likewise.
929 (gen_insn): Accept and store the pattern's line number.
930 (gen_peephole, gen_expand, gen_split): Likewise.
931 (main): Don't set progname. Pass line_no to gen_foo.
932
933 2000-05-27 Richard Henderson <rth@cygnus.com>
934
935 * config/d30v/d30v.c (d30v_print_operand): Handle ':'.
936 * config/d30v/d30v.h (PRINT_OPERAND_PUNCT_VALID_P): Accept ':'.
937 * config/d30v/d30v.md (attr predicable): New.
938 (all insn patterns): Mark non-predicable patterns; use %: on the rest.
939 (andsi3*): Unify into one pattern.
940 (iorsi3*, xorsi3*): Likewise.
941 (peephole2 patterns): Use peep2_reg_dead_p; verify not a
942 conditional return.
943 (old cond_exec patterns): Remove.
944 (define_cond_exec): New.
945
946 Sat May 27 11:01:27 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
947
948 * tree.h (TREE_CODE_LENGTH): New macro.
949 * c-common.c (c_find_base_decl): Use it.
950 * expr.c (safe_from_p): Likewise.
951 * print-tree.c (print_node): Likewise.
952 * tree.c (make_node, copy_node, get_identifier): Likewie.
953 (first_rtl_op, contains_placeholder_p, substitute_in_expr): Likewise.
954 (build, build_nt, build_parse_node, simple_cst_equal): Likewise.
955 * fold-const.c (make_range): Likewise.
956 (fold): Likewise; also use first_rtl_op.
957 * c-iterate.c (collect_iterators): Use first_rtl_op.
958 * calls.c (calls_function_1): Likewise; also rename TYPE to CLASS.
959 Use IS_EXPR_CODE_CLASS.
960 (preexpand_calls): Likewise.
961 * ggc-common.c (ggc_mark_trees): Rework to use first_rtl_op
962 and TREE_CODE_LENGTH.
963 * stmt.c (warn_if_unused_value): If no operands, no unused value.
964
965 2000-05-26 Geoffrey Keating <geoffk@cygnus.com>
966
967 * config/rs6000/rs6000.md (movsi_internal1): Use '%a1' rather
968 than '%1(%*)'.
969 (movdi_internal64): Likewise.
970
971 * config/rs6000/rs6000.md: Correct order of operands for DImode
972 boolean patterns.
973
974 * config/rs6000/rs6000.c (boolean_or_operator): New function.
975 * config/rs6000/rs6000-protos.h (boolean_or_operator): Prototype it.
976 * config/rs6000/rs6000.h (PREDICATE_CODES): Add boolean_or_operator.
977 * config/rs6000/rs6000.md: Use boolean_or_operator instead of
978 boolean_operator for the boolean patterns without NOTs.
979
980 * config/rs6000/rs6000.c (reg_or_logical_cint_operand): Rename
981 from reg_or_u_cint_operand. Change comment and behaviour.
982 (logical_operand): Clean up, add assertion.
983 (non_logical_cint_operand): Also check for
984 reg_or_logical_cint_operand.
985 * config/rs6000/rs6000.h (PREDICATE_CODES): Update.
986 * config/rs6000/rs6000.md (iorsi3): Use reg_or_logical_cint_operand
987 in the expander.
988 (xorsi3): Likewise.
989 (iordi3): Likewise.
990 (xordi3): Likewise.
991
992 2000-05-26 Mark Mitchell <mark@codesourcery.com>
993
994 * tree.h (struct record_layout_info): Rename to (struct
995 record_layout_info_s).
996 * stor-layout.c (start_record_layout): Replace
997 `record_layout_info' with `record_layout_info_s'.
998
999 2000-05-26 Richard Earnshaw <rearnsha@arm.com>
1000
1001 * flow.c (find_label_refs): New function.
1002 (find_basic_blocks_1): Call it for each alternative of a call
1003 placeholder.
1004
1005 2000-05-26 Richard Earnshaw <rearnsha@arm.com>
1006
1007 * ifcvt.c (cond_exec_get_condition): Set test_if to the SET_SRC
1008 of get_pc.
1009
1010 2000-05-25 Richard Henderson <rth@cygnus.com>
1011
1012 * config/alpha/alpha.c (alpha_comparison_operator): Don't be
1013 so strict about DImode.
1014 (alpha_swapped_comparison_operator): Likewise.
1015 * config/alpha/alpha.md (*setne_internal): Name it. Allow
1016 any integer output mode.
1017 (*setcc_internal): Likewise.
1018 (*setcc_swapped_internal): Likewise.
1019 (*movdicc_internal, *movdicc_lbc, *movdicc_lbs): Name them.
1020 (*mov[qhs]icc_internal): New.
1021 (*mov[qhs]icc_lbc, *mov[qhs]icc_lbs): New.
1022
1023 2000-05-25 J. David Anglin <dave@hiauly1.hia.nrc.ca>
1024
1025 * vax.h (CPP_SPEC): Define __GFLOAT and GFLOAT when -mg is specified.
1026
1027 2000-05-25 Richard Henderson <rth@cygnus.com>
1028
1029 * bb-reorder.c (reorder_block_def): Reorder elements for size.
1030 Remove add_jump; add next; replace flags with visited.
1031 (rbd_init): Remove.
1032 (REORDER_BLOCK_HEAD, REORDER_BLOCK_VISITED): Remove.
1033 (REORDER_BLOCK_FLAGS, REORDER_BLOCK_INDEX): Remove.
1034 (REORDER_BLOCK_ADD_JUMP, REORDER_BLOCK_EFF_HEAD): Remove.
1035 (REORDER_BLOCK_EFF_END, REORDER_BLOCK_SCOPE): Remove.
1036 (RBI): New.
1037 (reorder_index, reorder_last_visited): Remove.
1038 (skip_insns_after_block): Rewrite to use a switch.
1039 (get_common_dest): Remove.
1040 (chain_reorder_blocks): Remove.
1041 (record_effective_endpoints): Split out from reorder_basic_blocks.
1042 (make_reorder_chain): Likewise. Loop until all blocks are placed.
1043 (make_reorder_chain_1): Renamed from old make_reorder_chain.
1044 Only construct the reorder chain, do not move insns. Try harder
1045 to tail recurse.
1046 (label_for_bb, emit_jump_to_block_after): New.
1047 (fixup_reorder_chain): Use them. Do bulk block movement. Examine
1048 and adjust the jump insns appropriately. Fixup basic_block_info.
1049 (verify_insn_chain): Always define.
1050 (relate_bbs_with_scopes): Call xmalloc, not xcalloc. Fix thinko
1051 in allocation size.
1052 (make_new_scope): Don't write zeros to calloc'd space.
1053 (build_scope_forest): Rely on xrealloc to DTRT.
1054 (reorder_basic_blocks): Don't build loop nest. Don't fail if
1055 profile_arc_flag. Streamline EH test.
1056
1057 * flow.c (redirect_edge_succ, redirect_edge_pred): New.
1058 * basic-block.h: Declare them.
1059
1060 2000-05-25 Alexandre Oliva <aoliva@cygnus.com>
1061
1062 * emit-rtl.c (reset_used_decls): New function.
1063 (unshare_all_rtl_again): Call it.
1064
1065 2000-05-25 Zack Weinberg <zack@wolery.cumb.org>
1066
1067 * cpplex.c (maybe_macroexpand): Warn about function-like
1068 macros used in non-function context, if -Wtraditional.
1069
1070 2000-05-25 Mark Mitchell <mark@codesourcery.com>
1071
1072 * recog.c (peephole2_optimize): Use INSN_P.
1073
1074 2000-05-25 Richard Henderson <rth@cygnus.com>
1075
1076 * ifcvt.c (seq_contains_jump): New.
1077 (noce_try_store_flag_constants): Use it to fail conversion.
1078 (noce_try_store_flag_inc, noce_try_store_flag_mask): Likewise.
1079
1080 2000-05-25 Mark Mitchell <mark@codesourcery.com>
1081
1082 * except.h (can_throw): Declare it.
1083 * except.c (can_throw): Give it external linkage.
1084 * resource.c (find_dead_or_set_registers): Use can_throw.
1085
1086 2000-05-25 Richard Henderson <rth@cygnus.com>
1087
1088 * flow.c (mark_set_1): Don't record conditionally dead memory.
1089
1090 2000-05-25 Jan Hubicka <jh@suse.cz>
1091
1092 * combine.c (try_combine): Use any_condjump_p, any_uncondjump_p
1093 and pc_set at the place of simplejump_p and condjump_p.
1094 * cse.c (record_jump_equiv): Likewise.
1095 * emit-rtl.c (emit): Likewise.
1096 * explow.c (find_next_ref): Likewise.
1097 * flow.c (tidy_fallthru_edge): Likewise.
1098 (init_propagate_block_info): Likewise.
1099 * gcse.c (delete_null_pointer_checks): Likewise.
1100 * ifcvt.c (cond_exec_get_condition, noce_get_condition,
1101 dead_or_predicable): Likewise.
1102 * integrate.c (copy_insn_list): Likewise.
1103 * loop.c (scan_loop, verify_dominator, find_and_verify_loops,
1104 for_each_insn_in_loop, check_dbra_loop, get_condition,
1105 insert_bct, load_mems): Likewise.
1106 * resource.c (find_dead_or_set_registers): Likewise.
1107 * sibcalls.c (simplejump_p): Likewise.
1108 * unroll.c (copy_loop_body, reg_dead_after_loop): Likewise.
1109
1110 2000-05-25 David Edelsohn <edelsohn@gnu.org>
1111
1112 * rs6000.c (expand_block_move): Add 64-bit PowerPC doubleword move
1113 to STRING case. Use doubleword STRING move for TARGET_POWERPC64
1114 when unaligned.
1115 * rs6000.h (CONST_OK_FOR_LETTER_P, 'J'): unsigned HOST_WIDE_INT.
1116 (RETURN_ADDR_RTX): Use COUNT and FRAME, not count and frame.
1117 (LEGITIMIZE_RELOAD_ADDRESS): unsigned HOST_WIDE_INT high.
1118 * rs6000.md: Name various internal patterns.
1119
1120 2000-05-25 Jan Hubicka <jh@suse.cz>
1121
1122 * jump.c (invert_exp_1): Remove first argument, use pc_set
1123 to get the expression.
1124 (redirect_exp): Make static; redirect only the pc_set expression,
1125 remove first argument.
1126 (invert_exp): Remove first argument, make static.
1127 (jump_optimize): Use any_condjump_p, any_uncondjump_p and
1128 any_onlyjump at most places where we originaly did condjump_p
1129 and simplejump_p.
1130 (jump_back_p, follow_jumps, thread_jumps): Likewise.
1131 (delete_barrier_succesors): Use pc_set.
1132 (invert_jump_1, invert_jump, redirect_jump_1, redirect_jump): Update
1133 calls of invert_exp and redirect_exp.
1134 * rtl.h (redirect_exp, invert_exp): Remove.
1135 * unroll.c (copy_loop_body): Use invert_jump and redirect_jump.
1136
1137 2000-05-25 Richard Henderson <rth@cygnus.com>
1138
1139 * stmt.c (expand_end_bindings): Fix thinko last change.
1140
1141 2000-05-25 Andrew MacLeod <amacleod@cygnus.com>
1142 Andrew Haley <aph@cygnus.com>
1143
1144 * except.c (func_eh_entry): Add emitted field.
1145 (new_eh_region_entry): Set emitted field to 0;
1146 (output_exception_table_entry): Only emit previously un-emitted data,
1147 and send it to the eh_data section.
1148 (output_exception_table): Break out common parts. Output
1149 exception table for entire compilation unit to eh_data section.
1150 (output_exception_table_data): Common parts of output_exception_table.
1151 Send output to eh_data section.
1152 (output_function_exception_table): Output exception table data for
1153 a single function to eh_data section.
1154 (free_exception_table): New external to free the table.
1155 * except.h (free_exception_table): Add prototype.
1156 (output_function_exception_table): Add prototype.
1157 * final.c (final_end_function): Output function exception table
1158 for IA64_UNWIND_INFO.
1159 (final_scan_insn): Emit any unwind directives for an insn.
1160
1161 * frame-dwarf2.c: New file containing all DWARF 2 specific code
1162 from frame.c.
1163 * frame.c: Remove all DWARF 2 specific code.
1164 * config/ia64/frame-ia64.c: New file.
1165 (gthread_stuff): Make all gthread available with
1166 IA64_UNWIND_INFO.
1167 (dwarf_fde): Define an IA64 struct for dwarf_fde.
1168 (__register_frame_info, __register_frame): Move to common area of file.
1169 (__register_frame_info_table, __register_frame_table): Move to common i
1170 area.
1171 (__deregister_frame_info, __deregister_frame): Move to common area.
1172 (__frame_init, find_fde): New versions for IA64_UNWIND_INFO.
1173 (read_uleb128): New version for ia64.
1174 (get_unwind_record): Read the next IA-64 unwind record.
1175 (read_R_record): Read a region header record.
1176 (process_a_b_reg_code): X record helper.
1177 (read_X_record): Read an X format record.
1178 (read_B_record): Read a B format record.
1179 (P3_record_types): List of record types matching the P3 format.
1180 (P7_record_types): List of record types matching the P7 format.
1181 (P8_record_types): List of record types matching the P8 format.
1182 (read_P_record): Read a P format record.
1183 (init_ia64_reg_loc): Set default fields for a register.
1184 (init_ia64_unwind_frame): Set defaults for all register records.
1185 (execute_one_ia64_descriptor): Execute one descriptor record.
1186 (rse_address_add): Calculate the position of a local reg in memory.
1187 (normalize_reg_loc): Turn a location descriptor into a memory address.
1188 (maybe_normalize_reg_loc): Only normalize a descriptor if it falls
1189 within a specified PC offset range.
1190 (get_real_reg_value): Given a register location, retrieve its value.
1191 (set_real_reg_value): Change the value of a register location.
1192 (copy_reg_value): Copy reg values, if needed.
1193 (copy_saved_reg_state): Copy all registers that need to be copied.
1194 (process_state_between): Normalize all frame register records that
1195 fall within the specified PC range.
1196 (frame_translate): Take a processed frame description, and turn
1197 everything into addresses.
1198 (build_ia64_frame_state ): Find and create frame state record for a PC.
1199 (get_personality): Get the personality routine for a given frame.
1200 (get_except_table): Get the exception table for a given frame.
1201 (record_name): Unwind record names for debugging.
1202 (print_record): Print and unwind record.
1203 (print_all_records): Print an entire unwind image.
1204 (__ia64_backtrace): Print a backtrace.
1205 (ia64_backtrace_helper): New function.
1206 (__register_frame_info_aux): New function.
1207 * config/ia64/crtend.asm (__do_frame_setup_aux): New function.
1208
1209 * frame.h (enum unw_record_type): New unwind record types.
1210 (struct unw_p_record, unw_b_record, unw_x_record) : New unwind records.
1211 (struct unw_r_record, unwind_record): New unwind record structs.
1212 (struct unwind_info_ptr): Unwind information layout.
1213 (IA64_UNW_LOC_TYPE_*): Macros for different types for location
1214 descriptors.
1215 (struct ia64_reg_loc): Register location description.
1216 (struct ia64_frame_state): Location of all registers in a frame.
1217 (struct object): Add pc_base and fde_end for IA64_UNWIND_INFO.
1218 * libgcc2.c (__ia64_personality_v1): Personality routine.
1219 (__calc_caller_bsp): Calculate the bsp register for the caller's
1220 frame.
1221 (ia64_throw_helper): Figure out who to return to and set up the
1222 registers.
1223 (__throw): Throw routine.
1224
1225 * output.h (assemble_eh_align, assemble_eh_label): New functions
1226 to generate EH info where we want it.
1227 (assemble_eh_integer): New function.
1228 * toplev.c (compile_file): Output module level exception table for
1229 non-ia64 targets.
1230 (main): Set exceptions_via_longjump and flag_new_exceptions based
1231 on IA64_UNWIND_INFO too.
1232
1233 * varasm.c (assemble_eh_label): Generate a label via
1234 ASM_OUTPUT_EH_LABEL if it has been specified.
1235 (assemble_eh_align): Generate an alignment directive via
1236 ASM_OUTPUT_EH_ALIGN if it has been specified.
1237 (assemble_eh_label): Generate an integer value via
1238 ASM_OUTPUT_EH_type if they have been specified.
1239 * config/ia64/ia64.c (rtx_needs_barrier): Add flushrs.
1240 (ia64_init_builtins): Add __builtin_ia64_bsp
1241 and __builtin_ia64_flushrs.
1242 (ia64_expand_builtin): Add IA64_BUILTIN_BSP and
1243 IA64_BUILTIN_FLUSHRS.
1244 * config/ia64/ia64.h (ia64_builtins): Add IA64_BUILTIN_BSP and
1245 IA64_BUILTIN_FLUSHRS.
1246
1247 * config/ia64/ia64.md (flushrs): New insn to flush the register
1248 stack. Add to unspec list.
1249
1250 * config/ia64/crtbegin.asm (frame_object): Change size.
1251 (__do_frame_setup_aux): New function.
1252 * config/ia64/crtend.asm: call __do_frame_setup_aux.
1253 * config/ia64/t-ia64 (LIB2ADDEH): Add.
1254 * Makefile.in (LIB2ADDEH): Add.
1255 (LIB2ADD): Use LIB2ADDEH.
1256
1257 2000-05-24 Richard Henderson <rth@cygnus.com>
1258
1259 * recog.c (offsettable_address_p): If mode size is zero, assume
1260 BIGGEST_ALIGNMENT.
1261
1262 2000-05-24 J. David Anglin <dave@hiauly.hia.nrc.ca>
1263
1264 * configure.in: Check for -Wno-long-long option support and improve
1265 handling of warning CFLAGS for stages 1 and 2.
1266 * Makefile.in (WARN_CFLAGS): Move definition to configure.in.
1267 * configure: Regenerate.
1268
1269 Wed May 24 19:37:53 2000 Jeffrey A Law (law@cygnus.com)
1270
1271 * gcc.texi: Remove contributor list. Instead include contrib.texi.
1272 * contrib.texi: New file.
1273
1274 Thu May 25 02:27:22 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
1275
1276 * loop.c (basic_induction_var): Avoid double recording of an increment.
1277
1278 Thu May 25 02:19:27 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
1279
1280 * Back out this patch:
1281 Tue Dec 7 19:22:06 1999 Richard Henderson <rth@cygnus.com>
1282 * loop.h (struct induction): Add multi_insn_incr.
1283 * loop.c (basic_induction_var): New multi_insn_incr argument.
1284 Set it if we search back through previous insns for the biv.
1285 (record_biv): New multi_insn_incr argument; fill in struct induction.
1286 (strength_reduce): Discard an iv with multiple bivs, any of
1287 which require multiple insns to increment.
1288
1289 * loop.c (check_insn_for_bivs): Remove bits copied from above patch.
1290
1291 Thu May 25 02:09:10 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
1292
1293 * rtl.h (loc_mentioned_in_p): Declare.
1294 * reload.c (loc_mentioned_in_p): Moved from here...
1295 * rtlanal.c (loc_mentioned_in_p): to here. No longer static.
1296 Fix loop increment for 'E' handling.
1297 * loop.c (strength_reduce): When doing biv->giv conversion,
1298 take multi-insn biv increments into account.
1299
1300 2000-05-24 Jason Merrill <jason@casey.soma.redhat.com>
1301
1302 * stmt.c (expand_end_bindings): Look through NOTEs to find a
1303 BARRIER.
1304
1305 2000-05-24 Mark Mitchell <mark@codesourcery.com>
1306
1307 * calls.c (expand_call): Handle cleanups in tail-recursion
1308 arguments analagously to cleanups in sibling calls.
1309
1310 2000-05-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1311
1312 * simplify-rtx.c: Rename macro SIGN_EXTEND to HWI_SIGN_EXTEND.
1313 All callers changed.
1314
1315 2000-05-24 Alexandre Oliva <aoliva@cygnus.com>
1316
1317 * expr.c (expand_assignment, store_expr, expand_expr,
1318 expand_expr_unaligned): Set in_check_memory_usage while emitting
1319 chkr_check_addr libcall.
1320
1321 2000-05-24 Nick Clifton <nickc@cygnus.com>
1322
1323 * fold-const.c (extract_muldiv): When constructing a
1324 multiplier/divisor, do not expect const_binop to correctly
1325 determine if overflow has occured, so check explicitly.
1326
1327 2000-05-24 Alexandre Oliva <aoliva@cygnus.com>
1328
1329 * c-decl.c (build_enumerator): Don't modify the value's type,
1330 convert it.
1331
1332 2000-05-24 Andreas Jaeger <aj@suse.de>
1333
1334 * mips.h (LINKER_ENDIAN_SPEC): Pass -EL to linker by default.
1335
1336 2000-05-24 Eric Christopher <echristo@cygnus.com>
1337
1338 * configure.in: Redefine inhibit_libc conditions.
1339 * libgcc2.c: Remove inhibit_libc conditional define.
1340 * configure: Regenerate.
1341
1342 2000-05-24 Phil Edwards <pme@sourceware.cygnus.com>
1343
1344 * configure.in: For --enable-languages=LIST, check for empty LIST.
1345 * configure: Regenerate.
1346
1347 2000-05-24 Lars Brinkhoff <lars@nocrew.org>
1348
1349 * pdp11.h (STACK_BOUNDARY): Define.
1350
1351 2000-05-24 Jakub Jelinek <jakub@redhat.com>
1352
1353 * ifcvt.c (if_convert): Update life info globally.
1354
1355 2000-05-24 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
1356
1357 * emit-rtl.c (unshare_all_decls): New function.
1358 (unshare_all_rtl): Call it.
1359
1360 2000-05-23 Nick Clifton <nickc@cygnus.com>
1361
1362 * configure.in: Treat 'strongarm' as if it were 'arm' when
1363 determining cpu type.
1364
1365 * configure: Regenerate.
1366
1367 * config/arm/arm.c: Change 'char *' to 'const char *' for cases
1368 where constant strings are involved.
1369
1370 * config/arm/arm.h (arm_condition_codes): Change type to 'const
1371 char *'.
1372
1373 * config/arm/arm-protos.h: Change 'char *' to 'const char *' for
1374 cases where constant strings are involved.
1375
1376 Tue May 23 15:08:31 2000 Clinton Popetz <cpopetz@cygnus.com>
1377
1378 * config/sh/sh.c (gen_far_branch, split_branches): Update
1379 to reflect new prototypes for redirect_jump and invert_jump.
1380 (sh_insn_length_adjustment): Get rid of const warnings.
1381
1382 2000-05-23 Kazu Hirata <kazu@hxi.com>
1383
1384 * invoke.texi (Options for Debugging Your Program or GCC): Update
1385 the names of dump files.
1386
1387 Tue May 23 13:58:52 2000 Philippe De Muyter <phdm@macqel.be>
1388
1389 * configure.in (NO_MINUS_C_MINUS_O): Fix thinko in previous fix.
1390 * configure: Regenerated.
1391
1392 2000-05-23 Zack Weinberg <zack@wolery.cumb.org>
1393
1394 * simplify-rtx.c (SIGN_EXTEND): New macro.
1395 (simplify_unary_operation, simplify_binary_operation,
1396 simplify_relational_operation): Use SIGN_EXTEND. Make low
1397 halves of (low, high) pairs unsigned if they weren't already.
1398 (simplify_ternary_operation): Cast INTVAL to unsigned before
1399 comparing to a MODE_BITSIZE.
1400
1401 2000-05-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1402
1403 * aclocal.m4 (gcc_AC_CHECK_DECL, gcc_AC_CHECK_DECLS): New macros
1404 rewritten from the internals of gcc_AC_NEED_DECLARATION{S}.
1405
1406 * configure.in (gcc_AC_CHECK_DECLS): Call this instead of
1407 gcc_AC_NEED_DECLARATIONS.
1408
1409 * dwarfout.c: Don't prototype time().
1410
1411 * gcc.c: Check HAVE_DECL_* instead of NEED_DECLARATION_*.
1412
1413 * system.h: Likewise.
1414
1415 * toplev.c: Likewise.
1416
1417 2000-05-23 Zack Weinberg <zack@wolery.cumb.org>
1418
1419 * c-decl.c (pushdecl): Invert sense of test for non-global types.
1420
1421 Tue May 23 18:11:42 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
1422
1423 * reload1.c (reload_cse_move2add): Honor TRULY_NOOP_TRUNCATION.
1424
1425 2000-05-23 Jonathan Larmour <jlarmour@redhat.co.uk>
1426
1427 * config/mips/elf64.h (CTOR_LISTS_DEFINED_EXTERNALLY): Define
1428
1429 Tue May 23 06:50:29 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1430
1431 * config/alpha/alpha.c: Remove #ifdef HAIFA since now only scheduler.
1432 (alpha_start_function): Never write ..ng label if VMS or NT.
1433 (alpha_align_insns): Remove GP_IN_USE arg.
1434 Alignment now unsigned.
1435 (alpha_reorg): Don't pass GP_IN_USE arg to alpha_align_insns.
1436 * config/alpha/alpha.md (prologue_ldgp): Split into one define_expand
1437 and two define_insn's.
1438
1439 2000-05-22 Richard Henderson <rth@cygnus.com>
1440
1441 * combine.c (simplify_comparison): Use trunc_int_for_mode.
1442
1443 2000-05-22 Richard Henderson <rth@cygnus.com>
1444
1445 * stor-layout.c (place_field): Change rli->size to rli->offset.
1446
1447 2000-05-22 Richard Henderson <rth@cygnus.com>
1448
1449 * function.c (thread_prologue_and_epilogue_insns): Make sure
1450 existing line number notes appear after the prologue.
1451
1452 Mon May 22 21:49:00 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1453
1454 * config/alpha/alpha.c (alpha_fnname): New static variable.
1455 (print_operand, case '~'): New case.
1456 (alpha_expand_prologue): Emit prologue_ldgp insn if needed.
1457 (alpha_start_function): Set alpha_fnname.
1458 Write "ng" label if no ldgp; don't write ldgp insn.
1459 * config/alpha/alpha.h (PRINT_OPERAND_PUNCT_VALID_P): New case '~'.
1460 * config/alpha/alpha.md (prologue_ldgp): New define_insn.
1461
1462 Mon May 22 11:30:48 2000 Clinton Popetz <cpopetz@cygnus.com>
1463
1464 * jump.c (jump_optimize_1): Don't increment LABEL_NUSES
1465 on deleted labels.
1466
1467 2000-05-22 Zack Weinberg <zack@wolery.cumb.org>
1468
1469 * varasm.c (eh_frame_section): Revert change to argument list.
1470
1471 Mon May 22 13:14:03 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1472
1473 * optabs.c (can_extend_p): Allow unsignedp to have any nonzero value.
1474 (gen_extend_insn, can_fix_p, can_float_p): Likewise.
1475
1476 * final.c (final_scan_insn, case NOTE_INSN_FUNCTION_BEG): Remove
1477 dangling "else" that causes "break" to be conditional.
1478 Also remove unneeded code at start.
1479
1480 Mon May 22 17:31:35 2000 Philippe De Muyter <phdm@macqel.be>
1481
1482 * m68k/m68k.h (STORE_FLAG_VALUE): Macro set to (-1), not -1.
1483 * fx80/fx80.h, i370/i370.h, m88k/m88k.h (STORE_FLAG_VALUE): Ditto.
1484 * gmicro/gmicro.h, we32k/we32k.h (STORE_FLAG_VALUE): Ditto.
1485
1486 2000-05-22 Jakub Jelinek <jakub@redhat.com>
1487
1488 * config/sparc/sparc.md (movdf_insn_v9only_vis): fzero has
1489 just one argument.
1490
1491 Mon May 22 06:57:49 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1492
1493 * alias.c (record_component_aliases): New function.
1494 * tree.h: Clean up some declarations and comments.
1495 (record_component_aliases): New declaration.
1496 * tree.c (get_alias_set): If type and has alias set, use it.
1497
1498 2000-05-22 Richard Henderson <rth@cygnus.com>
1499
1500 * simplify-rtx.c (simplify_ternary_operation): Try to simplify
1501 IF_THEN_ELSE to a setcc form.
1502 * jump.c (can_reverse_comparison_p): Be prepared for insn null.
1503
1504 2000-05-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1505
1506 * fixinc/inclhack.def (sun_malloc): Handle `calloc'.
1507 (sun_malloc, sysz_stdtypes_for_sun): Add test_text.
1508
1509 Sun May 21 16:42:31 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1510
1511 * combine.c (try_combine): Handle i3_subst_into_i2 case when I2 is
1512 not a PARALLEL.
1513
1514 2000-05-20 Alexandre Oliva <aoliva@cygnus.com>
1515
1516 * config/mn10300/mn10300.md (movdi, movdf): 64-bit clean-up.
1517 * config/mn10300/mn10300.c (print_operand): Likewise.
1518
1519 * final.c (split_double): Right shift of negative values is not
1520 portable.
1521
1522 * ifcvt.c (if_convert): Scan and kill dead code.
1523
1524 * emit-rtl.c (unshare_all_rtl): Store the copied rtx.
1525
1526 2000-05-20 Zack Weinberg <zack@wolery.cumb.org>
1527
1528 * diagnostic.c: Eliminate implicit int.
1529 * except.c, gcc.c: Add static prototypes.
1530 * final.c (final_end_function): Mark file arg ATTRIBUTE_UNUSED.
1531 * gensupport.c (process_rtx): Use XVEC to initialize vector
1532 slot of 'split'.
1533
1534 * print-rtl.c: If DEBUG_REGISTER_NAMES, define static
1535 debug_reg_names instead of static reg_names. If not, define
1536 global reg_names.
1537 * regclass.c: Don't define global reg_names unless
1538 DEBUG_REGISTER_NAMES is defined.
1539
1540 * reload1.c (order_regs_for_reload): Remove unused variable.
1541 * varasm.c: Include output.h after defaults.h. Define
1542 eh_frame_section as function of no args, not of unspecified args.
1543
1544 * gcc.c: Constify argbuf; arguments to store_arg,
1545 process_command, main; elements of struct command and struct
1546 switchstr; local variables in execute, process_command, main.
1547
1548 2000-05-20 Bruce Korb <bkorb@gnu.org>
1549
1550 * fixinc/inclhack.def: many applications of c_fix=format + tests
1551 * fixinc/check.diff: regenerated
1552 * fixinc/fixincl.x: regenerated
1553
1554 Sat May 20 09:30:55 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1555
1556 * alias.c: Clarify some comments.
1557 (record_base_value): REGNO is unsigned.
1558 * rtl.h (record_base_value): Likewise.
1559
1560 * alias.c (aliases_everything_p): Don't special-case QImode here.
1561 * c-common.c (c_get_alias_set): Do it here.
1562 Handle BIT_FIELD_REF by getting alias info for arg.
1563 Use POINTER_TYPE_P.
1564
1565 2000-05-20 Alexandre Oliva <aoliva@cygnus.com>
1566
1567 * mklibgcc.in: Restore rule to create ${dir}.
1568
1569 Sat May 20 08:45:41 2000 H.J. Lu <hjl@gnu.org>
1570
1571 * Makefile.in (libgcc.mk): Depend on xgcc$(exeext) for
1572 GCC_FOR_TARGET used by MULTILIBS.
1573 * mklibgcc.in: Make sure each .o file depends on the
1574 directory it will be in.
1575 Make the multilib directory depends libgcc.
1576
1577 Sat May 20 08:29:28 2000 H.J. Lu <hjl@gnu.org>
1578
1579 * Makefile.in (bootstrap): Unset LANG_LIB2FUNCS for stage 1.
1580
1581 Sat May 20 07:27:35 2000 Alexandre Oliva <aoliva@cygnus.com>
1582
1583 * fold-const.c (make_range): Handle degenerated intervals.
1584 Fixes c-torture/execute/991221-1.c
1585
1586 Fri May 19 18:16:31 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1587
1588 * cse.c (cse_basic_block): Only call find_reg_note if REG_NOTES not 0.
1589 * reload.c (find_equiv_reg): Likewise.
1590 * alias.c (init_alias_analysis): Likewise.
1591 Only call prologue_epilogue_contains on insns.
1592 * basic-block.h (REG_SET_TO_HARD_REG_SET): Call new function.
1593 * bb-reorder.c (hard-reg-set.h): Include earlier.
1594 * haifa-sched.c (hard-reg-set.h): Likewise.
1595 * ifcvt.c (hard-reg-set.h): Likewise.
1596 * local-alloc.c (hard-reg-set.h): Likewise.
1597 * loop.c (hard-reg-set.h): Likewise.
1598 * predict.c (hard-reg-set.h): Likewise.
1599 * regrename.c (hard-reg-set.h): Likewise.
1600 * flow.c (hard-reg-set.h): Likewise.
1601 (reg_set_to_hard_reg_set): New function.
1602 * bitmap.c (regs.h, basic-block.h): No longer include.
1603 (bitmap.h): Now include.
1604 * conflict.c (hard-reg-set.h): Include.
1605 * profile.c (hard-reg-set.h): Likewise.
1606 * print-rtl.c (hard-reg-set.h): Likewise.
1607 * sbitmap.c (hard-reg-set.h): Likewise.
1608 * toplev.c (hard-reg-set.h): Likewise.
1609 * unroll.c (hard-reg-set.h, basic-block.h): Likewise.
1610 * hard-reg-set.h (reg_names): Now constant.
1611 * regs.h (reg_names): Likewise.
1612 * regclass.c (reg_names): Likewise.
1613 * loop.h (basic-block.h): No longer include.
1614 (bitmap.h): Now include.
1615 * reload1.c (order_regs_for_reload): Avoid loop over reg sets.
1616 * Makefile.in (LOOP_H, sbitmap.o, profile.o): Reflect above changes.
1617 (toplev.o, print-rtl.o, conflict.o, unroll.o, bitmap.o): Likewise.
1618
1619 2000-05-19 Jan Hubicka <jh@suse.cz>
1620 Richard Henderson <rth@cygnus.com>
1621
1622 * basic-block.h (struct edge_def): New field "count".
1623 (struct basic_block_def): Likewise.
1624 * flow.c (entry_exit_blocks): Add count fileds.
1625 (split_edge): Keep count information up-to-date.
1626 (dump_edge_info, dump_flow_info): Dump count fields.
1627
1628 * final.c (count_instrumented_edges): Rename to edge from arc.
1629 (end_final): Update users.
1630 * profile.c: Include expr.h, basic-block.h.
1631 (struct adj_list, ARC_TARGET, ARC_SOURCE, ARC_COUNT): Kill.
1632 (struct bb_info, label_to_bb, label_to_bb_size, bb_graph): Kill.
1633 (ignore_next_note, return_label_execution_count): Kill.
1634 (bbg_file_name, da_file_name): Kill.
1635 (edge_info, bb_info): New structures.
1636 (EDGE_INFO, BB_INFO, GCOV_INDEX_TO_BB, BB_TO_GCOV_INDEX): New macros.
1637 (count_instrumented_edges, total_num_edges): Rename to edge from arc.
1638 (total_num_edges_instrumented): Likewise.
1639 (init_arc, expand_spanning_tree): Kill.
1640 (fill_spanning_tree, tablejump_entry_p): Kill.
1641 (instrument_edges): Rewrite from instrument_arcs to use
1642 commit_edge_insertions infrastructure.
1643 (compute_branch_probabilities): Remove arguments; rewrite for
1644 CFG infrastructure; use rtl_dump_file directly.
1645 (branch_prob, find_spanning_tree): Likewise.
1646 (union_groups, find_group): New.
1647 (init_branch_prob): Make bbg_file_name and da_file_name local.
1648 (end_branch_prob): Use rtl_dump_file directly.
1649 (init_edge_profiler): Rename to edge from arc.
1650 (output_arc_profiler): Kill.
1651 (gen_edge_profiler): New.
1652 (output_func_start_profiler): Turn off profiling. Make the
1653 constructor static when we can.
1654 * rtl.h (branch_prob, end_branch_prob): Update prototypes.
1655
1656 * toplev.c (DFI_flow): Remove.
1657 (DFI_cfg, DFI_life): New.
1658 (dump_file): Update accordingly.
1659 (compile_file): Call end_branch_prob if profile_arc_flag too.
1660 (rest_of_compilation): Move flow1 cfg creation to DFI_cfg. Do edge
1661 profiling after the CFG is built. Move flow1 life analysis to
1662 DFI_life. Always estimate remaining probabilities.
1663
1664 2000-05-19 Richard Henderson <rth@cygnus.com>
1665
1666 * ifcvt.c (find_if_case_2): Don't allow THEN to be EXIT.
1667
1668 * flow.c (make_edges): The sibling call edge to exit is abnormal.
1669
1670 2000-05-19 Richard Henderson <rth@cygnus.com>
1671
1672 * jump.c (redirect_jump): Add delete_unused argument. Don't
1673 remove labels and code following when LABEL_NUSES goes to zero.
1674 (invert_jump): Likewise.
1675 (jump_optimize_1): Fix redirect/invert arguments.
1676 (do_cross_jump, thread_jumps): Likewise.
1677 * flow.c (split_edge): Likewise.
1678 * reorg.c (optimize_skip): Likewise.
1679 (reorg_redirect_jump, relax_delay_slots, dbr_schedule): Likewise.
1680 * profile.c (instrument_arcs): Likewise.
1681 * loop.c (find_and_verify_loops): Likewise. Fix indentation.
1682 * rtl.h: Update prototypes.
1683
1684 Fri May 19 12:05:13 2000 Clinton Popetz <cpopetz@cygnus.com>
1685
1686 * ssa.c (convert_from_ssa): Tell life_analysis we need death
1687 notes.
1688 (make_regs_equivalent_over_bad_edges): Only look at abnormal
1689 critical edges.
1690
1691 2000-05-19 Zack Weinberg <zack@wolery.cumb.org>
1692
1693 * cpphash.c (funlike_macroexpand): Make sure not to walk p1
1694 past l1 when deleting whitespace and markers.
1695
1696 * cpplex.c (_cpp_scan_until): Clear AUX field of tokens.
1697 * cpplib.c (do_unassert): Put the list to compare against on
1698 the stack.
1699
1700 2000-05-19 Bruce Korb <bkorb@gnu.org>
1701
1702 * fixinc/README: cleaned up old documentation
1703 * fixinc/check.diff: regenerated & verified on OSR5 on ix86
1704 * fixinc/check.tpl: compute the list of needed directories
1705 emit "#if defined(name)" because of conflict
1706 omit machine name differences from output differences
1707 * fixinc/inclhack.def( m88k_multi_incl ): Use `wrap' function
1708 (machine_name): change test text to use `sed' markers
1709 * fixinc/fixincl.x: regen
1710
1711 Fri May 19 06:49:35 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1712
1713 * config/elfos.h (SELECT_SECTION): Don't access DECL_INITIAL of
1714 a CONSTRUCTOR.
1715
1716 2000-05-18 Chris Demetriou <cgd@sibyte.com>
1717
1718 * gcc.texi (MULTILIB_EXCEPTIONS): Correct example and update
1719 it to match the current practice.
1720
1721 2000-05-18 Mark Mitchell <mark@codesourcery.com>
1722
1723 * Makefile.in (STAGESTUFF): Fix typo in spelling of s-under.
1724
1725 2000-05-18 Richard Henderson <rth@cygnus.com>
1726
1727 * rtlanal.c (insn_dependant_p, insn_dependant_p_1): New.
1728 * rtl.h (insn_dependant_p): Declare it.
1729 * loop.c (strength_reduce): Use it.
1730
1731 2000-05-18 Alexandre Oliva <aoliva@cygnus.com>
1732
1733 * config/mn10300/mn10300.c (expand_prologue, expand_epilogue):
1734 16-bit and 64-bit clean-up.
1735
1736 2000-05-18 Mark Elbrecht <snowball3@bigfoot.com>
1737
1738 * configure.in (*-pc-msdosdjgpp): Set float_format to none.
1739 * configure: Rebuilt.
1740
1741 2000-05-18 Zack Weinberg <zack@wolery.cumb.org>
1742
1743 * genopinit.c: Use $ for escape sequences in optab patterns.
1744 Remove backslashes from optab patterns. Change $A, $B, $C to
1745 expand to (int) whatever instead of just whatever; remove
1746 explicit (int) from all optab patterns.
1747
1748 * gensupport.c (xmalloc, xrealloc, xstrdup): Provide.
1749 * genattr.c, genattrtab.c, gencodes.c, genconfig.c, genemit.c,
1750 genextract.c, genflags.c, genopinit.c, genoutput.c, genpeep.c,
1751 genrecog.c: Remove private copies of xmalloc, xrealloc, and
1752 xstrdup.
1753
1754 2000-05-18 Richard Henderson <rth@cygnus.com>
1755
1756 * jump.c (jump_optimize_1): Base minimum insn count during
1757 find_cross_jump on BRANCH_COST.
1758
1759 2000-05-18 Jakub Jelinek <jakub@redhat.com>
1760
1761 * print-rtl.c (print_rtx): Only print note line number as string
1762 if between NOTE_INSN_BIAS and NOTE_INSN_MAX.
1763 * final.c (final_scan_insn): Do nothing for note line number 0.
1764
1765 2000-05-18 Jakub Jelinek <jakub@redhat.com>
1766
1767 * gcc-common.c (ggc_mark_rtx_children): Mark NOTE_EXPECTED_VALUE
1768 from NOTE_INSN_EXPECTED_VALUE notes and NOTE_SOURCE_FILE from
1769 NOTE_INSN_DELETED_LABEL.
1770
1771 2000-05-18 Nick Clifton <nickc@cygnus.com>
1772
1773 * config/arm/unknown-elf.h (UNIQUE_SECTION): Place constant,
1774 uninitialised data in .rodata not .bss, and do not interpret an
1775 error in the initialisation value as meaning that the variable
1776 should be placed in the .bss section.
1777
1778 Thu May 18 12:10:18 2000 Philippe De Muyter <phdm@macqel.be>
1779
1780 * configure.in (NO_MINUS_C_MINUS_O): Test `$ac_cv_prog_cc_${ac_cc}_c_o',
1781 not `$ac_cv_prog_cc_cc_c_o'.
1782 * configure: Regenerated.
1783
1784 2000-05-18 Chris Demetriou <cgd@sibyte.com>
1785 Richard Henderson <rth@cygnus.com>
1786
1787 * c-common.h (enum c_tree_index): Add g77 type entries.
1788 (g77_integer_type_node, g77_uinteger_type_node): New.
1789 (g77_longint_type_node, g77_ulongint_type_node): New.
1790 * c-decl.c (init_decl_processing): Initialize them.
1791
1792 2000-05-18 Richard Henderson <rth@cygnus.com>
1793
1794 * config/h8300/h8300.md (subs patterns): Use %G to negate.
1795
1796 * config/h8300/h8300.c (ok_for_bclr): Take a HOST_WIDE_INT.
1797 (small_power_of_two): Likewise; use exact_log2.
1798 (adds_subs_operand, one_insn_adds_subs_operand): Remove.
1799 (output_adds_subs): Remove.
1800 (two_insn_adds_subs_operand): New.
1801 (split_adds_subs): New.
1802 * config/h8300/h8300-protos.h: Update.
1803 * config/h8300/h8300.h (CONST_OK_FOR_J): Cast to uns HOST_WIDE_INT.
1804 (CONST_OK_FOR_L): Match strict adds operands.
1805 (CONST_OK_FOR_N): Match struct subs operands.
1806 * config/h8300/h8300.md (adds_subs insns): Remove.
1807 (addhi patterns): Output adds/subs directly.
1808 (addsi_h8300h): Likewise.
1809 (addhi/addsi splitters): New. Decompose two_insn_adds_subs_operand.
1810
1811 2000-05-18 Zack Weinberg <zack@wolery.cumb.org>
1812
1813 * cppexp.c (parse_assertion): New.
1814 (lex): Call it for CPP_HASH. Remove CPP_ASSERTION case.
1815 (_cpp_parse_expr): Remove case '#'. Don't set
1816 parsing_if_directive.
1817 * cpphash.c (collect_objlike_expansion,
1818 collect_funlike_expansion, collect_params,
1819 _cpp_create_definition): The list no longer has a trailing
1820 VSPACE token.
1821 * cpphash.h (enum node_type): Add T_ASSERTION.
1822 (struct hashnode): Remove aschain, add pred.
1823 (struct predicate): New.
1824 Update prototypes.
1825
1826 * cpplex.c (expand_token_space): Handle both offset and
1827 nonoffset lists.
1828 (init_token_list, _cpp_free_token_list, _cpp_parse_assertion): Delete.
1829 (_cpp_init_toklist, _cpp_clear_toklist, _cpp_free_toklist,
1830 _cpp_slice_toklist, _cpp_squeeze_toklist, _cpp_equiv_tokens,
1831 _cpp_equiv_toklists): New.
1832 (_cpp_scan_line): Rename to _cpp_scan_until; add ability to
1833 stop at any single-character token, not just newline.
1834 (_cpp_lex_token): Remove special cases for #define and #if.
1835 (cpp_get_token): Expect # as a separate token type. Remove
1836 DIRECTIVE case.
1837 (_cpp_get_directive_token): Remove DIRECTIVE case.
1838 (_cpp_lex_line, _cpp_lex_file, _cpp_init_input_buffer): Update.
1839
1840 * cpplib.c (_cpp_check_directive): Set dirno and
1841 SYNTAX_INCLUDE bit of flags, not dir_handler and dir_flags.
1842 (_cpp_handle_directive): Run # <number> through the same logic
1843 as normal directives.
1844 (do_define): Don't set parsing_define_directive. Use
1845 _cpp_scan_until. The list does not have a VSPACE at the end.
1846 (do_if): Save, clear, and restore only_seen_white around
1847 _cpp_parse_expr.
1848 (skip_if_group): s/CPP_DIRECTIVE/CPP_HASH/
1849 (do_assert, do_unassert): Rewrite.
1850
1851 * cpplib.h (TTYPE_TABLE): Remove CPP_ASSERTION.
1852 (LIST_OFFSET): New flag.
1853 (struct cpp_toklist): Replace dir_handler and dir_flags with
1854 dirno and flags.
1855 (struct cpp_reader): Remove parsing_if_directive and
1856 parsing_define_directive.
1857
1858 2000-05-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1859
1860 * fixinc/inclhack.def (broken_cabs): Update fix to handle comments
1861 following the cabs decl which terminate on the following line.
1862 Add the corresponding test_text case.
1863
1864 2000-05-18 Neil Booth <NeilB@earthling.net>
1865
1866 * cppinit.c (cpp_reader_init): Initialise col_adjust and
1867 default tab stop size.
1868 (no_num, OPT_ftabstop): New.
1869 (handle_option): Handle "ftabstop=" command-line option.
1870 (print_help): Document it.
1871 * cpplex.c (COLUMN): Remove.
1872 (handle_newline): Reset col_adjust.
1873 (skip_whitespace): Update col_adjust as tabs encountered.
1874 (_cpp_lex_line): Update to use col_adjust. Call
1875 skip_whitespace for all whitespace.
1876 * cpplib.h (struct cpp_options): New member tabstop.
1877 (struct cpp_reader): New member col_adjust.
1878 (CPP_BUF_COL): Update.
1879 (CPP_BUF_COLUMN): New.
1880 * cpp.texi: Document "-ftabstop=" command line option.
1881
1882 Wed May 17 18:19:41 2000 Philippe De Muyter <phdm@macqel.be>
1883
1884 * configure.in (NO_MINUS_C_MINUS_O): Macro made availabe for AC_OUTPUT
1885 files.
1886 * configure: Rebuilt.
1887
1888 Wed May 17 18:06:12 2000 John David Anglin <dave@hiauly1.hia.nrc.ca>
1889
1890 * mklibgcc.in Add missing -DL$name when compiling modules in libgcc1.c.
1891
1892 * tree.c (build_common_tree_nodes): Do not build TI nodes unless
1893 HOST_BITS_PER_WIDE_INT is >= 64.
1894
1895 2000-05-17 Richard Henderson <rth@cygnus.com>
1896
1897 * jump.c (jump_optimize_1): Remove inactive but real insns
1898 in jump-to-next-insn optimization.
1899
1900 2000-05-17 Richard Henderson <rth@cygnus.com>
1901
1902 * toplev.c (rest_of_compilation): Don't call optimize_mode_switching
1903 unless OPTIMIZE_MODE_SWITCHING. Conditionally set no_new_pseudos.
1904 Don't call recompute_reg_usage if no_new_pseudos is true.
1905 * lcm.c (optimize_mode_switching): Move ifdefs outside function.
1906 Return true if we did work; update global life information.
1907 * basic-block.h (optimize_mode_switching): Update decl.
1908
1909 2000-05-17 Neil Booth <neilb@earthling.net>
1910
1911 * cpplex.c (expand_name_space): Don't use ptrdiff_t.
1912
1913 2000-05-17 Zack Weinberg <zack@wolery.cumb.org>
1914
1915 * cpplib.c: New feature, #pragma system_header.
1916 * cpp.texi: Document special treatment of system headers, and
1917 the various mechanisms to get a header that special treatment.
1918
1919 2000-05-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1920
1921 * system.h (offsetof): Define at the very end, to ensure we prefer
1922 the platform's definition if available.
1923
1924 2000-05-16 Bruce Korb <bkorb@gnu.org>
1925
1926 * fixinc/fixincl.c: improve the debug displays, ignore SIGPIPE
1927 * fixinc/server.c: likewise
1928 * fixinc/fixfixes.c( char_macro_def_fix ): fix regex
1929 + #ifdef debugging code + use #def constant for
1930 sub-pattern count
1931 * fixinc/inclhack.def( hpux11_fabsf ): Keep HP-UX 11 from stomping
1932 on C++ math namespace
1933
1934 2000-05-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1935
1936 * fixinc/fixfixes.c (char_macro_use_fix, char_macro_def_fix):
1937 Don't check the return value of sprintf. Use asprintf to avoid
1938 buffer overflows.
1939
1940 Wed May 17 17:27:44 2000 Andrew Cagney <cagney@b1.cygnus.com>
1941
1942 * flags.h (warn_unused_function, warn_unused_label,
1943 warn_unused_parameter, warn_unused_variable, warn_unused_value):
1944 Replace ``warn_unused''.
1945 (set_Wunused): Add declaration.
1946 * toplev.c (set_Wunused): New function.
1947 (warn_unused_function, warn_unused_label, warn_unused_parameter,
1948 warn_unused_variable, warn_unused_value): New variables.
1949 (W_options): Add -Wunused-function, -Wunused-function,
1950 -Wunused-label, -Wunused-parameter, -Wunused-variable and
1951 -Wunused-value. Delete -Wunused. Handled in decode_W_option.
1952
1953 * toplev.c (decode_W_option): Update -Wunused flags by calling
1954 set_Wunused.
1955 * c-decl.c (c_decode_option): Ditto for -Wall.
1956
1957 * stmt.c (expand_expr_stmt, expand_expr_stmt,
1958 warn_about_unused_variables): Replace warn_unused with more
1959 explicit warn_unused_value et.al.
1960 * function.c (expand_function_end): Ditto.
1961 * c-typeck.c (internal_build_compound_expr,
1962 internal_build_compound_expr): Ditto.
1963 * c-decl.c (poplevel, pop_label_level): Ditto.
1964 * toplev.c (check_global_declarations): Replace warn_unused with
1965 check for either warn_unused_function or warn_unused_variable.
1966
1967 * gcc.1, invoke.texi (Warning Options): Document
1968 -Wunused-function, -Wunused-function, -Wunused-label,
1969 -Wunused-parameter, -Wunused-variable and -Wunused-value options.
1970
1971 Wed May 17 10:28:12 2000 Philippe De Muyter <phdm@macqel.be>
1972
1973 * mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Find libgcc1.c in
1974 $(srcdir), not in the current directory.
1975
1976 2000-05-16 Richard Henderson <rth@cygnus.com>
1977
1978 * config/ia64/crtbegin.asm (__dso_handle): Mark hidden if the
1979 assembler supports it.
1980 (.fini, .init): Use a gp-relative indirect call.
1981 (__do_global_dtors_aux): Preserve the gp; rebundle.
1982 (__do_frame_setup): Likewise.
1983 * config/ia64/crtend.asm (.IA_64.unwind): Don't terminate with -1.
1984 (.init): Use a gp-relative indirect call.
1985 (__do_global_ctors_aux): Preserve the gp.
1986
1987 2000-05-16 Richard Henderson <rth@cygnus.com>
1988
1989 * flow.c (commit_one_edge_insertion): Be prepared for a return
1990 insn to be inserted on the edge with a normal jump.
1991 * jump.c (jump_optimize_1): Don't look to create return isns.
1992
1993 * flow.c (flow_delete_insn): Don't adjust reference count of notes.
1994 * jump.c (jump_optimize_1): Likewise.
1995 (returnjump_p): Verify the argument is a JUMP_INSN.
1996 * rtl.def (NOTE): Add 5th element for NOTE_INSN_DELETED_LABEL.
1997
1998 2000-05-16 Nick Clifton <nickc@cygnus.com>
1999
2000 * config/m32r/m32r.c (small_insn_p): Use INSN_P() to replace
2001 GET_RTX_CLASS (GET_CODE ()) == 'i'.
2002 (large_insn_p): Ditto.
2003 (m32r_is_insn): New function: Return true if the insn contains
2004 an executable instruction.
2005 (m32r_adjust_insn): Use m32r_is_insn.
2006 (m32r_sched_reorder): Use m32r_is_insn.
2007 (m32r_sched_variable_issue): Use m32r_is_insn.
2008
2009 2000-05-16 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
2010
2011 * rs6000/rs6000.c (rs6000_select_section): Treat CONSTRUCTOR like
2012 VAR_DECL.
2013
2014 * rs6000/sysv4.h (ASM_OUTPUT_DWARF_ADDR): Delete unused variable.
2015
2016 * rs6000/sysv4.h (CPP_OS_LINUX_SPEC): Define __unix and __linux
2017 according to given options.
2018
2019 Tue May 16 12:17:31 2000 Jeffrey A Law (law@cygnus.com)
2020
2021 * mn10200.h (PREFERRED_RELOAD_CLASS): Do not prefer DATA_REGS
2022 if X has VOIDmode either.
2023 (LIMIT_RELOAD_CLASS): Similarly.
2024
2025 * mn10200.md (indirect_jump, tablejump): Use "register_operand",
2026 not "general_operand" to match the processor's capabilities.
2027
2028 2000-05-16 Bruce Korb <bkorb@gnu.org>
2029
2030 * fixinc/README: corrected return address
2031 * fixinc/check.diff: regenerate, now that test works
2032 * fixinc/fixfixes.c(format_fix,format_write): reformatted
2033 (char_macro_def_fix,char_macro_use_fix): corrected and
2034 rewrote to use regex to parse the text
2035 * fixinc/inclhack.def: more testing
2036 * fixinc/fixincl.x: regenerated
2037
2038 * fixinc/inclhack.def: added several "test_text" attributes
2039 changed several fixes to use `c_fix = format'
2040 re-alphabetized the fixes
2041
2042 * fixinc/check.diff: regenerate
2043 * fixinc/fixincl.x: regenerate
2044 * fixinc/check.tpl: added `sparc' and `netinet' to the list
2045 of created dirs
2046
2047
2048 2000-05-16 Alexandre Oliva <aoliva@cygnus.com>
2049
2050 * config/mn10300/mn10300.h (ASM_OUTPUT_DWARF2_ADDR_CONST): Remove.
2051
2052 2000-05-15 Richard Henderson <rth@cygnus.com>
2053
2054 * toplev.c (rest_of_compilation): Run full jump pass before
2055 find_basic_blocks of flow2.
2056
2057 2000-05-15 Richard Henderson <rth@cygnus.com>
2058
2059 * jump.c: Fix typos and clarify commentary from last change.
2060 (any_condjump_p): Verify SET_SRC is an IF_THEN_ELSE.
2061 (safe_to_remove_jump_p): Remove.
2062 (condjump_label): Use pc_set.
2063
2064 2000-05-15 Richard Henderson <rth@cygnus.com>
2065
2066 * ifcvt.c (cond_exec_process_insns): Drop USE and CLOBBER insns
2067 that get in the way after reload.
2068 (cond_exec_process_if_block): Skip a label heading THEN block.
2069
2070 2000-05-15 Richard Henderson <rth@cygnus.com>
2071
2072 * varasm.c (output_constant_pool): Abort instead of converting
2073 (improperly) deleted labels to zero.
2074
2075 2000-05-16 Neil Booth <NeilB@earthling.net>
2076
2077 * cpplex.c (parse_string2): Update comment.
2078 (cpp_lex_line): No special assertion treatment for '('.
2079 * cpplib.c (DIRECTIVE_TABLE): Remove SYNTAX_ASSERT.
2080 * cpplib.h (SYNTAX_ASSERT): Remove.
2081
2082 Mon May 15 21:45:36 MET DST 2000 Jan Hubicka <jh@suse.cz>
2083
2084 * jump.c (condjump_p): Mark as depreached.
2085 (any_condump_p): New.
2086 (any_uncondump_p): New.
2087 (pc_set): New.
2088 (safe_to_remove_jump_p): New.
2089 * rtl.h (any_condump_p, any_uncondjump_p, pc_set
2090 safe_to_remove_jump_p): Declare.
2091
2092 Mon May 15 21:07:20 MET DST 2000 Jan Hubicka <jh@suse.cz>
2093
2094 * calls.c: Re-install both patches reverted by last patch.
2095 (struct arg_data): New field tail_call_reg.
2096 (initialize_argument_information): Initialize tail_call_reg
2097 (load_register_parameters): New argument flags, use
2098 tail_call_reg when emiting tail call sequence.
2099 (expand_call): Update call of load_register_parameters;
2100 copy unadjusted_args_size to adjusted_args_size.
2101
2102 Mon May 15 19:01:42 MET DST 2000 Jan Hubicka <jh@suse.cz>
2103
2104 * loop.c (scan_loop, strength_reduce, loop_optimize): Change unroll_p
2105 and bct_p parameters to flags.
2106 * loop.h (LOOP_UNROLL, LOOP_BCT): New constants.
2107 * rtl.h (loop_optimize): Update prototype.
2108 * toplev.c (rest_of_compilation): Update call of loop_optimize.
2109
2110 2000-05-15 Jakub Jelinek <jakub@redhat.com>
2111
2112 * calls.c (expand_call): Move expand_start_target_temps call after
2113 start_sequence().
2114
2115 2000-05-15 Neil Booth <NeilB@earthling.net>
2116
2117 * cpphash.c (trad_stringify, warn_trad_stringify,
2118 collect_params): Make some pointers pointers to const.
2119 * cpplex.c (auto_expand_name_space) Guaranteed to always
2120 expand by at least one character.
2121 (SPELL_CHAR, SPELL_NONE): Temporarily reverse order.
2122 (struct token_spelling): Use const U_CHAR * rather than PTR.
2123 (expand_name_space): Fix up token pointers if name space
2124 is moved when expanding.
2125 (INIT_NAME, cpp_scan_line, parse_name, parse_number,
2126 parse_string2, save_comment, spell_token, cpp_output_list):
2127 Update so the routines handle tokens with a direct pointer to
2128 their text, rather than an offset into the token's list's namebuf.
2129 (_cpp_lex_line): Rearrange for clarity.
2130
2131 * cpplib.c (_cpp_check_directive): Similarly.
2132 (do_define): Make SYM a pointer to const.
2133 * cpplib.h (struct cpp_name): Replace offset with direct pointer.
2134 (CPP_INT, CPP_FLOAT): Spelling type should be SPELL_IDENT.
2135 (TOK_OFFSET): Delete.
2136 (TOK_NAME): Update.
2137
2138 2000-05-14 Geoffrey Keating <geoffk@cygnus.com>
2139
2140 * config/rs6000/rs6000.h (RETURN_ADDRESS_OFFSET): Correct for
2141 64-bit ABI.
2142
2143 * config/rs6000/rs6000.c (logical_operand): Rewrite to take MODE
2144 into account.
2145 (logical_u_operand): Delete.
2146 (non_logical_cint_operand): Rewrite to take MODE into account.
2147 (non_logical_u_cint_operand): Delete.
2148 (boolean_operator): New function.
2149 (print_operand): Add new %q operand.
2150 * config/rs6000/rs6000.h (PREDICATE_CODES): Add boolean_operator,
2151 remove logical_u_operand and non_logical_u_cint_operand,
2152 update logical_operand and non_logical_cint_operand.
2153 * config/rs6000/rs6000.md: Rewrite the patterns for performing
2154 logical operations to use %q.
2155
2156 * config/rs6000/rs6000.md (movsi): Don't modify RTL in-place.
2157 (movdi): Make similar to movsi.
2158 * config/rs6000/rs6000.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): There
2159 is no such thing as a DImode CONST_DOUBLE.
2160 * config/rs6000/rs6000.c (output_toc): Likewise.
2161
2162 * config/rs6000/rs6000.c (output_cbranch): Don't output prediction
2163 codes when old mnemonics are in use. Print register names
2164 for cc registers when requested.
2165
2166 * optabs.c (expand_float): Don't allow mode widening that causes
2167 double rounding.
2168
2169 * invoke.texi (RS/6000 and PowerPC Options): Update -m64/-m32
2170 flags to their current names -maix64 and -maix32.
2171
2172 2000-05-14 Bruce Korb <bkorb@gnu.org>
2173
2174 * fixinc/fixfixes.c(wrap_fix): new fix - inserts text before
2175 and/or after current text of file
2176 * fixinc/fixlib.c(must_malloc):
2177 * fixinc/fixlib.h(must_malloc): + reformatting
2178 * fixinc/inclhack.def: replace the "1i" and "$a" sed commands
2179 with usages of ``c_fix = wrap;''
2180 Add several tests and use the ``c_fix = format'' fixer more.
2181 * fixinc/fixincl.x: regen
2182 * fixinc/check.diff: regen
2183 * fixinc/check.tpl: emit the associated header with the missing
2184 test message
2185
2186 Sun May 14 17:58:59 2000 Hans-Peter Nilsson <hp@axis.com>
2187
2188 * mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Do not use unset
2189 variables $src and $dst.
2190
2191 2000-05-13 Gabriel Dos Reis <gdr@codesourcery.com>
2192
2193 * diagnostic.h (DIAGNOSTICS_SHOW_PREFIX_ONCE): New macro.
2194 (DIAGNOSTICS_SHOW_PREFIX_NEVER): Likewise.
2195 (DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE): Likewise.
2196 (struct output_buffer: emitted_prefix_p, prefixing_rule): New
2197 fields.
2198 (set_message_prefixing_rule): Declare.
2199
2200 * diagnostic.c: (current_prefixing_rule): New variable.
2201 (set_message_prefixing_rule): Define.
2202 (output_set_prefix): Adjust buffer->emitted_prefix_p.
2203 (init_output_buffer): Adjust Initialization.
2204 (output_emit_prefix): Rewrite. Take prefixing rules into account.
2205
2206 Sat May 13 11:05:47 2000 Philippe De Muyter <phdm@macqel.be>
2207
2208 * ifcvt.c (if_convert): Do not free NULL.
2209
2210 2000-05-12 Nick Clifton <nickc@cygnus.com>
2211
2212 * config/fr30/fr30.c (fr30_move_double): New function: Emit code
2213 to move a double word value.
2214 (di_operand): New function: Return true if the operand is suitbale
2215 for a double word move operation.
2216 (nonimmediate_di_operand): New function: Return true if the
2217 operand is a DImode register or MEM.
2218
2219 * config/fr30/fr30.h (PREDICATE_CODES): Add di_operand and
2220 nonimmediate_di_operand.
2221
2222 * config/fr30/fr30-protos.h Add fr30_move_double, di_operand, and
2223 nonimmediate_di_operand.
2224
2225 * config/fr30/fr30.md (movdi): New pattern. Required because
2226 other patterns generate DImode results.
2227 (movdi_insn): New pattern.
2228
2229 2000-05-12 Richard Henderson <rth@cygnus.com>
2230
2231 * config/alpha/alpha.c (struct shadow_summary): Define
2232 bitfields as type unsigned int.
2233
2234 Sat May 13 00:09:59 2000 Denis Chertykov <denisc@overta.ru>
2235
2236 * config/avr/t-avr: Added definition of FLOAT while generates
2237 fp-bit.c
2238
2239 * config/avr/avr.md: `NEXT_INSN (insn)' substituted to `insn' in
2240 peepholes for tst+jump = sbrs/sbrc optimization.
2241
2242 Fry May 12 20:03:00 CEST 2000 Jan Hubicka <jh@suse.cz>
2243
2244 * expr.c (emit_push_insn): Do not adjust stack pointer when
2245 preallocating.
2246
2247 Fri May 12 19:03:58 2000 Philippe De Muyter <phdm@macqel.be>
2248
2249 * ggc-simple.c (offsetof): Macro fallback definition moved from here ..
2250 * system.h (offsetof): ... to here.
2251
2252 2000-05-12 Richard Henderson <rth@cygnus.com>
2253
2254 * Makefile.in (final.o): Depend on BASIC_BLOCK_H.
2255 * final.c (final_end_function): Use app_disable. Rearrange note
2256 handling into a switch. Emit deleted labels.
2257 (output_asm_label): Generate label strings for deleted labels.
2258 * flow.c (tail_recursion_label_list): New.
2259 (find_basic_blocks_1): Set label_value_list directly. Collect list
2260 of tail recursion labels from call_placeholders. Don't add deleted
2261 labels to the label value list.
2262 (cleanup_cfg): Use free_EXPR_LIST_list.
2263 (flow_delete_insn_chain): Turn non-removable labels into notes.
2264 (flow_delete_block): Don't disable deleting the block because of
2265 a non-removable label.
2266 (tail_recursion_label_p): New.
2267 (merge_blocks_move_predecessor_nojumps): Don't disable the merge
2268 because of a label.
2269 (merge_blocks_move_successor_nojumps): Likewise. Also move a
2270 jump table.
2271 (merge_blocks): Disable a merge because of tail recursion labels.
2272 * ifcvt.c (merge_if_block): Don't disable a merge because of a label.
2273 Use a more accurate measure of not merging the join block.
2274 (find_if_block): Don't disable conversion because of a label.
2275 (find_if_case_1, find_if_case_2): Likewise.
2276 * jump.c (duplicate_loop_exit_test): Preserve the kind of list
2277 element when copying.
2278 (squeeze_notes): Also leave EH notes.
2279 (mark_jump_label): Ignore deleted labels. Use an INSN_LIST for
2280 REG_LABEL notes.
2281 (delete_insn): Preserve LABEL_NAME in NOTE_SOURCE_FILE when
2282 deleting a label.
2283 * print-rtl.c (print_rtx): Print NOTE_SOURCE_FILE for
2284 NOTE_INSN_DELETED_LABEL. Print `[# deleted]' for a label_ref
2285 referring to a deleted label. Convert tail handling to a switch.
2286 * rtl.def (CODE_LABEL): Rearrange elements to be compatible with NOTE
2287 for NOTE_INSN_DELETED_LABEL.
2288 (NOTE): Fix commentary.
2289 * rtl.h (REG_LABEL): Update commentary wrt INSN_LIST.
2290 (REG_CC_SETTER, REG_CC_USER, REG_LIBCALL): Likewise.
2291 (CODE_LABEL_NUMBER, LABEL_NAME): Update index.
2292 (LABEL_NUSES, LABEL_REFS): Likewise.
2293 * unroll.c (copy_loop_body): Don't copy NOTE_INSN_DELETED_LABEL.
2294
2295 2000-05-12 Bruce Korb <bkorb@gnu.org>
2296
2297 * fixinc/fixfixes.c(format_write): buglet & relaxed rules
2298 * fixinc/check.diff: updated
2299 * fixinc/inclhack.def: corrected & added some test_text-s
2300 * fixinc/genfixes: removed unneeded options to autogen invocation
2301 * fixinc/fixincl.tpl: Specified the output file
2302 * fixinc/fixfixes.c: visual appearance
2303 * fixinc/fixincl.x: regenerate
2304
2305 2000-05-12 Zack Weinberg <zack@wolery.cumb.org>
2306
2307 * fixinc/fixfixes.c (IO_use_fix, IO_defn_fix, CTRL_use_fix,
2308 CTRL_defn_fix): Delete.
2309 (fix_char_macro_defines, fix_char_macro_uses): Rename to
2310 char_macro_def_fix and char_macro_use_fix, respectively. Put
2311 them into the FIXUP_TABLE. Get the string to search for from
2312 a c_fix_arg.
2313
2314 (format_write): New function.
2315 (format_fix): Use it.
2316
2317 (FIX_PROC_HEAD): Constify text parameter.
2318 (machine_name_fix): Constify all char *s.
2319 * fixtests.c (skip_quote): Remove double static.
2320
2321 * inclhack.def (io_def_quotes, io_use_quotes, ctrl_def_quotes,
2322 ctrl_use_quotes): Update for new scheme.
2323 * fixincl.x: Regenerate.
2324
2325 2000-05-12 Alexandre Oliva <aoliva@cygnus.com>
2326
2327 * config/mn10300/mn10300.h (PREFERRED_DEBUGGING_TYPE): Redefine as
2328 DWARF2_DEBUG.
2329 (DWARF2_ASM_LINE_DEBUG_INFO): Define.
2330 (ASM_OUTPUT_DWARF2_ADDR_CONST): Define.
2331
2332 2000-05-11 Robert Lipe <robertlipe@usa.net>
2333
2334 * fixinc/inclhack.def (hpux8_bogus_inlines): Delete bypass for SCO.
2335 * fixincl.x: Regenerate.
2336
2337 2000-05-11 Richard Henderson <rth@cygnus.com>
2338
2339 * calls.c: Revert both 05-09 patches.
2340
2341 2000-05-11 Alexandre Oliva <aoliva@cygnus.com>
2342
2343 * config/mn10300/mn10300.c (print_operand): Print FP constants in
2344 hexadecimal.
2345 * config/mn10300/mn10300.md (movsf, movdf): Use the `F' constraint
2346 for FP values.
2347
2348 * mklibgcc.in (EQ): Define it to an equal sign in the Makefile,
2349 and replace any occurrences of `=' in multilib dirs with `$(EQ)'.
2350
2351 2000-05-11 Jason Merrill <jason@casey.cygnus.com>
2352
2353 * fixinc/fixincl.c (run_compiles): Don't crash on null pz_machine.
2354
2355 2000-05-11 Zack Weinberg <zack@wolery.cumb.org>
2356
2357 * fixinc/fixfixes.c, fixinc/fixtests.c: Update commentary.
2358
2359 Thu May 11 22:28:05 2000 Denis Chertykov <denisc@overta.ru>
2360
2361 * config/avr/avr-protos.c (jump_over_one_insn_p): New declaration.
2362 * config/avr/avr.c (jump_over_one_insn_p): New function.
2363 * config/avr/avr.md: New peepholes added. Output test and
2364 conditional jump to "sbrc" or "sbrs" command.
2365
2366 2000-05-11 Mark Elbrecht <snowball3@bigfoot.com>
2367
2368 * cppmain.c (main): Use IS_DIR_SEPARATOR.
2369
2370 2000-05-11 Jakub Jelinek <jakub@redhat.com>
2371
2372 * except.c (find_exception_handler_labels_1): New function.
2373 (find_exception_handler_labels): Split into two functions, dive
2374 into CALL_PLACEHOLDERs when looking for exception handler labels.
2375
2376 2000-05-11 Stan Cox <scox@cygnus.com>
2377
2378 * regrename.c (replace_reg_in_block): Improve REG_DEAD handling.
2379 * timevar.def (TV_RENAME_REGISTERS): Move before TV_SCHED2.
2380 * toplev.c (rest_of_compilation): Call regrename_optimize before sched2.
2381
2382 2000-05-11 Bruce Korb <bkorb@gnu.org>
2383
2384 * fixinc/fixfixes.c (double_slash_fix): obsolete
2385 (else_endif_label_fix): obsolete
2386 (format_fix): new, unused as yet
2387 (main): obsolete
2388 * fixinc/fixlib.h: added fix description struct for use by format_fix
2389 * fixinc/fixincl.c: removed the struct & test for SIGIOT befure using
2390 * fixinc/Makefile.in: compile fixfixes.c and fixtests.c as separate
2391 modules. Removed the vestiges of the script version.
2392 Added support for "make check".
2393 * fixinc/check.diff: base diff file (needs work!!)
2394 * fixinc/check.tpl: quiet the fixup output
2395 * fixinc/fixtests.c (main): obsolete
2396 * fixinc/fixincl.sh: don't bother copying fixincl to ..
2397 * fixinc/fixincl.tpl: provide for arguments to c_fix routines
2398
2399 Thu May 11 11:57:02 MET DST 2000 Jan Hubicka <jh@suse.cz>
2400
2401 * toplev.c (rest_of_compilation): Remove dead code after
2402 combine.
2403
2404 2000-05-11 Zack Weinberg <zack@wolery.cumb.org>
2405
2406 * cpphash.c (collect_funlike_expansion): Make "# is not
2407 followed by a macro argument name" a pedwarn, not an error.
2408 Preserve the # in the output. Suppress the warning if lang_asm.
2409
2410 Thu May 11 01:19:31 2000 Jeffrey A Law (law@cygnus.com)
2411
2412 * configure.in (hppa*64*-*-hpux11*): New target for PA64 support.
2413 * configure: Rebuilt.
2414
2415 2000-05-10 Laurynas Biveinis <lauras@softhome.net>
2416
2417 * i386/xm-djgpp.h (XREF_FILE_NAME): Add mising brace.
2418
2419 2000-05-10 Kazu Hirata <kazu@hxi.com>
2420
2421 * combine.c (try_combine): Fix a typo.
2422
2423 Wed May 10 21:31:44 2000 Jim Wilson <wilson@cygnus.com>
2424
2425 * config/ia64/ia64.md (insv): Add comment.
2426
2427 2000-05-10 Richard Henderson <rth@cygnus.com>
2428
2429 * Makefile.in (libgcc.a, stmp-multilib): Depend on FPBIT and DPBIT.
2430 * mklibgcc.in: Rewrite to not use functions. Don't shortcut
2431 dependancies on FPBIT and DPBIT.
2432
2433 2000-05-10 Nick Clifton <nickc@redhat.com>
2434
2435 * flow.c (find_auto_inc): Do not bias REG_N_REFS by loop_depth
2436 when optimising for size.
2437 (mark_used_regs:) Ditto.
2438 (try_pre_increment_1): Ditto.
2439
2440 2000-05-10 Zack Weinberg <zack@wolery.cumb.org>
2441
2442 * cppexp.c (lex): Use %.*s to print non-NUL-terminated string.
2443 Make error message friendlier.
2444
2445 * cpphash.h (struct hashnode): Use struct hack for name
2446 member.
2447 * cpphash.c (struct hashdummy): New.
2448 (eq_HASHNODE): Second argument is a hashdummy, not a HASHNODE.
2449 (make_HASHNODE): No need to set ->name pointer. Correct
2450 setting of p.
2451 (cpp_lookup): Make 'dummy' a struct hashdummy. Tidy up a bit.
2452
2453 2000-05-10 Richard Henderson <rth@cygnus.com>
2454
2455 * flow.c (find_basic_blocks_1): Remove any spare bb_note
2456 after completion.
2457
2458 2000-05-10 Bruce Korb <bkorb@gnu.org>
2459
2460 * fixinc/gnu-regex.c: reg_syntax_t re_syntax_options must be static
2461
2462 2000-05-10 Eric Schweitz <schweitz@nortelnetworks.com>
2463
2464 * dwarfout.c (dwarfout_finish): Call retry_incomplete_types
2465 after we enter .debug.
2466
2467 2000-05-10 Jason Merrill <jason@casey.cygnus.com>
2468
2469 * dwarf2out.c (gen_subprogram_die): Fixup die_parent for the
2470 abstract instance of a nested inline function.
2471
2472 * stor-layout.c (finish_record_layout): finalize_type_size
2473 before laying out the pending_statics.
2474
2475 Wed 10 May 09:36:47 2000 Neil Booth <NeilB@earthling.net>
2476
2477 * cpplex.c (spell_token): New function.
2478 (spell_string, spell_comment, spell_name): fold into
2479 spell_token.
2480 (I, S): Add macros.
2481 (E, H): Remove macros.
2482 (save_comment): Save comment opening characters too.
2483 (_cpp_lex_file): Update to use spell_token. Tidy up comment
2484 handling.
2485 * cpplib.h (I, S): Add macros.
2486 (E, H): Remove macros.
2487 (TTYPE_TABLE): Update entries for new speller.
2488 (SYNTAX_ASSERT): Remove.
2489
2490 Wed 10 May 09:08:30 2000 Neil Booth <NeilB@earthling.net>
2491
2492 * cpplex.c (_cpp_lex_line): Maintain PREV_WHITESPACE flag
2493 when removing escaped newlines. Reverse sense of test for
2494 escaped newline.
2495
2496 2000-05-09 Richard Henderson <rth@cygnus.com>
2497
2498 * flow.c (find_basic_blocks_1): Do not delete the first
2499 bb_note we run across.
2500 (create_basic_block): Use reorder_insns to move an existing
2501 bb_note to the correct place.
2502
2503 2000-05-09 Richard Henderson <rth@cygnus.com>
2504
2505 * calls.c (expand_call): Increment currently_expanding_call
2506 before calling optimize_tail_recursion.
2507
2508 Tue May 9 18:54:16 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2509
2510 * reload1.c (reload_combine): Fix errors in last change.
2511
2512 2000-05-09 Zack Weinberg <zack@wolery.cumb.org>
2513
2514 * gcc.c (used_arg): Skip over a semicolon at the end of the
2515 split-up loop; don't break out of it.
2516
2517 * Makefile.in (WARN_CFLAGS): Add -Wwrite-strings.
2518 (tree.o): Depend on output.h.
2519
2520 * c-decl.c (pending_invalid_xref_file,
2521 current_function_prototype_file): Constify.
2522 (pushdecl): Constify a local char *.
2523 (define_label): Constify filename parameter.
2524 * c-lex.c (init_parse): Constify parameter and return value.
2525 * c-typeck.c (c_expand_asm_operands): Constify filename parameter.
2526 * c-tree.h: Update prototypes.
2527 * c-parse.in: Constify filename member of %union, and if_stmt_file.
2528 * c-parse.y, c-parse.c, c-parse.h, objc/objc-parse.y,
2529 objc/objc-parse.c: Regenerate.
2530
2531 * dwarfout.c (dwarfout_init): Constify main_input_filename parameter.
2532 * dwarfout.h: Update prototypes.
2533 * expr.c (expand_expr): Constify a local char *.
2534 * flags.h: Constify main_input_filename.
2535 * function.c (expand_function_end): Constify filename parameter.
2536 * genrecog.c (make_insn_sequence): Use a character array for
2537 c_test_pos.
2538 (main): Remove unused variables.
2539 * input.h: Constify input_filename, main_input_filename, and
2540 file_stack.name. Update prototypes.
2541 * output.h: Declare first_global_object_name and
2542 weak_global_object_name here, as const char *.
2543 * stmt.c (expand_asm_operands): Constify filename parameter.
2544 * toplev.c (compile_file, push_srcloc, debug_start_source_file):
2545 Constify filename parameter.
2546 (input_filename, main_input_filename): Constify.
2547 * toplev.h: Update prototypes.
2548 * tree.c: Include output.h. Don't declare
2549 first_global_object_name or weak_global_object_name. Clean up string
2550 bashing in get_file_function_name_long.
2551 * tree.h (struct tree_decl): Constify filename member.
2552 (input_filename): Constify.
2553 Update prototypes.
2554 * varasm.c (first_global_object_name, weak_global_object_name):
2555 Constify.
2556 (assemble_start_function, assemble_variable): Clean up string bashing.
2557
2558 * gcc.c: Constify all spec-related strings initialized,
2559 transitively, from string constants. Constify all strings
2560 and string variables related to multilibs.
2561 (set_spec, read_specs): Cast argument to free to PTR.
2562 (used_arg): Do not modify multilib_matches. Use strncmp plus
2563 length comparison to compare multilib switches.
2564 * genmultilib: Constify everything declared in multilib.h.
2565
2566 Tue May 9 22:28:03 2000 Denis Chertykov <denisc@overta.ru>
2567
2568 * flow.c (flow_delete_insn): Use INSN_DELETED_P for marking insn
2569 as deleted.
2570
2571 Tue May 9 20:52:43 2000 Denis Chertykov <denisc@overta.ru>
2572
2573 * config/avr/avr-protos.h (extra_constraint): change a type of
2574 second argument from char to int to avoid warnings.
2575 (asm_output_byte): Likewise.
2576
2577 * config/avr/avr.c (MAX_LD_OFFSET) New macro.
2578 (initial_elimination_offset): Handle elimination from
2579 FRAME_POINTER_REGNUM to STACK_POINTER_REGNUM.
2580 (legitimate_address_p): Use MAX_LD_OFFSET.
2581 (legitimize_address): Likewise.
2582 (out_movqi_r_mr): Likewise.
2583 (out_movhi_r_mr): Likewise, use `fatal_insn' instead of `fatal'.
2584 (out_movsi_r_mr): Use MAX_LD_OFFSET.
2585 (out_movsi_mr_r): Likewise.
2586 (out_movqi_mr_r): Likewise.
2587 (out_movhi_mr_r): Likewise.
2588 (notice_update_cc): Correct CC for the ashrqi3 with the shift
2589 count as CONST_INT != 6.
2590 (ashlqi3_out): Coding style modifications. Run `fatal_insn' if
2591 shift count is a CONSTANT_P, but not a CONST_INT.
2592 (ashlhi3_out): Coding style modifications.
2593 (ashlsi3_out): Likewise.
2594 (ashrhi3_out): Likewise.
2595 (ashrsi3_out): Likewise.
2596 (lshrhi3_out): Likewise.
2597 (lshrsi3_out): Likewise.
2598 (ashrqi3_out): Generate shift for any known constant count without
2599 scratch register. Run `fatal_insn' if shift count is a CONSTANT_P,
2600 but not a CONST_INT.
2601 (lshrqi3_out): Coding style modifications. Run `fatal_insn' if
2602 shift count is a CONSTANT_P, but not a CONST_INT.
2603 (extra_constraint): change a type of
2604 second argument from char to int to avoid warnings.
2605 (asm_output_byte): Likewise.
2606 (asm_file_end): Output size generated commands count as a hex
2607 number too.
2608
2609 * config/avr/avr.h (RETURN_ADDR_RTX): New macro.
2610
2611 * config/avr/avr.md (addhi3): Fragment commented by &&0 is
2612 removed.
2613 (ashlqi3): Values of "length" attribute changed. Shift count
2614 uses constraints 'n' instead of 'i'.
2615 (ashrqi3): Likewise. Values of "cc" attribute changed. Generate
2616 shifts without clobber register.
2617 (lshrqi3): Shift count uses constraints 'n' instead of 'i'.
2618 (call_insn): Correct test for which_alternative == 1 (was 0).
2619 (call_value_insn): Likewise.
2620
2621 * config/avr/t-avr: Remove definition of FLOAT while generates
2622 fp-bit.c
2623
2624 2000-05-09 Bruce Korb <bkorb@gnu.org>
2625
2626 * fixinc/check.tpl: Template for checking fixes
2627 * fixinc/inclhack.def: Added 'test_text' for many fixes
2628 disable hpux8_bogus_inlines on SCO
2629 * fixinc/fixinc.sco: Oh, yes, we don't need this any more.
2630
2631 Tue May 9 16:30:27 MET DST 2000 Jan Hubicka <jh@suse.cz>
2632
2633 * calls.c (expand_call): Reorganize somewhat in order
2634 to avoid unnecesary recalculation inside loop and make
2635 tail call failure code cleaner.
2636
2637 Tue May 9 06:30:20 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2638
2639 * alias.c (nonlocal_reference_p): Minor reformatting.
2640 * reload.c (find_equiv_reg): Simplify logic for
2641 CALL_INSN_FUNCTION_USAGE since can't have SUBREG or pseudos and
2642 some some reformatting.
2643 * reload1.c (reload_combine): Don't assume everything in
2644 CALL_INSN_FUNCTION_USAGE is a REG and clean up code a bit.
2645
2646 2000-05-08 Richard Henderson <rth@cygnus.com>
2647
2648 * final.c (current_insn_predicate): New.
2649 (final_scan_insn): Set it.
2650 * output.h (current_insn_predicate): Declare.
2651
2652 * ifcvt.c (cond_exec_process_insns): New argument prob_val.
2653 Attach it to call insns.
2654 (cond_exec_process_if_block): Track probability for true and
2655 false branches.
2656 (dead_or_predicable): Likewise.
2657
2658 * predict.c (PROB_NEVER, PROB_VERY_UNLIKELY): New.
2659 (PROB_UNLIKELY, PROB_EVEN, PROB_LIKELY): New.
2660 (PROB_VERY_LIKELY, PROB_ALWAYS): New.
2661 (estimate_probability, expected_value_to_br_prob): Use them.
2662
2663 * config/ia64/ia64-protos.h (ia64_expand_prediction): Declare.
2664 * config/ia64/ia64.c (ia64_print_operand_address): Handle 'j'.
2665 (ia64_expand_prediction): New.
2666 (emit_insn_group_barriers): Don't look at notes. Emit barriers
2667 as needed after calls.
2668 (ia64_epilogue_uses): Mark b0 used.
2669 * config/ia64/ia64.md (beq_true, beq_false): Remove.
2670 (bne_true, bne_false): Remove.
2671 (eq_return, eq_not_return, ne_return, ne_not_return): Remove.
2672 (br_true, br_false): New. Use predicate_operator and
2673 ia64_expand_prediction.
2674 (return_true, return_false): Likewise.
2675 (call_internal): Use ia64_expand_prediction. Don't emit stop bit.
2676 (call_internal1, call_value_internal): Likewise.
2677 (call_value_internal1, call_multiple_values_internal1): Likewise.
2678
2679 * config/ia64/ia64.c (ia64_direct_return): Require frame size zero.
2680
2681 * config/ia64/ia64.md (extendsfdf2): Split only after reload.
2682
2683 2000-05-08 Richard Henderson <rth@cygnus.com>
2684
2685 * rtlanal.c (may_trap_p): Consider old-style and volatile
2686 asms to trap.
2687
2688 Mon May 8 17:16:48 2000 Jim Wilson <wilson@cygnus.com>
2689
2690 * config/ia64/ia64.h (RETURN_ADDR_RTX): Use COUNT not count.
2691
2692 2000-05-08 Richard Henderson <rth@cygnus.com>
2693
2694 * config/ia64/ia64.h (predicate_operator): Declare.
2695
2696 * config/ia64/ia64.md (extendsfdf2): Split the nop case out
2697 of existance.
2698
2699 * gensupport.c (process_rtx): Copy and post-process each member
2700 of the define_insn rtvec individually.
2701
2702 Mon 8 May 22:17:35 2000 Neil Booth <NeilB@earthling.net>
2703
2704 * cpplex.c (spell_token): New function.
2705 (TOKEN_LEN): Add 1 for whitespace.
2706 (_cpp_lex_file): Update to use spell_token.
2707 * cpplib.h (E): Remove.
2708 (TTYPE_TABLE): Update CPP_VSPACE entry.
2709
2710 2000-05-08 Richard Henderson <rth@cygnus.com>
2711
2712 * flow.c (init_propagate_block_info): Watch out for conditional
2713 branch to next instruction, and thus one outgoing edge.
2714
2715 * config/ia64/ia64.c (ia64_encode_section_info): Exit early
2716 for global register variables; don't special case __[CD]TOR_LIST__;
2717 mind ggc_p for string allocation.
2718
2719 2000-05-08 Nick Clifton <nickc@cygnus.com>
2720
2721 * config/i386/i386.h (ELIMINABLE_REGS): Fix comment.
2722
2723 2000-05-08 Bruce Korb <bkorb@gnu.org>
2724
2725 * fixinc/mkfixinc.sh: fixinc.sco is no longer used
2726 i?86-*-msdosdjgpp* no longer uses fixincludes
2727 * fixinc/genfixes: inclhack.sh and fixincl.sh are no longer generated
2728 * fixinc/inclhack.sh: deleted
2729 * fixinc/hackshell.tpl: deleted
2730 * fixinc/inclhack.tpl: deleted
2731 * fixinc/Makefile.in: Remove dependencies on above
2732 * fixinc/fixincl.sh: "DO NOT EDIT" text modified
2733
2734 2000-05-08 Andreas Jaeger <aj@suse.de>
2735
2736 * config/mips/linux.h: Remove undefines which disabled .ctor/.dtor
2737 support.
2738
2739 2000-05-07 Zack Weinberg <zack@wolery.cumb.org>
2740
2741 * Makefile.in (LOOSE_CFLAGS): Add /g modifiers to both sed
2742 substitutions.
2743
2744 Sun 7 May 08:43:53 2000 Neil Booth <NeilB@earthling.net>
2745
2746 * cpplex.c: Move new lexer definitions and prototypes
2747 to top. Conditional include these and the code if
2748 NEW_LEXER is defined. Rename functions whose names
2749 clash if this code included.
2750
2751 Sun May 7 00:54:57 EDT 2000 John Wehle (john@feith.com)
2752
2753 * rtl.def (COND_EXEC): Clarify.
2754
2755 * i386.md (extendsidi2): Clobber (reg:CC 17) in the
2756 same fashion as zero_extendsidi2.
2757
2758 2000-05-06 Richard Henderson <rth@cygnus.com>
2759
2760 * config/ia64/ia64.c (predicate_operator): New.
2761 (ia64_print_operand): Handle 'J'.
2762 (rtx_needs_barrier): Handle COND_EXEC.
2763 * config/ia64/ia64.h (BRANCH_COST): Define.
2764 (PREDICATE_CODES): Update.
2765 * config/ia64/ia64.md: Docuement used unspec values.
2766 (attr predicable): New.
2767 (movxf, movxf_internal): New.
2768 (extendsfdf2): Don't comment out nop.
2769 (floatdidf2): Remove.
2770 (truncxfsf2, truncxfdf2, floatdixf2): New.
2771 (abssi2, absdi2): Put the neg in the "true" slot.
2772 (conditional branch instructions): Mark not predicable.
2773 (cmov*_internal): Use predicate_operator. Split to cond_exec.
2774 (abs*_internal): Likewise.
2775 (alloc, set_bsp): Mark not predicable.
2776 (barrier, insn_group_barrier, flush_cache): Likewise.
2777 (define_cond_exec): New.
2778
2779 2000-05-06 Richard Henderson <rth@cygnus.com>
2780
2781 * c-decl.c: Include "tm_p.h".
2782
2783 * config/ia64/ia64-protos.h: Rearrange decls to reduce ifdef madness.
2784 (fetchadd_operand, ia64_expand_fetch_and_op): Declare.
2785 (ia64_expand_op_and_fetch): Declare.
2786 * config/ia64/ia64.c: Include "toplev.h". Kill trailing whitespace.
2787 (setjmp_operand): Constify variables for XSTR.
2788 (ia64_encode_section_info): Likewise.
2789 (ia64_print_operand): Use %d for exact_log2; cast 32-bit printed
2790 values to int.
2791 (ia64_asm_output_external): Constify name.
2792 (process_set): Use HOST_WIDE_INT_PRINT_DEC for frame size.
2793 (process_for_unwind_directive): Provide switch default.
2794 (ia64_expand_compare_and_swap): Remove unused variables.
2795 (ia64_expand_builtin): Likewise.
2796 * config/ia64/ia64.h (ASM_OUTPUT_BYTE): Mask and cast value to int
2797 for printing.
2798
2799 * config/ia64/ia64.c (sdata_symbolic_operand): Mark unused args.
2800 (symbolic_operand, function_operand, setjmp_operand): Likewise.
2801 (shift_count_operand, shift_32bit_count_operand): Likewise.
2802 (shladd_operand, fetchadd_operand, ia64_function_prologue): Likewise.
2803 (ia64_function_epilogue, ia64_setup_incoming_varargs): Likewise.
2804 (ia64_function_arg_partial_nregs, ia64_function_value): Likewise.
2805 (ia64_print_operand_address, ia64_secondary_reload_class): Likewise.
2806 (ia64_expand_builtin): Likewise.
2807 (call_multiple_values_operation): Make dest_regno unsigned.
2808
2809 2000-05-06 Richard Henderson <rth@cygnus.com>
2810
2811 * rtl.def (DEFINE_COND_EXEC): New.
2812 * md.texi: Document it.
2813
2814 * gensupport.c (input_file): Remove.
2815 (struct queue_elem): Add lineno.
2816 (rtx_ready_queue): Remove.
2817 (errors): New.
2818 (predicable_default): New.
2819 (predicable_true, predicable_false): New.
2820 (define_attr_queue, define_attr_tail): New.
2821 (define_insn_queue, define_insn_tail): New.
2822 (define_cond_exec_queue, define_cond_exec_tail): New.
2823 (other_queue, other_tail): New.
2824 (queue_pattern): New.
2825 (process_rtx): Add patterns to the appropriate queues.
2826 (is_predicable, identify_predicable_attribute): New.
2827 (n_alternatives, collect_insn_data): New.
2828 (alter_predicate_for_insn, alter_test_for_insn): New.
2829 (shift_output_template, alter_output_for_insn): New.
2830 (process_one_cond_exec, process_define_cond_exec): New.
2831 (init_md_reader): Read the entire file. Process define_cond_exec.
2832 (read_md_rtx): Return elements from the queues.
2833
2834 2000-05-06 Richard Henderson <rth@cygnus.com>
2835
2836 * flow.c (mark_set_1): Don't update conditional life info
2837 if the register is not_dead.
2838
2839 2000-05-06 Zack Weinberg <zack@wolery.cumb.org>
2840
2841 * Makefile.in (STAGESTUFF): Add genrtl.c and genrtl.h.
2842 (mostlyclean): Also delete fixincl, fixinc.sh, and
2843 specs.ready, and make clean in the fixinc subdir.
2844
2845 2000-05-06 Richard Henderson <rth@cygnus.com>
2846
2847 * Makefile.in (gensupport.o): Compile for the host.
2848 (host-prefix gensuuprt.o): Remove.
2849 (genflags.o): Depend on gensupport.h and OBSTACK_H.
2850 (genattrtab.o): Likewise.
2851 (gencodes.o): Depend on gensupport.h.
2852 (genemit.o, genopinit.o, genrecog.o, genextract.o): Likewise.
2853 (genpeep.o, genattr.o, genoutput.o): Likewise.
2854
2855 * gensupport.c (obstack, rtl_obstack): New.
2856 (init_md_reader): Initialize rtl_obstack.
2857 * gensupport.h (rtl_obstack): Declare.
2858 (message_with_line): Declare.
2859
2860 * genattr.c: Remove all traces of obstack manipulation.
2861 * gencodes.c, genconfig.c, genemit.c, genextract.c: Likewise.
2862 * genopinit.c, genoutput.c, genpeep.c, genrecog.c: Likewise.
2863
2864 * genattrtab.c (obstack, rtl_obstack): Remove.
2865 (main): Don't init rtl_obstack.
2866 * genflags.c: Likewise.
2867
2868 * genrecog.c (message_with_line): Move ...
2869 * gensupport.c: ... here.
2870
2871 2000-05-06 Richard Henderson <rth@cygnus.com>
2872
2873 * c-typeck.c (build_c_cast): Remove dead code.
2874
2875 2000-05-06 Richard Henderson <rth@cygnus.com>
2876
2877 * flow.c (split_edge): Don't allocate global_live_at_start for
2878 the new block unless the old blocks had them as well.
2879
2880 * flow.c (mark_set_1): Respect not_dead when updating reg_live.
2881
2882 * ifcvt.c (noce_process_if_block): Don't use an insn_b from
2883 test_bb if a or b uses x.
2884
2885 2000-05-06 Zack Weinberg <zack@wolery.cumb.org>
2886
2887 * cpphash.h: Remove conditional #define of __extension__.
2888 * rtl.h: Add __extension__ to RTL_CHECK1, RTL_CHECK2,
2889 RTL_CHECKC1, RTL_CHECKC2, and RTVEC_ELT macros
2890 (ENABLE_RTL_CHECKING only).
2891 * tree.h: Add __extension__ to TREE_CHECK, TREE_CLASS_CHECK,
2892 CST_OR_CONSTRUCTOR_CHECK, and EXPR_CHECK macros
2893 (ENABLE_TREE_CHECKING only).
2894 * varray.h: Add __extension__ to VARRAY_CHECK macro
2895 (ENABLE_CHECKING only).
2896
2897 2000-05-06 Richard Earnshaw (reanrsha@arm.com)
2898
2899 Use new tail-calling mechanism on ARM.
2900 * arm.md (sibcall, sibcall_value): New expands.
2901 (sibcall_insn, sibcall_value_insn, sibcall_epilogue): New insns.
2902 (tailcalling peepholes): Delete.
2903 (push_multi): Simplify.
2904 * arm.c (lr_save_eliminated): Delete definition.
2905 (pattern_really_clobbers_lr, function_really_clobbers_lr): Delete.
2906 (output_return_instruction): Remove checks on lr_save_eliminated.
2907 (output_arm_prologue): Remove old tail-calling code.
2908 (arm_output_epilogue): New parameter, really_return. All callers
2909 changed. Handle tail-calling epilogues.
2910 * arm.h (lr_save_eliminated): Delete declaration.
2911 (frame_pointer_needed): Delete declaration.
2912 * arm-protos.h (arm_output_epilogue): Adjust prototype.
2913
2914 * arm.md (is_thumb): Examine symbol thumb_code, not expression
2915 TARGET_ARM.
2916 * arm.c (thumb_code): Define it.
2917 (arm_override_options): Set it.
2918 * arm.h (thumb_code): Declare it.
2919
2920 2000-05-06 Richard Earnshaw (reanrsha@arm.com)
2921
2922 * arm-protos.h (arm_dllexport_name_p, arm_dllimport_name_p): Constify.
2923
2924 2000-05-06 Richard Earnshaw (reanrsha@arm.com)
2925
2926 * arm.c (arm_gen_load_multiple, arm_gen_store_mulitple): Don't add
2927 bogus clobber to insns.
2928 (load_multiple_operation, store_mulitple_operation): Don't check
2929 for it.
2930 * arm.md (ldmsi_postinc, stmsi_postinc): Adjust accordingly.
2931
2932 * arm.md (and_scc, ior_scc): Add missing mode.
2933
2934 * arm.md (call_value_symbol): Remove predicate from op2.
2935
2936 * arm.h (SPECIAL_MODE_PREDICATES): Define.
2937
2938 Sat May 6 06:25:56 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2939
2940 * expr.c (get_subtarget): New function.
2941 (force_operand, expand_expr, do_store_flag): Use it.
2942
2943 * toplev.c (compile_file): Don't take strlen of NAME if null.
2944
2945 2000-05-06 David Edelsohn <edelsohn@gnu.org>
2946
2947 * xcoffout.c (xcoff_current_include_file,
2948 xcoff_current_function_file, xcoff_lastfile): Constify char *.
2949 (xcoffout_source_file, xcoffout_source_line): Make filename 'const
2950 char *'.
2951 (xcoffout_declare_function): Make name 'const char *'.
2952 (xcoffout_end_epilogue): Make fname 'const char *'
2953 * xcoffout.h (xcoff_current_include_file, xcoff_lastfile,
2954 xcoffout_declare_function, xcoffout_source_line): Match above.
2955
2956 * aix43.h (SUBTARGET_OVERRIDE_OPTIONS): -mpowerpc64 without
2957 -maix64 is error.
2958 * rs6000.c (print_operand): Fix lossage typo.
2959 (output_cbranch): Remove "cr" decoration for now.
2960 * rs6000.h (ASM_OUTPUT_DEF_FROM_DECLS): Make alias 'const char *'.
2961
2962 Sat May 6 06:55:32 2000 Denis Chertykov <denisc@overta.ru>
2963
2964 * config/avr/avr.c (out_shift_with_cnt): Bugfix for shift by
2965 constant count.
2966
2967 2000-05-05 Bruce Korb <bkorb@gnu.org>
2968
2969 * fixinc/genfixes: Improve the matching for make target names
2970
2971 2000-05-05 Catherine Moore <clm@cygnus.com>
2972
2973 * c-common.c (decl_attributes): For TYPE_DECLs attach the
2974 attribute to the decl.
2975 * c-decl.c (pushdecl): Propagate the USED attribute to the
2976 type copy.
2977
2978 2000-05-05 Richard Henderson <rth@cygnus.com>
2979
2980 * rtlanal.c (reg_overlap_mentioned_p): Treat parallels in the
2981 same way emit_group_load does.
2982
2983 2000-05-05 Mark Elbrecht <snowball3@bigfoot.com>
2984
2985 * gcc.c (set_input) [HAVE_DOS_STYLE_FILE_SYSTEM]: Skip drive name.
2986
2987 * toplev.c (output_file_directive): Use IS_DIR_SEPARATOR.
2988 (main): Likewise.
2989
2990 2000-05-05 Rodney Brown <RodneyBrown@mynd.com>
2991
2992 * pa.h (FUNCTION_ARG_ADVANCE): Warning removal.
2993
2994 Fri May 5 10:29:21 2000 Marc Espie <espie@cvs.openbsd.org>
2995
2996 * config/openbsd.h (LINK_SPEC): pass correct flags to ld
2997 to support -shared, on platforms with dynamic libraries.
2998
2999 Fri May 5 10:27:06 2000 Philippe De Muyter <phdm@macqel.be>
3000
3001 * system.h (S_ISBLK): Provide fallback definition.
3002
3003 2000-05-05 Geoff Berry <geoffb@bops.com>
3004
3005 * extend.texi (Extended Asm): Document inability to give asm
3006 statements access to condition codes.
3007
3008 2000-05-05 Marek Michalkiewicz <marekm@linux.org.pl>
3009
3010 * varasm.c (asm_emit_uninitialised): Use 0, not NULL
3011 as arg 2 of UNIQUE_SECTION.
3012
3013 Fri May 5 10:11:41 2000 Jeffrey A Law (law@cygnus.com)
3014
3015 * predict.c: Remove May 4 change.
3016 * bb-reorder.c (make_reorder_chain): Do not perform block movement
3017 if we have predicted the branch at 50-50 probability.
3018
3019 2000-05-05 Richard Henderson <rth@cygnus.com>
3020
3021 * flow.c (init_propagate_block_info): Fix merge error
3022 in HAVE_conditional_execution code.
3023
3024 Fri May 5 07:43:50 2000 Denis Chertykov <denisc@overta.ru>
3025
3026 * config/avr/avr.c (out_shift_with_cnt): Genetare a more optimal
3027 shift cycle for unknown shift count. Also generates dec + brpl.
3028 (ashlqi3_out): Don't generate dec + brpl which now generates by
3029 `out_shift_with_cnt'.
3030 (ashlhi3_out): Likewise.
3031 (ashlsi3_out): Likewise.
3032 (ashrqi3_out): Likewise.
3033 (ashrhi3_out): Likewise.
3034 (ashrsi3_out): Likewise.
3035 (lshrqi3_out): Likewise.
3036 (lshrhi3_out): Likewise.
3037 (lshrsi3_out): Likewise.
3038
3039 2000-05-04 Mark Elbrecht <snowball3@bigfoot.com>
3040
3041 * gcc.c (free_split_directories): Correct typo in explanation
3042 of make_relative_prefix.
3043
3044 2000-05-04 Geoff Keating <geoffk@cygnus.com>
3045
3046 * config/rs6000/rs6000.h (PREDICATE_CODES): Add floating-point
3047 comparison codes to branch_comparison_operator.
3048
3049 2000-05-04 Richard Henderson <rth@cygnus.com>
3050
3051 * ifcvt.c (noce_process_if_block): Always reset X in the A == B case.
3052
3053 2000-05-04 Richard Henderson <rth@cygnus.com>
3054
3055 * Makefile.in (FPBIT_FUNCS): Remove _df_to_usi.
3056 (DPBIT_FUNCS): Remove _sf_to_usi.
3057 (stmp-multilib): Pass LIB1ASMSRC to libgcc.mk.
3058
3059 * ifcvt.c (noce_process_if_block): Fail if A or B modified
3060 between condition and jump.
3061
3062 * libgcc2.c (near eh_context_specific): Comment #endif string.
3063 * longlong.h: Don't use strings with embedded newlines.
3064
3065 2000-05-04 Geoff Keating <geoffk@cygnus.com>
3066
3067 * config/rs6000/rs6000-protos.h: Add output_cbranch.
3068 * config/rs6000/rs6000.c (ccr_bit_negated_p): Delete.
3069 (print_operand): Delete %t and %T codes.
3070 (output_cbranch): New function. Support branch prediction.
3071 * config/rs6000/rs6000.md: Use output_cbranch for
3072 conditional branches and returns.
3073
3074 2000-05-04 Jason Merrill <jason@casey.cygnus.com>
3075
3076 * simplify-rtx.c (simplify_ternary_operation): Cast to unsigned.
3077 * stor-layout.c (place_field): Likewise.
3078 * integrate.h (struct inline_remap): Make regno_pointer_align unsigned.
3079 * expr.c (store_expr): Make align unsigned.
3080 * explow.c (plus_constant_wide): Make low words unsigned.
3081 * expmed.c (choose_multiplier): Likewise.
3082 * fold-const.c (fold): Likewise.
3083 * tree.h (build_int_2): Likewise.
3084 * tree.c (build_int_2_wide, tree_int_cst_msb): Likewise.
3085 * emit-rtl.c (gen_reg_rtx): Add cast to unsigned char*.
3086 (init_emit): Change cast to unsigned char*.
3087 * varasm.c (compare_constant_1): Add cast to char*.
3088 * gcse.c (delete_null_pointer_checks): Change cast to unsigned int*.
3089 * reload1.c (reload): Likewise.
3090
3091 * rtl.h (MEM_SET_IN_STRUCT_P): Use do { } while (0).
3092
3093 Thu May 4 14:37:23 2000 Jeffrey A Law (law@cygnus.com)
3094
3095 * predict.c (estimate_probability): If no prediction was found, then
3096 predict the successor that is the next physical block (if such a
3097 successor exists).
3098
3099 2000-05-04 Richard Henderson <rth@cygnus.com>
3100
3101 * config/alpha/t-alpha (LIB2FUNCS_EXTRA): Use qrrnd.asm in place.
3102
3103 2000-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3104
3105 * system.h: Don't wrap <sys/types.h> with HAVE_SYS_TYPES_H.
3106
3107 2000-05-04 Mumit Khan <khan@xraylith.wisc.edu>
3108
3109 * i386/cygwin.h (CPP_PREDEFINES): Don't define __STDC__. Move
3110 attribute macros from here ...
3111 (CPP_SPEC): to here.
3112 * i386/mingw32.h (CPP_PREDEFINES): Likewise.
3113 (CPP_SPEC): Likewise.
3114 * i386/crtdll.h (CPP_PREDEFINES): Delete attribute macros.
3115
3116 * Makefile.in ($(HOST_PREFIX_1)gensupport.o): Add build rule.
3117 (libgcc.a): Pass LIB1ASMSRC to libgcc.mk.
3118
3119 2000-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3120
3121 * bb-reorder.c (get_next_bb_note, get_prev_bb_note): Prototype.
3122
3123 * diagnostic (vbuild_message_string, build_message_string,
3124 build_location_prefix, output_get_prefix, init_output_buffer,
3125 output_notice, vline_wrapper_message_with_location,
3126 v_message_with_decl, default_print_error_function): De-constify.
3127 (set_real_maximum_length): Prototype.
3128
3129 * diagnostic.h (struct output_buffer, init_output_buffer,
3130 output_get_prefix, output_set_prefix): De-constify.
3131
3132 * function.c (init_function_start): Constify.
3133
3134 * gensupport.c (remove_constraints, process_rtx): Prototype.
3135
3136 * gthr-posix.h: Indent uses of #pragma.
3137
3138 * objc/objc-act.c (ggc_mark_imp_list, ggc_mark_hash_table):
3139 Prototype.
3140
3141 * predict.c (find_expected_value): Delete prototype.
3142 (expected_value_to_br_prob): Initialize variable `ev_reg'.
3143
3144 * sbitmap.h (debug_sbitmap): Prototype.
3145
3146 * ssa.c (compute_coalesced_reg_partition): Prototype.
3147
3148 * stor-layout.c (debug_rli): Prototype.
3149
3150 * tree.h (round_down): Prototype.
3151 (init_function_start): Constify.
3152
3153 2000-05-04 Zack Weinberg <zack@wolery.cumb.org>
3154
3155 * cpphash.h: #define __extension__ away if GCC_VERSION < 2095
3156 (overly conservative). Change extern inline wrappers to
3157 static inline, define them always, use PARAMS properly.
3158 * cpplex.c (_cpp_get_directive_token): Don't issue pedantic
3159 whitespace warnings for \f and \v at the beginning of a line.
3160
3161 Thu May 4 10:03:50 2000 Jeffrey A Law (law@cygnus.com)
3162
3163 * haifa-sched.c (schedule_insns): Free the flow edge list when it
3164 is no longer needed
3165
3166 2000-05-04 Bruce Korb <bkorb@gnu.org>
3167
3168 * fixincl/inclhack.def: added broken_cabs -
3169 Remove `extern double cabs' declarations from math.h
3170 * fixincl/inclhack.sh: regen
3171 * fixincl/fixincl.x: regen
3172 * fixincl/fixincl.c: Remove BOGOSITY code
3173 * fixincl/mkfixinc.sh: Remove code for installing "shell" version
3174
3175 Thu May 4 09:45:12 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
3176
3177 * rtl.h (MEM_COPY_ATTRIBUTES): Also copy RTX_UNCHANGING_P and
3178 MEM_ALIAS_SET.
3179 * alias.c (canon_rtx): Don't copy RTX_UNCHANGING_P or MEM_ALIAS_SET
3180 when calling MEM_COPY_ATTRIBUTES.
3181 * emit-rtl.c (operand_subword, change_address): Likewise.
3182 * explow.c (stabilize): Likewise.
3183 * expr.c (protect_from_queue, emit_move_insn_1): Likewise.
3184 * integrate.c (copy_rtx_and_substitute): Likewise.
3185 * combine.c (combine_simplify_rtx): Don't copy RTX_UNCHANGING_P
3186 when calling MEM_COPY_ATTRIBUTES.
3187 (make_extraction, simplify_shift_const, gen_lowpart_for_combine):
3188 Likewise.
3189 * cse.c (gen_lowpart_if_possible): Likewise.
3190 * function.c (fixup_var_refs_1, purge_addressof_1): Likewise.
3191 * optabs.c (gen_move_insn): Likewise.
3192 * recog.c (validate_replace_rtx_1): Likewise.
3193 * simplify-rtx.c (add_mem_for_addr): Likewise.
3194 * stmt.c (expand_anon_union_decl): Likewise.
3195 * config/arm/arm.md: Likewise.
3196 * config/h8300/h7300.c (fix_bit_operand): Likewise.
3197 * config/m88k/m88k.c (legitimize_address, block_move_loop): Likewise.
3198 (block_move_no_loop, block_move_sequence): Likewise.
3199 * config/rs6000/rs6000.c (expand_block_move_mem): Likewise.
3200 * config/alpha/alpha.c (get_aligned_mem): Likewise.
3201 Clear MEM_ALIAS_SET.
3202 * final.c (alter_subreg): Don't copy MEM_ALIAS_SET when calling
3203 MEM_COPY_ATTRIBUTES.
3204
3205 2000-05-03 Robert Lipe <robertlipe@usa.net>
3206
3207 * configure.in (i[34567]86-*-isc*) [tmake_file]: Add t-i386bare
3208 to suppress libgcc1.
3209 (i[34567]86-*-sco3.2v5*) Likewise.
3210 (i[34567]86-*-sco3.2v4*) Likewise.
3211 (i[34567]86-*-sco) Likewise.
3212 (i[34567]86-*-solaris2) Likewise.
3213 (i[34567]86-*-sysv5*) Likewise.
3214 (i[34567]86-*-sysv4*) Likewise.
3215 (i[34567]86-*-udk*) Likewise.
3216 (i[34567]86-*-sysv*) Likewise.
3217
3218 2000-05-03 Zack Weinberg <zack@wolery.cumb.org>
3219
3220 * cpphash.h (U): New define, to correct type of string constants.
3221 (ustrcmp, ustrncmp, ustrlen, uxstrdup, ustrchr): New wrapper
3222 routines, to do casts when passing unsigned strings to libc.
3223 * cppexp.c, cppfiles.c, cpphash.c, cppinit.c, cpplib.c: Use them.
3224
3225 * cppfiles.c (_cpp_execute_include): Make filename an U_CHAR *.
3226 * cpphash.c (_cpp_quote_string): Make string an U_CHAR *.
3227 * cppinit.c (dump_special_to_buffer): Make macro name an U_CHAR *.
3228 * cpplex.c (parse_ifdef, parse_include, validate_else): Make
3229 second argument an U_CHAR *.
3230
3231 * cppinit.c (builtin_array): Make name and value U_CHAR *, add
3232 length field, clean up initializer.
3233 (ISTABLE): Add __extension__ to designated-
3234 initializers version.
3235 * cpplex.c (CHARTAB): Likewise.
3236
3237 * mbchar.c: Add dummy external declaration to the !MULTIBYTE_CHARS
3238 case so the file won't be empty.
3239
3240 Wed May 3 21:01:46 2000 Jason Eckhardt <jle@cygnus.com>
3241
3242 * bb-reorder.c (struct reorder_block_def): Member succ removed.
3243 (REORDER_BLOCK_SUCC): Removed.
3244 (enum reorder_skip_type): Removed.
3245 (skip_insns_between_block): Renamed to skip_insns_after_block.
3246 Removed second argument. Removed dead code and cleaned up.
3247 (make_reorder_chain): Removed use of REORDER_BLOCK_SUCC.
3248 (reorder_basic_blocks): Remove use of REORDER_SKIP_AFTER. Removed
3249 second parameter to skip_insns_after_block.
3250
3251 Wed May 3 13:29:54 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
3252
3253 * tree.c (staticp, case LABEL_DECL): New case.
3254
3255 2000-05-03 Richard Henderson <rth@cygnus.com>
3256
3257 * Makefile.in (start.encap): Do not depend on LIBGCC1.
3258
3259 * mklibgcc1.in: Fix typo last change.
3260
3261 2000-05-03 Jason Merrill <jason@casey.cygnus.com>
3262
3263 * Makefile.in (WARN_CFLAGS): Add -pedantic -Wno-long-long.
3264 (LOOSE_CFLAGS): New: CFLAGS without -pedantic and -Wtraditional.
3265 (GCC_CFLAGS): Use it.
3266 (LANG_FLAGS_TO_PASS): New: SUBDIR_FLAGS_TO_PASS with LOOSE_CFLAGS.
3267 * cp/Make-lang.in, java/Make-lang.in, f/Make-lang.in, ch/Make-lang.in,
3268 objc/Make-lang.in: Use it.
3269
3270 2000-05-03 Jason R Thorpe <thorpej@zembu.com>
3271
3272 * config/i386/i386.md (lshrqi2_cmpno): Use q not r in constraint.
3273
3274 2000-05-03 Richard Henderson <rth@cygnus.com>
3275
3276 * mklibgcc.in: Restrict OLDCC=GCC test to native. Equate
3277 LIBGCC1 empty with libgcc1.null.
3278
3279 Wed May 3 12:55:46 2000 Jim Wilson <wilson@cygnus.com>
3280
3281 * fold-const.c (extract_muldiv, case MAX_EXPR): Don't allow signedness
3282 change.
3283
3284 2000-05-03 Greg McGary <gkm@gnu.org>
3285
3286 * tree.h (tree_common): Add bounded_flag member. Remove
3287 inaccurate comment about number of remaining bits.
3288 (BOUNDED_INDIRECT_TYPE_P, BOUNDED_POINTER_TYPE_P,
3289 BOUNDED_REFERENCE_TYPE_P, MAYBE_BOUNDED_INDIRECT_TYPE_P,
3290 MAYBE_BOUNDED_POINTER_TYPE_P, MAYBE_BOUNDED_REFERENCE_TYPE_P,
3291 TREE_BOUNDED, TYPE_MAIN_VARIANTS_PHYSICALLY_EQUAL_P,
3292 TYPE_MAIN_PHYSICAL_VARIANT, TYPE_BOUNDED): New macros.
3293 (TYPE_QUAL_BOUNDED): New constant.
3294 (TYPE_QUALS): Handle bounded qualifier.
3295 (TREE_EXPR_QUALS, TREE_FUNC_QUALS): New macros.
3296 (TYPE_BOUNDED_VALUE, TYPE_BOUNDED_BASE, TYPE_BOUNDED_EXTENT,
3297 TYPE_BOUNDED_SUBTYPE, TYPE_UNBOUNDED_VARIANT, TYPE_POINTER_DEPTH,
3298 TYPE_AMBIENT_BOUNDEDNESS): New macros.
3299 (MAX_POINTER_DEPTH, VA_LIST_POINTER_DEPTH): New constants.
3300 (tree_type): Add pointer_depth member. Remove
3301 inaccurate comment about number of remaining bits.
3302 (DECL_POINTER_DEPTH): Add macro.
3303 (tree_decl): Add pointer_depth member.
3304
3305 Wed May 3 22:52:53 2000 Denis Chertykov <denisc@overta.ru>
3306
3307 * config/avr/avr-protos.h (test_hard_reg_class): Declared.
3308 * config/avr/avr.c (ashrhi3_out): optimized shift by 15.
3309 (lshrhi3_out): Likewise.
3310 (ashrsi3_out): bugfix in shift by 8.
3311 (test_hard_reg_class): New function.
3312 * config/avr/avr.md: Bugfix inside conditions in peepholes.
3313 (ashlhi3): removed define_expand of this pattern.
3314 (*ashlhi3_insn): renamed to ashlhi3.
3315 (ashlsi3): removed define_expand of this pattern.
3316 (*ashlsi3_insn): renamed to ashlsi3.
3317 (ashrqi3): removed define_expand of this pattern.
3318 (*ashrqi3_insn): renamed to ashrqi3.
3319 (ashrhi3): removed define_expand of this pattern.
3320 (*ashrhi3_insn): renamed to ashrhi3.
3321 (ashrsi3): removed define_expand of this pattern.
3322 (*ashrsi3_insn): renamed to ashrsi3.
3323 (lshrhi3): removed define_expand of this pattern.
3324 (*lshrhi3_insn): renamed to lshrhi3.
3325 (lshrsi3): removed define_expand of this pattern.
3326 (*lshrsi3_insn): renamed to lshrsi3.
3327
3328 2000-05-03 Rodney Brown <RodneyBrown@pmsc.com>
3329
3330 * config/mcore/mcore.c: Replacing inclusion of "stdio,h" with
3331 inclusion of "system.h".
3332
3333 Wed May 3 11:43:53 2000 Jim Wilson <wilson@cygnus.com>
3334
3335 * config/ia64/ia64.c (ia64_encode_section_info): Add check for
3336 TREE_ASM_WRITTEN.
3337
3338 2000-05-03 David Mosberger <davidm@hpl.hp.com>
3339
3340 * config/ia64/ia64.c (ia64_override_options): Force -mconstant-gp
3341 if -mauto-pic is on.
3342 (ia64_epilogue_uses): Mark "gp" (r1) as used by the epilogue if
3343 -mconstant-gp is in effect and function-descriptors are being used
3344 to make indirect calls.
3345 * config/ia64/ia64.h (MASK_CONST_GP): New macro.
3346 (MASK_AUTO_PIC): Ditto.
3347 (TARGET_CONST_GP): Ditto.
3348 (TARGET_AUTO_PIC): Ditto.
3349 (TARGET_SWITCHES): Add -mconstant-gp and -mauto-pic options.
3350 (ASM_OUTPUT_DOUBLE_INT): Don't generate @fptr() if -mauto-pic or
3351 -mno-pic is in effect.
3352 (ASM_OUTPUT_XDATA_DOUBLE_INT): Ditto.
3353 * config/ia64/ia64.md (movdi): Use gen_load_gprel64() if
3354 -mauto-pic is in effect.
3355 (gprel64_offset): New pattern.
3356 (load_gprel64): Ditto.
3357 (call): Handle -mauto-pic like -mno-pic (don't use fptr). If
3358 -mconstant-gp is in effect, no need to preserve gp around direct
3359 calls.
3360 (call_value): Ditto.
3361 * config/ia64/linux.h (PROFILE_BEFORE_PROLOGUE): Define.
3362 (FUNCTION_PROFILER): Define.
3363 * config/ia64/sysv4.h (ASM_OUTPUT_CONSTRUCTOR): Don't generate
3364 @fptr() directive when -mno-pic or -mauto-pic is in effect.
3365 (ASM_OUTPUT_DESTRUCTOR): Ditto.
3366
3367 2000-05-03 Richard Henderson <rth@cygnus.com>
3368
3369 * Makefile.in (STAGESTUFF): Add libgcc libgcc.mk.
3370 (libgcc1.null, libgcc1.cross, libgcc1.a): Remove targets.
3371 (libgcc1-asm.a, libgcc1.S, libgcc2.a): Remove targets.
3372 (mklibgcc, libgcc.mk): New targets.
3373 (libgcc.a): Use libgcc.mk.
3374 (stmp-multilib): Likewise.
3375 (stmp-multilib-sub): Remove.
3376 (mostlyclean): Don't delete libgcc2 temp files.
3377 * configure.in (AC_PROG_CC_C_O): Add.
3378 (NO_MINUS_C_MINUS_O): Substitute it.
3379 (all_outputs): Add mklibgcc.
3380 * mklibgcc.in: New file.
3381
3382 2000-05-03 Jason Merrill <jason@casey.cygnus.com>
3383
3384 * cppexp.c (op_t): Make an int.
3385
3386 * rtlanal.c (dead_or_set_regno_p): Remove unused variable.
3387
3388 * varasm.c (initializer_constant_valid_p): Fix parenthesis.
3389
3390 * gensupport.c (process_rtx): Fix macros used.
3391
3392 2000-05-03 Richard Henderson <rth@cygnus.com>
3393
3394 * flow.c (propagate_one_insn): Also don't PROP_REG_INFO for
3395 call-clobbered registers of a call.
3396
3397 Wed May 3 12:40:53 2000 Clinton Popetz <cpopetz@cygnus.com>
3398
3399 * gensupport.c: New file.
3400 * gensupport.h: New file.
3401 * Makefile.in (HOST_RTL): Depend on gensupport.
3402 (gensupport.o) New rule.
3403 * genattr.c: Use gensupport for reading .md files.
3404 * genattrtab.c: Ditto.
3405 * gencodes.c: Ditto.
3406 * genconfig.c: Ditto.
3407 * genemit.c: Ditto.
3408 * genextract.c: Ditto.
3409 * genflags.c: Ditto.
3410 * genopinit.c: Ditto.
3411 * genoutput.c: Ditto.
3412 * genpeep.c: Ditto.
3413 * genrecog.c: Ditto.
3414 * rtl.def (define_insn_and_split): New DEF_RTL_EXPR.
3415 * md.texi (Insn Splitting): Document define_insn_and_split.
3416
3417 Tue May 2 00:20:30 2000 Jason Eckhardt <jle@cygnus.com>
3418
3419 * flow.c (verify_flow_info): Added two more sanity checks. The
3420 first checks that the blocks are numbered consecutively. The second
3421 checks that n_basic_blocks is actually equal to the number of
3422 basic blocks in the insn chain.
3423
3424 2000-05-03 Zack Weinberg <zack@wolery.cumb.org>
3425
3426 * cpplib.h: Add accessor macros for token lists.
3427 * cpplib.c, cpphash.c, cpplex.c: Use them.
3428
3429 Wed May 3 09:29:17 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
3430
3431 * expr.c (expand_expr, case COMPONENT_REF): Don't check for checking
3432 memory usage if not in a function.
3433 * varasm.c (initializer_constant_valid_p, case ADDR_EXPR): Only
3434 return address if static.
3435
3436 Wed May 3 13:14:49 MET DST 2000 Jan Hubicka <jh@suse.cz>
3437
3438 * ifcvt.c (noce_try_cmove_arith): Use may_trap_p to thest
3439 whether address may trap.
3440
3441 Tue May 2 23:38:37 2000 Jason Eckhardt <jle@cygnus.com>
3442
3443 * bb-reorder (chain_reorder_blocks): Changed code to test for
3444 EDGE_FALLTHRU rather than making erroneous assumption that the
3445 first outgoing edge is the fall-through edge.
3446
3447 Tue May 2 18:20:31 2000 Donald Lindsay <dlindsay@hound.cygnus.com>
3448
3449 * config/mips/mips.c (mips_build_va_list,mips_va_start,mips_va_arg): new
3450 ABI for varargs, across all MIPS. This is incompatible because the
3451 va_list (__builtin_va_list) structure is different, so a compilation
3452 unit passing a va_list and a compilation unit being passed one, should
3453 both be compiled with the same ABI. (The old structure had two
3454 pointers, now it has three.)
3455
3456 Tue May 2 19:18:43 2000 Jason Eckhardt <jle@cygnus.com>
3457
3458 * bb-reorder.c (struct reorder_block_def): Remove members end,
3459 block_begin, and block_end.
3460 (REORDER_BLOCK_OLD_END): Delete.
3461 (REORDER_BLOCK_BEGIN): Delete.
3462 (REORDER_BLOCK_END): Delete.
3463 (chain_reorder_blocks): Remove dead code.
3464
3465 Tue May 2 17:06:53 2000 Jason Eckhardt <jle@cygnus.com>
3466
3467 * bb-reorder.c (remove_scope_notes): Check for both types of scope
3468 notes as the end of a basic block before deleting.
3469
3470 2000-05-02 Mumit Khan <khan@xraylith.wisc.edu>
3471
3472 * final.c (final_start_function): Fix spelling of "necessary".
3473
3474 2000-05-02 Jason Merrill <jason@casey.cygnus.com>
3475
3476 * toplev.c (debug_ignore_block): Return int.
3477 * dwarf2out.c (dwarf2out_ignore_block): Likewise.
3478 * toplev.h, dwarf2out.h: Adjust.
3479 * emit-rtl.c (remove_unnecessary_notes): Test return value.
3480
3481 * emit-rtl.c (remove_unnecessary_notes): Fix spelling of "necessary".
3482 * toplev.c, final.c, rtl.h: Adjust.
3483
3484 2000-05-02 Zack Weinberg <zack@wolery.cumb.org>
3485
3486 * aclocal.m4 (gcc_AC_CHECK_PROG_VER): New macro.
3487 * configure.in: Look for makeinfo in the unified tree, then
3488 for a system makeinfo which is sufficiently new.
3489 * Makefile.in: If configure says makeinfo is too old, don't
3490 build or install Info documentation.
3491
3492 2000-05-02 Zack Weinberg <zack@wolery.cumb.org>
3493
3494 * cpphash.c (collect_params): Fix off-by-one error.
3495 (dump_hash_helper): Dump all four macro nodetypes.
3496
3497 2000-05-02 Jakub Jelinek <jakub@redhat.com>
3498
3499 * cpphash.c (trad_stringify): Adjust p after stringification as
3500 well.
3501
3502 2000-05-02 Zack Weinberg <zack@wolery.cumb.org>
3503
3504 * cpplib.h (CPP_POP, parse_cleanup_t): Delete.
3505 (cpp_buffer): Remove cleanup, seen_eof, manual_pop members.
3506
3507 * cppfiles.c (file_cleanup): Delete.
3508 * cpphash.c (macro_cleanup): Delete.
3509 (collect_objlike_expansion, collect_funlike_expansion,
3510 macarg, scan_arguments): Remove CPP_POP case.
3511
3512 * cpplex.c (null_cleanup): Delete.
3513 (cpp_pop_buffer): Do the work that was done in the cleanups
3514 here. Call _cpp_unwind_if_stack from here.
3515 (_cpp_expand_to_buffer, cpp_scan_buffer_nooutput,
3516 cpp_scan_buffer): Run until we see CPP_EOF and the top of
3517 stack is the buffer _below_ the one we stacked.
3518 (cpp_get_token): Always pop an exhausted buffer. Return
3519 CPP_EOF unless it's a macro buffer. Don't call _cpp_handle_eof.
3520 * cpplib.c (skip_if_group): Don't call cpp_get_token to
3521 increment the line number.
3522 (_cpp_handle_eof): Rename to _cpp_unwind_if_stack.
3523
3524 * fix-header.c (read_scan_file) [parsing getchar()]: Run until
3525 we see CPP_EOF and the top of stack is the buffer _below_ the
3526 one we stacked.
3527 * scan-decls.c: Likewise.
3528
3529 2000-05-02 Andrew Haley <aph@cygnus.com>
3530
3531 * config/ia64/ia64.c (ia64_encode_section_info): Handle the case
3532 where this function is called for the second time on a decl that
3533 has had its section info changed in such a way as to move it out
3534 of small data/bss.
3535 * config/ia64/ia64.h (REDO_SECTION_INFO_P): New definition.
3536
3537 2000-05-01 Richard Henderson <rth@cygnus.com>
3538
3539 * ifcvt.c (dead_or_predicable): Set merge_bb->end to the insn before
3540 the sequence we're moving, not to merge_bb->head.
3541
3542 2000-05-01 Richard Henderson <rth@cygnus.com>
3543
3544 * configure.in (alpha*-*-linux-gnulibc1*) [tmake_file]: Remove
3545 reference to alpha/t-linux.
3546 (alpha*-*-linux-gnu*): Likewise.
3547 * configure: Rebuild.
3548
3549 * calls.c (expand_call): Don't emit reg notes for a sibcall.
3550
3551 * flow.c (calculate_global_regs_live): Skip for_each_successor_phi
3552 if not in SSA form.
3553
3554 * ifcvt.c (if_convert): Only verify_flow_info if ENABLE_CHECKING.
3555
3556 2000-05-01 Jason Merrill <jason@casey.cygnus.com>
3557
3558 * integrate.c (copy_decl_for_inlining): Copy TREE_READONLY and
3559 TREE_THIS_VOLATILE.
3560
3561 2000-05-01 Richard Henderson <rth@cygnus.com>
3562
3563 * ifcvt.c (noce_emit_cmove): Conditionally compile call to
3564 emit_conditional_move.
3565
3566 2000-05-01 Jakub Jelinek <jakub@redhat.com>
3567
3568 * config/ia64/linux.h (LINK_SPEC): Use /lib/ld-linux-ia64.so.1
3569 as the dynamic linker.
3570
3571 2000-05-01 Zack Weinberg <zack@wolery.cumb.org>
3572
3573 * cppfiles.c (open_include_file): Open file in blocking mode.
3574 (read_include_file): Don't fcntl(fd, F_SETFL, 0) anymore.
3575 Only exclude block devices and directories.
3576
3577 * cpphash.c (_cpp_make_hashnode): Rename make_HASHNODE, now
3578 static. Allocate the hashnode and its string in the same
3579 block of memory.
3580 (del_HASHNODE): Don't free h->name.
3581 (_cpp_lookup): If there is no entry for this string, create
3582 one, of type T_VOID.
3583 (_cpp_lookup_slot): Delete.
3584 * cpphash.h: Update prototypes.
3585
3586 * cpplex.c (maybe_macroexpand): Check for hp->type == T_VOID,
3587 not hp == NULL.
3588 * cpplib.c (do_define, do_undef, do_pragma_poison, do_assert,
3589 do_unassert, cpp_defined): Use _cpp_lookup. Don't create a
3590 node here, just fill in the value field properly. "Delete"
3591 entries by setting the value field to T_VOID. Check for
3592 hp->type == T_VOID, not hp == NULL.
3593
3594 * Makefile.in (cpplib.o): Don't depend on $(HASHTAB_H).
3595 * cpperror.c, cppexp.c, cpplex.c, cpplib.c: Don't include
3596 hashtab.h.
3597
3598 2000-05-01 Alexandre Oliva <aoliva@cygnus.com>
3599
3600 * config/mn10300/mn10300.c (print_operand_address): Do not add
3601 zero to SP.
3602
3603 * config/mn10300/mn10300.c (expand_epilogue): If SP is to be
3604 adjusted by less than 256 bytes, use ret regardless of having any
3605 callee-saved register to restore.
3606
3607 2000-05-01 Laurynas Biveinis <lauras@softhome.net>
3608
3609 * tm.texi (TARGET_HAS_F_SETFLKW): Fix typo.
3610
3611 2000-05-01 Mark Elbrecht <snowball3@bigfoot.com>
3612
3613 * config/i386/djgpp.h (INT_ASM_OP): Define.
3614 (CPP_PREDEFINES): Rename MSDOS to __MSDOS__.
3615 (ASM_WEAKEN_LABEL): Define.
3616 (MASK_BNU210): Define.
3617 (SUBTARGET_SWITCHES): Define.
3618 (SUPPORTS_WEAK, SUPPORTS_ONE_ONLY): Define.
3619 (MAKE_DECL_ONE_ONLY): Define.
3620 (UNIQUE_SECTION_P, UNIQUE_SECTION): Define.
3621
3622 2000-05-01 Mumit Khan <khan@xraylith.wisc.edu>
3623
3624 * i386/cygwin.h (INT_ASM_OP): Define.
3625
3626 Mon May 1 18:20:06 2000 Denis Chertykov <denisc@overta.ru>
3627
3628 * config/avr/avr.c (address_cost): renamed to avr_address_cost.
3629 * config/avr/avr.h (ADDRESS_COST): use avr_address_cost.
3630
3631 Mon May 1 17:50:44 2000 Denis Chertykov <denisc@overta.ru>
3632
3633 * config/avr/avr.c (asm_file_start): output 0 as r0 and 1 as r1 in
3634 __tmp_reg__ and __zero_reg__ initialization.
3635
3636 2000-04-30 Richard Henderson <rth@cygnus.com>
3637
3638 * flow.c (propagate_one_insn): Mark sets even when the insn is dead.
3639
3640 * ifcvt.c (noce_process_if_block): Fail the conversion if X is
3641 referenced bewteen the condition and the jump. Don't delete
3642 anything but the jump.
3643
3644 Sun Apr 30 22:48:24 2000 Jason Eckhardt <jle@cygnus.com>
3645
3646 * bb-reorder.c (scope_def): New struct.
3647 (scope_forest_info): New struct.
3648 (struct reorder_block_def): New member "scope".
3649 (REORDER_BLOCK_SCOPE): New macro.
3650 (relate_bbs_with_scopes): New function and prototype.
3651 (make_new_scope): Likewise.
3652 (build_scope_forest): Likewise.
3653 (remove_scope_notes): Likewise.
3654 (insert_intra_1): Likewise.
3655 (insert_intra_bb_scope_notes): Likewise.
3656 (insert_inter_bb_scope_notes): Likewise.
3657 (rebuild_scope_notes): Likewise.
3658 (free_scope_forest_1): Likewise.
3659 (free_scope_forest): Likewise.
3660 (dump_scope_forest): Likewise.
3661 (dump_scope_forest_1): Likewise.
3662 (chain_reorder_blocks): Set REORDER_BLOCK_SCOPE for new block.
3663 Update REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END for new
3664 block.
3665 (reorder_basic_blocks): Added calls to build_scope_scope_forest
3666 and remove_scope_notes before reordering is done. Added calls to
3667 rebuild_scope_notes, free_scope_forest, and reorder_blocks after
3668 after reordering is done.
3669
3670 2000-40-30 Bruce Korb <bkorb@gnu.org>
3671
3672 * fixinc/inclhack.def: Added definitions needed by OSR5,
3673 removed two stale entries (defined away with OLD_CPP).
3674 * fixinc/inclhack.sh: regen
3675 * fixinc/fixincl.x: regen
3676
3677 2000-04-30 Richard Henderson <rth@cygnus.com>
3678
3679 * ifcvt.c (dead_or_predicable): Manually squeeze non-movable notes
3680 from the last insn in the sequence.
3681
3682 2000-04-30 Zack Weinberg <zack@wolery.cumb.org>
3683
3684 * cpplex.c (cpp_idcmp): New function.
3685 * cpplib.h: Prototype it.
3686 * scan_decls.c (scan_decls): Use it to inspect token names.
3687 * fix-header.c (read_scan_file): Likewise. Set system_header_p on
3688 the file being run through the preprocessor.
3689 (check_macro_names): Provide length of token to cpp_defined.
3690
3691 * Makefile.in: Remove stale warning message.
3692
3693 * cppfiles.c (redundant_include_p): Provide length of token to
3694 cpp_defined.
3695 * cpphash.c (_cpp_make_hashnode, _cpp_lookup_slot): Hash
3696 values are unsigned int.
3697 (_cpp_lookup, _cpp_lookup_slot): Do not calculate the length.
3698 (_cpp_lookup_slot): Do not calculate the hash, either.
3699 * cpphash.h: Update prototypes.
3700 * cpplib.c (do_define, do_undef, do_pragma_poison, do_assert):
3701 Hashes are unsigned int. Calculate hash here, pass by value
3702 to _cpp_lookup_slot.
3703
3704 2000-04-30 Bernd Schmidt <bernds@cygnus.co.uk>
3705
3706 * simplify-rtx.c (check_value_useless): Delete function.
3707 (discard_useless_locs): Don't call it; manage N_USELES_VALUES counter
3708 by hand.
3709 (cselib_invalidate_regno): Likewise.
3710 (cselib_invalidate_mem_1): Likewise.
3711 (references_value_p): Recognize useless values by the fact that they
3712 have no locations.
3713 (discard_useless_values): Likewise.
3714 (cselib_record_set): This may turn a useless value
3715 into a useful one.
3716
3717 2000-04-30 Richard Henderson <rth@cygnus.com>
3718
3719 * config/d30v: New port.
3720
3721 * configure.in (d30v-*): Set fp format.
3722 * configure: Rebuild.
3723
3724 2000-04-30 Richard Henderson <rth@cygnus.com>
3725
3726 * ifcvt.c: New file.
3727 * Makefile.in (OBJS): Add it.
3728 (ifcvt.o): New target.
3729 * jump.c (jump_optimize_1): Remove all code related to if-conversion,
3730 and conditional arithmetic.
3731 (find_insert_position): Remove.
3732 * timevar.def (TV_IFCVT, TV_IFCVT2): New.
3733 * toplev.c (DFI_ce, DFI_ce2): New.
3734 (dump_file): Add ce and ce2 dumps.
3735 (rest_of_compilation): Run if_convert a couple o times. Set
3736 cse_not_expected after cse2. Don't set no_new_pseudos until
3737 after sched1 or recompute_reg_usage.
3738
3739 2000-04-30 Richard Henderson <rth@cygnus.com>
3740
3741 * config/alpha/t-crtbe (crtbegin.o): Add "-I.".
3742 (crtend.o, crtbeginS.o, crtendS.o): Likewise.
3743
3744 2000-04-30 Richard Henderson <rth@cygnus.com>
3745
3746 * flow.c (struct reg_cond_life_info): New.
3747 (struct propagate_block_info): Add reg_cond_dead and reg_cond_reg.
3748 (init_propagate_block_info): Initialize them.
3749 (free_propagate_block_info): Destruct them.
3750 (mark_set_1): Consider conditional life before killing a register.
3751 (mark_regno_cond_dead): New.
3752 (free_reg_cond_life_info): New.
3753 (flush_reg_cond_reg_1, flush_reg_cond_reg): New.
3754 (ior_reg_cond, not_reg_cond, nand_reg_cond): New.
3755 (mark_used_reg): Record conditional life.
3756
3757 * haifa-sched.c (schedule_insns): Disable death counting
3758 sanity check for HAVE_conditional_execution.
3759
3760 2000-04-30 Richard Henderson <rth@cygnus.com>
3761
3762 * Makefile.in (TIMEVAR_H): New.
3763 (ggc-simple.o, ggc-page.o, toplev.o, timevar.o): Use it.
3764 (timevar.h): Remove rule.
3765
3766 2000-04-29 Richard Henderson <rth@cygnus.com>
3767
3768 * config/alpha/crtend.asm: Use C comments instead of #.
3769 * config/alpha/crtbegin.asm: Likewise. Mark __dso_handle hidden.
3770
3771 * config/alpha/elf.h (SELECT_SECTION): Treat CONSTRUCTOR like VAR_DECL.
3772
3773 2000-04-29 Zack Weinberg <zack@wolery.cumb.org>
3774
3775 * cpphash.h (enum node_type: Take out T_MCONST.
3776 (union hashval): Move into struct hashnode.
3777 (struct hashnode): Pack tighter. Remove file, line, col
3778 members.
3779 * cpphash.c: Constify most of the macro-definition structures.
3780 (struct definition): Replace by struct object_defn
3781 and struct funct_defn. Put file, line, column information
3782 here. All users updated to match.
3783 (_cpp_create_definition, _cpp_macroexpand): Remove special
3784 case for #define WORD OTHERWORD.
3785 * cpplib.c (do_undef): Remove T_MCONST case.
3786
3787 * cpphash.h: Move struct reflist, struct definition, and the
3788 DEFINITION typedef to cpphash.c. Use 'struct definition *' in
3789 union hashval. _cpp_free_definition takes a HASHNODE pointer.
3790 * cpphash.c (_cpp_free_definition): Free data pointed to by
3791 MCONST, XCONST, MACRO, and FMACRO nodes properly.
3792 (_cpp_create_definition, del_HASHNODE): Just call
3793 _cpp_free_definition to clear out a hashnode.
3794 * cpplib.c (do_pragma_poison): Likewise.
3795
3796 Sat Apr 29 12:25:17 2000 Alexandre Oliva <aoliva@cygnus.com>
3797
3798 * config/mn10300/mn10300.h (FIRST_DATA_REGNUM,
3799 LAST_DATA_REGNUM, FIRST_ADDRESS_REGNUM, LAST_ADDRESS_REGNUM,
3800 FIRST_EXTENDED_REGNUM, LAST_EXTENDED_REGNUM): New macros.
3801 (REGNO_SP_P): Redefine in terms of STACK_POINTER_REGNUM.
3802 (REGNO_DATA_P, REGNO_ADDRESS_P, REGNO_EXTENDED_P,
3803 REGNO_AM33_P): Redefine in terms of the new macros.
3804 (CONDITIONAL_REGISTER_USAGE, REGNO_REG_CLASS): Likewise.
3805 (FUNCTION_VALUE, LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P,
3806 STRUCT_VALUE): Likewise.
3807 (STACK_POINTER_REGNUM, FRAME_POINTER_REGNUM,
3808 ARG_POINTER_REGNUM, STATIC_CHAIN_REGNUM): Likewise. Moved.
3809
3810 Sat Apr 29 01:18:45 MET DST 2000 Jan Hubicka <jh@suse.cz>
3811
3812 * regmove.c (struct record_stack_memrefs_data): New.
3813 (record_stack_memrefs): New function.
3814 (combine_stack_adjustments_for_block): Use it.
3815
3816 Sat Apr 29 01:15:27 MET DST 2000 Jan Hubicka <jh@suse.cz>
3817
3818 * calls.c (calls_function_1): Propertly handle TREE_LIST expressions;
3819 use special_function_p to detect alloca.
3820
3821 Fri Apr 28 16:30:33 2000 Marc Espie <espie@cvs.openbsd.org>
3822
3823 * gcc.texi: Fixes for makeinfo 4.0 --html.
3824
3825 2000-04-28 Zack Weinberg <zack@wolery.cumb.org>
3826
3827 * pcp.h: Delete file.
3828
3829 2000-04-28 Kazu Hirata <kazu@hxi.com>
3830
3831 * h8300.c (function_epilogue): Clean up flags when the last insn
3832 in a function is a barrier.
3833
3834 2000-04-28 Chris Demetriou <cgd@sibyte.com>
3835
3836 * configure.in (sparc-hal-solaris2*): protect [] glob from
3837 my expansion.
3838 (mips*-*-ecoff*, mips*-*-elf*, mips*-*-*): use MASK_ defines
3839 rather than hard-coded constants in target_cpu_default2.
3840 * configure: Regenerate.
3841
3842 2000-04-28 Jason Merrill <jason@casey.cygnus.com>
3843
3844 * tree.c (get_callee_fndecl): Extract the initial value from
3845 a readonly decl.
3846
3847 2000-04-28 Richard Henderson <rth@cygnus.com>
3848
3849 * varasm.c (record_constant_1): Record the CODE_LABEL when
3850 taking the address of a LABEL_REF.
3851
3852 2000-04-28 Richard Henderson <rth@cygnus.com>
3853 Jan Hubicka <jh@suse.cz>
3854
3855 * calls.c (combine_pending_stack_adjustment_and_call): Return the
3856 adjustment; don't do the stack adjust.
3857 (expand_call): Call compute_argument_block_size right before
3858 allocating the block; update comment; don't do alignment sanity
3859 checking for sibling call; use args_size instead of
3860 unadjusted_args_size before args_size is adjusted. Use
3861 combine_pending_stack_adjustment_and_call to compute stack adjust
3862 for must_preallocate case.
3863
3864 * expr.c (push_block): Remove shadow `temp' in inner scope.
3865
3866 2000-04-28 Jason Merrill <jason@casey.cygnus.com>
3867
3868 * toplev.c (rest_of_compilation): Call
3869 note_deferral_of_defined_inline_function even if the function
3870 can't be inlined.
3871
3872 2000-04-28 Scott Bambrough <scottb@netwinder.org>
3873
3874 * cpplex.c (_cpp_scan_line): Fix buffer overwrite.
3875
3876 2000-04-28 Richard Henderson <rth@cygnus.com>
3877
3878 * toplev.c (rest_of_type_compilation): Fix sdb TIMEVAR typo.
3879
3880 2000-04-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3881
3882 * timevar.c (init_timevar): DeANSIfy function definition.
3883
3884 2000-04-27 Alex Samuel <samuel@codesourcery.com>
3885
3886 * Makefile.in (timevar.o): Depend on flags.h.
3887 * timevar.c (unused_stack_instances): New variable.
3888 (timevar_push): Take a timevar_stack_def from
3889 unused_stack_instances if available.
3890 (timevar_pop): Push the popped timevar_stack_def onto
3891 unused_stack_instances.
3892 (TIMEVAR_ENABLE): New macro.
3893 (timevar_def): Make standalone a 1-bit field. Add field used.
3894 (get_time): Rename parameter to now. Return after clearing it if
3895 not TIMEVAR_ENABLE.
3896 (init_timevar): Do nothing if not TIMEVAR_ENABLE.
3897 (timevar_pop): Likewise.
3898 (timevar_stop): Likewise.
3899 (timevar_push): Likewise. Mark the timing variable as used.
3900 (timevar_start): Likewise.
3901 (timevar_print): Do nothing if not TIMEVAR_ENABLE. Don't print
3902 timevars that were never used.
3903
3904 2000-04-27 Mark Mitchell <mark@codesourcery.com>
3905
3906 * c-common.c (c_apply_type_quals_to_decl): REFERENCE_TYPES are
3907 always TREE_READONLY.
3908
3909 2000-04-27 Ulrich Drepper <drepper@cygnus.com>
3910
3911 * i386.h (FUNCTION_BLOCK_PROFILER_EXIT): Generate mem reference
3912 for call instruction with mode QImode.
3913
3914 2000-04-27 Alex Samuel <samuel@codesourcery.com>
3915
3916 * Makefile.in (OBJS): Add timevar.o.
3917 (toplev.o): Depend on timevar.h.
3918 (ggc-simple.o): Likewise.
3919 (ggc-page.o): Likewise.
3920 (timevar.o): New rule.
3921 (timevar.h): New rule.
3922
3923 * timevar.h: New file.
3924 * timevar.c: Likewise.
3925 * timevar.def: Likewise.
3926
3927 * toplev.h (gc_time, parse_time, varconst_time): Remove.
3928 * toplev.c: Use timevar_push and timevar_pop instead of TIMEVAR
3929 throughout.
3930 (TIMEVAR): Remove macro.
3931 (gc_time, parse_time, varconst_time, integration_time, jump_time,
3932 cse_time, gcse_time, loop_time, cse2_time, branch_prob_time,
3933 flow_time, combine_time, regmove_time, sched_time,
3934 local_alloc_time, global_alloc_time, flow2_time, peephole2_time,
3935 sched2_time, dbr_sched_time, reorder_blocks_time,
3936 rename_registers_time, shorten_branch_time, stack_reg_time,
3937 to_ssa_time, from_ssa_time, final_time, symout_time, dump_time,
3938 all_time): Remove.
3939 (compile_file): Don't initialize time variables. Call
3940 init_timevar and start TV_TOTAL timer. Call timevar_print instead
3941 of many calls to print_time.
3942 (rest_of_compilation): Add timing for reload_cse_regs.
3943 (get_run_time): Removed to timevar.c.
3944 (print_time): Likewise.
3945 (get_run_time): Implement using TV_TOTAL time variable.
3946 (print_time): Get total run time from get_run_time.
3947 * ggc-page.c (ggc_collect): Push and pop TV_GC instead of
3948 computing elapsed time explicitly.
3949 * ggc-simple.c (ggc_collect): Likewise.
3950 (gc_time): Remove declaration.
3951
3952 2000-04-27 Mark Mitchell <mark@codesourcery.com>
3953
3954 * calls.c (combine_pending_stack_adjustment_and_call): New function.
3955 (expand_call): Use it.
3956
3957 2000-04-27 Jan Hubicka <jh@suse.cz>
3958
3959 * flow.c (mark_set_1): Handle MEMs in ZERO_EXTRACT/SIGN_EXTRACT
3960 fields.
3961
3962 Thu Apr 27 12:47:00 2000 Alexandre Oliva <aoliva@cygnus.com>
3963
3964 * config/mn10300/mn10300.md (movhi): Simplify. Prefer data
3965 registers.
3966
3967 Thu Apr 27 17:33:05 MET DST 2000 Jan Hubicka <jh@suse.cz>
3968
3969 * function.c (epilogue_done): Pass whole insn to record_insns.
3970
3971 Thu Apr 27 16:55:28 MET DST 2000 Jan Hubicka <jh@suse.cz>
3972
3973 * cse.c (CSE_ADDRESS_COST): Remove.
3974 (find_best_addr): Add new parameter "MODE", use address_cost instead
3975 of CSE_ADDRESS_COST
3976 (address_cost): New.
3977 (fold_rtx): Update call of find_best_addr.
3978 * rtl.h (address_cost): Declare.
3979 * loop.c (general_induction_var): Add new parameter "MODE", use
3980 address_cost instead of ADDRESS_COST
3981 (init_loop): Use address_cost instead of ADDRESS_COST.
3982 (check_insn_for_givs): Update call of general_induction_var.
3983 (find_mem_givs): Likewise.
3984 (consec_sets_giv): Likewise.
3985 * config/i386/i386.h (ADDRESS_COST): Call ix86_address_cost.
3986 * i386.c (ix86_address_cost): New.
3987 * i386-protos.h (ix86_address_cost): Declare.
3988
3989 Thu Apr 27 11:45:16 2000 Alexandre Oliva <aoliva@cygnus.com>
3990
3991 * config/mn10300/mn10300.md (movqi): Simplify. Prefer data
3992 registers.
3993
3994 Thu Apr 27 16:11:00 MET DST 2000 Jan Hubicka <jh@suse.cz>
3995
3996 * expr.c (store_expr): Use clear_storage instead of direct memset
3997 libcall.
3998
3999 Thu Apr 27 10:36:51 2000 Alexandre Oliva <aoliva@cygnus.com>
4000
4001 * config/mn10300/mn10300.c (mn10300_address_cost): Test
4002 ASHIFT, AND and LABEL_REF.
4003
4004 Thu Apr 27 15:08:46 MET DST 2000 Jan Hubicka <jh@suse.cz>
4005
4006 * invoke.texi (-foptimize-sibling-calls): Fix.
4007
4008 Thu Apr 27 14:54:22 MET DST 2000 Jan Hubicka <jh@suse.cz>
4009
4010 * loop.c (load_mems) Don't use hard registers for the hoisting.
4011
4012 * unroll.c (unroll_loop): Avoid overflow in the n_iterations
4013 calculation; rename const_equiv array in the preconditioning code
4014 from loop_unroll to loop_unroll_precondition
4015
4016 2000-04-27 Richard Henderson <rth@cygnus.com>
4017
4018 * flow.c (struct propagate_block_info): Remove new_dead, new_live;
4019 add new_set.
4020 (propagate_one_insn): Clear it. Don't update reg_live here.
4021 (init_propagate_block_info): Update for pbi member changes.
4022 (free_propagate_block_info): Likewise.
4023 (mark_set_1): Know that zero_extract, sign_extract, and
4024 strict_low_part don't kill their argument. Alter hard subregs.
4025 Update new_set for non-CLOBBER sets. Update reg_live.
4026 (find_auto_inc): Update reg_live, not new_dead.
4027 (mark_used_reg): Update reg_live, not new_live. Examine new_set
4028 to determine if the reg in question was set this insn. Only update
4029 reg info with PROP_REG_INFO.
4030
4031 2000-04-26 Richard Henderson <rth@cygnus.com>
4032
4033 * flow.c (allocate_reg_life_data): Set max_regno here ...
4034 (life_analysis): ... not here.
4035
4036 * flow.c (calculate_global_regs_live): Force stack pointer
4037 live at end.
4038
4039 2000-04-26 Richard Henderson <rth@cygnus.com>
4040
4041 * jump.c (redirect_exp_1): Rework from old redirect_exp. Never
4042 commit change group changes.
4043 (invert_exp_1): Similarly.
4044 (redirect_exp, invert_exp): Use them.
4045 (redirect_jump_1): New.
4046 (invert_jump_1): New.
4047 (jump_optimize_1): Remove code subsumed by condexec.c.
4048 * rtl.h (invert_jump_1, redirect_jump_1): Declare.
4049
4050 2000-04-26 Richard Henderson <rth@cygnus.com>
4051
4052 * rtlanal.c (dead_or_set_regno_p): Use find_regno_note.
4053
4054 * genconfig.c (main): Set all HAVE_foo to 1.
4055
4056 * graph.c (node_data): Use GET_NOTE_INSN_NAME instead of local array.
4057
4058 2000-04-26 Alex Samuel <samuel@codesourcery.com>
4059
4060 * invoke.texi: Document -fssa flag.
4061
4062 2000-04-26 Richard Henderson <rth@cygnus.com>
4063
4064 * flow.c (count_reg_sets_1): Remove.
4065 (count_reg_sets, count_reg_references): Remove.
4066 (recompute_reg_usage): Implement with update_life_info.
4067 Reallocate life data.
4068
4069 2000-04-26 Richard Henderson <rth@cygnus.com>
4070
4071 * flow.c (update_life_info): Consider blocks null to mean the
4072 universal set.
4073 (calculate_global_regs_live): Likewise.
4074 (life_analysis): Do that instead of collecting all_blocks.
4075
4076 2000-04-26 Richard Henderson <rth@cygnus.com>
4077
4078 * flow.c (tidy_fallthru_edge): Don't delete the jump when it's
4079 a still-valid conditional jump.
4080
4081 2000-04-26 Richard Henderson <rth@cygnus.com>
4082
4083 * jump.c (invert_jump): Always invert REG_BR_PROB. Do it correctly.
4084
4085 * bb-reorder.c (reorder_basic_blocks): Don't run estimate_probability.
4086 * flow.c (calculate_loop_depth): Remove.
4087 * output.h (calculate_loop_depth): Don't declare.
4088 * toplev.c (rest_of_compilation): Expand calculate_loop_depth
4089 inline; run estimate_probability at the same time.
4090
4091 2000-04-26 Neil Booth <NeilB@earthling.net>
4092
4093 * cpplib.h: "~=" is not a single pp-token.
4094 * cpplex.c: Correct commentary.
4095
4096 2000-04-26 Richard Henderson <rth@cygnus.com>
4097
4098 * flow.c (mark_set_1): New arguments code and flags; update all
4099 callers. Track regno_first and regno_last; do HARD_REGNO_NREGS
4100 test in one place. Tidy flags tests. Don't bias REG_N_REFS by
4101 loop_depth when optimizing for size. Do new_dead update after
4102 emitting REG_UNUSED notes. Merge mark_set_reg code.
4103 (mark_set_reg): Remove.
4104 (propagate_one_insn): Use mark_set_1 for call-clobbered registers;
4105 arrange to not emit REG_UNUSED notes.
4106
4107 2000-04-26 Richard Henderson <rth@cygnus.com>
4108
4109 * flow.c (find_auto_inc): Use pbi->bb instead of BLOCK_FOR_INSN.
4110 * ssa.c (convert_from_ssa): Don't run compute_bb_for_insn.
4111
4112 2000-04-26 Richard Henderson <rth@cygnus.com>
4113
4114 * flow.c (propagate_one_insn): Break out from propagate_block.
4115 (init_propagate_block_info): Likewise.
4116 (free_propagate_block_info): Likewise.
4117 (propagate_block): Use them. Export.
4118 * basic-block.h: Declare them all.
4119
4120 2000-04-26 Richard Henderson <rth@cygnus.com>
4121
4122 * basic-block.h (life_analysis): Declare here ...
4123 * output.h: ... not here.
4124 * flow.c (life_analysis): Remove nregs parameter; replace
4125 remove_dead_code with flags. Remove ssa dead code check.
4126 Only init alias analysis if we'll use it.
4127 * reg-stack.c (reg_to_stack): Update life_analysis arguments.
4128 * ssa.c (convert_to_ssa): Likewise.
4129 (convert_from_ssa): Likewise.
4130 * toplev.c (rest_of_compilation): Likewise.
4131
4132 2000-04-26 Richard Henderson <rth@cygnus.com>
4133
4134 * flow.c (flow_delete_block): Rename from delete_block. Export.
4135 * basic-block.h (flow_delete_block): Declare.
4136
4137 2000-04-26 David S. Miller <davem@redhat.com>
4138
4139 * optabs.c (emit_libcall_block): Verify insns with INSN_P before
4140 taking a PATTERN of it.
4141
4142 2000-04-26 <NeilB@earthling.net>
4143
4144 * cpplex.c (spell_other, spell_char): Remove.
4145 (SPELL_CHAR): New.
4146 (token_spelling, trigraph_map): Use unsigned chars.
4147 (_cpp_lex_line): Tidy up the switch statement.
4148 * cpplib.h: Implement spell_char with spell_string.
4149 (C): New.
4150
4151 2000-04-26 <RodneyBrown@pmsc.com>
4152
4153 * pa/pa32-regs.h (HARD_REGNO_MODE_OK): Warning removal.
4154 * pa/pa64-regs.h (HARD_REGNO_MODE_OK): Warning removal.
4155
4156 2000-04-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4157
4158 * dwarf2out.c (dw_cfi_oprnd_struct, dw_fde_struct, add_fde_cfi,
4159 reg_save, dwarf2out_frame_debug_expr, dwarf2out_def_cfa,
4160 dwarf2out_window_save, dwarf2out_args_size, dwarf2out_reg_save,
4161 dwarf2out_return_save, dwarf2out_return_reg,
4162 dwarf2out_stack_adjust, dwarf2out_frame_debug, primary_filename,
4163 add_AT_lbl_id, add_AT_lbl_offset, type_tag, decl_start_label,
4164 gen_compile_unit_die, dwarf2out_init): Constify a char*.
4165
4166 * dwarf2out.h (dwarf2out_init): Likewise.
4167
4168 * dwarfout.c (filename_entry, primary_filename, last_filename,
4169 type_tag, output_compile_unit_die, dwarfout_init): Likewise.
4170
4171 * tree.h (dwarf2out_def_cfa, dwarf2out_window_save,
4172 dwarf2out_args_size, dwarf2out_reg_save, dwarf2out_return_save,
4173 dwarf2out_return_reg): Likewise.
4174
4175 2000-04-26 Andreas Jaeger <aj@suse.de>
4176
4177 * extend.texi (Function Attributes): Fix description of pure
4178 attribute.
4179
4180 2000-04-26 Jason Merrill <jason@casey.cygnus.com>
4181
4182 * integrate.c (output_inline_function): Do clear DECL_DEFER_OUTPUT
4183 before calling rest_of_compilation.
4184
4185 2000-04-26 Andreas Jaeger <aj@suse.de>
4186
4187 * config/mips/linux.h: Remove erroneous commit of #if 0/#endif in
4188 last patch.
4189
4190 2000-04-25 Richard Henderson <rth@cygnus.com>
4191
4192 * cse.c (cse_insn): Emit barrier after unconditional jump.
4193
4194 * calls.c (expand_call): Disable tail call generation once
4195 rtx_equal_function_value_matters is false.
4196
4197 * reg-stack.c (convert_regs_1): Treat EDGE_ABNORMAL_CALL edges
4198 like EDGE_EH edges.
4199
4200 2000-04-25 Jason Merrill <jason@casey.cygnus.com>
4201
4202 * dwarf2out.c (add_bound_info): Don't crash on an unexpanded SAVE_EXPR.
4203
4204 * dwarfout.c (output_decl): Ignore NAMESPACE_DECLs.
4205
4206 * dwarf2out.c (gen_subprogram_die): The class-scope declaration DIE
4207 is the primary DIE for a member function.
4208 (gen_decl_die): Call set_decl_origin_self here.
4209 * dwarfout.c (output_decl): And here.
4210 * integrate.c (output_inline_function): Not here.
4211 Don't clear DECL_INLINE until after calling rest_of_compilation.
4212 (set_decl_origin_self): No longer static.
4213 * tree.h: Add prototype.
4214 * toplev.c (note_deferral_of_defined_inline_function): Only write
4215 out abstract instance for actual inlines.
4216
4217 2000-04-25 Alexandre Oliva <aoliva@cygnus.com>
4218
4219 * config/mn10300/mn10300.h (REG_CLASS_FROM_LETTER): Return
4220 EXTENDED_REGS only if TARGET_AM33.
4221 * config/mn10300/mn10300.md (movsi, addsi): Avoid exposing
4222 SP_REGS to register allocation and reloading unless absolutely
4223 necessary.
4224 (movsi3): Remove special-case of adding non-constants to SP.
4225
4226 2000-04-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4227
4228 * aclocal.m4 (gcc_AC_NEED_DECLARATION): This macro now requires
4229 INCLUDES to search and does not provide any of its own. Also it
4230 now accepts optional ACTION-IF-NEEDED and ACTION-IF-NOT-NEEDED
4231 parameters. Also it does not call AC_DEFINE.
4232 (gcc_AC_NEED_DECLARATIONS): Likewise. Also this macro now calls
4233 AC_DEFINE and provides for automatic entries for autoheader.
4234 (gcc_AC_FUNC_PRINTF_PTR): Cleanup C code in test.
4235
4236 * configure.in (gcc_AC_NEED_DECLARATIONS): Save and restore CFLAGS
4237 so we can pass -I flags and include gansidecl.h/system.h in this
4238 test.
4239
4240 * acconfig.h: Delete all NEED_DECLARATION_* entries.
4241
4242 2000-04-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4243
4244 * acconfig.h (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
4245 ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
4246 ENABLE_GC_ALWAYS_COLLECT): Delete entries.
4247
4248 * configure.in (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
4249 ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
4250 ENABLE_GC_ALWAYS_COLLECT): Use three argument form of AC_DEFINE
4251 for these macros. Clean up spacing and linewraps.
4252
4253 2000-04-26 Jason Merrill <jason@casey.cygnus.com>
4254
4255 * calls.c (expand_call): Use get_callee_fndecl.
4256
4257 * print-tree.c (print_node): Print the chain of an _EXPR.
4258
4259 Tue Apr 25 16:16:04 2000 Andrew MacLeod <amacleod@cygnus.com>
4260 Jim Wilson <wilson@cygnus.com>
4261 Andrew Haley <aph@cygnus.com>
4262
4263 * config/ia64/crtbegin.asm: Add IA-64 unwind support. Correct alloc
4264 and gp save/restore problems.
4265 * config/ia64/crtend.asm: Add IA-64 unwind support.
4266 * config/ia64/ia64.c (ia64_compute_frame_size): Don't include pr_size
4267 in fr_pad_size calculation.
4268 (save_restore_insns): Move PR save area. Correct uses of
4269 RTX_FRAME_RELATED_P.
4270 (ia64_expand_prologue): Mark alloc with RTX_FRAME_RELATED_P.
4271 (ia64_expand_epilogue): Add eh_epilogue support.
4272 (ia64_function_prologue): Emit .prologue directive.
4273 (ia64_init_machine_status, ia64_mark_machine_status): New functions.
4274 (ia64_override_options): Set init_machine_status and
4275 mark_machine_status.
4276 (rtx_needs_barrier): Handle bsp reads and writes.
4277 (spill_offset, sp_offset, spill_offset_emitted, tmp_reg, tmp_saved):
4278 New static variables.
4279 (process_set, process_for_unwind_directive): New functions.
4280 * config/ia64/ia64.h (ASM_OUTPUT_XDATA_CHAR, ASM_OUTPUT_XDATA_SHORT,
4281 ASM_OUTPUT_XDATA_INT, ASM_OUTPUT_XDATA_DOUBLE_INT, ASM_OUTPUT_EH_CHAR,
4282 ASM_OUTPUT_EH_SHORT, ASM_OUTPUT_EH_INT, ASM_OUTPUT_EH_DOUBLE_INT): New
4283 macros.
4284 (EH_FRAME_SECTION_ASM_OP): Define to IA_64.unwind section.
4285 (IA64_UNWIND_INFO, HANDLER_SECTION, IA64_UNWIND_EMIT): Define.
4286 (struct machine_function): Define.
4287 * config/ia64/ia64.md (bsp_value, set_bsp, eh_epilogue): New patterns.
4288
4289 2000-04-25 Bruce Korb <bkorb@gnu.org>
4290
4291 * fixinc/Makefile.in: make the removal of old programs more
4292 robust
4293 * fixinc/mkfixinc.sh: use the two new targets in the Makefile:
4294 install-bin and install-sh
4295
4296 2000-04-25 Nick Clifton <nickc@cygnus.com>
4297
4298 * integrate.c (FUNCTION_ATTRIBUTE_INLINABLE_P): If not
4299 defined, define to return zero.
4300 (function_cannot_inline_p): If a function has any target
4301 specific attributes, then use the macro
4302 FUNCTION_ATTRIBUTE_INLINABLE_P to allow the target to decide
4303 whether it can be inlined. If it cannot, issue a suitable
4304 explanation.
4305
4306 * tm.texi: Add a new node 'Inlining' to document the new macro
4307 FUNCTION_ATTRIBUTE_INLINABLE_P.
4308
4309 2000-04-25 Zack Weinberg <zack@wolery.cumb.org>
4310
4311 * cpplib.h (struct cpp_buffer): Add 'mapped' flag; fix
4312 commentary.
4313
4314 2000-04-25 Neil Booth <NeilB@earthling.net>
4315
4316 Restore previous patch, plus the following fixes:
4317
4318 * cpphash.c (_cpp_create_definition): Test PREV_WHITESPACE in
4319 flags, not CPP_OPEN_PAREN.
4320 * cpplex.c (expand_token_space, init_token_list,
4321 cpp_free_token_list): Put the dummy token at list->tokens[-1].
4322 (_cpp_lex_line, _cpp_lex_file): token list is 0-based.
4323
4324 Tue Apr 25 14:06:40 2000 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
4325
4326 * config/i386/freebsd.h (INT_ASM_OP): Define.
4327
4328 Tue Apr 25 14:51:07 MET DST 2000 Jan Hubicka <jh@suse.cz>
4329
4330 * loop.c (strength_reduce): Fix typo in the last checkin.
4331
4332 Tue Apr 25 07:33:12 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4333
4334 * stor-layout.c (finalize_record_size): Simplify to use existing
4335 functions.
4336 (compute_record_mode): No longer static.
4337 * tree.h (compute_record_mode): New declaration.
4338
4339 2000-04-25 Neil Booth <NeilB@earthling.net>
4340
4341 * Revert my patch below until cause of build failures
4342 determined.
4343
4344 2000-04-25 Richard Henderson <rth@cygnus.com>
4345
4346 * combine.c (combine_instructions): Add missing argument
4347 to try_combine.
4348
4349 * toplev.c (rest_of_compilation): Delay sibcall optimization
4350 until after emit_eh_context.
4351
4352 2000-04-24 Nick Clifton <nickc@redhat.com>
4353
4354 * combine.c (combine_instructions): Do not try to combine a
4355 sequence of insns when the second insn has been replaced by a
4356 note.
4357
4358 Mon Apr 24 17:34:18 2000 Mumit Khan <khan@xraylith.wisc.edu>
4359
4360 * gcc.c (load_specs): New static function.
4361 (read_specs): Use it.
4362
4363 * gcc.c (lookup_compiler): Make multiple passes for case
4364 insensitive filesystems.
4365
4366 2000-04-24 Neil Booth <NeilB@earthling.net>
4367
4368 * cpphash.c: replace HSPACE_BEFORE with PREV_WHITESPACE.
4369 * cpphash.h (_cpp_check_directive): new.
4370 * cpplex.c (handle_newline, cpp_free_token_list,
4371 init_trigraph_map, trigraph_ok, trigraph_replace,
4372 backslash_start, skip_block_comment, skip_line_comment,
4373 skip_whitespace, parse_name, parse_number, parse_string,
4374 copy_comment, _cpp_lex_line, spell_char, spell_string,
4375 spell_comment, spell_name, spell_other, _cpp_lex_file,
4376 _cpp_output_list): new.
4377 (expand_name_space): take length argument.
4378 (init_token_list): add comment list initialisation.
4379 (cpp_scan_line): use auto_expand_name_space. PREV_WHITESPACE
4380 instead of HSPACE_BEFORE.
4381
4382 * cpplib.c (_cpp_check_directive): new
4383 * cpplib.h (cpp_name, PREV_WHITESPACE, PREV_COMMENT,
4384 DIGRAPH, UNSIGNED_INT, TOK_NAME): new.
4385 (HSPACE_BEFORE): delete.
4386 (TTYPE_TABLE): rearrange.
4387 (struct cpp_toklist): update.
4388
4389 2000-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4390
4391 * aclocal.m4 (gcc_AC_HEADER_STRING, gcc_AC_FUNC_PRINTF_PTR,
4392 gcc_AC_C_VOLATILE, gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG): Use the three
4393 argument form of AC_DEFINE.
4394
4395 * configure.in (DEFAULT_LINKER, DEFAULT_ASSEMBLER,
4396 HAVE_INTTYPES_H, PACKAGE, VERSION, ENABLE_WIN32_REGISTRY,
4397 WIN32_REGISTRY_KEY, HAVE_GAS_SUBSECTION_ORDERING, HAVE_GAS_WEAK,
4398 HAVE_GAS_HIDDEN, HAVE_AS_REGISTER_PSEUDO_OP, AS_SPARC64_FLAG,
4399 HAVE_AS_OFFSETABLE_LO10, ENABLE_NEW_GXX_ABI): Likewise.
4400
4401 * acconfig.h: Delete stubs made redundant by 3-arg AC_DEFINE.
4402
4403 2000-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4404
4405 * Makefile.in (GCC_FOR_TARGET, GCC_CFLAGS, LIBGCC2_INCLUDES,
4406 deduced.h): Use -isystem, not -I, for including system headers.
4407
4408 2000-04-24 Nick Clifton <nickc@cygnus.com>
4409
4410 * config/fr30/fr30.md (addsi3): Do not use small add instruction if
4411 the source register is the frame pointer or arg pointer.
4412 (addsi3_small_int): Disallow if source register is the frame
4413 pointer or arg pointer.
4414
4415 2000-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4416
4417 * configure.in (ENUM_BITFIELDS_ARE_UNSIGNED): Delete redundant
4418 call to AC_MSG_RESULT.
4419
4420 2000-04-24 Martin v. Löwis <loewis@informatik.hu-berlin.de>
4421
4422 * invoke.texi: Correct grammatical errors, document
4423 -fno-gnu-keywords as identical to -fno-asm for C++.
4424
4425 2000-04-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4426
4427 * aclocal.m4: (GCC_HEADER_STRING, GCC_NEED_DECLARATION,
4428 GCC_NEED_DECLARATIONS, GCC_FUNC_VFPRINTF_DOPRNT,
4429 GCC_FUNC_PRINTF_PTR, GCC_PROG_LN_S, GCC_PROG_LN, GCC_C_VOLATILE,
4430 AC_GCC_C_LONG_DOUBLE, GCC_FUNC_MKDIR_TAKES_ONE_ARG,
4431 EGCS_PROG_INSTALL): Rename autoconf macros with prefix gcc_AC_.
4432
4433 * configure.in (AC_GCC_C_LONG_DOUBLE, GCC_PROG_LN, GCC_PROG_LN_S,
4434 GCC_C_VOLATILE, EGCS_PROG_INSTALL, GCC_HEADER_STRING,
4435 GCC_FUNC_VFPRINTF_DOPRNT, GCC_FUNC_PRINTF_PTR,
4436 GCC_NEED_DECLARATIONS, GCC_FUNC_MKDIR_TAKES_ONE_ARG): Invoke with
4437 new macros names.
4438
4439 2000-04-24 Mumit Khan <khan@xraylith.wisc.edu>
4440
4441 * c-pragma.c (push_alignment): Use BITS_PER_UNIT macro.
4442 (pop_alignment): Likewise.
4443 (handle_pragma_token): Likewise.
4444
4445 2000-04-24 Robert Lipe <robertlipe@usa.net>
4446
4447 * tree.h (tree_decl): Member `mode' now ENUM_BITFIELD.
4448
4449 2000-04-24 Hiroyuki Machida <machida@sm.sony.co.jp>
4450
4451 * combine.c (try_combine): Update reg_nonzero_bits of
4452 newi2pat before newpat.
4453
4454 Mon Apr 24 10:19:48 MET DST 2000 Jan Hubicka <jh@suse.cz>
4455
4456 * loop.c (strength_reduce): Simplify test to INSN_P.
4457 (record_giv): Attempt to simplify the add value, use CONSTANT_P
4458 expressions instead of CONST_INT.
4459 (express_from_1): Likewise.
4460
4461 2000-04-24 Mark Mitchell <mark@codesourcery.com>
4462
4463 * regs.h (reg_n_max): Don't declare.
4464 * flow.c (reg_n_max): Don't define.
4465 * regclass.c (renumber): Don't initialize to zero.
4466 (regno_allocated): Likewise.
4467 (reg_n_max): Define.
4468 (allocate_reg_info): Don't initialize unnecessarily.
4469
4470 Mon Apr 24 00:21:36 2000 Jeffrey A Law (law@cygnus.com)
4471
4472 * genattrtab.c (find_attr): Initialize unsigned_p, func_units_p
4473 and blockage_p in the newly allocated attribute.
4474
4475 Sun Apr 23 20:16:49 2000 Alexandre Oliva <aoliva@cygnus.com>
4476
4477 * config/mn10300/mn10300.md (addsi): `inc4' on address
4478 registers does not modify cc, but `inc' on an extended
4479 register does.
4480
4481 Sun Apr 23 16:24:35 2000 Denis Chertykov <denisc@overta.ru>
4482
4483 * reload.c (find_equiv_reg): Checks all valueno regs
4484 as a reload_reg_p regs.
4485
4486 2000-04-23 Zack Weinberg <zack@wolery.cumb.org>
4487
4488 * cpphash.c (collect_objlike_expansion): Add sanity check.
4489 (special_symbol): Remove case T_CONST, T_XCONST, T_MCONST. If
4490 the buffer is the empty string, return. Mark __DATE__ and
4491 __TIME__ as XCONST nodes, not MCONST.
4492 (_cpp_macroexpand): Avoid pushing an empty buffer.
4493 (funlike_macroexpand): Don't pop token_buffer here.
4494
4495 Sun Apr 23 18:37:53 2000 Alexandre Oliva <aoliva@cygnus.com>
4496
4497 * config/mn10300/mn10300.h (REGNO_IN_RANGE_P): New macro.
4498 (REGNO_DATA_P, REGNO_ADDRESS_P, REGNO_SP_P): New macros.
4499 (REGNO_EXTENDED_P, REGNO_AM33_P): New macros.
4500 (REGNO_OK_FOR_BASE_P): Define in terms of them.
4501 (REGNO_OK_FOR_BIT_BASE_P, REGNO_OK_FOR_INDEX_P): Likewise.
4502 (REG_OK_FOR_BASE_P): Define in terms of the REGNO macro.
4503 (REG_OK_FOR_BIT_BASE_P, REG_OK_FOR_INDEX_P): Likewise.
4504
4505 Sun Apr 23 22:23:08 MET DST 2000 Jan Hubicka <jh@suse.cz>
4506
4507 * loop.c (simplify_giv_expr): Be more agressive on simplifying
4508 constant MULT givs.
4509
4510 2000-04-23 Zack Weinberg <zack@wolery.cumb.org>
4511
4512 * cpphash.h (struct definition): Move file, line, col members...
4513 (struct hashnode): ... here. Also add 'disabled' flag.
4514 (enum node_type): Add T_VOID, T_XCONST, T_FMACRO, and
4515 T_IDENTITY. Remove T_DISABLED.
4516 Update prototypes.
4517
4518 * cpphash.c (_cpp_dump_definition): Split out dump_DEFINITION.
4519 (collect_expansion): Split into collect_objlike_expansion and
4520 collect_funlike_expansion.
4521 (_cpp_macroexpand): Split out scan_arguments, stringify, and
4522 funlike_macroexpand.
4523 (_cpp_compare_defs): Rename compare_defs, make static.
4524 (_cpp_make_hashnode): Initialize hp->disabled.
4525 (macro_cleanup): Adjust for new token types. Clear
4526 m->disabled.
4527 (_cpp_create_definition): Move code here to determine what
4528 sort of macro it is, and code to check for redefinitions, from
4529 do_define. Implement a few simple cases without creating a
4530 full DEFINITION.
4531 (_cpp_macroexpand, special_symbol, _cpp_dump_definition):
4532 Handle the simple cases.
4533 (push_macro_expansion): Set buf->has_escapes and hp->disabled
4534 here.
4535
4536 * cppinit.c (builtin_array): Change MCONST to XCONST
4537 everywhere.
4538 * cpplex.c (maybe_macroexpand): Handle IDENTITY macros here;
4539 fix check for disabled and function-like macros.
4540 * cpplib.c (do_define): Move most logic to
4541 _cpp_create_definition.
4542 (do_undef): Handle new special token types.
4543
4544 Sun Apr 23 14:27:44 MET DST 2000 Jan Hubicka <jh@suse.cz>
4545
4546 * loop.c (maybe_eliminate_biv_1): Use GET_CODE (x) == CONST_INT instead
4547 of CONSTANT_P for mult_val; always use validate_change to update insn.
4548
4549 2000-04-22 Zack Weinberg <zack@wolery.cumb.org>
4550
4551 * cpphash.c (trad_stringify, add_pat): New functions.
4552 (collect_expansion): Restore support for -traditional syntax.
4553 Use trad_stringify and add_pat.
4554 (_cpp_macroexpand): Restore support for -traditional semantics.
4555 * cpplex.c (_cpp_scan_line): Don't change space_before if we
4556 get a COMMENT token.
4557 (_cpp_lex_token): Provide COMMENT tokens to caller if
4558 traditional and parsing_define_directive.
4559 (skip_comment): Warn about // comments if -Wtraditional.
4560 * cpplib.c (do_define): Fix typo. Create EMPTY nodes with
4561 proper node type.
4562 (do_undef): Don't warn about undefining EMPTY nodes.
4563
4564 Sat Apr 22 22:35:38 MET DST 2000 Jan Hubicka <jh@suse.cz>
4565
4566 * loop.c (strength_reduce): Fix biv removal code.
4567
4568 2000-04-22 Richard Henderson <rth@cygnus.com>
4569
4570 * predict.c (estimate_probability): Examine both sides of
4571 a branch for no exits. Use 90% not 50% for predict taken.
4572 Reorg for one copy of note generation code.
4573
4574 2000-04-22 Richard Henderson <rth@cygnus.com>
4575
4576 * flow.c (mark_used_reg): Hack around rs6000 eliminable pic reg.
4577
4578 2000-04-22 Richard Henderson <rth@cygnus.com>
4579
4580 * diagnostic.c (init_output_buffer): Don't initialize format_args.
4581 (output_clear): Likewise.
4582 (output_printf): Use va_copy.
4583 (vline_wrapper_message_with_location): Likewise.
4584 (v_message_with_decl): Likewise.
4585 (line_wrapper_printf): VA_START infor buffer.format_args directly.
4586 * system.h (va_copy): Provide default implementation.
4587
4588 2000-04-22 Richard Henderson <rth@cygnus.com>
4589
4590 * predict.c (expected_value_to_br_prob): Don't bomb if op1 of
4591 the collected condition is not a constant.
4592
4593 2000-04-22 Gabriel Dos Reis <gdr@codesourcery.com>
4594
4595 * diagnostic.h: New file.
4596
4597 * Makefile.in (diagnostic.o): Depends on diagnostic.h
4598
4599 * diagnostic.c: Tweak. Rationalize the output logic. Adjust
4600 various function prototypes.
4601 (diagnostic.h): #include.
4602 (struct output_buffer): Move into diagnostic.h.
4603 (get_output_prefix): Rename to output_get_prefix. Export.
4604 (init_output_buffer): Export. Break out. Ajust intialization.
4605 (output_space_left, output_append): Export.
4606 (output_newline): Rename to output_add_newline. Export.
4607 (output_clear): Nullify additional output_buffer fields.
4608 (output_puts): Rename to output_add_string. Export.
4609 (dump_output): Rename to output_flush_on. Export.
4610 (build_location_prefix): Constify return-type.
4611 (emit_output_prefix): Rename to output_emit_prefix. Export.
4612 (set_real_maximum_length): New function.
4613 (output_set_maximum_length): Ditto
4614 (output_clear): Ditto.
4615 (output_add_character): Ditto.
4616 (output_add_integer): Ditto.
4617 (output_add_space): Ditto.
4618 (output_format): Ditto.
4619 (output_printf): Adjust buffer initialization.
4620 (vline_wrapper_message_with_location): Ditto.
4621 (v_message_with_decl): Ditto. Adjust call to output_puts
4622 and get_output_prefix.
4623 (default_print_error_function): Adjust buffer intialization.
4624
4625 Sat Apr 22 06:45:04 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4626
4627 * expr.c (preexpand_calls, case CALL_EXPR): Don't look at TYPE_SIZE
4628 of VOID_TYPE.
4629
4630 Fri Apr 21 18:33:09 2000 Alexandre Oliva <aoliva@cygnus.com>
4631
4632 * config/mn10300/mn10300.h (REGNO_REG_CLASS): Use NO_REGS instead
4633 of explicit 0.
4634
4635 Fri Apr 21 18:30:00 2000 Alexandre Oliva <aoliva@cygnus.com>
4636
4637 * config/mn10300/mn10300.h (REGISTER_MOVE_COST): Provide more
4638 accurate data about SP moves.
4639
4640 Fri Apr 21 18:28:28 2000 Alexandre Oliva <aoliva@cygnus.com>
4641
4642 * config/mn10300/mn10300.h (ADDITIONAL_REGISTER_NAMES): Added
4643 aliases to AM33 registers.
4644
4645 Fri Apr 21 18:26:17 2000 Alexandre Oliva <aoliva@cygnus.com>
4646
4647 * config/mn10300/mn10300.h (REG_CLASS_CONTENTS): Added register 16
4648 to all EXTENDED bitmaps.
4649
4650 Fri Apr 21 18:17:12 2000 Alexandre Oliva <aoliva@cygnus.com>
4651
4652 * config/mn10300/mn10300-protos.h (mn10300_address_cost): Declare.
4653 * config/mn10300/mn10300.h (ADDRESS_COST): New macro.
4654 * config/mn10300/mn10300.c (mn10300_address_cost): New function.
4655
4656 Fri Apr 21 18:11:56 2000 Alexandre Oliva <aoliva@cygnus.com>
4657
4658 * config/mn10300/mn10300.md (movdi, movdf): Do not use `movu' when
4659 the operand is not constant.
4660
4661 Fri Apr 21 14:58:29 2000 Denis Chertykov <denisc@overta.ru>
4662
4663 * reload.c (find_equiv_reg): Checks all valueno and regno regs
4664 as a call-clobbered regs.
4665
4666 Fri Apr 21 13:30:26 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4667
4668 * rtl.c: Use NOTE_INSN_REPEATED_LINE_NUMBER and NOTE_INSN_RANGE_BEG.
4669 * rtl.h: Likewise.
4670 * rtl.def: Update comment.
4671 * function.c (expand_function): Use NOTE_INSN_REPEATED_LINE_NUMBER.
4672 * integrate.c (expand_inline_function): Likewise.
4673 * profile.c (branch_prob): Likewise.
4674 * ggc-common.c (ggc_mark_rtx_children): Use NOTE_INSN_RANGE_BEG.
4675 * print-rtl.c (print_rtx): Likewise.
4676 * haifa-sched.c (sched_analyze, unlink_other_notes): Likewise.
4677 (reemit_notes): Likewise; also use enum insn_note.
4678
4679 * stor-layout.c (layout_decl): Only set DECL_MODE if not already set.
4680 (place_field): Properly compute know and actual alignment.
4681
4682 * gengenrtl.c (gencode): Write obstack_alloc_rtx function start
4683 in proper format.
4684
4685 * cse.c (cse_insn): In (set REG0 REG1) case, remove a REG_EQUAL
4686 note for REG1.
4687
4688 2000-04-21 Zack Weinberg <zack@wolery.cumb.org>
4689
4690 * cpphash.c (struct arg, struct arglist): Const-ify strings.
4691 (warn_trad_stringify, duplicate_arg_p): New helper functions.
4692 (collect_expansion): Rewrite to scan over a token list.
4693 Remove -traditional support.
4694 (collect_formal_parameters): Rename to collect_params; rewrite
4695 to scan over a token list.
4696 (_cpp_create_definition): Adjust to scan a token list.
4697 (_cpp_macroexpand): Remove -traditional support.
4698 (_cpp_compare_defs): Whitespace is now canonicalized.
4699 (comp_def_part): Delete function.
4700
4701 * cpphash.h: Update prototypes.
4702 * cpplex.c (init_token_list): Don't set lineno if there is no
4703 buffer.
4704 (pedantic_whitespace): New function.
4705 (_cpp_scan_line): Mark tokens that had hspace before. Don't
4706 consume a newline. Use pedantic_whitespace.
4707 (_cpp_lex_token): Remove support for -traditional macros.
4708 (_cpp_get_define_token): Delete.
4709 (_cpp_get_directive_token): Do the real work here. Use
4710 pedantic_whitespace.
4711 (_cpp_init_input_buffer): Initialize pfile->directbuf.
4712
4713 * cpplib.c (get_macro_name): Delete.
4714 (do_define): Read the entire line into pfile->directbuf, then
4715 feed the token list to _cpp_create_definition.
4716 * cpplib.h (HSPACE_BEFORE): new define.
4717 (struct cpp_reader): Add a toklist member, "directbuf".
4718
4719 * predict.c (estimate_probability): New heuristic: if a jump
4720 branches around a block with no successors, predict it taken.
4721 Disentangle control flow.
4722
4723 2000-04-20 Richard Henderson <rth@cygnus.com>
4724
4725 * loop.c (emit_iv_add_mult): Revert last change.
4726
4727 2000-04-20 Zack Weinberg <zack@wolery.cumb.org>
4728
4729 * cpplib.h (enum cpp_ttype): Add token types for all
4730 punctuators. Distinguish pp-numbers from valid C numbers.
4731 Give some tokens better names. Initialize from macro.
4732 (struct cpp_name, cpp_token, cpp_toklist): New data
4733 structures.
4734 Update prototypes.
4735 * cpplex.c (bump_column, expand_name_space,
4736 expand_token_space, init_token_list, cpp_output_list,
4737 _cpp_scan_line): New functions.
4738 (output_line_command): Add third argument, new line number.
4739 * cpphash.h: Update prototypes.
4740 * cppexp.c, cpphash.c, cpplib.c, scan-decls.c: Update for new
4741 token names.
4742
4743 2000-04-20 Richard Henderson <rth@cygnus.com>
4744
4745 * config/alpha/alpha.c (alpha_emit_floatuns): Emit missing barrier.
4746
4747 2000-04-20 Zack Weinberg <zack@wolery.cumb.org>
4748
4749 * c-common.c (decl_attributes) [A_ALIAS]: Set TREE_USED on the
4750 object pointed to.
4751
4752 Thu Apr 20 14:19:18 MET DST 2000 Jan Hubicka <jh@suse.cz>
4753
4754 * loop.c (emit_iv_add_mult): Simplify it's input and emit
4755 REG_EQUAL note explaining the calculated value.
4756
4757 * calls.c (expand_call): Avoid unnecesary precalculation
4758 and outgoing parameters space guarding for sibling calls.
4759 (store_one_arg): Likewise.
4760
4761 Thu Apr 20 08:01:07 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4762
4763 * toplev.c (enum dump_file_index, dump_file): Add DFI_sibling.
4764 (rest_of_compilation): Write sibling dump file and account
4765 for time as jump time.
4766 * invoke.texi: Update documentation on dump flags.
4767
4768 2000-04-19 Marek Michalkiewicz <marekm@linux.org.pl>
4769
4770 * avr.c: #include "system.h" instead of <stdio.h> and <stdlib.h>.
4771
4772 2000-04-19 Zack Weinberg <zack@wolery.cumb.org>
4773
4774 * cpphash.c (special_symbol): Represent an empty macro with
4775 "\r \r " not just "\r ".
4776 (_cpp_macroexpand): Correct condition for the foo ( ) special
4777 case.
4778 (unsafe_chars): Handle EOF as second argument.
4779 (push_macro_expansion): Simplify test for removing escape at
4780 end. Do not trim both escapes if there is no text in between.
4781
4782 2000-04-19 Jim Blandy <jimb@redhat.com>
4783
4784 * dwarf2out.c (DWARF2_ADDR_SIZE): New macro. Use it instead
4785 of PTR_SIZE, when appropriate.
4786
4787 2000-04-19 Mark Mitchell <mark@codesourcery.com>
4788
4789 * system.h (ONLY_INT_FIELDS): Make sure it is defined.
4790 (USE_ENUM_BITFIELDS): Fix typo.
4791
4792 Wed Apr 19 12:14:55 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4793
4794 * stor-layout.c (place_field): Set rli->offset_align properly.
4795
4796 2000-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4797
4798 * mips.h (BITS_PER_WORD, UNITS_PER_WORD, UNITS_PER_FPREG,
4799 INT_TYPE_SIZE, LONG_TYPE_SIZE, POINTER_SIZE, POINTER_BOUNDARY,
4800 PARM_BOUNDARY): Remove unnecessary casts.
4801
4802 Wed Apr 19 12:02:37 MET DST 2000 Jan Hubicka <jh@suse.cz>
4803
4804 * calls.c (precompute_arguments): Remove must_preallocate and
4805 args_size calls.
4806 (expand_call): Update call of precompute_arguments.
4807
4808 * loop.c (check_insn_for_bivs, for_every_insn_in_loop,
4809 check_insn_for_givs): Break out from ...
4810 (strength_reduce) ... here; use for_every_insn_in_loop to call
4811 check_insn_for_givs.
4812 * loop.h (for_every_insn_in_loop): Declare.
4813 (loop_insn_callback): New type.
4814
4815 2000-04-18 Zack Weinberg <zack@wolery.cumb.org>
4816
4817 * cpplib.c (do_pragma_poison): Strings in the token buffer are
4818 not nul-terminated.
4819
4820 Tue Apr 18 16:04:12 2000 Jim Wilson <wilson@cygnus.com>
4821
4822 * config/ia64/sysv4.h (SELECT_SECTION): Use data_section if
4823 flag_pic and RELOC.
4824
4825 2000-04-18 Zack Weinberg <zack@wolery.cumb.org>
4826
4827 * cccp.c, cexp.y, cexp.c, cccp.1: Removed.
4828
4829 * configure.in: Delete --disable-cpplib option and all
4830 references to cpp_main.
4831 * configure: Regenerate.
4832 * Makefile.in: Remove all references to CCCP, CCCP_OBJS,
4833 @cpp_main@, cccp.c, cexp.c, cexp.y, cexp.output, cexp.o,
4834 cccp.o, cccp, or cppmain. Link cppmain.o straight to
4835 cpp$(exeext). Add --no-headers to makeinfo command line when
4836 generating INSTALL. Install and uninstall cpp.1 manpage, not
4837 cccp.1.
4838 * install.texi: Delete all references to cexp.y/cexp.c.
4839 Delete ancient instructions for compiling GCC on 3b1.
4840 * INSTALL: Regenerate.
4841
4842 * cppfiles.c, cpplib.h, jump.c, protoize.c, c-lex.c, mips/t-ecoff,
4843 mips/t-elf, mips/t-r3900: Remove references to cccp.c.
4844 * convex.h, fx80.h, m68k.h, pdp11.h: Remove references to
4845 cexp.c/cexp.y.
4846 * xm-linux.h, xm-os2.h, romp.h: Remove definition of BSTRING,
4847 which is no longer tested anywhere.
4848
4849 * cppinit.c (handle_option): Don't run error message through
4850 gettext twice.
4851
4852 Tue Apr 18 14:16:47 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4853
4854 * conflict.c (conflict_graph_add): Pass enum type to htab_find_slot.
4855 * cpperror.c (hashtab.h): Now include.
4856 * cppexp.c (hashtab.h): Likewise.
4857 * cpplex.c (hashtab.h): Likewise.
4858 * cppfiles.c (hashtab.h): Likewise.
4859 (find_include_file, _cpp_calc_hash, cpp_read_file): Pass enum type
4860 to htab_find_slot_with_hash.
4861 * cpphash.c (hashtab.h): Now include.
4862 (_cpp_lookup_slot): INSERT is now enum insert_option.
4863 * cpphash.h (_cpp_lookup_slot): Likewise.
4864 * cppinit.c (hashtab.h): Include earlier.
4865 (initialize_builtins): Pass enum to htab_find_slot.
4866 * cpplib.c (hashtab.h): Now include.
4867 (do_define, do_undef): Pass enum type to _cpp_lookup_slot.
4868 (do_pragma_poison, do_assert): Likewise.
4869 * emit-rtl.c (gen_rtx_CONST_INT): Pass enum to
4870 htab_find_slot_with_hash.
4871 * simplify-rtx.c (cselib_lookup_mem, cselib_lookup): Likewise.
4872 * tree.c (type_hash_add): Likewise.
4873 (build1): Minor cleanup.
4874
4875 * ggc-common.c: Add missing blanks.
4876 * print-tree.c (print_node): Print DECL_OFFSET_ALIGN.
4877 * tree.h (DECL_OFFSET_ALIGN): Fix typo in comment.
4878
4879 * stmt.c (mark_case_node): New function.
4880 (mark_case_nesting): Call it.
4881
4882 * expmed.c (emit_store_flag): If comparing two-word integer
4883 with zero, can optimize NE, EQ, GE, and LT.
4884
4885 * c-decl.c (mark_binding_level): Use 'for' instead of `while'.
4886 * conflict.c: Minor cleanups.
4887 * optabs.c: Add blank line
4888 * simplify-rtx.c: Minor cleanups.
4889
4890 2000-04-18 Stan Cox <scox@cygnus.com>
4891
4892 * gengenrtl.c (genlegend): Fix misspelling.
4893
4894 2000-04-18 Robert Lipe <robertlipe@usa.net>
4895
4896 * configure.in (ENUM_BITFIELDS_ARE_UNSIGNED): Added. Check that
4897 bitfields of the host compiler are not signed quantities.
4898 * config.in: Regenerate.
4899 * configure: Regenerate.
4900 * system.h (USE_ENUM_BITFIELDS): Added.
4901 (ENUM_BITFIELDS): Added.
4902 * rtl.h (rtx_def): Members `code', `mode', now ENUM_BITFIELD.
4903 (SHORT_ENUM_BUG): Deleted.
4904 * tree.h (tree_common): Members `code', `mode', `built_in_class',
4905 now ENUM_BITFIELD.
4906 * config/i386/xm-sco.h (ONLY_INT_FIELDS): Deleted.
4907 (CODE_FIELD_BUG): Likewise.
4908 * config/m68k/x-apollo68 (CC): Deleted SHORT_ENUM_BUG.
4909 (OLD_CC): Likewise.
4910 * config/m68k/x-ccur (X_CFLAGS): Likewise.
4911
4912 2000-04-18 Mark Mitchell <mark@codesourcery.com>
4913
4914 * cpplex.c (_cpp_lex_token): Don't call CPP_BUMP_LINE when the
4915 mark is active.
4916
4917 2000-04-17 Zack Weinberg <zack@wolery.cumb.org>
4918
4919 * cppexp.c (lex): Don't assume tokens are NUL terminated.
4920 * cpplib.c (do_include, do_import, do_include_next,
4921 read_line_number, detect_if_not_defined): Likewise.
4922 * cpphash.c (collect_expansion): Likewise.
4923 (special_symbol, _cpp_macroexpand): Check return from
4924 cpp_file_buffer.
4925 * cpphash.h (CPP_NUL_TERMINATE, CPP_NUL_TERMINATE_Q): Delete
4926 macros. Delete all uses.
4927
4928 * gcc.dg/cpp-mi.c: Add two more test cases.
4929 * gcc.dg/cpp-mind.h, gcc.dg/cpp-mindp.h: New files.
4930
4931 2000-04-17 Richard Henderson <rth@cygnus.com>
4932
4933 * bb-reorder.c (fixup_reorder_chain): Don't look up new block again.
4934 (reorder_basic_blocks): If no epilogue in rtl, force last block last.
4935
4936 2000-04-17 Mark Mitchell <mark@codesourcery.com>
4937
4938 * function.c (expand_function_start): Use hard_function_value to
4939 compute the RTL to use for DECL_RESULT.
4940
4941 Mon Apr 17 23:35:29 MET DST 2000 Jan Hubicka <jh@suse.cz>
4942
4943 * i386.c (athlon_cost): Fix lea, divide and XFmode move costs.
4944 (x86_integer_DFmode_moves, x86_partial_reg_dependency,
4945 x86_memory_mismatch_stall): New global variables.
4946 (ix86_adjust_cost): Handle MEMORY_BOTH on places MEMORY_STORE was only
4947 alloved; fix load penalties for Athlon.
4948 * i386.h (x86_integer_DFmode_moves, x86_partial_reg_dependency,
4949 x86_memory_mismatch_stall): Declare.
4950 (TARGET_INTEGER_DFMODE_MOVES, TARGET_PARTIAL_REG_DEPENDENCY,
4951 TARGET_MEMORY_MISMATCH_STALL): New.
4952 * i386.md (athlon scheduling parameters): Fix latencies according to
4953 Athlon Optimization Manual.
4954 (sahf, xchg, fldcw, leave instruction patterns): Set athlon_decode to
4955 vector.
4956 (fsqrt instruction patterns): Set athlon_decode to direct.
4957 (movhi_1): Promote for TARGET_PARTIAL_REG_DEPENDENCY and for
4958 PARTIAL_REGISTER_STALL with !TARGET_HIMODE_MATH machines.
4959 (movqi_1): Handle promoting correctly for TARGET_PARTIAL_REG_DEPENDENCY
4960 and TARGET_PARTIAL_REGISTER_STALL machines.
4961 (pushdf_nointeger): New pattern.
4962 (pushdf_integer): Rename from pushdf.
4963 (movdf_nointger): Enable for !TARGET_INTEGER_DFMODE_MOVES machines.
4964 (movdf_intger): Disable for !TARGET_INTEGER_DFMODE_MOVES machines.
4965
4966 2000-04-17 Richard Henderson <rth@cygnus.com>
4967
4968 * loop.c (canonicalize_condition): Add WANT_REG argument.
4969 Stop the search if we match it.
4970 * expr.h (canonicalize_condition): Update decl.
4971 * predict.c (expected_value_to_br_prob): Use it. Track last
4972 expected value note.
4973 (find_expected_value): Remove.
4974
4975 * reorg.c (mostly_true_jump): Always use BR_PROB if present.
4976
4977 2000-04-17 Zack Weinberg <zack@wolery.cumb.org>
4978
4979 * aclocal.m4 (AM_GNU_GETTEXT): Don't AC_REQUIRE([AC_FUNC_MMAP]).
4980 (AC_FUNC_MMAP_FILE): New macro, tests read-only private map of
4981 a plain file.
4982 * configure.in: Call AC_FUNC_MMAP_FILE.
4983 * configure: Regenerate.
4984 * config.in: Regenerate.
4985
4986 * intl/loadmsgcat.c: Test HAVE_MMAP_FILE not HAVE_MMAP.
4987 * fixinc/fixincl.c: Likewise.
4988
4989 2000-04-17 Richard Henderson <rth@cygnus.com>
4990
4991 * builtins.c (expand_builtin_expect): New.
4992 (expand_builtin): Call it.
4993 * builtins.def (BUILT_IN_EXPECT): New.
4994 * c-common.c (c_common_nodes_and_builtins): Declare __builtin_expect.
4995 * extend.texi: Document it.
4996
4997 * predict.c (expected_value_to_br_prob): New.
4998 (find_expected_value): New.
4999 * basic-block.h (expected_value_to_br_prob): Declare.
5000 * toplev.c (rest_of_compilation): Invoke it.
5001
5002 * rtl.h (NOTE_EXPECTED_VALUE): New.
5003 (NOTE_INSN_EXPECTED_VALUE): New.
5004 * rtl.c (note_insn_name): Update.
5005 * print-rtl.c (print_rtx): Reorg NOTE_LINE_NUMBER special
5006 cases; handle NOTE_INSN_EXPECTED_VALUE.
5007
5008 2000-04-17 Jakub Jelinek <jakub@redhat.com>
5009
5010 * config/sparc/sparc.c (eligible_for_sibcall_delay): Cannot use
5011 leaf sibcall delay slot if flag_pic.
5012 (output_sibcall): Always emit call for leaf sibcall if flag_pic.
5013
5014 2000-04-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5015
5016 * Makefile.in (stmp-fixproto): Acknowledge errors in fixproto.
5017
5018 * fixproto: If fix-header fails, exit with an error.
5019
5020 Mon Apr 17 14:59:36 MET DST 2000 Jan Hubicka <jh@suse.cz>
5021
5022 * cse.c (struct check_depdendence_data): New.
5023 (check_dependence): New function.
5024 (invalidate): Use check_depdenence.
5025
5026 2000-04-16 Mark Mitchell <mark@codesourcery.com>
5027
5028 * dwarf2out.c (DWARF_CIE_DATA_ALIGNMENT): Adjust, now that
5029 UNITS_PER_WORD is unsigned.
5030
5031 * tree.h (struct tree_common): Remove misleading comment.
5032
5033 2000-04-16 Dave Pitts <dpitts@cozx.com>
5034
5035 * Makefile.in ($(srcdir)/c-parse.y: c-parse.in): Enclose the whole
5036 message in quotes. Otherwise, IBM's make program treats the '#' as the
5037 start of a comment and ignores the remainder of the line.
5038
5039 * c-lex.c (yylex): Change for EBCDIC, lower case characters preceed
5040 upper case.
5041 * cccp.c (initialize_char_syntax): Allow for holes in EBCDIC.
5042 * cexp.y (initialize_random_junk): Likewise.
5043 * cppfiles.c (find_include_file): Cast alloca return value.
5044 * cppinit.c (initialize_standard_includes): Likewise.
5045 * cpplib.c (cpp_define, cpp_undef): Likewise.
5046 * defaults.h (ASM_OUTPUT_ASCII): Use ISPRINT.
5047 * final.c (output_asm_insn): Allow for holes in EBCDIC.
5048 * fold-const.c (CHARMASK): New.
5049 (real_hex_to_f): Use it.
5050 * real.c (CHARMASK): New.
5051 (etoasc, asctoeg): Use it.
5052 (asctoeg): EBCDIC lower case characters preceed upper case.
5053
5054 * i370.c (mvs_add_label): Change spacing for coding conventions.
5055 * i370.h (ASM_OUTPUT_CASE_LABEL): Change to the data CSECT for the
5056 outputing case vectors.
5057 (ASM_OUTPUT_CASE_END): New, put assembler back into code CSECT.
5058 (ASM_OUTPUT_ADDR_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Remove page check,
5059 since vector in in the data CSECT.
5060 (ASM_OUTPUT_REG_POP, ASM_OUTPUT_REG_PUSH): Restore to correct operation.
5061 * i370.md (Many patterns): Put the length in the XL directives.
5062 (movdi): Put back STM and MVC in definition.
5063 (floatsidf2): Correct TARGET_ELF_ABI pattern and add back the LE370
5064 pattern using the TCA.
5065 * oe.h (CPP_SPEC): Added to allow trigraphs.
5066 * xm-oe.h (HOST_BITS_PER_LONGLONG): Change to 32. IBM's compiler does
5067 not support the "long long" type.
5068
5069 2000-04-16 Mark Mitchell <mark@codesourcery.com>
5070
5071 * config/mips/mips-protos.h (mips_legitimate_address_p): New
5072 function.
5073 (mips_reg_mode_ok_for_base_p): Likewise.
5074 * config/mips/mips.h (REG_OK_STRICT_P): Don't define.
5075 (REG_OK_FOR_INDEX_P): Define unconditionally.
5076 (REG_MODE_OK_FOR_BASE_P): Use mips_reg_mode_ok_for_base_p.
5077 (GO_IF_LEGITIMATE_ADDRESS): Use mips_legitimate_address_p.
5078 * config/mips/mips.c (mips16_simple_memory_operand): Adjust now
5079 that GET_MODE_SIZE is unsigned.
5080 (mips_reg_mode_ok_for_base_p): Define.
5081 (mips_legitimate_address_p): Likewise. Adjust now
5082 that GET_MODE_SIZE is unsigned.
5083 (block_move_loop): Make the number of bytes unsigned.
5084 (expand_block_move): Likewise.
5085 (function_arg): Make the loop counter unsigned to match the
5086 boundary condition.
5087
5088 2000-04-16 Richard Henderson <rth@cygnus.com>
5089
5090 * rtl.h (enum insn_note): New enumeration. Subsume
5091 NOTE_INSN_DELETED and friends.
5092 (GET_NOTE_INSN_NAME): Adjust index by NOTE_INSN_BIAS.
5093 * rtl.c (note_insn_name): Tweak string order.
5094
5095 2000-04-15 Zack Weinberg <zack@wolery.cumb.org>
5096
5097 * cpplex.c (_cpp_read_and_prescan): Enlarge len by setting it
5098 to offset * 2.
5099
5100 * cpplex.c (output_line_command): Remove debugging prints.
5101 (cpp_output_tokens): Don't write out a zero-length buffer or
5102 try to see if it has a newline in it.
5103 (_cpp_expand_to_buffer): Copy the source buffer before pushing.
5104 (_cpp_read_and_prescan): Move shift-down of pushback bytes to
5105 the end of the loop. Use memmove. Don't read past the end of
5106 the buffer. Remove trailing newlines from error messages.
5107
5108 2004-04-16 Neil Booth <NeilB@earthling.net>
5109
5110 * cpphash.h (SYNTAX_INCLUDE, SYNTAX_ASSERT, directive_handler): new.
5111 * cpplib.c: Add new syntax flags to directive table, and
5112 supporting macros.
5113
5114 2000-04-15 Ulrich Drepper <drepper@redhat.com>
5115
5116 * i386.c (ix86_expand_epilogue): Yes, the x86 can pop 64k at once
5117 using ret $N.
5118
5119 2000-04-15 David Edelsohn <edelsohn@gnu.org>
5120
5121 * toplev.c (display_help): Prefix "f" to "sched-verbose=".
5122 * haifa-sched.c: Update -fsched-verbose comments to use "=".
5123
5124 Sat Apr 15 10:59:19 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5125
5126 * Makefile.in (ggc-page.o): Now includes toplev.h.
5127 * ggc-page.c (toplev.h): Now included.
5128 (gc_time): Remove declaration.
5129 (ggc_collect): TIME now long.
5130 * toplev.c (parse_time, varasm_time, gc_time): Still global; all
5131 others static.
5132 * toplev.h (gc_time, parse_time, gc_time): New declarations.
5133
5134 * toplev.c: Make *_time variable long to reduce chance of overflow.
5135 (TIMEVAR): Likewise for `otime'.
5136 (print_time): Arg is now long; compute percentage in FP and round.
5137 * toplev.h (print_time): Arg is long.
5138
5139 * tree.c: Minor whitespace changes.
5140
5141 * configure.in (alpha*-*-*): Add config/alpha/t-alpha.
5142 * configure: Rebuilt.
5143 * libgcc2.c (__fixunstfDI): Renamed from __fixunstfdi.
5144 (__fixunsxfDI): Renamed from __fixunsxfdi.
5145 (__fixunsdfDI): Renamed from __fixunsdfdi.
5146 (__fixunssfDI): Renamed from __fixunssfdi.
5147 (__floatdisf): Use proper type in REP_BIT macro.
5148 (__fixunsxfSI): Renamed from __fixunsxfsi.
5149 (__fixunsdfSI): Renamed from __fixunsdfsi.
5150 (__fixunssfSI): Renamed from __fixunssfsi.
5151 * libgcc2.h: Add cases for MIN_UNITS_PER_WORD > 4.
5152 Change location of macros and upper-case some names as above.
5153 * longlong.h ([alpha]): Use PARAMS, not __P in decl of __udiv__qrnnd.
5154 * config/alpha/t-alpha, config/alpha/qrnnd.asm: New files.
5155
5156 * varasm.c (assemble_variable): Add cast to remove warning.
5157 (immed_real_const_1): Only use CONST[01]_RTX if not in nested function.
5158
5159 * flow.c (count_basic_blocks, find_basic_blocks_1): Remove last change.
5160 * optabs.c (emit_libcall_block): If have REG_EH_REGION, update
5161 region number to -1.
5162
5163 2000-04-15 Richard Earnshaw (rearnsah@arm.com)
5164
5165 * emit-rtl.c (unshare_all_rtl_again): Unmark everything, then
5166 call unshare_all_rtl.
5167
5168 * arm.md (movhi): REGNO_POINTER_ALIGN is now bits.
5169
5170 Fri Apr 14 16:58:45 2000 Jim Wilson <wilson@cygnus.com>
5171
5172 * config/ia64/lib1funcs.asm (__divdi3, __moddi3, __udivdi3, __umoddi3):
5173 Use .s1 not .s0 for all FP instructions.
5174
5175 2000-04-14 Zack Weinberg <zack@wolery.cumb.org>
5176
5177 * cpplex.c (cpp_output_tokens, cpp_scan_buffer_nooutput): New public
5178 interfaces.
5179 (safe_fwrite, output_line_command): New static functions.
5180 (cpp_expand_to_buffer): Now private to cpplib.
5181 (cpp_scan_buffer): Take a printer.
5182
5183 * cpphash.h: Update prototypes.
5184 * cpplib.h: Update prototypes.
5185 (cpp_printer): New.
5186 (cpp_buffer): Remove last_nominal_fname.
5187 (cpp_reader): Remove lineno.
5188
5189 * cppmain.c: Use a cpp_printer.
5190 * fix-header.c: No need to inhibit line commands. Call
5191 cpp_start_read with no printer.
5192
5193 * cpperror.c (cpp_notice_from_errno): Provide default name.
5194 * cppfiles.c (make_IHASH, _cpp_fake_ihash): New functions.
5195 (find_include_file, cpp_read_file): Use make_IHASH.
5196 (file_cleanup): Set control_macro and clear
5197 input_stack_listing_current here.
5198 (_cpp_execute_include): Don't output entering-file marker.
5199 * cpphash.c (special_symbol): Look for the line number in the
5200 buffer, not the reader.
5201 (_cpp_macroexpand): No need to disable line commands.
5202 (_cpp_dump_definition): No need to generate line commands.
5203 (dump_hash_helper): Remove excess newline from output.
5204 * cppinit.c (dump_special_to_buffer): No need to generate line
5205 commands.
5206 (cpp_printer_init): New.
5207 (cpp_start_read): Take a printer, and start it up if it's not
5208 NULL. No need to generate line commands.
5209 (cpp_finish): Expect no buffers stacked at all. Take a
5210 printer argument, and flush the output buffer if it's not
5211 NULL.
5212 * cpplex.c (_cpp_lex_token): Return EOF if there's no buffer.
5213 Don't put two hashes at the beginning of an assertion.
5214 (cpp_get_token): Don't increment pfile->lineno or emit line
5215 commands here. Return EOF if there's no buffer when we get
5216 EOF.
5217 * cpplib.c (do_define, skip_if_group):
5218 No need to disable line commands.
5219 (_cpp_output_line_command): Delete function.
5220 (do_line): Don't emit line commands here, but set things up so
5221 they will be emitted if necessary. Use _cpp_fake_ihash to
5222 make unique nominal_fnames if necessary.
5223 (do_elif, do_else, _cpp_handle_eof): Call cpp_error_with_line
5224 with 0 for column, not -1.
5225 (_cpp_handle_eof): Don't set the control macro here. Don't
5226 clear input_stack_listing_current here. Don't emit line
5227 commands.
5228
5229 2000-04-14 Geoff Keating <geoffk@cygnus.com>
5230
5231 * config/rs6000/sysv4.h (LINK_START_SOLARIS_SPEC): Define to empty
5232 always, use the default SVR4 start address.
5233
5234 * config/rs6000/linux.h (LINK_SPEC): Don't define.
5235 (LINK_SHLIB_SPEC): Define.
5236 (LINK_START_DEFAULT_SPEC): Define.
5237 (LINK_OS_DEFAULT_SPEC): Define.
5238
5239 * config/rs6000/sysv4.h (ENDFILE_SPEC): Use the %(endfile_*) macros.
5240
5241 * config/rs6000/eabi.asm (__eabi): Call __init rather than
5242 __do_global_ctors to handle constructors.
5243 * config/rs6000/sysv4.h (STARTFILE_ADS_SPEC): Use crtbegin.
5244 (STARTFILE_YELLOWKNIFE_SPEC): Likewise.
5245 (STARTFILE_MVME_SPEC): Likewise.
5246 (STARTFILE_SIM_SPEC): Likewise.
5247 (ENDFILE_ADS_SPEC): Use crtend.
5248 (ENDFILE_YELLOWKNIFE_SPEC): Likewise.
5249 (ENDFILE_MVME_SPEC): Likewise.
5250 (ENDFILE_SIM_SPEC): Likewise.
5251 (STARTFILE_SOLARIS_SPEC): Use crtbegin/crtbeginS.
5252 (ENDFILE_SOLARIS_SPEC): Use crtend/crtendS.
5253 (STARTFILE_LINUX_SPEC): Use crtbeginS for shared objects.
5254 (ENDFILE_LINUX_SPEC): Use crtendS for shared objects.
5255 * config/rs6000/t-ppccomm (LIB2FUNCS_EXTRA): Don't build eabi-ctors.o.
5256 (EXTRA_MULTILIB_PARTS): Build crtbeginS/crtendS.
5257 (CRTSTUFF_T_CFLAGS_S): Define.
5258 * config/rs6000/eabi-ctors.c: Delete.
5259
5260 * config/rs6000/eabi-ci.asm (__init): Align stack to 16-byte
5261 boundary.
5262 (__fini): Likewise.
5263 * config/rs6000/eabi-cn.asm (__init): Allow for 16-byte stack frame.
5264 boundary.
5265 (__fini): Likewise.
5266
5267 Fri Apr 14 16:09:02 2000 Jim Wilson <wilson@cygnus.com>
5268
5269 * combine.c (force_to_mode, case LSHIFTRT): Check that shift shift
5270 plus mask size is smaller or equal to the mode size.
5271
5272 Fri Apr 14 18:07:30 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5273
5274 * print-rtl.c (print_rtx, case NOTE): Don't blow up if NOTE_BASIC_BLOCK
5275 not yet set.
5276
5277 * expr.c (reload.h): Now included.
5278 (emit_block_move): Set volatile_ok when checking for movstr.
5279 (emit_move_1): Check for replacements in addresses in multi-word case.
5280 * Makefile.in (expr.o): Now includes reload.h.
5281
5282 * flow.c (count_basic_blocks): Remove unused var PREV_CALL.
5283 Never have a LIBCALL end a basic block.
5284 (find_basic_blocks_1): Likewise.
5285 Reorganize CALL_INSN cases.
5286
5287 * sbitmap.h (EXECUTE_IF_SET_IN_SBITMAP): Revert last change.
5288
5289 Fri Apr 14 10:54:22 2000 Jim Wilson <wilson@cygnus.com>
5290
5291 * config/ia64/lib1funcs.asm (__ia64_nonlocal_goto): Drop obsolete
5292 completers from mov.ret instruction.
5293
5294 2000-04-14 Richard Henderson <rth@cygnus.com>
5295
5296 * fold-const.c (extract_muldiv): Don't distribute and widen
5297 multiply across plus for non-sizetype unsigned types.
5298
5299 2000-04-14 Richard Henderson <rth@cygnus.com>
5300
5301 * flow.c (find_auto_inc): Don't autoinc eliminable registers.
5302 If the original source is dead in the incr insn, it's dead now.
5303
5304 Fri Apr 14 07:40:32 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5305
5306 * stor-layout.c (layout_decl): Properly compare KNOWN_ALIGN to
5307 see if DECL_BIT_FIELD needs to still be set.
5308
5309 * tree.h (struct tree_type): Make PRECISION 9 bits and MODE 7.
5310
5311 * dbxout.c (dbxout_type, case INTEGER_TYPE): Don't call
5312 print_int_cst_octal with something that's not an INTEGER_CST.
5313
5314 * config/alpha/alpha.c (alpha_emit_floatuns): Ensure we pass a REG
5315 and not a SUBREG to a FLOAT rtl.
5316
5317 Thu Apr 13 19:39:56 2000 Clinton Popetz <cpopetz@cygnus.com>
5318
5319 * emit-rtl.c (try_split): Avoid infinite loop if the split
5320 results in a sequence that contains the original insn.
5321
5322 2000-04-13 Andreas Jaeger <aj@suse.de>
5323
5324 * config/mips/mips.c (expand_block_move): Pass alignment
5325 argument to move_by_pieces in bits, not bytes.
5326
5327 * config/mips/linux.h (CPP_PREDEFINES): Also define __PIC__ and
5328 __pic__ for little endian.
5329
5330 2000-04-13 Andreas Jaeger <aj@suse.de>
5331
5332 * config/i386/i386-protos.h: Add prototype for
5333 uno_comparison_operator.
5334
5335 Thu Apr 13 15:55:08 MET DST 2000 Jan Hubicka <jh@suse.cz>
5336
5337 * alias.c (nonlocal_reference_p): Take care of CALL_INSNS's fusage.
5338 * calls.c (ECF_PURE): New flag.
5339 (emit_call_1): Handle ECF_PURE calls.
5340 (initialize_argument_information): Unset ECF_PURE flag too.
5341 (precompute_arguments): Precompute for ECF_PURE too.
5342 (expand_call): Handle ECF_PURE calls too.
5343 (emit_library_call_value_1): Rename no_queue argument to fn_type,
5344 accept value of 2 as pure function.
5345 (emit_library_call_value, emit_library_call): Rename no_queue argument
5346 to fn_type.
5347 * optabs.c (prepare_cmp_insn): Pass fn_type 2 to memcmp call.
5348
5349 * tree.h (DECL_IS_PURE): New macro.
5350 (struct tree_decl): Add pure_flag.
5351 * c-common.c (enum attrs): Add attribute "pure".
5352 (init_attributes): Initialize attribute "pure"
5353 (decl_attributes): Handle attribute "pure".
5354 * extend.texi (Attribute "pure"): Document.
5355 * calls.c (expand_call): Add (mem:BLK (scratch)) to "equal from"
5356 in pure function.
5357 (flags_from_decl_or_type): Support attribute "pure".
5358
5359 2000-04-13 Jason Merrill <jason@casey.cygnus.com>
5360
5361 * cpplex.c (_cpp_lex_token): Handle digraphs. Don't null-terminate
5362 the token except for numbers and identifiers.
5363
5364 Thu Apr 13 00:09:16 EDT 2000 John Wehle (john@feith.com)
5365
5366 * i386.c (ix86_expand_binary_operator,
5367 ix86_expand_unary_operator): Check no_new_pseudos
5368 instead of reload_in_progress and reload_completed.
5369 (ix86_split_ashldi, ix86_split_ashrdi,
5370 ix86_split_lshrdi): Check no_new_pseudos instead
5371 of reload_completed.
5372
5373 2000-04-12 Jeffrey A Law (law@cygnus.com)
5374
5375 * function.c (purge_addressof): Unshare any shared rtl created by
5376 purge_addressof and its children.
5377
5378 2000-04-12 Mark Mitchell <mark@codesourcery.com>
5379
5380 * function.c (aggregate_value_p): VOID_TYPE nodes are never
5381 aggregates.
5382
5383 2000-04-05 Andreas Jaeger <aj@suse.de>
5384
5385 * config/mips/linux.h (SUBTARGET_ASM_SPEC): Use proper flags if
5386 not compiling PIC code, add flags for mabi=64.
5387 (SUBTARGET_CPP_SIZE_SPEC): New.
5388 (SUBTARGET_CPP_SPEC): New.
5389 (CPP_PREDEFINES): Define __PIC__ and __pic__. PIC code is default
5390 for MIPS/Linux and lots of code needs these defines.
5391
5392 Wed Apr 12 22:44:11 2000 Hans-Peter Nilsson <hp@axis.com>
5393
5394 * reorg.c (fill_slots_from_thread): Check side_effects_p when
5395 trying the "opposite arithmetic" approach.
5396
5397 Wed Apr 12 20:51:20 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
5398
5399 * sh.h (STRUCT_VALUE): Just 0 for TARGET_HITACHI.
5400 (struct sh_args): Add new field force_mem.
5401 (INIT_CUMULATIVE_ARGS): Initialize it.
5402 (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Act on it.
5403
5404 Wed Apr 12 17:20:41 MET DST 2000 Jan Hubicka <jh@suse.cz>
5405
5406 * calls.c (expand_call): Do not reverse args in "equal from" field.
5407 (emit_library_call_value_1): Emit_libcall_block for const and pure
5408 function.
5409
5410 Wed Apr 12 16:00:25 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
5411
5412 * reload1.c (reload_combine): Don't enable optimization for fixed
5413 registers when encountering a BARRIER.
5414
5415 Wed Apr 12 15:54:11 MET DST 2000 Jan Hubicka <jh@suse.cz>
5416
5417 * builtins.c (expand_builtin_memcmp): Do expansion even with
5418 !HAVE_cmpstrsi, do libcall when gen_strcmpsi fails.
5419
5420 * calls.c (expand_call): Do NO_DEFER_POP unconditionally once
5421 stack is propertly aligned; add sanity checking for aligned
5422 stack pointer.
5423 (expand_library_call_value_1): Add sanity checking for aligned
5424 stack pointer.
5425
5426 Wed Apr 12 07:51:54 2000 Catherine Moore <clm@cygnus.com>
5427
5428 * calls.c (emit_library_call_value_1): Change 3rd arg to
5429 locate_and_pad_parm to disregard the setting of partial.
5430
5431 Wed Apr 12 08:47:38 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5432
5433 * tree.c (unsave_expr_now_r, unsafe_for_reeval): Properly do TREE_LIST.
5434
5435 * print-rtl.c (print_rtx): For CALL_PLACEHOLDER, output the
5436 CALL_INSN from the normal case.
5437
5438 Fri Apr 7 12:23:04 MET DST 2000 Jan Hubicka <jh@suse.cz>
5439
5440 * i386.c (x86_sub_esp_4, x86_sub_esp_8, x86_add_esp_4, x86_add_esp_8):
5441 New global variables.
5442 (ix86_emit_epilogue_adjustment): Do not attempt to use pop for the
5443 adjustment.
5444 * i386.h (x86_sub_esp_4, x86_sub_esp_8, x86_add_esp_4, x86_add_esp_8):
5445 Declare,
5446 (TARGET_SUB_ESP_4, TARGET_SUB_ESP_8, TARGET_ADD_ESP_4,
5447 TARGET_ADD_ESP_8): New macros.
5448 * i386.md: Add peep2s to convert esp adjustments to push and pop
5449 instructions.
5450 (pushsi_prologue, popsi_epilogue): New patterns.
5451
5452 2000-04-12 Jakub Jelinek <jakub@redhat.com>
5453
5454 * real.c (toe64): Remove stale #endif from the last change.
5455
5456 2000-04-12 Stephen L Moshier <moshier@mediaone.net>
5457
5458 * real.h (MAX_LONG_DOUBLE_TYPE_SIZE): Comment.
5459 * real.c (toe64): Revert previous change.
5460
5461 2000-04-12 Jakub Jelinek <jakub@redhat.com>
5462
5463 * objc/objc-act.c: Include ggc.h.
5464 (objc_tree_index, objc_global_trees): Convert most of the
5465 static tree variables into a static array with previous names
5466 as defines.
5467 (objc_ellipsis_node): New variable.
5468 (lang_init): Call objc_act_parse_init and c_parse_init.
5469 Create objc_ellipsis_node.
5470 (build_selector_translation_table): Use objc_ellipsis_node instead
5471 of (tree)1.
5472 (hack_method_prototype): Likewise.
5473 (get_arg_type_list): Likewise.
5474 (start_method_def): Likewise.
5475 (continue_method_def): Likewise.
5476 (gen_method_decl): Likewise.
5477 (ggc_mark_imp_list): New function.
5478 (ggc_mark_hash_table): New function.
5479 (objc_act_parse_init): New function.
5480 * objc/objc-act.h (objc_ellipsis_node): Add extern variable.
5481 * c-parse.in (c_parse_init): For objc add roots of objc specific
5482 local tree variables.
5483 * objc/objc-parse.y: Rebuilt.
5484 * objc/objc-parse.c: Rebuilt.
5485 (opt_parm_list): Use objc_ellipsis_node instead of (tree)1.
5486
5487 Wed Apr 12 01:00:44 EDT 2000 John Wehle (john@feith.com)
5488
5489 * cse.c (delete_trivially_dead_insns): Also delete insns
5490 that copy a register to itself where the destination is
5491 a strict_low_part.
5492
5493 2000-04-11 Richard Henderson <rth@cygnus.com>
5494
5495 * flow.c (struct propagate_block_info): Add new_dead, new_live.
5496 (propagate_block): Initialize them. Use them in parallel instead
5497 of one tmp variable, ie revert much of the 0408 and 0407 functional
5498 changes, but keep the structural changes.
5499 (mark_set_regs): Take new_dead from propagate_block_info instead.
5500 (mark_set_1, mark_set_reg): Likewise.
5501 (mark_used_regs): Likewise with new_live.
5502 (mark_used_reg): Likewise. Revert 0408 change.
5503
5504 2000-04-11 Nick Clifton <nickc@cygnus.com>
5505
5506 * config/arm/arm.h: (INCOMING_RETURN_ADDR_RTX): Remove Dwarf2
5507 restriction.
5508 (DWARF_FRAME_RETURN_COLUMN): Remove Dwarf2 restriction.
5509
5510 2000-04-11 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
5511
5512 * config/elfos.h (SELECT_SECTION): Decide whether to use a data or
5513 const section to output a CONSTRUCTOR based on the same conditions
5514 used for VAR_DECLs.
5515
5516 Tue Apr 11 09:55:59 2000 Jeffrey A Law (law@cygnus.com)
5517
5518 * pa/long-double.h (FIX_TRUNCTFSI2_LIBCALL): Tweak for PA64.
5519 * pa/pa-protos.h (output_call): Add additional argument indicating
5520 if the call is a sibling/tail call.
5521 (compute_zdepdi_operands, output_64bit_and): Prototype new functions.
5522 (compute_64bit_ior, cmpib_comparison_operator): Likewise.
5523 (function_arg, function_arg_partial_nregs): Likewise
5524 * pa/pa.c (override_options): Always set flag_pic for TARGET_64BIT.
5525 (emit_move_sequence): Zero extend certain constants as needed
5526 for TARGET_64BIT.
5527 (compute_zdepdi_operands, output_64bit_and): New functions.
5528 (output_64bit_ior, function_arg): Likewise.
5529 (cmpib_comparison_operator, function_arg_partial_nregs): Likewise.
5530 (compute_frame_size, hppa_expand_prologue): Handle TARGET_64BIT.
5531 (hppa_expand_epilogue, return_addr_rtx, hppa_va_arg): Likewise.
5532 (hppa_builtin_saveregs, output_cbranch, output_bb): Likewise.
5533 (output_bvb): Likewise.
5534 (output_millicode_call): Return pointer is in %r2 for TARGET_64BIT.
5535 (output_call): New argument 'sibcall'. Generate sibcall sequences
5536 as needed.
5537 (print_operand); Handle cases 'Q', 'p', and 'z' for TARGET_64BIT. For
5538 (ouput_arg_descriptor): Do not emit argument descriptors for
5539 TARGET_64BIT.
5540 * pa/pa.h (TARGET_PA_11, TARGET_PA_20): Only define if not already
5541 defined.
5542 (TARGET_64BIT, PROMOTE_FUNCTION_RETURN): Define.
5543 (FUNCTION_OK_FOR_SIBALL): Define.
5544 (CPP_PA10_SPEC, CPP_PA11_SPEC, CPP_PA20_SPEC): Define.
5545 (CPP_CPU_DEFAULT_SPEC, SUBTARGET_EXTRA_SPECS, EXTRA_SPECS): Likewise.
5546 (CPP_SPEC): Use new spec infrastructure.
5547 (BITS_PER_WORD, UNITS_PER_WORD): Handle TARGET_64BIT.
5548 (STACK_BOUNDARY, FUNCTION_BOUNDARY, PIC_OFFSET_TABLE_REGNUM): Likewise.
5549 (RETURN_IN_MEMORY, EXTRA_CONSTRAINT, FIRST_PARM_OFFSET): Likewise.
5550 (REG_PARM_STACK_SPACE, STACK_POINTER_OFFSET): Likewise.
5551 (STACK_DYNAMIC_OFFSET, FUNCTION_VALUE): Likewise.
5552 (FUNCTION_ARG_PASS_BY_REFERENCE, FUNCTION_ARG_CALLEE_COPIES): Likewise.
5553 (TRAMPOLINE_TEMPLATE, TRAMPOLINE_SIZE): Likewise.
5554 (INITIALIZE_TRAMPOLINE, LEGITIMATE_CONSTANT_P): Likewise.
5555 (CONST_OK_FOR_LETTER_P, MOVE_RATIO): Likewise.
5556 (FUNCTION_ARG); Call out to C code.
5557 (FUNCTION_ARG_PARTIAL_NREGS): Likewise.
5558 (MAX_BITS_PER_WORD, MAX_LONG_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): Define.
5559 (MIN_UNITS_PER_WORD): Likewise.
5560 * pa/pa.md (cmpdi): New expander.
5561 (scc patterns, movstrsi): Not available for TARGET_64BIT.
5562 (64bit conditional arithmetic): New patterns.
5563 (absdi2, smindi3, umindi3, smaxdi3, umaxdi3): New patterns.
5564 (movsicc): Not available if modes on all the operands to not match.
5565 (movdicc): New expander and associated patterns.
5566 (64bit branches): New patterns.
5567 (pre_load, post_store): Generate appropriate code for TARGET_64BIT.
5568 (pre_ldd, post_std): New patterns.
5569 (64bit addil, load low part): New patterns.
5570 (special movsf constant): Not available for TARGET_64BIT.
5571 (movsf, movdf expanders): Force constants into memory.
5572 (32bit movdf/movdi patterns): Disable for TARGET_64BIT.
5573 (64bit movdf/movdi patterns): New patterns.
5574 (zero_extendqidi2, zero_extendhidi2, zero_extendsidi2): New patterns
5575 for TARGET_64BIT.
5576 (extendqidi2, extendhidi2, extendsidi2): Similarly.
5577 (adddi3 expander): Allow "arith_operand" for second input.
5578 (32bit adddi3, subdi3, uaddcm): Disable for TARGET_64BIT.
5579 (64bit adddi3, subsi3, uaddcm): New patterns for TARGET_64BIT.
5580 (mulsi3 expander): Revamp slightly so it supports TARGET_64BIT too.
5581 (muldi3): New expander for TARGET_64BIT.
5582 (divsi3, udivsi3, modsi3, umodsi3): Fourth operand must be (reg:SI 2)
5583 for TARGET_64BIT.
5584 (32bit anddi3, iordi3, xordi3, andcm, negdi2, uaddcm): Disable
5585 patterns for TARGET_64BIT.
5586 (64bit anddi3, iordi3, xordi3, andcm, negdi2, uaddcm, shadd): New
5587 patterns for TARGET_64BIT.
5588 (64bit bit insertion/extractions): New patterns for TARGET_64BIT.
5589 (64bit shifts/rotates): New patterns/expanders for TARGET_64BIT.
5590 (sibcall_epilogue): New expander.
5591 (casesi): Tweak for TARGET_64BIT.
5592 (call expanders): Set & use the outgoing argument pointer. Use the
5593 64bit call patterns as needed. Add additional arg to output_call.
5594 (call_internal_reg_64bit, call_value_internal_reg_64bit): New pattern.
5595 (sibcall, sibcall_internal_symref): New expanders.
5596 (sibcall_value, sibcall_value_internal_symref
5597 (interspace_jump): Turn into an expander + matching patterns.
5598 (canonicalize_funcptr_for_compare): Not needed for TARGET_64BIT.
5599 * pa/pa64-regs.h: Eliminate trigraph sequences.
5600 * pa/pa64-start.h (TARGET_PA_20): Fix typo.
5601
5602 2000-04-11 Zack Weinberg <zack@wolery.cumb.org>
5603
5604 * cppexp.c, cpphash.c, cpphash.h, cpplex.c, cpplib.c,
5605 cpplib.h, cppmain.c, fix-header.c, scan-decls.c: Replace
5606 cpp_token with cpp_ttype everywhere.
5607 * cpperror.c, cpphash.c, cpplex.c, cpplib.c, scan-decls.c:
5608 Replace cpp_buf_line_and_col with CPP_BUF_LINE and/or
5609 CPP_BUF_COL. Line and column numbers are unsigned int, not
5610 long.
5611 * cpplex.c (cpp_buf_line_and_col): Delete.
5612 * cpplib.h (struct cpp_buffer, struct cpp_reader): Change
5613 'long lineno' to 'unsigned int lineno'.
5614 (CPP_BUF_LINE, CPP_BUF_COL): New macros.
5615
5616 2000-04-11 Martin v. Löwis <loewis@informatik.hu-berlin.de>
5617
5618 * extend.texi: ISO C99 is not a draft anymore.
5619 * invoke.texi: ISO C++ is not a draft anymore.
5620 * cpp.texi: __cplusplus is required by the ISO standard.
5621
5622 * extend.texi (-fthis-is-variable): Undocument.
5623 * flags.h (warn_template_debugging): Remove declaration.
5624 * gcc.1 (-fall-virtual, -fenum-int-equiv, -fthis-is-variable,
5625 -Wenum-clash, -Wtemplate-debugging): Undocument.
5626
5627 2000-04-10 Nick Clifton <nickc@cygnus.com>
5628
5629 * config/arm/arm.h (HOST_INT): New macro: Declare a HOST_WIDE_INT
5630 integer.
5631 (HOST_UINT): New macro: Declare an unsigned HOST_WIDE_INT
5632 integer.
5633 (ARM_SIGN_EXTEND): Use HOST_UINT.
5634 (STRIP_NAME_ENCODING): Prevent warnings about redefinitions.
5635 (ASM_OUTPUT_LABELREF): Prevent warnings about redefinitions.
5636 (INCOMING_RETURN_ADDR_RTX): Only define if Dwarf2 is supported.
5637 (DWARF_FRAME_RETURN_COLUMN): Only define if Dwarf2 is supported.
5638
5639 * config/arm/arm.c: (const_ok_for_arm): Use HOST_UINT.
5640 (arm_gen_constant): Use HOST_UINT.
5641 (arm_canonicalize_constant): Use HOST_UINT.
5642 (arm_reload_in_hi): Use HOST_UINT.
5643 (arm_reload_out_hi): Use HOST_UINT.
5644 (output_multi_immediate): Use HOST_UINT.
5645 (int_log2): Use HOST_UINT.
5646 (arm_poke_function_name): Use HOST_UINT.
5647 (arm_output_epilogue): Use arm_volatile_func().
5648 (output_thumb_prologue): Use arm_strip_name_encoding().
5649
5650 Mon Apr 10 15:40:59 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5651
5652 * sbitmap.c (sbitmap_a_subset_b_p): Rework loop to avoid potential
5653 of sequence point problems.
5654
5655 2000-04-10 Nathan Sidwell <nathan@codesourcery.com>
5656
5657 * rtl.def (ASHIFT, ROTATE, ASHIFTRT, LSHIFTRT, ROTATERT):
5658 Recomment.
5659 * tree.def (LSHIFT_EXPR, RSHIFT_EXPR): Recomment.
5660
5661 Mon Apr 10 07:21:13 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5662
5663 * sbitmap.h: Whitespace changes and use upper-case macro args.
5664 (struct simple_bitmap_def): All sizes now unsigned.
5665 (EXECUTE_IF_SET_IN_SBITMAP): Internal vars now _X instead of X_.
5666 * sbitmap.c (sbitmap_alloc): N_ELMS now unsigned; also local vars.
5667 (sbitmap_vector_alloc): Parms and local vars now unsigned.
5668 (sbitmap_zero): Cast bzero arg to PTR.
5669 (sbitmap_vector_zero, sbitmap_vector_one): Parm and Local var unsigned.
5670 (sbitmap_union_of_diffs): Change loop index to unsigned and rework
5671 loop to make structure clearer.
5672 (sbitmap_not, sbitmap_difference, sbitmap_a_and_b): Likewise.
5673 (sbitmap_a_or_b, sbitmap_a_subset_b_p, sbitmap_a_or_b_and_c): Likewise.
5674 (sbitmap_a_and_b_or_c): Likewise.
5675 (sbitmap_intersection_of_succs): Minor cleanups.
5676 (sbitmap_intersection_of_preds, sbitmap_union_of_succs): Likewise.
5677 (sbitmap_union_of_preds): Likewise.
5678 (sbitmap_first_set_bit, dump_sbitmap): Local variables now unsigned.
5679 (debug_sbitmap): New function.
5680
5681 * c-convert.c (convert): Handle REFERENCE_TYPE like POINTER_TYPE.
5682 * c-typeck.c (convert_for_assignment): Likewise.
5683
5684 * expmed.c (init_expmed): Don't free objects we make.
5685 * emit-rtl.c (gen_rtx_CONST_INT, init_emit_once): Minor cleanups.
5686
5687 * expr.c (get_inner_reference): Correct some WITH_RECORD_EXPR cases.
5688 (expand_expr, case CONVERT_EXPR): Pass proper alignment to store_field.
5689
5690 * gcse.c (expr_hash_table_size): Now unsigned.
5691 (compute_ae_gen): Local variable `i' now unsigned.
5692 (compute_ae_kill, pre_insert_copies, pre_delete, pre_gcse): Likewise.
5693 (compute_transout, hoist_code): Likewise.
5694 (compute_local_properties): Likewise, also hash_table_size.
5695 (alloc_expr_hash_table): N_INSNS now unsigned.
5696 (delete_null_pointer_checks): Mark arg F as unused.
5697
5698 * regrename.c: Minor cleanups, including chang some variables
5699 to unsigned int.
5700
5701 2000-04-10 Neil Booth <NeilB@earthling.net>
5702
5703 * cpplex.c (skip_block_comment): Use pointer arithmetic rather
5704 than GETC ().
5705 * cpphash.h: (CPP_BUMP_BUFFER_LINE_CUR, CPP_BUMP_LINE_CUR): New.
5706
5707 2000-04-10 Martin v. Löwis <loewis@informatik.hu-berlin.de>
5708
5709 * invoke.texi (-fno-gnu-keywords): Remove classof, headof,
5710 __classof__, and __headof__ from the list of gnu keywords.
5711 (-ansi): Remove -foperator-names from list of implied options.
5712 Do not call it ANSI C++.
5713 (-foperator-names): Document as -fno-operator-names.
5714
5715 2000-04-09 Zack Weinberg <zack@wolery.cumb.org>
5716
5717 * cpphash.c (timestamp): Delete.
5718 (del_HASHNODE): If type is T_MCONST, free value.cpval.
5719 (special_symbol): Remove unnecessary braces. Remove
5720 T_VERSION. Treat T_STDC like T_CONST unless
5721 STDC_0_IN_SYSTEM_HEADERS. Render both __DATE__ and __TIME__
5722 when one is encountered, then convert them into T_MCONST
5723 nodes.
5724 * cppinit.c (builtin_array): version_string is T_MCONST.
5725 __STDC__ has a "1" in its cpval. Don't have a terminator
5726 entry. Clean up which entries are dumped.
5727 (initialize_builtins): Only __STDC__ gets the special
5728 -traditional treatment. Count the length of builtin_array.
5729 Render version_string here.
5730 * cpphash.h: Remove T_VERSION. Add T_MCONST.
5731 * cpplib.h (struct cpp_reader): Remove timebuf.
5732
5733 2000-04-09 Richard Henderson <rth@cygnus.com>
5734
5735 * genrecog.c (pred): Update comparison_operator for the unordered
5736 operators.
5737
5738 * config/i386/i386.c (no_comparison_operator): Disallow unordered
5739 operators.
5740 (fcmov_comparison_operator): Allow UNORDERED/ORDERED.
5741 (uno_comparison_operator): New.
5742 (put_condition_code): Handle UNORDERED/ORDERED.
5743 (unsigned_comparison): Likewise.
5744 (ix86_fp_compare_mode): Broken out of ix86_expand_fp_compare.
5745 (ix86_use_fcomi_compare, ix86_prepare_fp_compare_args): Likewise.
5746 (ix86_expand_fp_compare): Use them. Take scratch as argument,
5747 update all callers. Handle all 8 unordered operators.
5748 (ix86_expand_setcc): Lose the unordered argument, update all callers.
5749 (ix86_expand_branch): Likewise. Don't fully expand fp branches.
5750 * config/i386/i386.h (PREDICATE_CODES): Update.
5751 * config/i386/i386-protos.h (ix86_expand_fp_compare): Declare.
5752 (ix86_expand_branch, ix86_expand_setcc): Update.
5753 * config/i386/i386.md (sunordered, sordered): New.
5754 (suneq, sunge, sungt, sunle, sunlt, sltgt): New.
5755 (bunordered, bordered): New.
5756 (buneq, bunge, bungt, bunle, bunlt, bltgt): New.
5757 (*fp_jcc_1, *fp_jcc_2, *fp_jcc_3, *fp_jcc_4): New.
5758 (*fp_jcc_5, *fp_jcc_6, and splitters): New.
5759
5760 2000-04-09 Philip Blundell <philb@gnu.org>
5761
5762 * config/arm/arm.h (ARM_NAME_ENCODING_LENGTHS): Strip `*' too.
5763
5764 Sun Apr 9 15:16:14 EDT 2000 John Wehle (john@feith.com)
5765
5766 * i386.md (fix_truncsfhi2, fix_truncdfhi2,
5767 fix_truncxfhi2): New patterns.
5768 * i386.c (output_fix_trunc): Handle converting to HImode.
5769
5770 2000-04-08 Alex Samuel <samuel@codesourcery.com>
5771
5772 * ssa.c (convert_to_ssa): Eliminate dead code when calling
5773 life_analysis.
5774 (convert_from_ssa): Call compute_bb_for_insn before life_analysis.
5775 (for_each_successor_phi): Change parameter to basic_block.
5776 (coalesce_regs_in_successor_phi_nodes): Likewise.
5777 (coalesce_regs_in_copies): Likewise.
5778 (compute_coalesced_reg_partition): Use basic_block instead of index.
5779 * rtl.h (convert_to_ssa): Delete.
5780 (convert_from_ssa): Likewise.
5781 (successor_phi_fn): Likewise.
5782 (for_each_successor_phi): Likewise.
5783 (in_ssa_form): Likewise.
5784 * basic-block.h (convert_to_ssa): Moved from rtl.h.
5785 (convert_from_ssa): Likewise.
5786 (successor_phi_fn): Likewise.
5787 (in_ssa_form): Likewise.
5788 (for_each_successor_phi): Likewise. Change parameter to basic_block.
5789 * flow.c (calculate_global_regs_live): Pass a basic_block to
5790 for_each_successor_phi.
5791
5792 2000-04-08 Richard Henderson <rth@cygnus.com>
5793
5794 * flow.c (mark_used_reg): Use reg_set_p to determine if a register
5795 was modified in the current insn.
5796
5797 2000-04-08 Richard Earnshaw (rearnsha@arm.com)
5798
5799 * arm/thumb.md: Delete.
5800 * arm/thumb-protos.h: Delete.
5801
5802 2000-04-08 Richard Earnshaw (rearnsha@arm.com)
5803
5804 Merge changes from merged-arm-thumb-backend-branch onto trunk.
5805
5806 2000-04-08 Richard Earnshaw (rearnsha@arm.com)
5807
5808 * Merge trunk code from tag merged-arm-thumb-backend-merge_20000408
5809 into branch.
5810
5811 * arm.md (nop): Use the standard RTL expression. Don't code as a
5812 define_expand.
5813 (*arm_nop, *thumb_nop): Delete.
5814
5815 * arm.c (const_ok_for_arm): Don't use ANSI extensions for defining
5816 constants. Use casts instead.
5817 (arm_gen_constant, arm_rtx_costs, arm_reload_in_hi, arm_reload_out_hi,
5818 output_multi_immediate, arm_poke_function_name): Likewise.
5819 * arm.h (ARM_LEGITIIMIZE_RELOAD_ADDRESS, ARM_SIGN_EXTEND,
5820 MASK_RETURN_ADDDR): Likewise.
5821
5822 2000-03-31 Richard Earnshaw (rearnsha@arm.com)
5823
5824 * Merge trunk code from tag merged-arm-thumb-backend-merge_20000325
5825 into branch.
5826
5827 * arm.md (eh_epilogue): New function.
5828 * arm.h (struct machine_function): Move to here ...
5829 * arm.c: ... from here.
5830 (arm_output_epilogue): Support epilogues for __builtin_eh_return.
5831 (thumb_exit): Extra parameter eh_ofs. All callers changed.
5832 Handle epilogues for __builtin_eh_return. Make bit-fields unsigned.
5833
5834 2000-03-30 Nick Clifton <nickc@cygnus.com>
5835
5836 * config/arm/semi.h (ASM_SPEC): Restore definition.
5837 (SUBTARGET_EXTRA_ASM_SPEC): Define if not already defined.
5838
5839 * config/arm/elf.h (ASM_SPEC): Restore definition.
5840 (SUBTARGET_EXTRA_ASM_SPEC): Define if not already defined.
5841
5842 * config/arm/arm.h (ASM_SPEC): Remove definition.
5843 (SUBTARGET_EXTRA_ASM_SPEC): Remove definition.
5844
5845 2000-03-26 Bernd Schmidt <bernds@cygnus.co.uk>
5846
5847 * config/arm/arm.c: Disable -fschedule-insns for Thumb.
5848
5849 2000-03-24 Nick Clifton <nickc@cygnus.com>
5850
5851 Various formating tidyups, elimination of compile time
5852 warnings and synchronisation with internal sources:
5853
5854 * config/arm/arm-protos.h (assemble_align): Add prototype.
5855 (gen_rotated_half_load): Rename to arm_gen_rotated_half_load.
5856 (gen_comapre_reg): Rename to arm_gen_compare_reg.
5857 (arm_return_addr_rtx): Rename to arm_return_addr.
5858
5859 * config/arm/arm.c: Include except.h.
5860 Define shorter typenames for strict minipool_node and struct
5861 minipool_fix.
5862 (arm_return_in_memory): For WinCE return all structures <= 32 bits
5863 in memory.
5864 (gen_rotated_half_load): Rename to arm_gen_rotated_half_load.
5865 (gen_comapre_reg): Rename to arm_gen_compare_reg.
5866
5867 * config/arm/arm.h (SUBTARGET_EXTRA_ASM_SPEC): Define if not
5868 already defined.
5869 (ASM_SPEC): Define if not already defined.
5870 (ASM_OUTPUT_DEF_FROM_DECLS): Define.
5871
5872 * config/arm/arm.md: Rename references to gen_rotated_half_load to
5873 arm_gen_rotated_half_load, and references to gen_comapre_reg to
5874 arm_gen_compare_reg.
5875 (indirect_jump): Only accept register operands.
5876 (load_indirect_jump): Keep this pattern since combine can generate
5877 it.
5878
5879 * config/arm/coff.h: Include aout.h.
5880 (MULTILIB_DEFAULTS): Only define if not already defined.
5881
5882 * config/arm/elf.h (ASM_OUTPUT_DEF_FROM_DECLS): Move definition
5883 into arm.h (so that COFF ports can support thumb based aliases).
5884 (ASM_SPEC): Move definition into arm.h
5885
5886 * config/arm/linux-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Remove
5887 redundant apcs spec.
5888 (ASM_SPEC): Move definition to arm.h
5889
5890 * config/arm/semi.h (ASM_SPEC): Move definition to arm.h
5891
5892 * config/arm/unknown-elf.h (ASM_OUTPUT_SECTION_NAME): Add support
5893 for entries in the .bss section
5894
5895 2000-03-23 Nick Clifton <nickc@cygnus.com>
5896
5897 * config/arm/arm.h (THUMB_INITIAL_ELIMINATION_OFFSET): Pass 0
5898 to thumb_far_jump_used_p.
5899
5900 * config/arm/arm-protos.h (thumb_far_jump_used_p): Take a
5901 single integer parameter.
5902
5903 * config/arm/arm.c (struct machine_function): Add two new
5904 fields, 'far_jump_used' and 'arg_pointer_live'.
5905 (thumb_far_jump_used_p): Once the decision has been made that
5906 far jumps might be used, always return true.
5907 If being called from the initial elimination offset macro then
5908 do not bother to perform the test if the arg pointer is not
5909 being used.
5910 (thumb_unexpand_epilogue): Pass 1 to thumb_far_jump_used_p().
5911 (output_thumb_prologue): Pass 1 to thumb_far_jump_used_p().
5912
5913 2000-03-23 Richard Earnshaw (rearnsha@arm.com)
5914
5915 * arm.c (output_return_instruction): Handle more cases where we can
5916 return from a function with an ldr instruction.
5917 (arm_output_epilogue): Likewise.
5918
5919 * arm.c (thumb_expand_prologue): Don't clobber the frame pointer
5920 if we need to push a large stack frame and there are no callee-saved
5921 registers.
5922
5923 * arm.c (arm_debugger_arg_offset): An offset of 0 is also valid
5924 in ARM code if the frame pointer has been eliminated.
5925
5926 * arm.md (epilogue, *epilogue_insns, consttable_*, align_4): Renumber
5927 unspec_volatile arguments to avoid duplicates.
5928 (consttable_1, consttable_2): Fixes for big-endian mode.
5929
5930 * arm.md (all ARM-mode load insns): Add neg_pool_range attribute
5931 as appropriate.
5932
5933 Re-write constant pool code.
5934 * arm.c (minipool_node, minipool_fix): New types.
5935 (minifix): Delete type.
5936 (arm_add_minipool_constant): Delete.
5937 (arm_compute_minipool_offsets, arm_find_barrier,
5938 arm_find_minipool_constant, fixup_compare, sort_fixups): Likewise.
5939 (get_jump_table_size): Now returns HOST_WIDE_INT.
5940 (move_minipool_fix_forward_ref, add_minipool_forward_ref): New
5941 functions.
5942 (move_minipool_fix_backward_ref, add_minipool_backward_ref): Likewise.
5943 (assign_minipool_offsets, arm_print_value): Likewise.
5944 (dump_minipool): Rewrite.
5945 (arm_barrier_cost): New function.
5946 (create_fix_barrier): New function.
5947 (push_minipool_barrier): New function.
5948 (push_minipool_fix): Record additional information about the fixup
5949 required.
5950 (note_invalid_constants): Remove push for (UNSPEC 3). Don't
5951 check the mode of what needs fixing.
5952 (arm_reorg): Rewrite.
5953
5954 2000-03-08 Nick Clifton <nickc@cygnus.com>
5955
5956 * config/arm/arm.md (indirect_jump): Force constant addresses into
5957 a register.
5958
5959 2000-03-01 Bernd Schmidt <bernds@cygnus.co.uk>
5960
5961 * config/arm/arm.md: Add splitter to turn SF moves into SI moves.
5962
5963 2000-02-24 Nick Clifton <nickc@cygnus.com>
5964
5965 * config/arm/arm.c (thumb_expand_prologue): Make sure that stack
5966 adjust is word aligned.
5967 (thumb_expand_epilogue): Make sure that stack adjust is word
5968 aligned.
5969
5970 * config/arm/elf.h (ASM_FILE_START): Fix type of version string.
5971
5972 2000-02-24 Bernd Schmidt <bernds@cygnus.com>
5973
5974 * config/arm/arm.h (THUMB_GO_IF_LEGITIMATE_ADDRESS): Allow frame
5975 pointer relative addresses.
5976
5977 2000-02-10 Richard Earnshaw <rearnsha@arm.com>
5978
5979 * arm.c (find_barrier): Find the last barrier within the allowed
5980 range.
5981
5982 2000-02-09 Nick Clifton <nickc@cygnus.com>
5983
5984 * config/arm/arm-protos.h: Replace PROTO with PARAMS.
5985
5986 2000-02-09 Nick Clifton <nickc@cygnus.com>
5987
5988 * config/arm/linux-elf.h (FUNCTION_PROFILER): Rename to
5989 ARM_FUNCTION_PROFILER.
5990
5991 * config/arm/netbsd.h (FUNCTION_PROFILER): Rename to
5992 ARM_FUNCTION_PROFILER.
5993
5994 * config/arm/linux-oldld.h: Imported from mainline sources.
5995
5996 2000-02-07 Nick Clifton <nickc@cygnus.com>
5997
5998 * config/arm/lib1funcs.asm: Merge in thumb functions from
5999 lib1thumb.asm.
6000
6001 * config/arm/lib1thumb.asm: Delete.
6002
6003 2000-02-04 Nick Clifton <nickc@cygnus.com>
6004
6005 * config/arm/arm.c: Sychronised with current Red hat local
6006 sources.
6007 * config/arm/arm.h: Ditto.
6008 * config/arm/arm-protos.h: Ditto.
6009
6010 2000-02-02 Bernd Schmidt <bernds@cygnus.co.uk>
6011
6012 * arm.c (soft_df_operand): Reject SUBREGs containing a constant.
6013
6014 * arm.c (arm_gen_movstrqi): Generate halfword stores rather than two
6015 byte stores.
6016
6017 2000-02-02 Nick Clifton <nickc@cygnus.com>
6018
6019 * config/arm/thumb.c (thumb_exit): Additional fix for same bug.
6020
6021 * config/arm/arm.md (epilogue): Fix rtl checking abort because
6022 (return) was emited using an emit_insn() call.
6023
6024 2000-01-31 Nick Clifton <nickc@cygnus.com>
6025
6026 * config/arm/arm.c (output_thumb_prologue): Fix bug generating
6027 thumb stack frame.
6028 (thumb_exit): Move frame pointer back into hard frame pointer
6029 register if backtracing is being used.
6030
6031 2000-01-13 Richard Earnshaw (rearnsha@arm.com)
6032
6033 * Merge trunk code from tag merged-arm-thumb-backend-merge_20000113
6034 into branch.
6035
6036 1999-12-15 Bernd Schmidt <bernds@cygnus.co.uk>
6037
6038 * config/arm/arm.md (neg_pool_offset): Provide default for new
6039 attribute.
6040 (arm_movsi_insn): Add neg_pool_offset attribute.
6041 * config/arm/arm.c (arm_find_barrier): Replace arg FIX with an
6042 rtx for the insn that starts the scan and an unsigned long for its
6043 address. Add MIN_OFFSET and PINSERTED args. All callers changed.
6044 Change scan to ignore insns before MIN_OFFSET. Store size of inserted
6045 instructions in *PINSERTED.
6046 (struct minipool_fixup): Add MIN_ADDRESS elt.
6047 (sort_fixups): Compute it.
6048 (arm_reorg): Changes to support inserting pools before the insn to be
6049 fixed up.
6050
6051 1999-12-08 Bernd Schmidt <bernds@cygnus.co.uk>
6052
6053 * config/arm/elf.h (MULTILIB_DEFAULTS): Add "marm".
6054 * config/arm/linux-elf.h (MULTILIB_DEFAULTS): Add "marm".
6055 * config/arm/coff.h (MULTILIB_DEFAULTS): Add "marm".
6056
6057 Wed Nov 3 10:04:07 1999 Nick Clifton <nickc@cygnus.com>
6058
6059 * config/arm/semi.h (TARGET_VERSION): Do not define if already
6060 defined.
6061 (TARGET_DEFAULT): Do not define if already defined.
6062
6063 Tue Nov 2 10:37:25 1999 Nick Clifton <nickc@cygnus.com>
6064
6065 * config/arm/arm.md (anddi3): Allow disjoint source operands.
6066 (iordi3): Allow disjoint source operands.
6067 (xordi3): Allow disjoint source operands.
6068 (negdi2): Permit construction for ARM and Thumb.
6069 (arm_negdi2): Renamed version of old negdi2 pattern.
6070 (thumb_negdi2): New pattern: Only permit non-overlapping
6071 source and destination.
6072
6073 Fri Oct 29 18:52:38 1999 Nick Clifton <nickc@cygnus.com>
6074
6075 * config/arm/arm.c (thumb_expand_prologue): Emit a USE of the
6076 scratch low register so that it will not be deleted.
6077
6078 Fri Oct 29 15:23:48 1999 Nick Clifton <nickc@cygnus.com>
6079
6080 * config/arm/pe.h (ARM_PE): Define.
6081
6082 * config/arm/arm.c (arm_valid_machine_decl_attribute): Allow
6083 interfacearm attribute if this is a PE toolchain.
6084 (output_return_instruction): Do not emit anything if the function
6085 has the naked attribute set.
6086 (is_called_in_ARM_mode): If the function has the interfacearm
6087 attribute then return true.
6088 (thumb_expand_prologue): Do not generate a prologue for naked
6089 functions.
6090 (thumb_expand_epilogue): Do not generate an epilogie for a naked
6091 function.
6092 (output_thumb_prologue): Do not bother if the function is naked.
6093 Strip PE encoding from function name before emitting.
6094
6095 Thu Oct 28 11:05:13 1999 Richard Earnshaw <rearnsha@arm.com>
6096
6097 * arm.md (pic_load_addr): Fix constraints.
6098
6099 * arm.md (casesi_insn): Fix mis-applied patch.
6100
6101 * arm.md ("core" function unit): Add rules for single- and
6102 multi-cycle insns.
6103 (All TARGET_THUMB patterns): Add "type" attribute information
6104 where needed.
6105 * arm.c (arm_adjust_cost): Reduce the cost of a data dependency if
6106 the following insn is a CALL.
6107
6108 * arm.c (thumb_expand_epilogue): Add a use of the adjusted stack
6109 pointer.
6110 * arm.h (CONDITIONAL_REGISTER_USAGE): Nail down the
6111 ARM_HARD_FRAME_POINTER_REGNUM when TARGET_APCS_FRAME.
6112 (FRAME_POINTER_REQUIRED): Only check TARGET_APCS_FRAME if TARGET_ARM.
6113
6114 Wed Oct 27 14:40:48 1999 Nick Clifton <nickc@cygnus.com>
6115
6116 * config/arm/linux-gas.h: oops - this file was missed out when the
6117 branch was created...
6118
6119 Tue Oct 26 17:07:38 1999 Richard Earnshaw <rearnsha@arm.com>
6120
6121 * thumb.c: Deleted. Move contents to ...
6122 * arm.c: ... here.
6123 * t-arm-aout, t-arm-coff, t-arm-elf, t-linux, t-netbsd, t-semi: Remove
6124 rule for thumb.o
6125 * configure.in (arm*-*-*): Remove thumb.o from extra_objs list.
6126 * configure: Regen.
6127
6128 * arm-protos.h: Use RTX_CODE and tidy up long lines. Don't
6129 declare a prototype for asm_output_align();
6130
6131 * arm.c (thumb_condition_code): Delete.
6132 (arm_print_operand): Always use arm_condition_code array.
6133
6134 * arm.c (thumb_return_addr_rtx): Delete.
6135 (arm_save_machine_status, arm_restore_machine_status): Delete.
6136 (arm_init_machine_status, arm_mark_machine_status): New functions.
6137 (arm_init_expanders): Update accordingly.
6138 (arm_return_addr): Renamed from arm_return_addr_rtx. Rewrite.
6139 (thumb_expand_prologue): Delete code referencing thumb_return_addr_rtx.
6140 * arm.h (RETURN_ADDR_RTX): Call arm_return_addr().
6141
6142 Tue Oct 26 13:24:16 1999 Nick Clifton <nickc@cygnus.com>
6143
6144 * configure.in : Fix arm-*-aout target to use new t-arm-aout
6145 script.
6146 * config/arm/t-arm-aout: New file: Makefile script for arm-*-aout
6147 targets.
6148
6149 Tue Oct 26 11:27:12 1999 Nick Clifton <nickc@cygnus.com>
6150
6151 * config/arm/thumb.c (output_thumb_prologue): Fix bug creating
6152 stack backtrace structure.
6153
6154 * config/arm/arm-protos.h: Add prototypes for functions defined in
6155 arm/pe.h.
6156
6157 * config/arm/arm.c (arm_override_options): Fix selection of
6158 attributes of default processor.
6159
6160 * config/arm/coff.h: Delete needless #include.
6161
6162 * config/arm/pe.c: Delete unused code.
6163
6164 * config/arm/pe.h (CPP_DEFINES): Delete
6165 (SUBTARGET_CPP_SPEC): Define.
6166 (ASM_DECLARE_FUNCTION_NAME): Use ARM_DECLARE_FUNCTION_NAME.
6167
6168 * config/arm/t-pe: Add -DInhibit_libc to allof libgcc.a to build.
6169
6170 Mon Oct 25 15:42:09 1999 Richard Earnshaw (rearnsha@arm.com)
6171
6172 * arm.h (TARGET_APCS_FRAME): Renamed from TARGET_APCS -- all uses
6173 updated.
6174 (CAN_DEBUG_WITHOUT_FP): Define.
6175 (FIXED_REGISTERS): Make r11 call-saved.
6176 (CALL_USED_REGISTERS): Likewise.
6177 (CONDITIONAL_REGISTER_USAGE): Fix r11 if TARGET_APCS_FRAME.
6178 (FRAME_POINTER_REQUIRED): Correct logic for determining when a
6179 frame-pointer is required.
6180 (TARGET_DEFAULT): Make default setting include ARM_FLAG_APCS_FRAME.
6181 * arm.c (arm_override_options): Warn about -mno-apcs-frame and -g
6182 if the target normally needs a stack frame in non-leaf functions.
6183 (use_return_insn): Correct logic for determining when a return
6184 instruction can be used.
6185 (output_return_instruction): Handle the frame-pointer register as
6186 a normal register when not TARGET_APCS_FRAME.
6187 (arm_output_prologue): Likewise.
6188 (arm_output_epilogue): Likewise.
6189 (output_func_epilogue): Likewise.
6190 (arm_expand_prologue): Likewise.
6191 * netbsd.h semi.h (TARGET_DEFAULT): Add ARM_FLAG_APCS_FRAME.
6192
6193 * arm.c (use_return_insn): No need to check floating point regs if
6194 TARGET_SOFT_FLOAT.
6195 (arm_find_minipool_constant): Correct typo; use GET_CODE to get
6196 the code of value stored in the minipool array.
6197 (arm_add_minipool_constant): Likewise.
6198
6199 2000-04-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6200
6201 * basic-block.h (conflict_graph_enum_fn): K&R fix.
6202
6203 2000-04-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6204
6205 * tree.c (tree_expr_nonnegative_p): New function.
6206
6207 * tree.h (tree_expr_nonnegative_p): Declare.
6208
6209 * c-typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to
6210 elide some sign_compare warnings.
6211 (build_conditional_expr): Likewise.
6212
6213 Sat Apr 8 00:21:51 EDT 2000 John Wehle (john@feith.com)
6214
6215 * i386.md (ashrsi3, ashrhi3, ashrqi3): Fix typo.
6216
6217 * i386.md (floathisf2, floathidf2, floathixf2): New patterns.
6218 * i386.c (print_operand): Use the proper suffix for a 387 HImode
6219 operand. Abort if a 387 operand has an unsupported size.
6220
6221 2000-04-08 Neil Booth <NeilB@earthling.net>
6222
6223 * cppexp.c (parse_charconst): Null does not end character
6224 constants.
6225 * cppinit.c (ISTABLE): Null character handled as whitespace.
6226 * cpplex.c (null_warning): new function.
6227 (skip_string): Emit warning if nulls encountered.
6228 (_cpp_skip_hspace): Emit warning if nulls encountered.
6229 (_cpp_lex_token): Emit warning if nulls encountered. Drop
6230 them.
6231 * cpp.texi: Update.
6232
6233 2000-04-07 Richard Henderson <rth@cygnus.com>
6234
6235 * flow.c (loop_depth): Remove.
6236 (reg_next_use, cc0_live, mem_set_list): Replace with ...
6237 (struct propagate_block_info): New.
6238 (life_analysis): Don't allocate reg_next_use.
6239 (propagate_block_delete_insn): Break out of propagate_block.
6240 Use flow_delete_insn to unlink rather than use NOTE_INSN_DELETED.
6241 (propagate_block_delete_libcall): Likewise.
6242 (propagate_block): Create a propagate_block_info struct to pass
6243 to subroutines. Allocate one not two temporary regsets. Don't
6244 clobber memory for const calls. Look for clobbers in
6245 CALL_INSN_FUNCTION_USAGE.
6246 (mark_set_regs): Recognize COND_EXEC.
6247 (mark_set_reg): Break out of mark_set_1.
6248 (mark_used_reg): Break out of mark_used_regs.
6249 (mark_used_regs): Recognize COND_EXEC.
6250 (insn_dead_p): Use propagate_block_info struct.
6251 (libcall_dead_p, invalidate_mems_from_autoinc): Likewise.
6252 (find_auto_inc, try_pre_increment_1): Likewise.
6253 (print_rtl_with_bb): Dump regs live at end too.
6254 (count_reg_sets_1): Pass in loop_depth.
6255 (count_reg_sets, count_reg_references): Likewise.
6256 (recompute_reg_usage): Provide it.
6257
6258 2000-04-07 Richard Henderson <rth@cygnus.com>
6259
6260 * Makefile.in (conflict.o): Depend on $(RTL_H) and $(BASIC_BLOCK_H)
6261 not the raw files.
6262
6263 2000-04-07 Zack Weinberg <zack@wolery.cumb.org>
6264
6265 * cpplib.c (do_elif): Skip the rest of the line if we're
6266 not going to bother evaluating it.
6267 (skip_if_group): Clear pfile->only_seen_white. Reorder loop
6268 to avoid pointless calls to the lexer.
6269
6270 Fri Apr 7 11:50:54 2000 Jim Wilson <wilson@cygnus.com>
6271
6272 * config/ia64/ia64.c: Delete stdio.h and ctype.h includes.
6273
6274 2000-04-07 Jason Merrill <jason@casey.cygnus.com>
6275
6276 * calls.c (expand_call): emit_queue if we're trying a sibcall.
6277
6278 2000-04-07 Jakub Jelinek <jakub@redhat.com>
6279
6280 * config/sparc/t-linux64 (tcrtbeginS.o, tcrtendS.o): Remove.
6281
6282 2000-04-06 Geoff Keating <geoffk@cygnus.com>
6283
6284 * Makefile.in: Build crtbeginS and crtendS like crtbegin and
6285 crtend so they can be multilibbed.
6286 (STAGESTUFF): Remove s-crt and s-crtS.
6287
6288 2000-04-07 Richard Henderson <rth@cygnus.com>
6289
6290 * config/alpha/alpha.c (alpha_emit_conditional_move): Fail
6291 if we discover we need a pseudo and no_new_pseudos is true.
6292 * config/alpha/alpha.md (ne:DI insn): New.
6293 (trunctfsf2, sne): Emit NE instead of non-canonical LTU.
6294
6295 2000-04-07 Richard Henderson <rth@cygnus.com>
6296
6297 * rtl.def (COND_EXEC): New.
6298 * rtl.h (COND_EXEC_TEST, COND_EXEC_CODE): New.
6299 * tm.texi (MAX_CONDITIONAL_EXECUTE): Document.
6300
6301 * genconfig.c (have_cond_arith_flag): Remove.
6302 (have_cond_exec_flag): New.
6303 (walk_insn_part): Detect COND_EXEC, not arithmetic in IF_THEN_ELSE.
6304 (main): Print HAVE_conditional_execution.
6305
6306 * haifa-sched.c (haifa_classify_insn): Recognize COND_EXEC.
6307 (sched_analyze_insn, print_pattern): Likewise.
6308 * reload.c (find_equiv_reg): Likewise.
6309 * rtlanal.c (reg_referenced_p): Likewise.
6310 (note_stores, dead_or_set_regno_p): Likewise.
6311 (reg_overlap_mentioned_p): Rewrite to use a switch.
6312
6313 * ggc.h (struct rtx_def): Forward declare.
6314
6315 * print-rtl.c (debug_rtx_range): New.
6316 * rtl.h (debug_rtx_range): Declare.
6317
6318 * varray.h (VARRAY_ACTIVE_SIZE, VARRAY_POP_ALL): New.
6319
6320 * gcse.c (gcse_main): Don't rebuild the CFG here.
6321 (delete_null_pointer_checks): Likewise.
6322 * ssa.c (convert_to_ssa): Likewise.
6323 * toplev.c (rest_of_compilation): Do it here instead. Combine
6324 sequential calls to TIMEVAR. Consistently use `insns' instead of
6325 `get_insns()'. Always split insns after reload when optimizing.
6326
6327 * basic-block.h (merge_blocks_nomove): Declare.
6328 (tidy_fallthru_edge): Declare.
6329 * flow.c (merge_blocks_nomove): Document as merging into previous
6330 blocks. Remove cruft from between blocks; remove all edges out of A.
6331 (tidy_fallthru_edge): Export.
6332
6333 2000-04-06 Alex Samuel <samuel@codesourcery.com>
6334
6335 * ssa.c (compute_conservative_reg_partition): Declare with
6336 void arguments.
6337 * toplev.c (clean_dump_file): Remove previously-deleted function
6338 inadvertantly merged back in.
6339 * conflict.c (conflict_graph_add): Use a single call to
6340 htab_find_slot to look up and insert.
6341
6342 2000-04-06 Richard Henderson <rth@cygnus.com>
6343
6344 * genrecog.c (*): Rename _last_insn to last_insn.
6345 (make_insn_sequence): Set the position of the peephole2 C test
6346 to be at the last insn.
6347
6348 2000-04-06 Richard Henderson <rth@cygnus.com>
6349
6350 * flow.c (compute_flow_dominators): Free worklist.
6351
6352 2000-04-06 Michael Matz <matzmich@cs.tu-berlin.de>
6353
6354 * flow.c (compute_flow_dominators): Process blocks FIFO not LIFO.
6355
6356 2000-04-06 Alex Samuel <samuel@codesourcery.com>
6357
6358 * rtl.h (INSN_P): New macro.
6359 (successor_phi_fn): New typedef.
6360 (for_each_successor_phi): New prototype.
6361 (in_ssa_form): New variable.
6362 (PHI_NODE_P): Likewise.
6363 * flow.c (calculate_global_regs_live): Add to new_live_at_end from
6364 phi nodes in successors.
6365 (mark_used_regs): Add PHI case.
6366 (set_phi_alternative_reg): New function.
6367 (life_analysis): Assert that dead code elimination is not selected
6368 when in SSA form.
6369 * toplev.c (to_ssa_time): New variable.
6370 (from_ssa_time): Likewise.
6371 (compile_file): Zero to_ssa_time and from_ssa_time.
6372 Print time to convert to and from SSA.
6373 (rest_of_compilation): Time convert_to_ssa and convert_from_ssa.
6374 (print_time): Compute percent fraction as integer.
6375 * ssa.c (PHI_NODE_P): Moved to rtl.h.
6376 (convert_to_ssa): Check if we're already in SSA.
6377 Don't eliminate dead code in life_analysis.
6378 Rerun flow and life analysis at bottom.
6379 (eliminate_phi): Use canonical regnos when adding nodes.
6380 (mark_reg_in_phi): New function.
6381 (mark_phi_and_copy_regs): Likewise.
6382 (convert_from_ssa): Rerun life analysis at top.
6383 Use coalesced partition.
6384 Check for removing a phi node at the end of the block.
6385 (compute_coalesced_reg_partition): New function.
6386 (coalesce_regs_in_copies): Likewise.
6387 (coalesce_reg_in_phi): Likewise.
6388 (coalesce_regs_in_sucessor_phi_nodes): Likewise.
6389 (for_each_successor_phi): Likewise.
6390 (rename_context): New struct.
6391 (rename_block): Use a rename_context with rename_insn_1. When
6392 renaming sets of a subreg, emit a copy of the entire reg first.
6393 (rename_insn_1): Treat data as a rename_context *. Save current
6394 insn in set_data.
6395 (rename_set_data): Add field set_insn.
6396 * Makefile.in (HASHTAB_H): Move up in file.
6397 (OBSTACK_H): New macro.
6398 (collect2.o): Use OBSTACK_H in dependencies.
6399 (sdbout.o): Likewise.
6400 (emit-rtl.o): Likewise.
6401 (simplify-rtx.o): Likewise.
6402 (fix-header.o): Likewise.
6403 (OBJS): Add conflict.o.
6404 (conflict.o): New rule.
6405 * basic-block.h: Include partition.h.
6406 (conflict_graph): New typedef.
6407 (conflict_graph_enum_fn): Likewise.
6408 (conflict_graph_new): New prototype.
6409 (conflict_graph_delete): Likewise.
6410 (conflict_graph_add): Likewise.
6411 (conflict_graph_conflict_p): Likewise.
6412 (conflict_graph_enum): Likewise.
6413 (conflict_graph_merge_regs): Likewise.
6414 (conflict_graph_print): Likewise.
6415 (conflict_graph_compute): Likewise.
6416 * conflict.c: New file.
6417
6418 2000-04-06 Jason Merrill <jason@yorick.cygnus.com>
6419
6420 * tlink.c (read_repo_files): Don't look for .rpo info for
6421 linker flags.
6422
6423 Thu Apr 6 20:39:26 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
6424
6425 * sh.h (STRUCT_VALUE, RETURN_IN_MEMORY): Define.
6426
6427 Thu Apr 6 19:34:08 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
6428
6429 * config/sh/lib1funcs.asm (___udivsi3_i4):
6430 ( __SH4_SINGLE__ / __SH4_SINGLE_ONLY__ variant): value for fpscr
6431 only depends on FMOVD_WORKS.
6432
6433 Thu Apr 6 19:11:47 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
6434
6435 * config/sh/lib1funcs.asm (___udivsi3_i4): When using fmovd,
6436 make double constant 8-byte aligned.
6437
6438 2000-04-06 Jakub Jelinek <jakub@redhat.com>
6439
6440 * config/sparc/sparc.md (movtf_insn_sp32, movtf_insn_vis_sp32,
6441 movtf_no_e_insn_sp32, movtf_insn_hq_sp64, movtf_insn_hq_vis_sp64,
6442 movtf_no_e_insn_sp64): Accept loading 0.0 into GENERAL_REGS.
6443 (movtf_insn_sp64, movtf_insn_vis_sp64): Likewise.
6444 Accept storing GENERAL_REGS into offsetable memory.
6445 * config/sparc/sparc.h (PREFERRED_RELOAD_CLASS): Don't allow
6446 building a TFmode constant other than 0.0L into GENERAL_REGS.
6447
6448 2000-04-06 Clinton Popetz <cpopetz@cygnus.com>
6449
6450 * regrename.c (regrename_optimize): Handle no REG_ALLOC_ORDER.
6451
6452 2000-04-06 Zack Weinberg <zack@wolery.cumb.org>
6453
6454 * cpphash.c (CPP_IS_MACRO_BUFFER, FORWARD, PEEKC): Delete.
6455 (macro_cleanup): No need to cast pbuf->macro.
6456 (collect_expansion): Use _cpp_get_define_token. Goto done if
6457 it returns VSPACE. Remove check for trailing space after
6458 CPP_COMMENT.
6459 (_cpp_create_definition): Don't diddle flags here. Return
6460 directly on error.
6461 (unsafe_chars): Handle c1 being EOF.
6462 (push_macro_expansion): Use unsafe_chars for both accidental-paste
6463 checks. Don't push the buffer till after we're done with
6464 them.
6465 * cpplex.c (PEEKBUF, GETBUF, FORWARDBUF): New.
6466 (PEEKN, FORWARD, GETC, PEEKC): Use them.
6467 (cpp_push_buffer): Don't set new->alimit. Set new->mark
6468 appropriately.
6469 (_cpp_parse_assertion): Don't NUL terminate.
6470 (_cpp_lex_token): Fix -traditional macro handling. Don't skip
6471 hspace before calling _cpp_parse_assertion. Remove all sets
6472 of only_seen_white. Treat '\f' as hspace. Don't do anything
6473 special with '\n' here.
6474 (maybe_macroexpand): Handle T_EMPTY hash entries without
6475 pushing a buffer at all.
6476 (cpp_get_token): Handle clearing only_seen_white here. Handle
6477 incrementing the line number here. Clear
6478 potential_control_macro as well as only_seen_white, if
6479 appropriate.
6480 (cpp_get_non_space_token): Don't eat CPP_POP tokens.
6481 (_cpp_get_define_token): New function, basically like
6482 _cpp_get_directive_token was but doesn't eat horizontal space.
6483 Don't do anything with only_seen_white here.
6484 (_cpp_get_directive_token): Just call _cpp_get_define_token
6485 repeatedly till it returns non-hspace.
6486
6487 * cpplib.c (PEEKN, FORWARD, GETC, PEEKC): Delete.
6488 (conditional_skip, skip_if_group): Return int.
6489 (DIRECTIVE_TABLE): Change origin of all conditional directives
6490 to "COND".
6491 (TRAD_DIRECT_P): New macro.
6492 (_cpp_handle_directive): Use _cpp_get_directive_token. Issue
6493 an error for a bogus directive, unless -lang-asm. Use
6494 TRAD_DIRECT_P. Loop calling handler functions till one returns
6495 zero.
6496 (get_macro_name): Don't diddle flags here.
6497 (do_define): Diddle flags here. Use _cpp_get_directive_token.
6498 Create T_EMPTY nodes for #define macro /* nothing */.
6499 (do_undef): Don't copy the name. Use _cpp_get_directive_token.
6500 Use hp->name when calling pass_thru_directive.
6501 (do_if, do_else, do_elif, do_ifdef, do_ifndef, conditional_skip):
6502 Return the result of conditional_skip and/or skip_if_group.
6503 Don't call _cpp_output_line_command.
6504 (consider_directive_while_skipping): Use _cpp_get_directive_token.
6505 Issue -Wtraditional warnings as appropriate. Don't complain
6506 about unrecognized directives. If we are to stop skipping,
6507 return the number of the directive that ended the skip.
6508 (skip_if_group): Use _cpp_get_directive_token. Turn off macro
6509 expansion and line commands while skipping. Return the result
6510 of consider_directive_while_skipping, if nonzero.
6511 (do_endif): Just set potential_control_macro here.
6512 (validate_else): Use _cpp_get_directive_token.
6513 (do_assert, do_unassert): Don't save pointers into the
6514 token_buffer across calls to the lexer. Use
6515 _cpp_get_directive_token.
6516
6517 * cpplib.h (cpp_buffer): Remove alimit and colno. Make mark a
6518 pointer, not an offset. Replace 'data', which was a generic
6519 pointer, with 'macro', which points to a struct hashnode.
6520 (cpp_reader): Add 'potential_control_macro' pointer.
6521 * cpphash.h (T_UNUSED): Replace with T_EMPTY.
6522 (CPP_BUF_GET, CPP_FORWARD): Delete.
6523 (CPP_IN_COLUMN_1, ADJACENT_TO_MARK): New macros.
6524 (CPP_IS_MACRO_BUFFER, CPP_SET_BUF_MARK, CPP_GOTO_BUF_MARK,
6525 ACTIVE_MARK_P): Update.
6526 (_cpp_get_define_token): New internal function.
6527 * cppfiles.c (read_include_file): Don't set fp->alimit or fp->colno.
6528
6529 2000-04-05 Benjamin Kosnik <bkoz@cygnus.com>
6530
6531 * configure.in: And here.
6532 * configure: Regenerate.
6533 * acconfig.h: Add ENABLE_STD_NAMESPACE to set flag_honor_std if
6534 --enable-libstdcxx-v3 is passed at configure time.
6535 * config.h.in: Regenerate.
6536
6537 2000-04-05 Mark Mitchell <mark@codesourcery.com>
6538
6539 * final.c (final): Use xcalloc to allocate line_note_exists.
6540 * function.c (free_after_compilation): Free the temp_slots.
6541 (assign_stack_temp_for_type): Use xmalloc to allocate temp_slots.
6542 (combine_temp_slot): Free temp_slots when they get combined.
6543 (purge_addressof): Fix typo in comment.
6544 * stmt.c (mark_goto_fixup): Mark the fixup itself.
6545 (expand_fixup): Allocate the fixup with ggc_alloc_obj.
6546
6547 * ggc.h: Include varray.h.
6548 (ggc_pending_trees): Declare.
6549 (ggc_mark_tree_children): Remove declaration.
6550 (ggc_mark_tree): Just push unmarked trees on ggc_pending_trees.
6551 * ggc-common.c (ggc_pending_trees): New variable.
6552 (ggc_mark_roots): Call ggc_mark_trees.
6553 (ggc_mark_tree_children): Rename to ggc_mark_trees. Process all
6554 the ggc_pending_trees.
6555 * Makefile.in (GGC_H): New variable. Use it throughout in place
6556 of ggc.h.
6557
6558 Thu Apr 6 00:30:50 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
6559
6560 * sh.h (FUNCTION_ARG_PARTIAL_NREGS): Accomodate an unsigned
6561 GET_MODE_SIZE.
6562
6563 Wed Apr 5 23:17:10 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
6564
6565 * sh.c (sh_insn_length_adjustment): New function.
6566 * sh-protos.h (sh_insn_length_adjustment): Declare.
6567 * sh.h (ADJUST_INSN_LENGTH): Use it.
6568
6569 Wed Apr 5 12:35:18 2000 Hans-Peter Nilsson <hp@axis.com>
6570
6571 * optabs.c (emit_libcall_block): Remove spurious REG_EQUAL notes
6572 from the insn where REG_RETVAL is added.
6573 (emit_no_conflict_block): Ditto.
6574
6575 * md.texi (Standard Names): Clarify when movX is needed.
6576
6577 * combine.c (simplify_comparison) [MINUS]: Do not replace
6578 all (op (minus A B) 0) with (op A B).
6579
6580 Wed Apr 5 18:03:31 2000 Toshiyasu Morita (toshi.morita@sega.com)
6581 J"orn Rennecke <amylaar@cygnus.co.uk>
6582
6583 * sh.md (block_lump_real_i4): Add missing clobber of T_REG
6584 (block_lump_real): Likewise.
6585
6586 2000-04-05 Chris Demetriou <cgd@netbsd.org>
6587
6588 * mips.h (MASK_DEBUG_A, MASK_DEBUG_B, MASK_DEBUG_C): Zero the
6589 remaining non-zero debugging masks.
6590
6591 Wed Apr 5 09:44:07 2000 Jeffrey A Law (law@cygnus.com)
6592
6593 * basic-block.h (verify_flow_info): Declare.
6594 (flow_loop_outside_edge_p): Declare.
6595 * flow.c (verify_flow_info): Remove declaration.
6596 (clear_log_links, flow_loop_outside_edge_p): Likewise.
6597
6598 Wed Apr 5 09:34:26 2000 Philippe De Muyter <phdm@macqel.be>
6599
6600 * m68k/m68k-protos.h (finalize_pic): Turn prototype off using `#if 0',
6601 not C++ comments.
6602
6603 2000-04-05 Jakub Jelinek <jakub@redhat.com>
6604
6605 * config/sparc/sparc.md (snedi_zero+1, neg_snedi_zero+1,
6606 snedi_zero_trunc+1, seqdi_zero+1, neg_seqdi_zero+1,
6607 seqdi_zero_trunc+1): Allow splits only if registers are
6608 different.
6609
6610 2000-04-04 Ulrich Drepper <drepper@cygnus.com>
6611
6612 * acconfig.h: Add HAVE_GAS_HIDDEN.
6613 * config.in: Regenerated.
6614 * configure.in: Add test for .hidden pseudo-op in gas.
6615 * configure: Regenerated.
6616 * crtstuff.c: Include auto-host.h.
6617 Emit additional .hidden pseudo-op for __dso_handle if the
6618 assembler knows about it.
6619
6620 2000-04-04 Philippe De Muyter <phdm@macqel.be>
6621
6622 * cpphash.c (_cpp_free_definition): Test argnames, not nargs >= 0,
6623 before freeing argnames.
6624 * cpplib.c (do_ifndef): Cast return value of xstrdup.
6625
6626 2000-04-05 Michael Meissner <meissner@redhat.com>
6627
6628 * config/rs6000/rs6000.c (print_operand): Patch from Jonathan
6629 Walton <jonboy@gordian.com> to make memory references with update
6630 work wtih -mregnames.
6631
6632 2000-04-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6633
6634 * regrename.c (regno_first_use_in): Wrap prototype in PARAMS.
6635 (regrename_optimize): Rename variables `def_uses' and
6636 `ext_basic_blocks' to avoid conflicts with similarly named
6637 typedefs in traditional C.
6638
6639 * calls.c (initialize_argument_information): Fix typo in previous
6640 change.
6641
6642 2000-04-04 Richard Henderson <rth@cygnus.com>
6643
6644 * regrename.c (consider_available): Test fixed_regs not
6645 PIC_OFFSET_TABLE_REGNUM.
6646
6647 2000-04-04 Geoff Keating <geoffk@cygnus.com>
6648
6649 * config/rs6000/t-ppccomm (EXTRA_MULTILIB_PARTS): Add crtbegin,
6650 crtend.
6651 (CRTSTUFF_T_CFLAGS_S): Delete definition.
6652 * config/rs6000/sysv4.h (STARTFILE_LINUX_SPEC): Always use crtbegin.
6653 (ENDFILE_LINUX_SPEC): Always use crtend.
6654 * configure.in (powerpc-*-linux-gnulibc1): Don't define extra_parts.
6655 (powerpc-*-linux-gnu): Likewise.
6656 * configure: Regenerate.
6657
6658 * config/rs6000/eabi.h: Don't include sysv4.h.
6659 (MULTILIB_DEFAULTS): Don't define.
6660 * config/rs6000/eabiaix.h: Don't include eabi.h.
6661 * config/rs6000/eabile.h: Delete.
6662 * config/rs6000/eabilesim.h: Delete.
6663 * config/rs6000/eabisim.h: Don't include eabi.h.
6664 * config/rs6000/linux.h: Don't include sysv4.h.
6665 (JUMP_TABLES_IN_TEXT_SECTION): Don't redefine.
6666 (MULTILIB_DEFAULTS): Don't redefine.
6667 * config/rs6000/rtems.h: Don't include eabi.h.
6668 * config/rs6000/sol2.h: Don't include sysv4le.h.
6669 * config/rs6000/sysv4le.h: Don't include sysv4.h.
6670 * config/rs6000/t-ppc: Delete.
6671 * config/rs6000/t-ppcgas: Correct comment.
6672 * config/rs6000/t-ppcos: Correct comment. Don't build
6673 multilibs for -fPIC, rather use -fPIC -mstrict-align
6674 as default.
6675 * config/rs6000/t-ppc: Delete.
6676 * config/rs6000/vxppc.h: Don't include sysv4.h.
6677 * config/rs6000/vxppcle.h: Delete.
6678 * configure.in: Use multiple header files for p2pc ELF targets
6679 powerpc-eabiaix, powerpc-eabisim, powerpc-rtems, powerpcle-eabi,
6680 powerpcle-eabisim, powerpc-elf, powerpcle-elf, powerpc-linux-gnu,
6681 powerpc-linux-gnulibc1, powerpc-sysv, powerpcle-sysv,
6682 powerpc-vxworks, powerpcle-vxworks. Assume GAS functionality is
6683 always available for these platforms.
6684
6685 2000-04-04 Richard Henderson <rth@cygnus.com>
6686
6687 * calls.c (try_to_integrate): Initialize reg_parm_stack_space.
6688
6689 2000-04-04 Stan Cox <scox@cygnus.com>
6690
6691 * Makefile.in: Add rules for regrename.o
6692 * regrename.c: New file.
6693 * rtl.h (regrename_optimize): Add prototype.
6694 * toplev.c (rename_registers_dump, flag_rename_registers): New variables
6695 (compile_file, decode_d_option): Add support for -frename-registers.
6696 (rest_of_compilation): Call regrename_optimize.
6697 * config/ia64/ia64.h (HARD_REGNO_RENAME_OK, RENAME_EXTENDED_BLOCKS):
6698 New macros.
6699
6700 2000-04-04 Martin v. Löwis <loewis@informatik.hu-berlin.de>
6701
6702 * Makefile (gccbug): New target.
6703 (doc): Depend on it.
6704 * gcc.texi (Bugs): Link subnodes.
6705 (gccbug): New node.
6706 * gccbug.in (CATEGORIES): Remove gc, host, profiling, libgcc.
6707 Document severities, priorities, and classes in bug form.
6708
6709 2000-04-04 Zack Weinberg <zack@wolery.cumb.org>
6710
6711 * cpplex.c (trigraph_map, speccase): Combine into single
6712 table, chartab.
6713 (NORMAL, NONTRI): New macros.
6714 (_cpp_read_and_prescan): Change to use unified table. Use
6715 is_hspace to test for whitespace.
6716
6717 * dbxout.c (CONTIN): If it doesn't have to do anything, give it a
6718 definition that doesn't provoke the "empty body in an
6719 if-statement" warning.
6720
6721 2000-04-04 Clinton Popetz <cpopetz@cygnus.com>
6722
6723 * builtins.c (expand_builtin_strlen): Force the source to
6724 be a memory address.
6725
6726 2000-04-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6727
6728 * cpplib.c (D): Adjust to call CONCAT2 macro without whitespace.
6729
6730 Tue Apr 4 19:17:20 MET DST 2000 Jan Hubicka <jh@suse.cz>
6731
6732 * calls.c (ECF_MALLOC, ECF_MAY_BE_ALLOCA, ECF_RETURNS_TWICE,
6733 ECF_LONGJMP, ECF_FORK_OR_EXEC): New constants.
6734 (ECF_IS_CONST): Rename to ECF_CONST.
6735 (special_function_p): Make static, change interface.
6736 (flags_from_decl_or_type, try_to_integrate): Break out from ...
6737 (expand_call) ... here; convert number of variables to flags.
6738 (emit_library_call_vlue_1): Likewise.
6739 (setjmp_call_p): New function.
6740 (initialize_argument_information): Accepts flags as argument;
6741 return flags.
6742 (precompute_arguments): Likewise.
6743 * tree.h (special_function_p): Remove.
6744 (setjmp_call_p): Add prototype.
6745
6746 2000-04-04 Jakub Jelinek <jakub@redhat.com>
6747
6748 * config/sparc/sparc.h (RTX_OK_FOR_OFFSET_P): Leave minor margin
6749 so that addresses are offsetable by up to 16 bytes.
6750 (GO_IF_LEGITIMATE_ADDRESS): Don't allow REG+REG addresses for
6751 non-optimizing TARGET_ARCH32 in DF or DI modes because it is not
6752 offsetable.
6753
6754 * config/sparc/sparc.md (movdi_insn_sp64_novis): New pattern.
6755 (movdi_insn_sp64_vis): Renamed from movdi_insn_sp64.
6756 (movsf): Don't force any constant to memory if target is integer
6757 hard register.
6758 Move fp_zero_operand check below the const0_rtx check.
6759 (movtf): Likewise. Also allow fp_zero_operand for stores into
6760 memory.
6761 (movdf): Likewise. Also allow fp_zero_operand for stores into
6762 memory and into integer hard registers.
6763 (clear_df, clear_dfp, movdf_const_intreg_sp32,
6764 movdf_const_intreg_sp64): Remove.
6765 (movdf_insn_sp32, movdf_no_e_insn_sp32): Redo constraints and
6766 conditions.
6767 (movdf_no_e_insn_v9_sp32): New pattern.
6768 (movdf_insn_v9only): Remove.
6769 (movdf_insn_v9only_novis, movdf_insn_v9only_vis): New patterns.
6770 (movdf_insn_sp64): Remove.
6771 (movdf_insn_sp64_novis, movdf_insn_sp64_vis): New patterns.
6772 (movdf_no_e_insn_sp64): Allow storing 0.0 into memory.
6773 (following splits): Rewrite conditions. Add two new splits
6774 for storing 0.0 into memory and registers.
6775 (clear_tf, clear_tf+1, clear_tfp, clear_tfp+1): Remove.
6776 (movtf_insn_sp32): Redo constraints and conditions.
6777 (movtf_insn_vis_sp32): New pattern.
6778 (movtf_no_e_insn_sp32): Redo constraints and conditions.
6779 (movtf_insn_hq_sp64): Likewise.
6780 (movtf_insn_hq_vis_sp64): New pattern.
6781 (movtf_insn_sp64): Redo constraints and conditions.
6782 (movtf_insn_vis_sp64): New pattern.
6783 (movtf_no_e_insn_sp64): Redo constraints and conditions.
6784 (movtf_no_e_insn_sp64+1): New split for storing 0.0L into registers
6785 or memory.
6786 * config/sparc/sparc.c (sparc_override_options): Assume v9 if either
6787 -mvis or -m64 to take down the number of various reload patterns.
6788
6789 Tue Apr 4 00:41:53 2000 Jeffrey A Law (law@cygnus.com)
6790
6791 * pa/pa-64.h: New file.
6792 * pa/pa64-regs.h: New file.
6793 * pa/pa64-start.h: New file.
6794 * pa/t-pa64: New file.
6795 * pa/xm-pa64hpux.h: New file.
6796
6797 2000-04-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6798
6799 * sparc.c (output_restore_regs): Prototype.
6800 (sparc_emit_float_lib_cmp): Constification.
6801
6802 * emit-rtl.c (const_int_htab_hash, const_int_htab_eq): Likewise.
6803
6804 * reload1.c (reload_cse_delete_noop_set, reload_cse_simplify):
6805 Prototype.
6806
6807 * simplify-rtx.c (entry_and_rtx_equal_p): Constification.
6808 (get_value_hash, hash_rtx): Likewise.
6809
6810 * ssa.c (compute_conservative_reg_partition): Prototype.
6811
6812 * tree.c (mark_hash_entry): Prototype.
6813
6814 2000-04-03 Zack Weinberg <zack@wolery.cumb.org>
6815
6816 * bb-reorder.c (verify_insn_chain): #ifdef out unless ENABLE_CHECKING.
6817 * i386.h (FUNCTION_ARG_REGNO_P): Remove unnecessary test for N >= 0.
6818 * i386.md (call_value, call_value_pop): Remove unused variable 'addr'.
6819
6820 * gcc.c (C specs): Pass -fno-show-column to the preprocessor.
6821 * objc/lang-specs.h: Likewise.
6822
6823 2000-04-03 Neil Booth <NeilB@earthling.net>
6824
6825 * cppexp.c: wrap long lines. New macros CPP_ICE, SYNTAX_ERROR
6826 and SYNTAX_ERROR2. Replace `' in messages with ''.
6827 (op_to_str): Make re-entrant.
6828 (_cpp_parse_expr): Implement new error macros. Use | rather
6829 than || to logically or 2 boolean integers. Simply expression
6830 checking we have a left operand iff needed.
6831
6832 2000-04-03 Nick Clifton <nickc@cygnus.com>
6833
6834 * Makefile.in (diagnostic.o): Depend upon diagnostic.c
6835
6836 2000-04-03 Philip Blundell <philb@gnu.org>
6837
6838 * config/arm/linux-elf.h (SUBTARGET_EXTRA_LINK_SPEC): Fix typos.
6839
6840 2000-04-03 Felix Lee <flee@cygnus.com>
6841
6842 * fixinc/server.c (find_shell): New function. Avoid $SHELL.
6843 (run_shell): Use it.
6844
6845 2000-04-03 Jonathan Larmour <jlarmour@redhat.co.uk>
6846
6847 * Makefile.in (stmp-int-hdrs): Make include subdir here...
6848 (stmp-fixproto): ...rather than here.
6849
6850 Mon Apr 3 00:50:06 2000 Jason Eckhardt <jle@cygnus.com>
6851
6852 * pa.c (print_operand): Compute 'base' only inside the code paths
6853 that use it.
6854
6855 2000-04-03 Geoffrey Keating <geoffk@cygnus.com>
6856
6857 * stor-layout.c (byte_from_pos): Use TRUNC_DIV_EXPR rather than
6858 CEIL_DIV_EXPR.
6859
6860 2000-04-03 Philipp Thomas <pthomas@suse.de>
6861
6862 * i386.h (TARGET_SWITCHES): Remove bogus empty strings, fix typo.
6863
6864 Mon Apr 3 00:02:59 2000 Brad Lucier <lucier@math.purdue.edu>
6865
6866 * Makefile.in (alias.o): Depend on $(TREE_H).
6867
6868 2000-04-02 Zack Weinberg <zack@wolery.cumb.org>
6869
6870 * cppinit.c (cpp_start_read): Turn off -Wtraditional if
6871 processing C++.
6872 * cpplib.c (_cpp_handle_directive): Improve warnings for
6873 traditional C and indented directives.
6874
6875 * enquire.c, gsyslimits.h, limity.h, config/convex/fixinc.convex,
6876 fixinc/fixinc.irix, fixinc/fixinc.sco, fixinc/fixinc.wrap,
6877 fixinc/inclhack.def: Indent the # of #include_next one space.
6878 * cp/rtti.c: Un-indent #if and #endif.
6879
6880 * cppexp.c (_cpp_parse_expr): If lex returns '#', it's a
6881 syntax error, but an error has already been printed.
6882 * cpplex.c (_cpp_parse_assertion): Give a more specific error
6883 message when called with nothing remaining on the line.
6884 (_cpp_lex_token): If _cpp_parse_assertion fails, return an
6885 OTHER token, not an ASSERTION.
6886 * cpplib.c (do_assert): When we create a 'base' node, clear
6887 its aschain pointer.
6888
6889 2000-04-02 Neil Booth <NeilB@earthling.net>
6890
6891 * cppexp.c: New typedef op_t. struct operation and struct
6892 token updated to use it.
6893 (op_to_str): New function.
6894 (_cpp_parse_expr): Error messages modified to use op_to_str.
6895
6896 2000-04-02 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
6897
6898 * config/c4x/c4x.c (c4x_function_arg): Check for void_type_node
6899 before checking MUST_PASS_IN_STACK.
6900
6901 2000-04-02 Neil Booth <NeilB@earthling.net>
6902
6903 * cppexp.c: New FINISHED dummy token. Combine operator initial
6904 flags and initial priority into a single constant. New
6905 EQUALITY macro. New operator flag SHORT_CIRCUIT.
6906 (_parse_cpp_expr): Implement new constants. Take left operand
6907 checks out of reduction loop. Handle SHORT_CIRCUIT. End of
6908 parse indicated by reducing FINISHED token. Remove new lines
6909 from cpp_error messages.
6910
6911 2000-04-01 Mark Mitchell <mark@codesourcery.com>
6912
6913 * emit-rtl.c (gen_rtx_CONST_INT): Create cached CONST_INTs on the
6914 permanent obstack.
6915
6916 2000-04-01 Zack Weinberg <zack@wolery.cumb.org>
6917
6918 * cpplib.c: Include symcat.h. Add 'origin' field to struct
6919 directive. Add origin values to DIRECTIVE_TABLE. Generate
6920 the strings and function names on the fly. Take the #sccs
6921 entry out of the table if SCCS_DIRECTIVE is not defined.
6922 (_cpp_handle_directive): Decide if the # was at the beginning
6923 of the line here. Issue -pedantic warnings for extended
6924 directives here. Warn about K+R directives with the #
6925 indented, and C89/extended directives with the # not indented,
6926 here.
6927 (do_import, do_include_next, do_warning, do_ident, do_sccs,
6928 do_assert, do_unassert): Don't issue pedantic warning here.
6929
6930 * cpphash.h: Add CPP_WTRADITIONAL macro.
6931 * cpplib.h (struct cpp_options): Rename warn_stringify to
6932 warn_traditional; update comments.
6933 * cppinit.c (handle_option): Set warn_traditional not
6934 warn_stringify.
6935 * cpphash.c: Replace CPP_OPTION (pfile, warn_stringify) with
6936 CPP_WTRADITIONAL (pfile).
6937 * cpplex.c (_cpp_lex_token): Don't decide if directives should
6938 be ignored in -traditional mode here.
6939
6940 * cpplex.c: Copy ISTABLE macros from cppinit.c, and adapt them
6941 to initialize speccase[] and trigraph_map[]. Delete all
6942 references to pfile->input_speccase. Always treat '?' as a
6943 special character. Remove table-initialization code from
6944 _cpp_init_input_buffer.
6945
6946 * cpplib.h (struct cpp_reader): Remove input_speccase field.
6947 * cppinit.c (cpp_cleanup): Don't free input_speccase.
6948
6949 2000-04-01 Richard Henderson <rth@cygnus.com>
6950
6951 * Makefile.in (STAGESTUFF): Wildcard all debugging dumps at once.
6952 (mostlyclean): Likewise.
6953
6954 * toplev.c (rtl_dump, jump_opt_dump, etc): Remove.
6955 (struct dump_file_info, enum dump_file_index, dump_file): New.
6956 (open_dump_file): Take a dump_file_index not a suffix, and a decl
6957 not a string. Clean out file if we havn't yet done so. Do nothing
6958 if the dump isn't enabled.
6959 (close_dump_file): Do nothing if the dump isn't open. Dump
6960 graph data if requested.
6961 (dump_rtl, clean_dump_file): Remove.
6962 (compile_file): Don't clean the dump files. Only finalize .bp dump
6963 if flag_test_coverage or flag_branch_probabilities. Only finalize
6964 .combine dump if optimizing. Iterate over dump_file to finalize the
6965 graph dumps.
6966 (rest_of_compilation): Update for open_dump_file/close_dump_file.
6967 Convert all uses of dump_rtl.
6968 (decode_d_option): Iterate over dump_file to implement 'a' and to
6969 locate pass-specific dumps.
6970
6971 2000-04-01 Neil Booth <NeilB@earthling.net>
6972
6973 * cppexp.c: Redefine priority constants.
6974 (_cpp_parse_expr): Replace left and right priority scheme with
6975 single priority logic. Move LOGICAL to same place as COMPARE.
6976 Remove bogus check for multiple unary +/- operators.
6977
6978 2000-04-01 Neil Booth <NeilB@earthling.net>
6979
6980 * cppexp.c: (_cpp_parse_expr): Numerical constants are pushed
6981 within the switch statement. Binary operations break out of
6982 the switch naturally. '(' tokens handled by forcing
6983 immediate shift. ')' handled by forcing immediate reduce to
6984 the previous '('. New error messages.
6985
6986 2000-03-31 Geoff Keating <geoffk@cygnus.com>
6987
6988 * config/rs6000/rs6000.c (print_operand): Don't use %l for 'low
6989 part', it's already in use. Use %K instead. Add a return at the
6990 end of what is now %K.
6991 * config/rs6000/rs6000.md (elf_low): Use %K instead of %l.
6992
6993 Sat Apr 1 02:05:29 MET DST 2000 Jan Hubicka <jh@suse.cz>
6994
6995 * builtins.c (expand_builtin_apply): Pass proper parameters to
6996 allocate_dynamic_stack_space.
6997 * calls.c (emit_call_1): Do not adjust stack pointer for SIB,
6998 update stack_pointer_delta; do not update arg_size_so_far.
6999 (compute_argument_block_size): Use stack_delta instead of
7000 stack_pointer_pending and arg_size_so_far.
7001 (expand_call): Add sanity checking for stack_pointer_delta;
7002 save and restore stack_pointer_delta for SIB, use
7003 stack_pointer_delta for alignment; do not update arg_space_so_far.
7004 (emit_library_call_value): Use stack_pointer_delta for alignment.
7005 (store_one_arg): Do not update arg_space_so_far.
7006 * explow.c (adjust_stack, anti_adjust_stack): Update
7007 stack_pointer_delta.
7008 (allocate_dynamic_stack_space): Add sanity checking for
7009 stack_pointer_delta.
7010 * expr.c (init_expr, clear_pending_stack_adjust): Clear
7011 stack_pointer_delta.
7012 (emit_push_insn): Update stack_pointer_delta.
7013 * function.h (struct expr_status): Add x_stack_pointer_delta;
7014 remove x_arg_space_so_far.
7015 (arg_space_so_far): Remove.
7016 (stack_pointer_delta): New macro.
7017
7018 2000-03-31 Zack Weinberg <zack@wolery.cumb.org>
7019
7020 * cpplib.h: Merge struct cpp_options into struct cpp_reader.
7021 Reorder struct cpp_options and struct cpp_reader for better
7022 packing. Replace CPP_OPTIONS macro with CPP_OPTION which
7023 takes two args. Change all 'char' flags to 'unsigned char'.
7024 Move show_column flag into struct cpp_options. Don't
7025 prototype cpp_options_init.
7026 * cpphash.h, cpperror.c, cppexp.c, cppfiles.c, cpphash.c,
7027 cppinit.c, cpplex.c, cpplib.c:
7028 Replace CPP_OPTIONS (pfile)->whatever with
7029 CPP_OPTION (pfile, whatever), and likewise for
7030 opts = CPP_OPTIONS (pfile); ... opts->whatever;
7031
7032 * cppinit.c (merge_include_chains): Take a cpp_reader *.
7033 Extract CPP_OPTION (pfile, pending) and work with that
7034 directly.
7035 (cpp_options_init): Delete.
7036 (cpp_reader_init): Turn on on-by-default options here.
7037 Allocate the pending structure here.
7038 (cl_options, enum opt_code): Define these from the same table,
7039 kept in a large macro. Add -fshow-column and -fno-show-column
7040 options.
7041
7042 * cpperror.c (v_message): If show_column is off, don't print
7043 the column number.
7044
7045 * cppmain.c: Update for new interface.
7046 * fix-header.c: Likewise.
7047
7048 2000-03-30 Geoff Keating <geoffk@cygnus.com>
7049
7050 * config/rs6000/t-aix43 (AR_FLAGS_FOR_TARGET): Adjust for new
7051 definition.
7052 * Makefile.in (AR_FLAGS_FOR_TARGET): Is now the flags that
7053 are passed to any invocation of AR_FOR_TARGET.
7054 (AR_CREATE_FOR_TARGET): New macro.
7055 (AR_EXTRACT_FOR_TARGET): New macro.
7056 (ORDINARY_FLAGS_TO_PASS): Add AR_CREATE_FOR_TARGET,
7057 AR_EXTRACT_FOR_TARGET.
7058 (many places): Use AR_CREATE_FOR_TARGET, AR_EXTRACT_FOR_TARGET
7059 in place of `$(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET)' and
7060 `$(AR_FOR_TARGET) x'. Pass AR_CREATE_FOR_TARGET and
7061 AR_EXTRACT_FOR_TARGET to sub-makes.
7062
7063 2000-03-31 Neil Booth <NeilB@earthling.net>
7064
7065 * cppexp.c: Delete SKIP_OPERAND. Correct priority
7066 PAREN_INNER_PRIO.
7067 (_cpp_parse_expr): Check for multiple unary +/- operators.
7068 Correct priorities of ':' and '?'. Treat ')' as having a
7069 value. Ensure conditional expression is not void.
7070
7071 2000-03-31 Mark Mitchell <mark@codesourcery.com>
7072
7073 * alias.c (canon_rtx): Make it global.
7074 (rtx_equal_for_memref_p): CONST_INT equality is now pointer
7075 equality.
7076 * cse.c (struct table_elt): Add canon_exp.
7077 (insert): Clear it.
7078 (invalidate): Canonicalize expressions only once.
7079 * rtl.h (canon_rtx): Declare.
7080
7081 2000-03-30 Mark Mitchell <mark@codesourcery.com>
7082
7083 * Makefile.in (emit-rtl.o): Depend on HASHTAB_H.
7084 * alias.c (reg_known_value): Add comments.
7085 (init_alias_analysis): Likewise.
7086 * cse.c (exp_equiv_p): CONST_INTs are equal iff they have the same
7087 address.
7088 (cse_basic_block): Fix typo in comment.
7089 * emit-rtl.c: Include hashtab.h.
7090 (const_int_htab): New variable.
7091 (const_int_htab_hash): New function.
7092 (const_int_htab_eq): Likewise.
7093 (rtx_htab_mark_1): Likewise.
7094 (rtx_htab_mark): Likewise.
7095 (gen_rtx_CONST_INT): Cache all CONST_INTs.
7096 (unshare_all_rtx): Fix formatting.
7097 (init_emit_once): Initialize const_int_htab.
7098 * rtl.c (rtx_equal_p): CONST_INTs are equal iff they have the same
7099 address.
7100 * rtl.texi: Document the fact that all CONST_INTs with the same
7101 value are shared.
7102
7103 2000-03-30 Richard Henderson <rth@cygnus.com>
7104
7105 * alpha.h (FUNCTION_BOUNDARY): Reduce to 128 bits.
7106
7107 2000-03-30 Zack Weinberg <zack@wolery.cumb.org>
7108
7109 * configure.in: Comment out --enable-c-cpplib stanza.
7110 * configure: Regenerate.
7111
7112 Thu Mar 30 06:32:51 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7113
7114 * expr.c (store_constructor): Properly compute displacement and
7115 alignment when offset is variable.
7116
7117 * expmed.c (store_bit_field, store_fixed_bit_field): Fix more
7118 cases of alignment in bytes.
7119
7120 Thu Mar 30 13:30:40 2000 Jeffrey A Law (law@cygnus.com)
7121
7122 * c-parse.in (cast_expr): Move change from March 21 into c-parse.in
7123 since it is used to generate c-parse.y.
7124 * objc-parse.c, objc-parse.y: Regenerated.
7125
7126 * function.c (expand_function_end): Pass alignment argument to
7127 emit_block_move in bits, not bytes.
7128
7129 Thu Mar 30 06:32:51 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7130
7131 * expr.c (move_by_pieces_ninsns): Fix one more missing align
7132 correction.
7133
7134 * expmed.c (store_fixed_bit_field): STRUCT_ALIGN is in bits.
7135
7136 * calls.c (expand_call): Pass bit alignment to mark_reg_pointer.
7137 * explow.c (memory_address, allocate_dynamic_stack_space): Likewise.
7138 * function.c (assign_parms): Likewise.
7139 * integrate.c (expand_inline_function): Likewise.
7140 * stmt.c (expand_decl): Likewise.
7141 (copy_rtx_and_substitute): Likewise.
7142 * expr.c (expand_expr, expand_expr_unaligned): Likewise.
7143 (clear_by_pieces): Fix error in last change.
7144 * emit-rtl.c (init_emit): Set known registers alignment in bits.
7145 * function.h (regno_pointer_align): Now unsigned.
7146 * config/arm/arm.c (alignable_memory_operand): REGNO_POINTER_ALIGN
7147 is in bits.
7148 * config/i386/i386.c (aligned_operand): Likewise.
7149 * config/sparc/sparc.c (mem_min_alignment): Likewise.
7150 * config/alpha/alpha.c (aligned_memory_operand): Likewise.
7151 (unaligned_memory_operand): Likewise.
7152 (alpha_expand_block_move, alpha_expand_block_clear): Likewise.
7153 Also make alignments and sizes unsigned and some whitespace cleanup.
7154 (alpha_va_start): Do nothing if VALIST's type is error_mark_node.
7155
7156 * builtins.c (get_pointer_alignment): Use host_integerp & tree_low_cst.
7157 (expand_builtin_apply): Pass alignment to emit_block_move in bits.
7158 (expand_builtin_memcpy, expand_builtin_va_copy): Likewise.
7159 (expand_builtin_memset): Likewise, but to clear_storage.
7160 * calls.c (save_fixed_argument_area): Likewise, to move_by_pieces.
7161 (restore_fixed_argument_area): Likewise.
7162 (store_unaligned_arguments_into_pseudos): Likewise, to store_bit_field.
7163 (load_register_parameters): Likewise, to emit_group_load.
7164 (expand_call): Likewise, to emit_group_store and emit_block_move.
7165 (emit_library_call_value_1): Likewise, to emit_block_move.
7166 (store_one_arg): Likewise, and to emit_push_insn.
7167 * expmed.c (extract_bit_field): Alignment is in bits, not bytes.
7168 (extract_fixed_bit_field, extract_split_bit_field): Likewise.
7169 * expr.c (move_by_pieces, move_by_pieces_ninsns): Likewise.
7170 (emit_block_move, emit_group_load, emit_group_store): Likewise.
7171 (clear_by_pieces, clear_storage, emit_push_insn): Likewise.
7172 (expand_assigment, store_expr, store_constructor_field): Likewise.
7173 (expand_expr_unaligned, do_jump, do_compare_and_jump): Likewise.
7174 (store_constructor, store_field, get_inner_reference): Likewise.
7175 Use host_integerp and tree_low_cst; sizes and positions HOST_WIDE_INT.
7176 (expand_expr, case COMPONENT_REF): Likewise.
7177 (copy_blkmode_from_regs): Use UNSIGNED_HOST_WIDE_INT for sizes
7178 and positions; reindent code.
7179 * expr.h (emit_cmp_insn, emit_cmp_and_jump_insns): Alignment unsigned.
7180 * function.c (purge_addressof_1): Pass bit align to store_bit_field.
7181 (assign_parms): Likewise to emit_group_store.
7182 * optabs.c (prepare_cmp_insn): Alignment is in bits.
7183 (emit_cmp_and_jump_insns, emit_cmp_insn): Likewise, and also unsigned.
7184 * stmt.c (expand_value_return): Pass align in bits to emit_group_load.
7185 (expand_return): Likewise to {extract,store}_bit_field.
7186 * stor-layout.c (get_mode_alignment): Minor cleanup.
7187 * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Align is in bits.
7188 * config/sh/sh.h (MOVE_BY_PIECES_P): Likewise.
7189
7190 2000-03-29 Nick Clifton <nickc@cygnus.com>
7191
7192 * config/arm/arm.h: Undo effects of previous delta:
7193 (ASM_SPEC): Do not define.
7194 (SUBTARGET_EXTRA_ASM_SPEC): Do not define.
7195
7196 * config/arm/linux-elf.h: (SUBTARGET_EXTRA_ASM_SPEC) Fix
7197 typo.
7198
7199 2000-03-29 Zack Weinberg <zack@wolery.cumb.org>
7200
7201 * cppinit.c (cpp_start_read): Call initialize_dependency_output
7202 only after reading in the primary source file.
7203
7204 2000-03-29 Geoff Keating <geoffk@cygnus.com>
7205
7206 * c-common.c (c_common_nodes_and_builtins): The first parameter to
7207 __builtin_va_start and __builtin_va_copy is now either a 'va_list'
7208 or a reference to a va_list.
7209 * builtins.c (stabilize_va_list): Simplify now we don't have to
7210 work around C array address decay.
7211 * c-typeck.c (convert_for_assignment): Handle assignment to
7212 a reference parameter by taking the address of the RHS.
7213 * ginclude/stdarg.h (va_start): Don't take address of first parameter.
7214 (va_copy): Likewise.
7215 (__va_copy): Likewise.
7216 * ginclude/varargs.h (va_start): Likewise.
7217 (__va_copy): Likewise.
7218
7219 Wed Mar 29 15:44:53 2000 Jeffrey A Law (law@cygnus.com)
7220
7221 * i386/djgpp.h: Remove extraneous "+".
7222
7223 * stmt.c (stmt_loop_nest_empty): Fix thinko in last change.
7224
7225 * calls.c (expand_call): Fix typo in last change.
7226
7227 2000-03-29 Jason Merrill <jason@casey.cygnus.com>
7228
7229 * tree.c (unsave_expr_1): Don't mess with a TARGET_EXPR that hasn't
7230 been expanded.
7231
7232 Wed Mar 29 15:39:10 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7233
7234 * stor-layout.c (bit_from_pos, byte_from_pos): New functions.
7235 (pos_from_byte, pos_from_bit, normalize_offset): Likewise.
7236 (normalize_rli, rli_size_so_far, rli_size_unit_so_far): Use them.
7237 * tree.c (bit_position, byte_position): Likewise.
7238 * tree.h: Declare new functions.
7239
7240 2000-03-29 Nick Clifton <nickc@cygnus.com>
7241
7242 * config/arm/arm.c: Minor formatting changes/
7243 * config/arm/arm.h (SUBTARGET_EXTRA_ASM_SPEC): Define if not
7244 already defined.
7245 (ASM_SPEC): Define if not already defined.
7246
7247 2000-03-29 Zack Weinberg <zack@wolery.cumb.org>
7248
7249 * cppfiles.c (cpp_read_file): Don't pass zero-length string to
7250 _cpp_calc_hash.
7251
7252 2000-03-29 Jakub Jelinek <jakub@redhat.com>
7253
7254 * dwarf2out.c (gen_enumeration_type_die): If enum has a negative
7255 value, don't output it as unsigned.
7256
7257 Wed Mar 29 10:53:49 2000 Jeffrey A Law (law@cygnus.com)
7258
7259 * stmt.c (stmt_loop_nest_empty): Allow cfun->stmt to be NULL.
7260
7261 2000-03-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7262
7263 * c-common.c (c_common_nodes_and_builtins): Don't special case
7264 cplus_mode when declaring builtin bzero/bcmp, always avoid
7265 prototype arguments.
7266
7267 2000-03-29 Bruce Korb <bkorb@gnu.org>
7268
7269 * fixinc/mkfixinc.sh: Initially set the variable "fixincludes"
7270 to a non-file
7271
7272 Wed Mar 29 15:08:01 MET DST 2000 Jan Hubicka <jh@suse.cz>
7273
7274 Convert ACCUMULATE_OUTGOING_ARGS to an expression.
7275 * calls.c (PUSH_ARGS_REVERSED) Change to expression.
7276 (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): Provide default value.
7277 (struct arg_data): Remove #ifdef ACCUMULATE_OUTGOING_ARGS.
7278 (save_fixed_argument_area, restore_fixed_argument_area):
7279 conditionize by #ifdef REG_PARM_STACK_SPACE only.
7280 (emit_call): Change #ifdefs on ACCUMULATE_OUTGOING_ARGS
7281 to conditions, handle RETURN_POPS_ARGS on ACCUMULATE_OUTGOING_ARGS.
7282 (precompute_register_parameters): Avoid #ifdefs on
7283 ACCUMULATE_OUTGOING_ARGS and PUSH_ARGS_REVERSED.
7284 (stire_one_args): Likewise.
7285 (expand_call): Likewise; conditionize PUSH_ROUNDING code by PUSH_ARGS.
7286 (emit_library_call_value_1): Likewise.
7287 (compute_argument_block_size): Align to STACK_BOUNDARY only for
7288 ACCUMULATE_OUTGOING_ARGS.
7289 * combine.c (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): Provide default
7290 value.
7291 (nonzero_bits): Conditionize PUSH_ROUNDING code by USE_PUSH.
7292 (use_crosses_set_p): Likewise.
7293 * all targets (ACCUMULATE_OUTGOING_ARGS define): Change to
7294 #define ACCUMULATE_OUTGOING_ARGS 1.
7295 * i386.c (ix86_compute_frame_size): Handle ACCUMULATE_OUTGOING_ARGS
7296 frames.
7297 * i386.h (MASK_NO_PUSH_ARGS, MASK_ACCUMULATE_OUTGOING_ARGS): New
7298 constants.
7299 (TARGET_PUSH_ARGS, TARGET_ACCUMULATE_OUTGOING_ARGS): New macros.
7300 (TARGET_SWITCHES): Add push-args, no-push-args,
7301 accumulate-outgoing-args and no-accumulate-outgoing-args.
7302 (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): New macro.
7303 * expr.c (ACCUMULATE_OUTGONG_ARGS, PUSH_ARGS): Provide default.
7304 (push_block): Avoid ifdefs on ACCUMULATE_OUTGONG_ARGS
7305 and PUSH_ROUNDING.
7306 (emit_push_insn): Likewise.
7307 * final.c (ACCUMULATE_OUTGOING_ARGS): Provide default.
7308 (final_scan_insn): Avoid ifdefs on ACCUMULATE_OUTGOING_ARGS.
7309 * function.c (ACCUMULATE_OUTGOING_ARGS): Provide default.
7310 (STACK_DYNAMIC_OFFSET): Define correctly for both
7311 ACCUMULATE_OUTGOING_ARGS and normal mode.
7312 * invoke.texi (-mpush_args, -maccumulate-outgoing-args): Document.
7313 * tm.texi (PUSH_ARGS): Document.
7314 (ACCUMULATE_OUTGOING_ARGS, PUSH_ROUNDING): Update documentation.
7315
7316 Wed Mar 29 11:51:13 MET DST 2000 Jan Hubicka <jh@suse.cz>
7317
7318 * flags.h (flag_optimize_sibling_calls): Declare.
7319 * calls.c (expand_call): Fail sibcall when
7320 !flag_optimize_sibling_calls
7321 * invoke.texi (flag_optimize_sibling_calls): Document.
7322 * toplev.c (flag_optimize_sibling_calls): New global variable.
7323 (f_options): Add flag_optimize_sibling_calls.
7324 (rest_of_compilation): Conditionize
7325 optimize_sibling_and_tail_recursive_calls by
7326 flag_optimize_sibling_calls.
7327 (main): Set flag_optimize_sibling_calls for -O2.
7328 * stmt.c (expand_return): Conditionize tail recursion by
7329 flag_optimize_sibling_calls.
7330
7331 2000-03-29 Richard Henderson <rth@cygnus.com>
7332
7333 * config/i386/att.h (LOCAL_LABEL_PREFIX): Define.
7334 (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL): Use it.
7335
7336 2000-03-29 Nathan Sidwell <nathan@codesourcery.com>
7337
7338 * except.c (add_eh_table_entry): Mark type_info's as referenced.
7339
7340 2000-03-29 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
7341
7342 * config/rs6000/aix41.h (CPP_SPEC): Define _ANSI_C_SOURCE if -ansi
7343 is given.
7344 * config/rs6000/aix43.h (CPP_SPEC): Likewise.
7345 * config/rs6000/rs6000.h (CPP_SPEC): Moved to...
7346 * config/rs6000/aix.h: then modified likewise.
7347
7348 2000-03-28 Richard Henderson <rth@cygnus.com>
7349
7350 * rtl.h: Redistribute enum reg_note documentation.
7351 Kill trailing whitespace.
7352 * rtl.c (reg_note_name): Adjust to match enum reg_note tweeks.
7353 Kill trailing whitespace.
7354
7355 2000-03-28 Zack Weinberg <zack@wolery.cumb.org>
7356
7357 * cppfiles.c (hash_IHASH): Just return i->hash.
7358 (cpp_included): Set dummy.hash using _cpp_calc_hash. Use
7359 htab_find_with_hash.
7360 (cpp_read_file): Likewise.
7361 (find_include_file): Likewise. Properly initialize
7362 ih->nshort. Share ih->name and ih->nshort if possible.
7363 * cpphash.c (_cpp_calc_hash): New function.
7364 (hash_HASHNODE): Just return h->hash.
7365 (_cpp_lookup): Set dummy.hash using _cpp_calc_hash. Use
7366 htab_find_with_hash.
7367 * cpphash.h: Prototype _cpp_calc_hash.
7368 * cppinit.c (initialize_builtins): Provide a valid hash
7369 to _cpp_make_hashnode, using _cpp_calc_hash.
7370
7371 * cpphash.c (collect_expansion): # is not a special character
7372 in object-like macros. In -traditional mode, /**/ is not
7373 token paste at the beginning or end of the line.
7374 * cpplib.c (do_include, do_import, do_include_next): If
7375 parse_include fails, return immediately.
7376
7377 2000-03-28 Jason Merrill <jason@casey.cygnus.com>
7378
7379 * config/arm/arm.md (return peepholes): Update to reflect the new
7380 call insn patterns.
7381 * config/arm/arm.c (arm_volatile_func): Also check
7382 current_function_nothrow.
7383 (output_return_instruction, output_func_prologue): Use it.
7384 (arm_output_epilogue, arm_expand_prologue): Likewise.
7385
7386 2000-03-27 Tom Tromey <tromey@cygnus.com>
7387
7388 * gcc.c (handle_braces): In {x*...} case, break out of loop if
7389 switch is found.
7390
7391 Tue Mar 28 11:55:48 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7392
7393 * expr.c (store_constructor): SIZE now signed.
7394 For EXPR_SIZE, don't evaluate size; just needed if constant.
7395 * fold-const.c (fold): Fix a number of cases when folded tree is
7396 wrong type.
7397 * function.c (flush_addressof): Reenable.
7398 * tree.h (flush_addressof): Likewise.
7399 * toplev.c (independent_decode_option): Look at strings_processed.
7400 * config/alpha/alpha.h (MINIMUM_ATOMIC_ALIGNMENT): Cast to unsigned.
7401
7402 Tue Mar 28 08:29:46 2000 Jan Hubicka <jh@suse.cz>
7403
7404 * sibcall.c (indentify_call_return_value): Find last call in the chain;
7405 Allow stack adjustment after function call.
7406
7407 * regmove.c (struct csa_memlist): Make mem field rtx *.
7408 (record_one_stack_ref): Accept rtx * instead of rtx as parameter.
7409 (try_apply_stack_adjustment): Replace whole MEM rtx.
7410 (combine_stack_adjustments_for_block): Update calls
7411 to record_one_stack_ref.
7412
7413 2000-03-28 Neil Booth <NeilB@earthling.net>
7414
7415 * cpplex.c (_cpp_read_and_prescan): Mark end of input buffer with
7416 '\\' rather than a null character, so nulls are not special. Fix
7417 "\\\n" handling in end-of-buffer conditions. Use trigraph map to
7418 speed trigraph conversion.
7419 (_cpp_init_input_buffer): Initialize trigraph map.
7420
7421 2000-03-27 Alan Modra <alan@linuxcare.com.au>
7422
7423 * config/i386/i386.c (output_387_binary_op): Correct intel
7424 mode assembly output, and add spaces after commas in AT&T
7425 output. Correct Unixware assembler comment. Document input
7426 constraints. Comment fp operations. Reduce profligate buffer
7427 size. Remove extraneous abort. Localize temp var.
7428 (SYSV386_COMPAT): Define. Add !SYSV386_COMPAT code.
7429 (output_fix_trunc): Add spaces after commas in assembly output.
7430
7431 2000-03-27 Richard Henderson <rth@cygnus.com>
7432
7433 * i386-protos.h (ix86_match_ccmode): Declare.
7434 * i386.c (ix86_match_ccmode): New.
7435 (ix86_expand_fp_compare): Update for pattern renames.
7436 (ix86_expand_strlensi_unroll_1): Likewise.
7437 * i386.h (EXTRA_CC_MODES): Add CCZ.
7438 (SELECT_CC_MODE): Use it for EQ/NE zero.
7439 * i386.md (cmpsi_ccz_1): New.
7440 (cmpqi_ccz_1): New.
7441 (*testsi_ccz_1): New.
7442 (testqi_ccz_1): New.
7443 (cmpsi_ccno_1): Rename from cmpsi_0.
7444 (testsi_ccno_1): Rename from testsi_1.
7445 (testqi_ccno_1): Rename from testqi_1.
7446 (*testqi_ext_ccz_0): Rename from testqi_ext_0.
7447 (testqi_ext_ccno_0): Rename from *testqi_ext_1.
7448 (*cmphi_0): Use ix86_match_ccmode.
7449 (*cmpqi_ext_2, *addsi_2, *addhi_2, *addqi_2): Likewise.
7450 (*subsi_2, *subhi_2, *subqi_2, *testhi_1): Likewise.
7451 (*testqi_ext_1, *testqi_ext_2, *testqi_ext_3): Likewise.
7452 (*andsi_2, *andhi_2, *andqi_2, *andqi_ext_0_cc): Likewise.
7453 (*iorsi_2, *iorhi_2, *iorqi_2): Likewise.
7454 (*xorsi_2, *xorhi_2, *xorqi_cc_1): Likewise.
7455 (*one_cmplsi2_2, *one_cmplhi2_2, *one_cmplqi2_2): Likewise.
7456 (*ashlsi3_cmpno, *ashlhi3_cmpno, *ashlqi3_cmpno): Likewise.
7457 (*ashrsi3_cmpno, *ashrhi3_cmpno, *ashrqi3_cmpno): Likewise.
7458 (*lshrsi3_cmpno, *lshrhi3_cmpno, *lshrqi3_cmpno): Likewise.
7459 (appropriate peepholes): Likewise.
7460 (*cmphi_1, *cmpqi_ccno_1, *cmpqi_1): Star out name.
7461 (*subsi_3, *subhi_3, *subqi_3): Remove.
7462 (*negdi2_1+1 splitter): Use CCZ for neg patterns.
7463 (*negsi2_cmp, *neghi2_cmp, *negqi2_cmp): Remove.
7464 (*negsi2_cmpz): Rename from *negsi2_cmpno, use CCZ.
7465 (*neghi2_cmpz, *negqi2_cmpz): Similarly.
7466 (x86_shift_adj_1): Use CCZ.
7467 (*dbra_ge+1, *dbra_ge+2, ffssi2, ffssi_1): Likewise.
7468
7469 2000-03-27 Stan Cox <scox@cygnus.com>
7470
7471 * resource.h (mark_resource_type): New.
7472 * resource.c (find_dead_or_set_registers, mark_target_live_regs,
7473 find_free_register): Use mark_resource_type.
7474 (mark_set_resources): Change include_delayed_effects
7475 to mark_resource_type.
7476 * reorg.c (steal_delay_list_from_target, try_merge_delay_insns,
7477 redundant_insn, fill_simple_delay_slots, fill_slots_from_thread):
7478 Use mark_resource_type.
7479
7480 2000-03-27 Richard Henderson <rth@cygnus.com>
7481
7482 * i386.md (call_pop_0, call_value_pop_0): New.
7483 (call_pop_1): Remove constraint from unused arg. Support sibcalls.
7484 (call_value_pop_1): Likewise.
7485 (call_0, call_value_0): New.
7486 (call_1, call_value_1): Remove constraint from unused arg.
7487
7488 2000-03-27 Nick Clifton <nickc@cygnus.com>
7489
7490 * invoke.texi (Spec Files): Document new spec % command created by
7491 Tom Tromey's recent patch.
7492
7493 2000-03-27 Jakub Jelinek <jakub@redhat.com>
7494
7495 * libgcc2.h (MIN_UNITS_PER_WORD): Define to UNITS_PER_WORD
7496 if not defined.
7497
7498 Mon Mar 27 06:04:22 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7499
7500 * expr.c (expand_assignment): Fix typo in last change.
7501
7502 * libgcc2.h: Use MIN_UNITS_PER_WORD, not UNITS_PER_WORD.
7503
7504 Sun Mar 26 20:15:26 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7505
7506 * c-convert.c (convert): Return if output or input type is ERROR_MARK.
7507 * c-decl.c (duplicate_decls): Only look at DECL_BUILT_IN_NONANSI
7508 and DECL_INLINE if FUNCTION_DECL.
7509 (pushdecl, redeclaration_error_message): Likewise, for DECL_INLINE.
7510 (store_parm_decls): Check for type of PARM_DECL being ERROR_MARK.
7511 Use DECL_WEAK, not DECL_RESULT, to flag for already seen.
7512 (combine_parm_decls): Likewise.
7513 * ggc-common.c (gcc_mark_tree_children, case 'd'): Use DECL_RESULT_FLD.
7514 * print-tree.c (print_node): Likewise.
7515 Only test DECL_PACKED, DECL_INLINE, DECL_BIT_FIELD, and
7516 DECL_TRANSPARENT_UNION on proper decl types.
7517 Properly handly DECL_INCOMING_RTL and DECL_SAVED_INSNS.
7518 * stor-layout.c (layout_decl): Only check DECL_PACKED and
7519 DECL_BIT_FIELD of FIELD_DECL.
7520 * tree.h (DECL_RESULT_FLD): New macro.
7521
7522 * expr.c (expand_assignment): Add code to handle variable-sized
7523 BLKmode case.
7524
7525 2000-03-26 Richard Henderson <rth@cygnus.com>
7526
7527 * calls.c (expand_call): Pass parms not original exp to
7528 optimize_tail_recursion. Mind return value instead of looking
7529 for a barrier.
7530 * stmt.c (optimize_tail_recursion): Take parameter list, not entire
7531 call_expr. Move checks for call_expr and current_function_decl ...
7532 (expand_return): ... here.
7533
7534 2000-03-26 Tom Tromey <tromey@cygnus.com>
7535
7536 * gcc.c (handle_braces): Recognize `%{<S}' construct.
7537 (SWITCH_OK, SWITCH_FALSE, SWITCH_IGNORE, SWITCH_LIVE): New
7538 defines.
7539 (process_command): Use them.
7540 (check_live_switch): Likewise.
7541 (give_switch): Skip ignored switches.
7542
7543 2000-03-26 Jan Hubicka <jh@suse.cz>
7544
7545 * jump.c (jump_optimize_1): Fix typo in elide optimizations
7546 for minimal jump pass test.
7547
7548 2000-03-26 Mark Mitchell <mark@codesourcery.com>
7549
7550 * integrate.c (function_cannot_inline_p): Do inline functions that
7551 return `void'.
7552
7553 Sun Mar 26 11:37:55 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7554
7555 * stor-layout.c (layout_type, set_sizetype): early_type_list is
7556 now a list of TREE_LIST entries, not types.
7557 * tree.c (build_common_tree_nodes_2): Eliminate dupliate type sets.
7558
7559 * expmed.c (extract_bit_field): Ensure BITS_PER_WORD is signed in MAX.
7560 * config/arm/pe.c (arm_pe_return_in_memory): Use host_integerp and
7561 int_bit_position.
7562 * config/mips/mips.c (function_arg): Likewise; also remove cast
7563 and make variables unsigned or HOST_WIDE_INT and use tree_low_cst.
7564 (mips_function_value): Use int_byte_position and make HOST_WIDE_INT.
7565 * config/mips/abi64.h (SETUP_INCOMING_VARARGS): Offsets are unsigned.
7566 * config/mips/mips.h (BITS_PER_WORD, UNITS_PER_WORD): Cast to unsigned.
7567 (UNITS_PER_FPREG, INT_TYPE_SIZE, LONG_TYPE_SIZE): Likewise.
7568 (POINTER_SIZE, POINTER_BOUNDARY,PARM_BOUNDARY): Likewise.
7569 (GP_REG_P, FP_REG_P, MD_REG_P, ST_REG_P): Ensure subtraction signed.
7570 (struct mips_arg): arg_number, arg_words, fp_arg_words, and
7571 num_adjusts now unsigned.
7572 (FUNCTION_ARG_BOUNDARY): Remove unneeded cast.
7573 * config/sparc/sparc.c (struct function_arg_record_value_parms):
7574 NREGS now unsigned.
7575 (function_arg_record_value_1): STARTBITPOS arg now HOST_WIDE_INT
7576 as is BITPOS variable; use host_integerp and int_bit_position.
7577 (function_arg_record_value_2): Likewise.
7578 (function_arg_record_value_3): Arg BITPOS now HOST_WIDE_INT.
7579 Variable REGNO now unsigned.
7580 (function_arg_record_value): NREGS now unsigned.
7581
7582 2000-03-26 Bernd Schmidt <bernds@cygnus.co.uk>
7583
7584 * jump.c (mark_all_labels): Handle CALL_PLACEHOLDERs.
7585
7586 Sat Mar 25 09:12:10 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7587
7588 * Rework fields used to describe positions of bitfields and
7589 modify sizes to be unsigned and use HOST_WIDE_INT.
7590 * alias.c (reg_known_value_size): Now unsigned.
7591 * c-typeck.c (build_unary_op, case ADDR_EXPR): Use byte_position.
7592 (really_start_incremental_init): Use bitsize_zero_node.
7593 (push_init_level, pop_init_level, output_init_element): Likewise.
7594 Use bitsize_unit_node and bitsize_one_node.
7595 (output_pending_init_elements, process_init_element): Likewise.
7596 * combine.c (combine_max_regno, reg_sign_bit_copies): Now unsigned.
7597 (make_extraction): Position and length HOST_WIDE_INT and unsigned
7598 HOST_WIDE_INT, respectively.
7599 (get_pos_from_mask): Passed in value is unsigned HOST_WIDE_INT.
7600 (num_sign_bit_copies): Returns unsigned.
7601 BITWIDTH now unsigned; rework arithmetic.
7602 Remove recursive call from arg to MAX.
7603 (combine_instructions, init_reg_last_arrays): NREGS now unsigned.
7604 (setup_incoming_promotions, can_combine_p, try_combine, simplify_set):
7605 REGNO now unsigned.
7606 (set_nonzero_bit_and_sign_copies): NUM now unsigned.
7607 (find_split_point, expand_compound_operation, make_extraction): LEN
7608 now unsigned HOST_WIDE_INT, POS now HOST_WIDE_INT.
7609 (make_field_assignment): Likewise.
7610 (combine_simplify_rtx): Add cast.
7611 (expand_compound_operation): MODEWIDTH now unsigned; rework arithmetic.
7612 (force_to_mode): WIDTH now unsigned; add cast.
7613 (if_then_else_cond): SIZE now unsigned.
7614 (nonzero_bits): MODE_WIDTH, RESULT_WIDTH, and WIDTH now unsigned.
7615 (extended_count): Now returns unsigned.
7616 (simplify_shift_const): COUNT unsigned; arg is now INPUT_COUNT.
7617 Add SIGNED_COUNT variable; MODE_WORDS and FIRST_COUNT now unsigned.
7618 (simplify_comparison): MODE_WIDTH now unsigned.
7619 (update_table_tick): REGNO and ENDREGNO now unsigned; new var R.
7620 (mark_used_regs_combine): Likewise; rework arithmetic.
7621 (record_value_for_reg): REGNO, ENDREGNO, and I now unsigned.
7622 (record_dead_and_set_regs, reg_dead_at_p, distribute_notes): Likewise.
7623 (record_promoted_value): REGNO now unsigned.
7624 (get_last_value_validate): REGNO, ENDREGNO, and J now unsigned.
7625 (get_last_value): REGNO now unsigned.
7626 (use_crosses_set_p): REGNO and ENDREGNO now unsigned.
7627 (reg_dead_regno, reg_dead_endregno): Now unsigned.
7628 (remove_death): Arg REGNO now unsigned.
7629 (move_deaths): REGNO, DEADREGNO, DEADEND, OUREND, and I now unsigned.
7630 (reg_bitfield_target_p): REGNO, REGNO, ENDREGNO, and ENDTREGNO
7631 now unsigned.
7632 * convert.c (convert_to_integer): INPREC and OUTPREC now unsigned.
7633 * cse.c (struct qty_table_elem): FIRST_REG and LAST_REG now unsigned.
7634 (struct cse_reg_info): REGNO now unsigned.
7635 (cached_regno): Now unsigned.
7636 (REGNO_QTY_VALID_P): Add cast.
7637 (make_new_qty, make_regs_eqv, delete_reg_eqiv): Regno args unsigned.
7638 (remove_invalid_regs): Likewise.
7639 (remove_invalid_subreg_refs): Likewise; arg WORD also unsigned
7640 as are variables END and I.
7641 (get_cse_reg_info, insert): Likewise.
7642 (mention_regs, invalidate_for_call): REGNO, ENDREGNO, and I unsigned.
7643 (canon_hash): Likewise.
7644 (insert_regs, lookup_for_remove): REGNO now unsigned.
7645 (invalidate): REGNO, ENDREGNO, TREGNO, and TENDREGNO now unsigned.
7646 New variable RN.
7647 * dbxout.c (dbxout_parms, dbxout_reg_parms): Don't check for REGNO < 0.
7648 * dwarf2out.c (dwarf2ou_frame_debug_expr): Remove cast.
7649 * emit-rtl.c (subreg_realpart_p): Add cast.
7650 (operand_subword): Arg I is now unsigned as is var PARTWORDS.
7651 (operand_subword_force): Arg I is now unsigned.
7652 * except.c (eh_regs): Variable I is now unsigned.
7653 * explow.c (hard_function_value): BYTES is unsigned HOST_WIDE_INT.
7654 * expmed.c (store_fixed_bit_field): Position is HOST_WIDE_INT;
7655 length is unsigned HOST_WIDE_INT; likewise for internal variables.
7656 (store_split_bit_field, extract_fixed_bit_field): Likewise.
7657 (extract_split_bit_field, store_bit_field, extract_bit_field):
7658 Likewise.
7659 * expr.c (store_constructor_fields, store_constructor, store_field):
7660 Positions are HOST_WIDE_INT and lengths are unsigned HOST_WIDE_INT.
7661 (expand_assignment, expand_expr, expand_expr_unaligned): Likewise.
7662 (do_jump): Likewise.
7663 (move_by_pieces, move_by_pieces_ninsns, clear_by_pieces):
7664 MAX_SIZE is now unsigned.
7665 (emit_group_load): BYTEPOS is HOST_WIDE_INT; BYTELEN is unsigned.
7666 (emit_group_store): Likewise.
7667 (emit_move_insn): I now unsigned.
7668 (store_constructor): Use host_integerp, tree_low_cst, and
7669 bitsize_unit_node.
7670 (get_inner_reference): Return bitpos and bitsize as HOST_WIDE_INT.
7671 Rework all calculations to use trees and new fields.
7672 * expr.h (promoted_input_arg): Regno now unsigned.
7673 (store_bit_field, extract_bit_field): Adjust types of pos and size.
7674 (mark_seen_cases): Arg is HOST_WIDE_INT.
7675 * flow.c (verify_wide_reg_1): REGNO now unsigned.
7676 * fold-const.c (decode_field_reference): Size and pos HOST_WIDE_INT;
7677 precisions and alignments are unsigned.
7678 (optimize_bit_field_compare, fold_truthop): Likewise.
7679 (int_const_binop): Adjust threshold for size_int_type_wide call.
7680 (fold_convert): Likewise.
7681 (size_int_type_wide): Make table larger and fix thinko that only
7682 had half of table used.
7683 (all_ones_mask_p, fold): Precisions are unsigned.
7684 * function.c (put_reg_info_stack): REGNO is unsigned.
7685 (instantiate_decl): Size is HOST_WIDE_INT.
7686 (instantiate_virtual_regs): I is unsigned.
7687 (assign_parms): REGNO, REGNOI, and REGNOR are unsigned.
7688 (promoted_input_arg): REGNO is unsigned.
7689 * function.h (struct function): x_max_parm_reg is now unsigned.
7690 * gcse.c (max_gcse_regno): Now unsigned.
7691 (struct null_pointer_info): min_reg and max_reg now unsigned.
7692 (lookup_set, next_set): REGNO arg now unsigned.
7693 (compute_hash_table): REGNO and I now unsigned.
7694 (handle_avail_expr): regnum_for_replacing now unsigned.
7695 (cprop_insn): REGNO now unsigned.
7696 (delete_null_pointer_checks_1): BLOCK_REG now pointer to unsigned.
7697 * ggc-common.c (ggc_mark_tree_children, case FIELD_DECL): New case.
7698 * global.c (set_preference): SRC_REGNO, DEST_REGNO, and I now unsigned.
7699 * hard-reg-set.h (reg_class_size): Now unsigned.
7700 * integrate.c (mark_stores): LAST_REG and I now unsigned; new UREGNO.
7701 * jump.c (mark_modified_reg): I now unsigned; add cast.
7702 (rtx_equal_for_thread_p): Add cast.
7703 * loop.c (max_reg_before_loop): Now unsigned.
7704 (struct_movable): REGNO now unsigned.
7705 (try_copy_prop): REGNO arg unsigned.
7706 (regs_match_p): XN and YN now unsigned.
7707 (consec_sets_invariant_p, maybe_eliminate_biv): REGNO now unsigned.
7708 (strength_reduce): Likewise; NREGS also unsigned.
7709 (first_increment_giv, last_increment_giv unsigned): Now unsigned.
7710 * loop.h (struct iv_class): REGNO now unsigned.
7711 (max_reg_before_loop, first_increment_giv, last_increment_giv):
7712 Now unsigned.
7713 * machmode.h (mode_size, mode_unit_size): Now unsigned.
7714 (mode_for_size, smallest_mode_for_size): Pass size as unsigned.
7715 * optabs.c (expand_binop): I and NWORDS now unsigned.
7716 (expand_unop): I now unsigned.
7717 * print-tree.c (print_node): Don't print DECL_FIELD_BITPOS, but do
7718 print DECL_FIELD_OFFSET and DECL_FIELD_BIT_OFFSET.
7719 * real.c (significand_size): Now returns unsigned.
7720 * real.h (significand_size): Likewise.
7721 * regclass.c (reg_class_size): Now unsigned.
7722 (choose_hard_reg_mode): Both operands now unsigned.
7723 (record_reg_classes): REGNO and NR now unsigned.
7724 (reg_scan): NREGS now unsigned.
7725 (reg_scan_update): old_max_regno now unsigned.
7726 (reg_scan_mark_refs): Arg MIN_REGNO and var REGNO now unsigned.
7727 * reload.c (find_valid_class): BEST_SIZE now unsigned.
7728 (find_dummy_reload): REGNO, NWORDS, and I now unsigned.
7729 (hard_reg_set_here_p): Args BEG_REGNO and END_REGNO now unsigned.
7730 Likewise for variable R.
7731 (refers_to_regno_for_reload_p): Args REGNO and END_REGNO now unsigned,
7732 as are variables INNER_REGNO and INNER_ENDREGNO; add new variable R.
7733 (find_equiv_reg): Add casts.
7734 (regno_clobbered_p): Arg REGNO now unsigned.
7735 * reload.h (struct reload): NREGS now unsigned.
7736 (refers_to_regno_for_reload_p): Regno args are unsigned.
7737 (regno_clobbered_p): Likewise.
7738 * reload1.c (reg_max_ref_width, spill_stack_slot_width): Now unsigned.
7739 (compute_use_by_pseudos): REGNO now unsigned.
7740 (find_reg): I and J now unsigned, new variable K, and change loop
7741 variables accordingly; THIS_NREGS now unsigned.
7742 (alter_reg): INHERENT_SIZE and TOTAL_SIZE now unsigned.
7743 (spill_hard_reg): REGNO arg now unsigned; add casts.
7744 (forget_old_reloads_1): REGNO, NR, and I now unsigned.
7745 (mark_reload_reg_in_use): Arg REGNO and vars NREGS and I now unsigned.
7746 (clear_reload_reg_in_use): Arg REGNO and vars NREGS, START_REGNO,
7747 END_REGNO, CONFLICT_START, and CONFLICT_END now unsigned.
7748 (reload_reg_free_p, reload_reg_reaches_end_p): Arg REGNO now unsigned.
7749 (choose_reload_regs): MAX_GROUP_SIZE now unsigned.
7750 (emit_reload_insns): REGNO now unsigned.
7751 (reload_cse_move2add): Add cast.
7752 (move2add_note_store): REGNO and I now unsigned; new variable ENDREGNO
7753 and rework loop.
7754 * resource.c (mark_referenced_resources, mark_set_resources): New
7755 variable R; REGNO and LAST_REGNO now unsigned.
7756 (mark_target_live_regs): J and REGNO now unsigned.
7757 * rtl.c (mode_size, mode_unit_size): Now unsigned.
7758 * rtl.h (union rtunion_def): New field rtuint.
7759 (XCUINT): New macro.
7760 (ADDRESSOF_REGNO, REGNO, SUBREG_WORD): New XCUINT.
7761 (operand_subword, operand_subword_force): Word number is unsigned.
7762 (choose_hard_reg_mode): Operands are unsigned.
7763 (refers_to-regno_p, dead_or_set_regno_p): Regno arg is unsigned.
7764 (find_regno_note, find_regno_fusage, replace_regs): Likewise.
7765 (regno_use_in, combine_instructions, remove_death): Likewise.
7766 (reg_scan, reg_scan_update): Likewise.
7767 (extended_count): Return is unsigned.
7768 * rtlanal.c (refers_to_regno_p): Args REGNO and ENDREGNO and vars I,
7769 INNER_REGNO, and INNER_ENDREGNO now unsigned; new variable X_REGNO.
7770 (reg_overlap_mentioned_p): REGNO and ENDREGNO now unsigned.
7771 (reg_set_last_first_regno, reg_set_last_last_regno): Now unsigned.
7772 (reg_reg_last_1): FIRS and LAST now unsigned.
7773 (dead_or_set_p): REGNO, LAST_REGNO, and I now unsigned.
7774 (dead_or_set_regno_p): Arg TEST_REGNO and vars REGNO and ENDREGNO
7775 now unsigned.
7776 (find_regno_note, regno_use_in): Arg REGNO now unsigned.
7777 (find_regno_fusage): Likewise; also var REGNOTE now unsigned.
7778 (find_reg_fusage): Variables REGNO, END_REGNO, and I now unsigned.
7779 (replace_regs): Arg NREGS now unsigned.
7780 * sdbout.c (sdbout_parms, sdbout_reg_parms): Don't check REGNO < 0.
7781 * simplify-rtx.c (simplify_unary_operation): WIDTH now unsigned.
7782 (simplify_binary_operation): Likewise.
7783 (cselib_invalidate_regno): Arg REGNO and variables ENDREGNO, I, and
7784 THIS_LAST now unsigned.
7785 (cselib_record_set): Add cast.
7786 * ssa.c (ssa_max_reg_num): Now unsigned.
7787 (rename_block): REGNO now unsigned.
7788 * stmt.c (expand_return): Bit positions unsigned HOST_WIDE_INT;
7789 sizes now unsigned.
7790 (all_cases_count): Just return -1 not -2.
7791 COUNT, MINVAL, and LASTVAL now HOST_WIDE_INT.
7792 Rework tests to use trees whenever possible.
7793 Use host_integerp and tree_low_cst.
7794 (mark_seen_cases): COUNT arg now HOST_WIDE_INT;
7795 Likewise variable NEXT_NODE_OFFSET; XLO now unsigned.
7796 (check_for_full_enumeration_handing): BYTES_NEEDED, I to HOST_WIDE_INT.
7797 * stor-layout.c (mode_for_size): SIZE arg now unsigned.
7798 (smallest_mode_for_size): Likewise.
7799 (layout_decl): Simplify handing of a specified DECL_SIZE_UNIT.
7800 KNOWN_ALIGN is now an alignment, so simplify code.
7801 Don't turn off DECL_BIT_FIELD if field is BLKmode, but not type.
7802 (start_record_layout): Renamed from new_record_layout_info.
7803 Update to new fields.
7804 (debug_rli, normalize_rli, rli_size_unit_so_far, rli_size_so_far):
7805 New functions.
7806 (place_union_field): Renamed from layout_union_field.
7807 Update to use new fields in rli.
7808 (place_field): Renamed from layout_field.
7809 Major rewrite to use new fields in rli; pass alignment to layout_decl.
7810 (finalize_record_size): Rework to use new fields in rli and handle
7811 union.
7812 (compute_record_mode): Rework to simplify and to use new DECL fields.
7813 (finalize_type_size): Make rounding more consistent.
7814 (finish_union_layout): Deleted.
7815 (layout_type, case VOID_TYPE): Don't set TYPE_SIZE_UNIT either.
7816 (layout_type, case RECORD_TYPE): Call new function names.
7817 (initialize_sizetypes): Set TYPE_IS_SIZETYPE.
7818 (set_sizetype): Set TYPE_IS_SIZETYPE earlier.
7819 (get_best_mode): UNIT is now unsigned; remove casts.
7820 * tree.c (bit_position): Compute from new fields.
7821 (byte_position, int_byte_position): New functions.
7822 (print_type_hash_statistics): Cast to remove warning.
7823 (build_range_type): Use host_integerp and tree_low_cst to try to hash.
7824 (build_index_type): Likewise; make subtype of sizetype.
7825 (build_index_2_type): Pass sizetype to build_range_type.
7826 (build_common_tree_nodes): Use size_int and bitsize_int to
7827 initialize nodes; add bitsize_{zero,one,unit}_node.
7828 * tree.h (DECL_FIELD_CONTEXT): Use FIELD_DECL_CHECK.
7829 (DECL_BIT_FIELD_TYPE, DECL_QUALIFIER, DECL_FCONTEXT): Likewise.
7830 (DECL_PACKED, DECL_BIT_FIELD): Likewise.
7831 (DECL_FIELD_BITPOS): Deleted.
7832 (DECL_FIELD_OFFSET, DECL_FIELD_BIT_OFFSET): New fields.
7833 (DECL_RESULT, DECL_SAVED_INSNS): Use FUNCTION_DECL_CHECK.
7834 (DECL_FRAME_SIZE, DECL_FUNCTION_CODE, DECL_NO_STATIC_CHAIN): Likewise.
7835 (DECL_INLINE, DECL_BUILT_IN_NONANSI, DECL_IS_MALLOC): Likewise.
7836 (DECL_BUILT_IN_CLASS, DECL_STATIC_CONSTRUCTOR): Likewise.
7837 (DECL_STATIC_DESTRUCTOR, DECL_NO_CHECK_MEMORY_USAGE): Likewise.
7838 (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT, DECL_NO_LIMIT_STACK) Likewise.
7839 (DECL_ORIGINAL_TYPE, TYPE_DECL_SUPPRESS_DEBUG): Use TYPE_DECL_CHECK.
7840 (DECL_ARG_TYPE_AS_WRITEN, DECL_ARG_TYPE): Use PARM_DECL_CHECK.
7841 (DECL_INCOMING_RTL, DECL_TRANSPARENT_UNION): Likewise.
7842 (DECL_ALIGN): Adjust to new field in union.
7843 (DECL_OFFSET_ALIGN): New field.
7844 (DECL_ERROR_ISSUED, DECL_TOO_LATE): Use LABEL_DECL_CHECK.
7845 (DECL_IN_TEXT_SECTION): Use VAR_DECL_CHECK.
7846 (union tree_decl): Add struct for both aligns.
7847 (enum tree_index): Add TI_BITSIZE_{ZERO,ONE,UNIT}.
7848 (bitsize_zero_node, bitsize_one_node, bitsize_unit_node): Added.
7849 (struct record_layout_info): Rework fields to have offset
7850 alignment and byte and bit position.
7851 (start_record_layout, place_field): Renamed from old names.
7852 (rli_size_so_far, rli_size_unit_so_far, normalize_rli): New decls.
7853 (byte_position, int_byte_position): Likewise.
7854 (get_inner_reference): Change types of position and length.
7855 * unroll.c (unroll_loop): New variable R; use for some loops.
7856 MAX_LOCAL_REGNUM and MAXREGNUM now unsigned.
7857 (calculate_giv_inc): Arg REGNO now unsigned.
7858 (copy_loop_body): REGNO and SRC_REGNO now unsigned.
7859 * varasm.c (assemble_variable): Clean up handling of size using
7860 host_integerp and tree_low_cst.
7861 (decode_addr_const): Use byte, not bit, position.
7862 (output_constructor): bitpos and offsets are HOST_WIDE_INT;
7863 use tree_low_cst and int_bit_position.
7864 * objc/objc-act.c (build_ivar_list_initializer): Use byte_position.
7865
7866 Fri Mar 24 20:13:49 2000 Jason Eckhardt <jle@cygnus.com>
7867
7868 * bb-reorder.c (REORDER_MOVED_BLOCK_END): Removed.
7869 (reorder_block_def): New members eff_head and eff_end.
7870 (REORDER_BLOCK_EFF_HEAD, REORDER_BLOCK_EFF_END): New macros.
7871 (verify_insn_chain): New function.
7872 (skip_insns_between_block): Add code to skip deleted insns.
7873 Check for note before using.
7874 (chain_reorder_blocks): Replace calls to skip_insns_between_block
7875 with references to REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END.
7876 Check for note before using.
7877 (make_reorder_chain): Use INTVAL rather than XINT to get REG_BR_PROB.
7878 (fixup_reorder_chain): Restructure, clean up, defect removal.
7879 (reorder_basic_blocks): Remove last_insn and references to it.
7880 Moved insn chain verification code into a new function (see above).
7881 Delete defective code that sets last insn.
7882 Initialize REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END for
7883 all blocks.
7884
7885 2000-03-25 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
7886
7887 * config/c4x/c4x.h (CPP_SPEC): Remove erroneous space.
7888
7889 2000-03-24 Richard Henderson <rth@cygnus.com>
7890
7891 * tree.c (lang_safe_for_unsave): Remove.
7892 (unsafe_for_reeval): Transmute and rename from safe_for_unsave,
7893 allowing for two levels of unsafeness. Remove lang hook.
7894 * tree.h: Update declarations.
7895 * calls.c (expand_call): Rename safe_for_reeval to try_tail_call.
7896 Create temporary VAR_DECLs to protect very unsafe_for_reeval trees.
7897 Always fail sibcalls when there are pending cleanups.
7898
7899 2000-03-24 Geoff Keating <geoffk@cygnus.com>
7900
7901 * flow.c (propagate_block): When we delete an ADDR_VEC,
7902 also delete the BARRIER following it if there is one.
7903
7904 2000-03-24 Richard Henderson <rth@cygnus.com>
7905
7906 * builtins.c (expand_builtin_bzero): Convert `length' argument
7907 to sizetype.
7908
7909 2000-03-24 Jakub Jelinek <jakub@redhat.com>
7910
7911 * sibcall.c (skip_copy_to_return_value): Use OUTGOING_REGNO for
7912 comparison if regno's are equal.
7913 * calls.c (initialize_argument_informat): Add ecf_flags argument.
7914 Use FUNCTION_INCOMING_ARG if available and ECF_SIBCALL.
7915 (expand_call): Update caller.
7916 Avoid making a sibling call if argument size of the callee is larger
7917 than argument size of the caller.
7918 Call hard_function_value with outgoing set if in sibcall pass.
7919 Use FUNCTION_INCOMING_ARG if available and ECF_SIBCALL.
7920
7921 * final.c (permitted_reg_in_leaf_functions, only_leaf_regs_used):
7922 Change LEAF_REGISTERS from an array initializer to actual array
7923 identifier. Move static global variable into the function.
7924 (leaf_function_p): Allow SIBLING_CALL_P calls even outside of
7925 sequences for leaf functions.
7926 * global.c (global_alloc): Likewise.
7927 * tm.texi (LEAF_REGISTERS): Update documentation.
7928
7929 * config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Remove the ugly
7930 TARGET_FLAT leaf disabling hack.
7931 (LEAF_REGISTERS): Changed from an array initializer to actual array
7932 identifier to avoid duplication and remove the above hack.
7933 (FUNCTION_OK_FOR_SIBCALL): Define.
7934 * config/sparc/sparc.md (sibcall): New attr type. Use it almost
7935 always like call attribute.
7936 (eligible_for_sibcall_delay): New attribute.
7937 (sibcall): New delay type.
7938 (sibcall, sibcall_value, sibcall_epilogue): New expands.
7939 (sibcall_symbolic_sp32, sibcall_symbolic_sp64,
7940 sibcall_value_symbolic_sp32, sibcall_value_symbolic_sp64): New insns.
7941 * config/sparc/sparc.c (sparc_leaf_regs): New array.
7942 (eligible_for_sibcall_delay, output_restore_regs, output_sibcall):
7943 New functions.
7944 (output_function_epilogue): Move part of the code into
7945 output_restore_regs.
7946 (ultra_code_from_mask, ultrasparc_sched_reorder): Handle
7947 TYPE_SIBCALL.
7948 * sparc-protos.h (output_sibcall, eligible_for_sibcall_delay): New
7949 prototypes.
7950
7951 * config/sparc/sparc.h (REVERSIBLE_CC_MODE): Revert Jan, 25 change
7952 until infrastructure is finished.
7953
7954 Fri Mar 24 13:49:45 2000 Jeffrey A Law (law@cygnus.com)
7955
7956 * integrate.c (save_for_inline_nocopy): Clear in_nonparm_insns here.
7957 (save_parm_insns): Not here.
7958
7959 2000-03-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7960
7961 * builtins.c (expand_builtin_bzero): New function.
7962 (expand_builtin): Handle bzero.
7963
7964 * builtins.def: Add BUILT_IN_BZERO.
7965
7966 * c-common.c (c_common_nodes_and_builtins): Provide builtin
7967 prototype & function for bzero.
7968
7969 2000-03-23 Michael Meissner <meissner@redhat.com>
7970
7971 * config/alpha/alpha.md (TF floating point insns): Undo 2000-03-21
7972 change adding TARGET_FP to the TF floating point insns, except for
7973 trunctfsf2, which generates direct calls to truncdfsf2.
7974
7975 2000-03-23 Geoff Keating <geoffk@cygnus.com>
7976
7977 * config/rs6000/rs6000.h (ARG_POINTER_CFA_OFFSET): New definition,
7978 try to protect against middle-end changes that break binary
7979 compatibility.
7980 (DWARF_FRAME_REGISTERS): New definition, likewise for backend.
7981
7982 2000-03-24 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
7983
7984 * config/c4x/c4x.md (load_immed_address): Add DP reg clobber.
7985
7986 Thu Mar 23 17:10:48 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
7987
7988 * calls.c (expand_call): If TARGET is passed by reference and
7989 is readonly, write a CLOBBER.
7990
7991 2000-03-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7992
7993 * builtins.c (expand_builtin): Handle bcmp.
7994
7995 * builtins.def: Add BUILT_IN_BCMP.
7996
7997 * c-common.c (c_common_nodes_and_builtins): Provide builtin
7998 prototype & function for bcmp.
7999
8000 Thu Mar 23 11:34:39 2000 Jim Wilson <wilson@cygnus.com>
8001
8002 * config/ia64/ia64.c (rtx_needs_barrier, case UNSPEC): Move case 6...
8003 (rtx_needs_barrier, case UNSPEC_VOLATILE): to here.
8004 * config/ia64/ia64.md (pr_restore): Change UNSPEC to UNSPEC_VOLATILE.
8005
8006 Thu Mar 23 16:04:40 2000 Andrew Haley <aph@cygnus.com>
8007
8008 * config/mips/mips.md (movdf_internal1a): Delete (set 'f', 'F')
8009 alternative when using -fp64 -gp32.
8010
8011 2000-03-22 Jason Merrill <jason@casey.cygnus.com>
8012
8013 * config/rs6000/rs6000.h (DWARF_FRAME_RETURN_COLUMN): Define.
8014 * config/alpha/alpha.h (DWARF_FRAME_RETURN_COLUMN): Define.
8015 * config/sparc/sparc.h (DWARF_FRAME_RETURN_COLUMN): Define.
8016
8017 * frame.h (frame_state): Revert last change.
8018 * frame.c (execute_cfa_insn): Just don't record the save of a CFA reg.
8019 * libgcc2.c (throw_helper): Revert last change.
8020
8021 2000-03-22 Richard Henderson <rth@cygnus.com>
8022
8023 * stmt.c (expand_asm_operands): Don't promote the temporary.
8024
8025 2000-03-22 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
8026
8027 * builtin.c (get_pointer_alignment): Use DECL_P and TYPE_P macros.
8028 * c-common.c (decl_attributes,check_format_info,truthvalue_conversion,
8029 c_get_alias_set): Likewise.
8030 * c-decl.c (duplicate_decls): Likewise.
8031 * c-typeck.c (default_conversion,build_unary_op): Likewise.
8032 * calls.c (initialize_argument_information): Likewise.
8033 * dwarf2out.c (decl_class_context,add_abstract_origin_attribute):
8034 Likewise.
8035 * dwarfout.c (decl_class_context,output_type): Likewise.
8036 * expr.c (get_inner_reference): Likewise.
8037 * fold-const.c (simple_operand_p,fold): Likewise.
8038 * function.c (aggregate_value_p): Likewise.
8039 * stmt.c (expand_asm_operands): Likewise.
8040 * varasm.c (named_section): Likewise.
8041
8042 2000-03-22 Jason Merrill <jason@casey.cygnus.com>
8043
8044 Implement dwarf2 exception handling for the ARM.
8045 * config/arm/arm.h (INCOMING_RETURN_ADDR_RTX): Define.
8046 (DWARF_FRAME_RETURN_COLUMN): Define.
8047 * config/arm/arm.c (emit_multi_reg_push): Return rtx. Attach
8048 REG_FRAME_RELATED_EXPR note.
8049 (emit_sfm): Likewise.
8050 (arm_expand_prologue): Set RTX_FRAME_RELATED_P on everything.
8051 * dwarf2out.c (reg_save): Handle saving a register to itself.
8052 (dwarf2out_frame_debug_expr): Handle an intermediate cfa reg.
8053 * except.c (eh_regs): Don't use the static chain reg if it's
8054 callee-saved.
8055 * frame.h (frame_state): Add cfa_saved field.
8056 * frame.c (execute_cfa_insn): Set it.
8057 * libgcc2.c (throw_helper): Don't adjust sp if it's restored in
8058 the epilogue.
8059 * function.c (ARG_POINTER_CFA_OFFSET): Default to FIRST_PARM_OFFSET.
8060 Now takes a parm.
8061 (instantiate_virtual_regs): Adjust.
8062 * tm.texi: Adjust.
8063 * config/m68k/m68k.h (ARG_POINTER_CFA_OFFSET): Don't define.
8064 * config/ns32k/ns32k.h (ARG_POINTER_CFA_OFFSET): Don't define.
8065 * config/sparc/sparc.h (ARG_POINTER_CFA_OFFSET): Take a parm.
8066
8067 * dwarf2out.c (reg_number): Refer to FIRST_PSEUDO_REGISTER.
8068 (initial_return_save): Use DWARF_FRAME_REGNUM, not reg_number.
8069
8070 2000-03-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8071
8072 * builtins.def: New file.
8073
8074 * Makefile.in (TREE_H): Depend on builtins.def.
8075
8076 * builtins.c (built_in_names): Use builtins.def.
8077
8078 * tree.h (built_in_function): Likewise.
8079
8080 2000-03-22 Mark Mitchell <mark@codesourcery.com>
8081
8082 * tree.c (size_in_bytes): Return size_zero_node, not
8083 integer_zero_node.
8084
8085 2000-03-22 Geoff Keating <geoffk@cygnus.com>
8086
8087 * config/fp-bit.c (pack_d): Correct the case when a denormal
8088 is rounded up and stops being denormal.
8089
8090 2000-03-21 Richard Henderson <rth@cygnus.com>
8091
8092 * config/alpha/alpha.c (function_arg): Check for void_type_node
8093 before using MUST_PASS_IN_STACK.
8094
8095 2000-03-21 Stephane Carrez <stcarrez@worldnet.fr>
8096
8097 * regmove.c (combine_stack_adjustments_for_block): Check that
8098 the stack pointer is a valid memory address.
8099
8100 Wed Mar 22 11:44:50 MET 2000 Jan Hubicka <jh@suse.cz>
8101
8102 * calls.c: re-install Mar 16 emit_library_call merge.
8103
8104 2000-03-21 Jakub Jelinek <jakub@redhat.com>
8105
8106 * config/sparc/sparc.c (mem_min_alignment): If not optimizing,
8107 we cannot be sure that if reload_completed base register will
8108 be properly aligned.
8109
8110 2000-03-21 Richard Henderson <rth@cygnus.com>
8111
8112 * flow.c (delete_block): Fix typo last change.
8113
8114 2000-03-21 Mark Mitchell <mark@codesourcery.com>
8115
8116 * c-common.c (c_expand_expr_stmt): Use COMPLETE_TYPE_OR_VOID_P,
8117 not COMPLETE_TYPE_P, to check the type of the expression.
8118
8119 2000-03-21 Michael Meissner <meissner@redhat.com>
8120
8121 * config/alpha/alpha.md (floating point insns): Add TARGET_FP to
8122 all floating point insns that just tested the macro
8123 TARGET_HAS_XFLOATING_LIBS.
8124 (movsf/movdf recognizers): Add separate insns if -mno-fp-regs is
8125 used to only use the gprs.
8126
8127 2000-03-21 Nathan Sidwell <nathan@codesourcery.com>
8128
8129 * tree.h (COMPLETE_TYPE_P): New macro.
8130 (COMPLETE_OR_VOID_TYPE_P): New macro.
8131 (COMPLETE_OR_UNBOUND_ARRAY_TYPE_P): New macro.
8132 * stor-layout.c (layout_type, case VOID_TYPE): Don't set TYPE_SIZE.
8133 * c-aux-info.c (gen_type): Use them.
8134 * c-common.c (c_expand_expr_stmt): Likewise.
8135 * c-decl.c (poplevel, pushdecl, start_decl, finish_decl,
8136 grokdeclarator, grokparms, finish_struct, start_function,
8137 store_parm_decls, combine_parm_decls): Likewise.
8138 * c-parse.y (cast_expr): Likewise.
8139 * c-typeck.c (require_complete_type, c_sizeof, c_sizeof_nowarn,
8140 c_size_in_bytes, c_alignof, build_component_ref,
8141 build_indirect_ref, build_array_ref, convert_arguments,
8142 build_binary_op, pointer_diff, build_unary_op, digest_init: Likewise.
8143 * calls.c (initialize_argument_information): Likewise.
8144 * convert.c (convert_to_integer): Likewise.
8145 * dbxout.c (dbxout_typedefs, dbxout_type, dbxout_symbol): Likewise.
8146 * dwarfout.c (location_or_const_value_attribute,
8147 output_enumeration_type_die, output_structure_type_die,
8148 output_union_type_die, output_type): Likewise.
8149 * expr.c (safe_from_p, expand_expr): Likewise.
8150 * function.c (assign_parms): Likewise.
8151 * sdbout.c (sdbout_symbol, sdbout_one_type): Likewise.
8152 * tree.c (build_array_type, build_function_type,
8153 build_method_type, build_offset_type, build_complex_type): Likewise.
8154 * c-parse.c, c-parse.h: Regenerated.
8155
8156 2000-03-21 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
8157
8158 * config/c4x/rtems.h: Include config/rtems.h.
8159
8160 Tue Mar 21 09:24:00 2000 Denis Chertykov <denisc@overta.ru>
8161
8162 * config/avr/avr.c (encode_section_info): sets SYMBOL_REF_FLAG if
8163 decl is a FUNCTION_DECL
8164
8165 Mon Mar 20 19:53:53 2000 Jim Wilson <wilson@cygnus.com>
8166
8167 * config/ia64/ia64.c (ia64_expand_prologue): Don't abort if leaf
8168 function uses output registers. Don't save RP for leaf functions.
8169 Do save RP even if no epilogue.
8170 * config/ia64/ia64.h (FIXED_REGISTERS): Unmark in/out registers.
8171 (CALL_USED_REGISTERS): Unmark in registers.
8172 (REG_ALLOC_ORDER): Move out regs up, to near the top. Move in regs up,
8173 to near the middle.
8174
8175 2000-03-20 Geoff Keating <geoffk@cygnus.com>
8176
8177 * config/rs6000/rs6000.md (bunordered): New expander.
8178 (bordered): New expander.
8179 (buneq): New expander.
8180 (bunge): New expander.
8181 (bungt): New expander.
8182 (bunle): New expander.
8183 (bunlt): New expander.
8184 (bltgt): New expander.
8185
8186 * config/rs6000/rs6000.c (ccr_bit): Handle unordered comparisons.
8187 (ccr_bit_negated_p): New function.
8188 (print_operand): For %C, generate appropriate cror for UNEQ,
8189 UNLT, UNGT, and LTGT. For %T and %t, use ccr_bit_negated_p.
8190
8191 2000-03-20 Andreas Jaeger <aj@suse.de>
8192
8193 * sdbout.c (sdbout_one_type): Add braces to avoid "ambigous else"
8194 warning.
8195
8196 * tree.h (safe_for_unsave): Prototype.
8197
8198 2000-03-20 Richard Henderson <rth@cygnus.com>
8199
8200 * regmove.c (stack_memref_p): Fix typo, reorg for readability.
8201 (combine_stack_adjustments_for_block): Don't allow sp references
8202 in the side of a set we're not fixing up.
8203 * toplev.c (rest_of_compilation): Run combine_stack_adjustments
8204 after life_analysis.
8205
8206 2000-03-20 Richard Henderson <rth@cygnus.com>
8207
8208 * calls.c (expand_call): Don't bother generating tail call
8209 sequences if there are pending cleanups. Use
8210 expand_start_target_temps/expand_end_target_temps to elide
8211 cleanups created during sibcall expansion.
8212
8213 2000-03-20 Geoff Keating <geoffk@cygnus.com>
8214
8215 * configure.in: Set $IFS to a value if it doesn't already have one
8216 in the --enable-checking handling.
8217 * configure: Regenerate.
8218
8219 2000-03-20 Martin v. Löwis <loewis@informatik.hu-berlin.de>
8220
8221 * c-parse.in (SAVE_WARN_FLAGS): Use size_int.
8222 * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
8223 Regenerated.
8224
8225 Mon Mar 20 11:43:15 MET 2000 Jan Hubicka <jh@suse.cz>
8226
8227 * jump.c (delete_noop_moves): Remove code attempting to
8228 combine stack adjustments.
8229
8230 2000-03-19 Martin v. Löwis <loewis@informatik.hu-berlin.de>
8231
8232 * emit-rtl.c (push_to_full_sequence, end_full_sequence): New functions.
8233 * except.c (emit_cleanup_handler): Use them.
8234 (expand_end_all_catch): Likewise.
8235 * function.c (fixup_var_refs): Likewise.
8236 (expand_function_end): Clear catch_clauses_last.
8237 * rtl.h (push_to_full_sequence, end_full_sequence): Declare.
8238 * except.h (struct eh_status): New field x_catch_clauses_last.
8239 (catch_clauses_last): New define.
8240
8241 * Makefile.in (tree.o): Depend on HASHTAB_H.
8242 * tree.c: Include hashtab.h.
8243 (struct type_hash): Remove next field.
8244 (TYPE_HASH_SIZE): Remove.
8245 (TYPE_HASH_INITIAL_SIZE): New define.
8246 (type_hash_table): Change type to htab_t.
8247 (type_hash_eq, type_hash_hash, print_type_hash_statistics,
8248 mark_hash_entry): New functions.
8249 (init_obstacks): Allocate type hash.
8250 (type_hash_lookup): Use htab functions.
8251 (type_hash_add, mark_type_hash): Likewise.
8252 (dump_tree_statistics): Call print_type_hash_statistics.
8253
8254 2000-03-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8255
8256 * rs6000/t-aix41: New file.
8257
8258 * configure.in ({rs6000,powerpc}-ibm-aix4.[12]*): Use it.
8259
8260 Sun Mar 19 13:27:30 2000 Hans-Peter Nilsson <hp@axis.com>
8261
8262 * tm.texi (Driver): Fix typos and tweak entry for
8263 INCLUDE_DEFAULTS.
8264 Move misplaced STRUCT_FORCE_BLK entry ...
8265 (Storage Layout): ... to here.
8266 (Run-time Target): Recommend having TARGET_MASK_... helper macros.
8267
8268 2000-03-19 Richard Henderson <rth@cygnus.com>
8269
8270 * flow.c (delete_block): Delete the addr_vec along with the block.
8271 (flow_delete_insn): Decrement LABEL_NUSES when deleting insns that
8272 reference labels.
8273
8274 * fold-const.c (extract_muldiv): Apply type check for defined
8275 overflow to multiply as well as divide.
8276
8277 * stor-layout.c (layout_decl): Don't abort on any zero sized decl.
8278
8279 2000-03-18 Mark Mitchell <mark@codesourcery.com>
8280
8281 * emit-rtl.c (remove_unncessary_notes): Check that all
8282 NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes have an
8283 associated NOTE_BLOCK.
8284 * function.h (identify_blocks): Update comments.
8285 (reorder_blocks): Declare.
8286 * function.c (identify_blocks): Don't take paramters.
8287 (reorder_blocks): Don't take parameters.
8288 * loop.h (find_loop_tree_blocks): Remove.
8289 (unroll_block_trees): Likewise.
8290 * loop.c (loop_optimize): Don't call find_loop_tree_blocks. Use
8291 reorder_blocks instead of unroll_block_trees.h
8292 * sibcall.c (optimize_sibling_and_tail_recursive_calls): Likewise.
8293 * stmt.c (find_loop_tree_blocks): Remove.
8294 (unroll_block_trees): Likewise.
8295 * toplev.c (rest_of_compilation): Don't call find_loop_tree_blocks
8296 in whole-function mode.
8297 * tree.h (reorder_blocks): Remove declaration.
8298
8299 * expr.c: Include intl.h.
8300 * Makefile.in (expr.o): Depend on intl.h.
8301
8302 2000-03-18 Richard Henderson <rth@cygnus.com>
8303
8304 * expr.c (emit_move_insn_1): Clarify cannot_inline message.
8305
8306 2000-03-18 Mark Mitchell <mark@codesourcery.com>
8307
8308 * tree.h (tree_index): Remove enumerals for integer types.
8309 (integer_type_kind): New type.
8310 (integer_types): New variable.
8311 (char_type_node): Adjust.
8312 (signed_char_type_node): Likewise.
8313 (unsigned_char_type_node): Likewise.
8314 (short_integer_type_node): Likewise.
8315 (short_unsigned_type_node): Likewise.
8316 (integer_type_node): Likewise.
8317 (unsigned_type_node): Likewise.
8318 (long_integer_type_node): Likewise.
8319 (long_unsigned_type_node): Likewise.
8320 (long_long_integer_type_node): Likewise.
8321 (long_long_unsigned_type_node): Likewise.
8322 * tree.c (integer_types): New variable.
8323 (init_obstacks): Register it as a root.
8324
8325 Sat Mar 18 14:38:00 2000 Jason Eckhardt <jle@cygnus.com>
8326
8327 * bb-reorder.c (reorder_basic_blocks): Update PREV_INSN as well as
8328 NEXT_INSN. Update last insn in chain.
8329
8330 2000-03-17 Jason Merrill <jason@casey.cygnus.com>
8331
8332 * dwarf2out.c (dwarf2out_decl): Don't emit anything for types
8333 with TYPE_DECL_SUPPRESS_DEBUG set.
8334
8335 2000-03-18 Richard Henderson <rth@cygnus.com>
8336
8337 * flow.c (make_edges): Use INTVAL to access REG_EH_REGION value.
8338
8339 2000-03-18 Richard Henderson <rth@cygnus.com>
8340
8341 * i386.c (call_insn_operand): Always allow SYMBOL_REF,
8342 care for HALF_PIC_P.
8343 (expander_call_insn_operand): Remove.
8344 (ix86_expand_epilogue): New arg `emit_return' to control return insn.
8345 * i386.h (PREDICATE_CODES): Update.
8346 * i386.md (all call expanders): Remove predicates, remove special
8347 handling for half-pic.
8348 (*call_1, *call_value_1): Handle SIBLING_CALL_P insns.
8349 (*call_pop_pic2, *call_pic2, *call_value_pop_2, *call_value_2): Remove.
8350 (sibcall_epilogue): New.
8351
8352 2000-03-17 Richard Henderson <rth@cygnus.com>
8353
8354 * rtlanal.c (single_set): Reject if the parallel has anything
8355 except SET or USE or CLOBBER.
8356
8357 2000-03-17 Jeff Law <law@cygnus.com>
8358 Richard Henderson <rth@cygnus.com>
8359
8360 * Makefile.in (OBJS): Add sibcall.o.
8361 (sibcall.o): New.
8362 * sibcall.c: New file.
8363 * calls.c (FUNCTION_OK_FOR_SIBCALL): Provide default.
8364 (ECF_IS_CONST, ECF_NOTHROW, ECF_SIBCALL): New.
8365 (emit_call_1): Replace `is_const' and `nothrow' with `ecf_flags'.
8366 Emit sibcall patterns when requested. Update all callers.
8367 (expand_call): Generate CALL_PLACEHOLDER insns when tail call
8368 elimination seems feasable.
8369 * final.c (leaf_function_p): Sibling calls don't discount being
8370 a leaf function.
8371 * flow.c (HAVE_sibcall_epilogue): Provide default.
8372 (find_basic_blocks_1): Sibling calls don't throw.
8373 (make_edges): Make edge from sibling call to EXIT.
8374 (propagate_block): Don't remove sibcall_epilogue insns.
8375 * function.c (prologue, epilogue): Turn into varrays. Update all uses.
8376 (sibcall_epilogue): New.
8377 (fixup_var_refs): Scan CALL_PLACEHOLDER sub-sequences.
8378 (identify_blocks_1): Likewise. Break out from ...
8379 (identify_blocks): ... here.
8380 (reorder_blocks_1): Scan CALL_PLACEHOLDER. Break out from ...
8381 (reorder_blocks): ... here.
8382 (init_function_for_compilation): Zap prologue/epilogue as varrays.
8383 (record_insns): Extend a varray instead of mallocing new memory.
8384 (contains): Read a varray not array of ints.
8385 (sibcall_epilogue_contains): New.
8386 (thread_prologue_and_epilogue_insns): Emit and record
8387 sibcall_epilogue patterns.
8388 (init_function_once): Allocate prologue/epilogue varrays.
8389 * genflags.c (gen_insn): Treat sibcall patterns as calls.
8390 * integrate.c (save_parm_insns): Recurse on CALL_PLACEHOLDER patterns.
8391 Broken out from ...
8392 (save_for_inline_nocopy): ... here.
8393 (copy_insn_list): Recurse on CALL_PLACEHOLDER patterns.
8394 Broken out from ...
8395 (expand_inline_function): ... here.
8396 (copy_rtx_and_substitute): Handle NOTE_INSN_DELETED_LABEL.
8397 (subst_constants): Handle 'n' formats.
8398 * jump.c (jump_optimize_minimal): New.
8399 (jump_optimize_1): New arg `minimal'; update callers. Elide most
8400 optimizations if it's set.
8401 * rtl.c (copy_rtx): Do copy jump & call for insns.
8402 * rtl.h (struct rtx_def): Document use of jump and call for insns.
8403 (SIBLING_CALL_P): New.
8404 (sibcall_use_t): New.
8405 * toplev.c (rest_of_compilation): Do init_EXPR_INSN_LIST_cache earlier.
8406 Invoke optimize_sibling_and_tail_recursive_calls.
8407 * tree.c (lang_safe_for_unsave): New.
8408 (safe_for_unsave): New.
8409 * tree.h (lang_safe_for_unsave, safe_for_unsave): Declare.
8410
8411 * alpha.h (FUNCTION_OK_FOR_SIBCALL): New.
8412 * alpha.md (sibcall, sibcall_value, sibcall_epilogue): New.
8413 (*sibcall_osf_1, *sibcall_value_osf_1): New.
8414
8415 2000-03-17 Mark Mitchell <mark@codesourcery.com>
8416
8417 * objc/objc-act.c (encode_method_prototype): Pass types, not
8418 PARM_DECLs, to int_size_in_bytes.
8419
8420 Fri Mar 17 11:51:34 2000 Jim Wilson <wilson@cygnus.com>
8421
8422 * config/ia64/ia64.md (mix4right_3op): Swap %1 and %2 in template.
8423
8424 * config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
8425 config/ia64/ia64.md, config/ia64/xm-ia64.h: Fix copyrights again.
8426
8427 Fri Mar 17 08:09:14 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8428
8429 * Clean up usages of TREE_INT_CST_LOW.
8430 * c-parse.in (RESTORE_WARN_FLAGS): Use tree_low_cst.
8431 * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
8432 Regenerated.
8433 * c-tree.h (min_precision): Move declaration to here.
8434 * c-typeck.c (build_binary_op): Use host_integerp and tree_low_cst.
8435 (build_unary_op, add_pending_init): Use bit_position.
8436 (pending_init_member, process_init_element): Likewise.
8437 (really_start_incremental_init, push_init_level, pop_init_level):
8438 Don't make copies of nodes or modify them in place, use consistent
8439 types when tracking positions, and use tree routines computations.
8440 (set_init_index, output_init_element): Likewise.
8441 (output_pending_init_elements, process_init_element): Likewise.
8442 * dbxout.c (dbxout_type_fields): Use bit_position, host_integerp,
8443 tree_low_cst and int_bit_position; also minor cleanup.
8444 (dbxout_type_method_1, dbxout_range_type, dbxout_type): Likewise.
8445 (print_cst_octal): Precision is unsigned.
8446 (dbxout_symbol): Ensure DECL_INITIAL is in-range and use tree_low_cst.
8447 * dwarf2out.c (ceiling): Input and output are unsigned HOST_WIDE_INT.
8448 (simple_type_align_in_bits): Result is unsigned int.
8449 Use tree_int_low_cst and host_integerp.
8450 (simple_type_size_in_bits): Result is unsigned HOST_WIDE_INT.
8451 (field_byte_offset): Result is HOST_WIDE_INT.
8452 Change types of internal variables so alignments are unsigned int,
8453 offsets are HOST_WIDE_INT and sizes are unsigned HOST_WIDE_INT.
8454 Use host_integerp, tree_low_cst, and int_bit_position.
8455 (add_bit_offset_attribute): Likewise.
8456 (add_data_member_location_attribute): Use tree_cst_low.
8457 (add_bound_info): Use host_integerp, integer_zerop, and integer_onep.
8458 (add_bit_size_attribute): Use tree_low_cst.
8459 (add_pure_or_virtual_attribute, gen_enumeration_type_die): Likewise.
8460 * dwarfout.c: Similar changes to dwarf2out.c.
8461 * expr.c (expand_expr, case ARRAY_REF): Remove redundant code.
8462 * genoutput.c (n_occurences): Return -1 for null string.
8463 (strip_whitespace): Accept null string and make into function.
8464 (scan_operands): Reflect above changes.
8465 * sdbout.c (plain_type_1): Use host_integerp and tree_low_cst.
8466 (sdbout_field_types, sdbout_one_type): Likewise; also use bit_position.
8467 * ssa.c (rename_registers): Add missing cast of arg to bzero.
8468 * tree.c (int_size_in_bytes): Check for too big to represent.
8469 (bit_position, int_bit_position, host_integerp, tree_low_cst): New fns.
8470 * tree.h (host_integerp, tree_low_cst, bit_position, int_bit_position):
8471 New declarations.
8472 (min_precision): Delete from here.
8473 * varasm.c (decode_addr_const): Use host_integerp, bit_position,
8474 and int_bit_position.
8475 * objc/objc-act.c (encode_method_prototype): Sizes are HOST_WIDE_INT.
8476 (encode_method_def): Likewise.
8477 (build_ivar_list_initializer): Use int_bit_position.
8478 (generate_shared_structures): Convert size.
8479 (encode_type, encode_complete_bitfield): Use integer_zerop.
8480 (encode_bitfield): Use tree_low_cst and int_bit_position.
8481
8482 2000-03-17 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
8483
8484 * config/c4x/c4x.h (CPP_SPEC): Fix typo.
8485
8486 2000-03-17 Martin v. Löwis <loewis@informatik.hu-berlin.de>
8487
8488 * call.c (special_function_p): It is only malloc if it returns
8489 Pmode.
8490
8491 2000-03-17 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
8492
8493 * config/c4x/c4x.h (ASM_SPEC, CPP_SPEC, LINK_SPEC): Support C33.
8494 (C33_FLAG, TARGET_C3X): Add macros.
8495 (TARGET_SWITCHES): Add -m33 option.
8496 * config/c4x/c4x.c (c4x_override_options): Test for TARGET_C33.
8497
8498 2000-03-17 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
8499
8500 * config/c4x/c4x.h (PARALLEL_INSN_FLAG): Add.
8501 (PARALLEL_PACK_FLAG): Delete.
8502 (TARGET_SWITCHES): Update.
8503 (TARGET_PARALLEL): Use PARALLEL_INSN_FLAG.
8504
8505 Thu Mar 16 18:52:32 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8506
8507 * fold-const.c (fold): Fix a few cases when the returned result
8508 is not of the same type as the input.
8509
8510 2000-03-16 Nick Clifton <nickc@cygnus.com>
8511
8512 * config/arm/arm.h (ASM_OUTPUT_MI_THUNK): Fix compile time
8513 warning.
8514
8515 2000-03-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8516
8517 * libgcc2.h: Move prototypes above macros with the same name.
8518 Wrap some function prototypes in the conditional which indicates
8519 whether they are supported, i.e. "BITS_PER_UNIT == 8".
8520
8521 2000-03-16 Richard Henderson <rth@cygnus.com>
8522
8523 * calls.c: Revert last two changes.
8524
8525 2000-03-16 Bernd Schmidt <bernds@cygnus.co.uk>
8526
8527 * fp-bit.c (_unpack_d): If NO_DENORMALS is defined, anything that
8528 has exponent 0 is a zero.
8529
8530 * simplify-rtx.c (hash_rtx, case MEM/REG): Take into account that
8531 HASH may already be nonzero. Add code/mode into hash value
8532 immediately after repeat label.
8533 (cselib_lookup): Don't leave the hash table in an inconsistent
8534 state before a hash lookup operation.
8535
8536 Thu Mar 16 17:03:10 MET 2000 Jan Hubicka <jh@suse.cz>
8537
8538 * i386.md (all HI and QI mode non-move patterns): Conditionize
8539 by TARGET_[HQ]IMODE_MATH.
8540 * i386.h (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
8541 x86_promote_qi_regs): Declare.
8542 (TARGET_HIMODE_MATH, TARGET_QIMODE_MATH, TARGET_PROMOTE_HI_REGS,
8543 TARGET_PROMOTE_QI_REGS): New macros.
8544 (PROMOTE_MODE): New macro.
8545 * i386.c (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
8546 x86_promote_qi_regs): New global variables.
8547
8548 Thu Mar 16 16:50:44 MET 2000 Jan Hubicka <jh@suse.cz>
8549
8550 * calls.c (emit_library_call_value_1): Break out from ...; handle
8551 VOIDmode function calls too.
8552 (emit_library_call_value): ... here.
8553 (emit_library_call): Implement by calling emit_library_call_value_1.
8554
8555 Thu Mar 16 16:01:30 MET 2000 Jan Hubicka <jh@suse.cz>
8556
8557 * calls.c (expand_call): Do sanity checking on arg_space_so_far.
8558 Update arg_space_so_far on stack adjustments.
8559 (emit_library_call, emit_library_call_value): Likewise; take into
8560 account arg_space_so_far and pending_stack_adjust when calculcating
8561 the boundary.
8562
8563 Thu Mar 16 09:02:19 2000 Jason Eckhardt <jle@cygnus.com>
8564
8565 * flow.c: Move all basic block reordering code into its own file.
8566 (create_basic_block): Externalize.
8567 * bb-reorder.c: New file. Copy all basic block reordering code from
8568 flow.c to this file.
8569 (reorder_basic_blocks): Fix fencepost error in for-loop.
8570 (reorder_basic_blocks): Remove braces from single statement for-loops.
8571 * basic-block.h: Add declaration for create_basic_block.
8572 * Makefile.in: Add rules for bb-reorder.o.
8573
8574 2000-03-16 Neil Booth <NeilB@earthling.net>
8575
8576 * cppinit.c (handle_option): Implement #unassert directive
8577 as -A- command line option.
8578 (print_help): Update.
8579 * cpptexi.c: Update.
8580
8581 Thu Mar 16 02:14:16 2000 Hans-Peter Nilsson <hp@bitrange.com>
8582
8583 * md.texi (Standard Names): Document `jump'.
8584
8585 2000-03-15 Jason Merrill <jason@casey.cygnus.com>
8586
8587 * calls.c (emit_call_1): Nothrow functions can still have nonlocal
8588 gotos.
8589
8590 2000-03-15 Geoff Keating <geoffk@cygnus.com>
8591
8592 Merge changes from newppc-branch onto trunk.
8593
8594 2000-03-15 Geoff Keating <geoffk@cygnus.com>
8595
8596 * rs6000.c (toc_hash_table): Update for new hash table functions.
8597 (toc_hash_function): Likewise.
8598 (toc_hash_eq): Likewise.
8599 (toc_hash_mark_entry): Likewise.
8600 (toc_hash_mark_table): Likewise.
8601 (output_toc): Likewise.
8602 (rs6000_add_gc_roots): Likewise.
8603
8604 2000-03-15 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
8605
8606 * t-aix43 (AR_FOR_TARGET): Deleted. Moved `-X32_64'...
8607 (AR_FLAGS_FOR_TARGET): here. New macro.
8608
8609 2000-03-05 Clinton Popetz <cpopetz@cygnus.com>
8610
8611 * config/rs6000/rs6000.c (rs6000_fpmem_offset, rs6000_fpmem_size,
8612 fpmem_operand) Delete.
8613 (xer_operand) New.
8614 (rs6000_reg_names, alt_reg_names): Change fpmem to xer.
8615 (machine_function): Remove fpmem_size, fpmem_offset, save_toc_p.
8616 (rs6000_save_machine_status, rs6000_restore_machine_status,
8617 rs6000_init_expanders, rs6000_stack_info, debug_stack_info): Remove
8618 references to above variables.
8619 (gpc_reg_operand): Use XER_REGNO_P instead of FPMEM_REGNO_P.
8620 * config/rs6000/rs6000.h (REG_ALLOC_ORDER, REGISTER_NAMES,
8621 DEBUG_REGISTER_NAMES): Chagne fpmem to xer.
8622 (FPMEM_REGNO_P, FPMEM_REGNUM): Delete.
8623 (XER_REGNO_P, XER_REGNO): New.
8624 (rs6000_stack): Remove fpmem_p, fpmem_offset, fpmem_size.
8625 (PREDICATE_CODES): Change fpmem_operand to xer_operand.
8626 (HARD_REGNO_NREGS, HARD_REGNO_MODE_OK): Change FPMEM_REGNO_P to
8627 XER_REGNO_P.
8628 (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGNO_REG_CLASS,
8629 REG_CLASS_FROM_LETTER, CLASS_MAX_NREGS): Change FPMEM_REGS to XER_REGS, and remove FLOAT_OR_FPMEM_REGS.
8630 (CLASS_CANNOT_CHANGE_SIZE): Change to FLOAT_REGS.
8631
8632 2000-02-29 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
8633
8634 * aix.h (FP_SAVE_INLINE, ASM_OUTPUT_INTERNAL_LABEL_PREFIX,
8635 TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP): Move here...
8636 * rs6000.h: from here.
8637
8638 * rs6000-protos.h (rs6000_select_section): Provide prototype.
8639 (rs6000_select_rtx_section): Likewise.
8640 (rs6000_encode_section_info): Likewise.
8641 (sdata_section): Likewise.
8642 (sdata2_section): Likewise.
8643 (sbss_section): Likewise.
8644 * sysv4.h (rs6000_select_section): Delete prototype.
8645 (rs6000_select_rtx_section): Likewise.
8646 (rs6000_encode_section_info): Likewise.
8647 (sdata_section): Likewise.
8648 (sdata2_section): Likewise.
8649 (sbss_section): Likewise.
8650 (REG_SAVE_AREA): Delete definition duplicated in rs6000.h.
8651
8652 * sysv4.h: Delete various unnecessary #undef's and put a comment
8653 on the remaining ones.
8654 Change various comments according to coding standard.
8655
8656 2000-02-29 Clinton Popetz <cpopetz@cygnus.com>
8657
8658 * config/rs6000/rs6000.h (MQ_REGNO, CR0_REGNO, CR1_REGNO, CR2_REGNO,
8659 CR3_REGNO, CR4_REGNO, MAX_CR_REGNO): Define.
8660 (CR0_REGNO_P) Remove.
8661 * config/rs6000/rs6000.c (gpc_reg_operand, and64_operand, and_operand,
8662 setup_incoming_varargs, mtcrf_operation, print_operand,
8663 rs6000_stack_info, rs6000_emit_prologue, rs6000_emit_epilogue):
8664 Use the above macros.
8665
8666 2000-02-24 Clinton Popetz <cpopetz@cygnus.com>
8667
8668 * config/rs6000/rs6000.md: Added a new alternative for each
8669 pattern that had a 'x' alternative but no 'y' alternative.
8670 Added a new split for each of the above patterns.
8671
8672 2000-02-18 Geoff Keating <geoffk@cygnus.com>
8673
8674 * aix41.h (ASM_CPU_SPEC): Delete.
8675 (CPP_CPU_SPEC): Delete.
8676
8677 * aix.h (RS6000_OUTPUT_BASENAME): Define.
8678 (ASM_OUTPUT_LABEL): Define.
8679 (ASM_GLOBALIZE_LABEL): Define.
8680 (STRIP_NAME_ENCODING): Define.
8681 * rs6000.h (RS6000_OUTPUT_BASENAME): Don't define.
8682 (STRIP_NAME_ENCODING): Don't define.
8683 (ASM_OUTPUT_LABEL): Don't define.
8684 (ASM_GLOBALIZE_LABEL): Don't define.
8685 * sysv4.h (ASM_DECLARE_FUNCTION_NAME): Use assemble_name to output
8686 names, and ASM_OUTPUT_LABEL to output labels, rather than
8687 asm_fprintf.
8688 (ASM_OUTPUT_LABEL): Define.
8689 (ASM_OUTPUT_INT): Use assemble_name.
8690 (ASM_OUTPUT_DWARF_ADDR): Use assemble_name.
8691 (STRIP_NAME_ENCODING): Don't undefine first.
8692 (RS6000_OUTPUT_BASENAME): Make equivalent to assemble_name for
8693 ELF.
8694 (ASM_OUTPUT_LABELREF): Don't prepend underscores to labels
8695 specified with 'asm' even with -fleading-underscore.
8696 * rs6000.c (print_operand): Use assemble_name when !TARGET_AIX.
8697 (output_epilog): Likewise.
8698 (output_toc): Likewise.
8699 * tramp.asm: Handle -fleading-underscore correctly.
8700
8701 * rs6000.md (builtin_setjmp_receiver): Also run for -fPIC and
8702 -mminimal-toc.
8703 (nonlocal_goto_receiver): Delete.
8704 * rs6000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Delete.
8705
8706 * rs6000.h (ASM_OUTPUT_DEF): Don't define.
8707 (SET_ASM_OP): Define.
8708 * sysv4.h (ASM_OUTPUT_DEF): Don't undefine.
8709
8710 * rs6000.h (ASM_OUTPUT_ADDR_VEC_ELT): Don't define.
8711 (ASM_LONG): Define.
8712
8713 * rs6000.c (rs6000_dll_import_ref): Delete, not used.
8714 * rs6000-protos.h (rs6000_dll_import_ref): Delete.
8715
8716 * rs6000.h: Add 'u' to more constants.
8717
8718 2000-02-18 David Edelsohn <edelsohn@gnu.org>
8719
8720 * rs6000.md (mfcr+shift): Delete PowerPC64 version.
8721
8722 2000-02-15 David Edelsohn <edelsohn@gnu.org>
8723
8724 * rs6000.c (reg_or_u_cint_operand): New function.
8725 (logical_operand): Handle 64-bit hosts.
8726 (logical_u_operand): New function.
8727 (non_logical_cint_operand): Handle 64-bit hosts.
8728 (non_logical_u_cint_operand): New function.
8729 * rs6000.h (DATA_SECTION_ASM_OP): Add tab.
8730 (PREDICATE_CODES): Define new functions.
8731 * rs6000-protos.h: Declare new functions.
8732 * rs6000.md (iordi3, xordi3): Constant int must be unsigned 32-bits.
8733 (movdi_64): Bracket code intended for 64-bit hosts. Create
8734 CONST_DOUBLE for 32-bit values.
8735 (scc insns): Generate DImode compares.
8736 (mfcr insns): Create DImode versions.
8737 (sge matchers): New patterns.
8738
8739 2000-02-15 Gabriel Paubert <paubert@iram.es>
8740
8741 * rs6000.md: Correct instructions length attributes and
8742 constraints on unsigned compare instructions.
8743 (*ne0): Disable for PowerPC64.
8744
8745 2000-02-11 Geoff Keating <geoffk@cygnus.com>
8746
8747 * rs6000.c (output_function_profiler): Use .long for a 32-bit
8748 quantity, fix profile1.C test failure under -fPIC.
8749
8750 * rs6000.c: Add 'u' to many constants to suppress warnings.
8751 (constant_pool_expr_1): Make static.
8752 (rs6000_emit_eh_toc_restore): Remove unused 'r2'.
8753 * rs6000.h: Add 'u' to many constants to suppress warnings.
8754
8755 * rs6000.c (rs6000_emit_load_toc_table): Use LCTOC..1 under AIX
8756 for the start of the TOC, instead of LCTOC..0.
8757 * aix.h (toc_section): Use LCTOC..1 under AIX for the start
8758 of the TOC.
8759 * rs6000.md (load_toc_aix_si): Use LCTOC..1.
8760 (load_toc_aix_di): Use LCTOC..1.
8761
8762 * rs6000.h (LEGITIMIZE_ADDRESS): Turn into a function.
8763 * rs6000.c (rs6000_legitimize_address): New function from
8764 LEGITIMIZE_ADDRESS. Only use create_TOC_reference on
8765 symbols in the constant pool that really are TOC references.
8766 (print_operand_address): For ELF, write TOC offsets under
8767 -fPIC as subtractions in the insn.
8768 (output_toc): For ELF, define symbols in TOC as normal labels,
8769 to match RTL.
8770 (create_TOC_reference): Use gen_rtx_PLUS rather than gen_rtx.
8771 * rs6000-protos.h (rs6000_legitimize_address): Prototype.
8772 (create_TOC_reference): Prototype only when RTX_CODE is defined.
8773 * rs6000.md (movsi): Only use create_TOC_reference on
8774 symbols in the constant pool that really are TOC references.
8775
8776 * rs6000.h (MACHINE_DEPENDENT_REORG): Don't define.
8777 * rs6000.c (rs6000_reorg): Delete.
8778 * rs6000-protos.h (rs6000_reorg): Delete.
8779
8780 2000-02-09 Geoff Keating <geoffk@cygnus.com>
8781
8782 * rs6000.h (INCOMING_RETURN_ADDR_RTX): New macro.
8783
8784 * aix.h (SETUP_FRAME_ADDRESSES): Define.
8785 * rs6000.c [TARGET_AIX] (insn_after_throw): New static variable.
8786 [TARGET_AIX] (rs6000_aix_emit_builtin_unwind_init): New function.
8787 [TARGET_AIX] (rs6000_emit_eh_toc_restore): New function.
8788 * rs6000-protos.h: Prototype rs6000_emit_eh_toc_restore,
8789 rs6000_aix_emit_builtin_unwind_init.
8790 * rs6000.md (eh_epilogue) [TARGET_AIX]: Call
8791 rs6000_emit_eh_toc_restore on AIX.
8792 (return_eh_si): Use r2.
8793 (return_eh_di): Use r2.
8794
8795 * aix43.h: Turn on HAS_INIT_SECTION and LD_INIT_SWITCH,
8796 since we're breaking binary compatibility anyway.
8797
8798 2000-02-09 Clinton Popetz <cpopetz@cygnus.com>
8799
8800 * config/rs6000/rs6000-protos.h: (get_TOC_alias_set, uses_TOC,
8801 constant_pool_expr_p): Declare them.
8802 (constant_pool_expr_p): Declare it.
8803 * config/rs6000/rs6000.c (toc_label_name): Define.
8804 (rs6000_override_options): Set toc_label_name.
8805 (input_operand): Allow any TOC_RELATIVE_EXPR_P.
8806 (get_TOC_alias_set, constant_pool_expr_p, constant_pool_expr_1,
8807 uses_TOC): New functions.
8808 (print_operand): Delete old '*' case.
8809 (print_operand_address): Use LEGITIMATE_CONSTANT_POOL_ADDRESS_P,
8810 and strip off rtl for TOC before calling output_addr_const.
8811 (rs6000_emit_load_toc_table): Use toc_label_name.
8812 * config/rs6000/rs6000.h (TARGET_SWITCHES): Make msched-prolog
8813 the default.
8814 (LEGITIMATE_CONSTANT_POOL_BASE_P): Delete.
8815 (CONSTANT_POOL_EXPR_P, TOC_RELATIVE_EXPR_P): New macros.
8816 (LEGITIMATE_CONSTANT_POOL_ADDRESS_P): Use CONSTANT_POOL_EXPR_P.
8817 (LEGITIMIZE_ADDRESS, LEGITIMIZE_RELOAD_ADDRESS): Turn symbol_refs
8818 into explicit TOC_REGISTER offsets.
8819 (TOC_REGISTER): New macro.
8820 * config/rs6000/rs6000.md (movsi, movdi): Emit rtl under
8821 TARGET_TOC to reference TOC_REGISTER.
8822 (load_toc_v4_PIC_1b): Add 4 to offset for toc reload.
8823 * config/rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Call
8824 uses_TOC before emitting label references.
8825
8826 2000-02-05 Geoff Keating <geoffk@cygnus.com>
8827
8828 * rs6000.md (stack_tie): Fix warning.
8829
8830 * eabi-ctors.c: Use 'asm' names for the start/end variables,
8831 to handle -fleading-underscore.
8832 * sysv4.h (ASM_DECLARE_FUNCTION_NAME): Use asm_fprintf and %U.
8833 (USER_LABEL_PREFIX): New macro.
8834 (ASM_OUTPUT_INTERNAL_LABEL_PREFIX): Use asm_fprintf and %L.
8835 (ASM_OUTPUT_LABELREF): Use asm_fprintf and %U.
8836 * t-ppccomm (MULTILIB_MATCHES_SYSV): Note that call-sysv and
8837 call-linux can use the same multilibs.
8838 * t-ppcgas (MULTILIB_OPTIONS): Don't need to have separate call-sysv
8839 and call-linux multilibs. Do multilib with -fleading-underscore.
8840 (MULTILIB_DIRNAMES): Follow MULTILIB_OPTIONS change.
8841 (MULTILIB_EXCEPTIONS): Remove call-linux exceptions. Add restrictions
8842 to call-aix.
8843
8844 * sysv4.h (CPP_SYSV_SPEC): Define _SOFT_FLOAT for all those CPUs that
8845 have MASK_SOFT_FLOAT set.
8846 (CPP_FLOAT_DEFAULT_SPEC): New macro.
8847 (SUBTARGET_EXTRA_SPECS): Set `cpp_float_default' to the value of
8848 CPP_FLOAT_DEFAULT_SPEC.
8849
8850 * rs6000.c (ccr_bit): Add some consistency checks and a variable 'reg'.
8851 * rs6000.md: Whitespace change.
8852 * sysv4.h (LINK_TARGET_SPEC): Whitespace change.
8853 * sysv4le.h (LINK_TARGET_SPEC): Whitespace change.
8854
8855 2000-02-05 Geoff Keating <geoffk@cygnus.com>
8856
8857 * rs6000.md (eh_epilogue): New expander.
8858 (eh_reg_restore): New expand/split/insn combination.
8859 (return_eh_si): New insn.
8860 (return_eh_di): New insn.
8861
8862 * eabi-ci.asm: Put a label at the start of the .eh_frame section.
8863 * eabi-cn.asm: Put a zero at the end of the .eh_frame section.
8864 * eabi-ctors.c (__do_global_ctors): Register this object's
8865 frame. Clean up. Call atexit() after the constructors.
8866 (__do_global_dtors): Deregister this object's frame. Clean up.
8867 Allow for recursive calls to exit().
8868 * rs6000.c (fixuplabelno): New variable.
8869 * sysv4.h (ASM_OUTPUT_INT): Don't do .fixup if not
8870 TARGET_RELOCATABLE, it slows down exec() under linux.
8871 (ASM_OUTPUT_DWARF_ADDR): Do .fixup if TARGET_RELOCATABLE.
8872
8873 * aix.h (ASM_OUTPUT_DWARF_ADDR_VAR): New macro.
8874 (ASM_OUTPUT_DWARF_DELTA_VAR): New macro.
8875 (ASM_OUTPUT_DWARF_DELTA2): New macro.
8876 (ASM_OUTPUT_DWARF_DELTA4): New macro.
8877 (ASM_OUTPUT_DWARF_ADDR_DELTA): New macro.
8878 (ASM_OUTPUT_DWARF_ADDR): New macro.
8879 (ASM_OUTPUT_DWARF_DATA4): New macro.
8880 (ASM_OUTPUT_DWARF_DATA2): New macro.
8881 (ASM_OUTPUT_DWARF_OFFSET4): New macro.
8882 (ASM_OUTPUT_DWARF_OFFSET): New macro.
8883 (UNALIGNED_INT_ASM_OP): New macro, fake definition.
8884
8885 2000-02-03 Geoff Keating <geoffk@cygnus.com>
8886
8887 * rs6000.c (rs6000_sr_alias_set): New variable.
8888 (rs6000_override_options): Initialise rs6000_sr_alias_set.
8889 (rs6000_emit_stack_tie): New function.
8890 (rs6000_emit_allocate_stack): Specify RTX_FRAME_RELATED_P
8891 in a way that dwarf2out can understand.
8892 (rs6000_frame_related): New function.
8893 (rs6000_emit_prologue): Use rs6000_sr_alias_set. Specify
8894 RTX_FRAME_RELATED_P in a way that dwarf2out can understand.
8895 Use rs6000_emit_stack_tie when needed.
8896 (rs6000_emit_epilogue): Use rs6000_sr_alias_set. Don't set
8897 RTX_FRAME_RELATED_P. Use rs6000_emit_stack_tie when needed.
8898 * rs6000.md (stack_tie): New insn.
8899 (return_internal_si): Allow return value to be in the count
8900 register.
8901 (return_internal_di): Likewise.
8902
8903 * rs6000.c (output_mi_thunk): Remove unused variable `sp'.
8904
8905 2000-02-03 Geoff Keating <geoffk@cygnus.com>
8906
8907 * sysv4.h (LOCAL_LABEL_PREFIX): Define, for the use of dbxelf.h.
8908
8909 2000-01-31 Geoff Keating <geoffk@cygnus.com>
8910
8911 * rs6000.h (ASM_OUTPUT_DEF_FROM_DECLS): New macro.
8912
8913 * rs6000.md (stmw): Use the right POWER opcode.
8914 (lmw): Likewise.
8915
8916 2000-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8917
8918 * rs6000-protos.h: New file.
8919
8920 * rs6000.c: Include tm_p.h. Fix compile time warnings.
8921
8922 * rs6000.h: Move prototypes to rs6000-protos.h. Fix compile time
8923 warnings.
8924
8925 * sysv4.h: Likewise.
8926
8927 2000-01-28 Geoff Keating <geoffk@cygnus.com>
8928
8929 * ../../configure.in: Delete powerpcle-*-winnt*
8930 and powerpcle-*-pe|powerpcle-*-cygwin*.
8931 * ../../configure: Regenerated.
8932 * cygwin.h: Delete.
8933 * rs6000.h (OBJECT_WINDOWS_NT): Delete.
8934 (TARGET_WINDOWS_NT): Delete.
8935 (ABI_NT): Delete.
8936 (CALL_NT_DLLIMPORT): Delete.
8937 Delete NT-specific code.
8938 * rs6000.md, rs6000.c, sysv4.h: Delete NT-specific code.
8939 * win-nt.h: Delete.
8940 * t-winnt: Delete.
8941 * nt-ci.asm: Delete.
8942 * nt-cn.asm: Delete.
8943 * ntstack.asm: Delete.
8944
8945 2000-01-27 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
8946
8947 * rs6000.h (SELECT_RTX_SECTION): Move to aix.h.
8948 (ASM_FILE_START): Likewise.
8949 (ASM_DECLARE_FUNCTION_NAME): Likewise.
8950 (ASM_OUTPUT_LABELREF): Likewise.
8951 (ASM_OUTPUT_SKIP): Likewise.
8952 (ASM_OUTPUT_INTERNAL_LABEL): Likewise.
8953 (ASM_GENERATE_INTERNAL_LABEL): Likewise.
8954 (ASM_OUTPUT_CASE_LABEL): Likewise.
8955 (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
8956 (ASM_OUTPUT_ASCII): Likewise.
8957
8958 2000-01-27 Clinton Popetz <cpopetz@cygnus.com>
8959
8960 * rs6000.c (rs6000_emit_load_toc_table): Use "LCG" and
8961 reload_toc_labelno for non-prologue TOC reloads. Also, don't
8962 increment rs6000_pic_labelno here.
8963 (rs6000_emit_prologue): Pass TRUE to rs6000_emit_load_toc_table,
8964 and increment rs6000_pic_labelno here.
8965
8966 2000-01-24 Geoffrey Keating <geoffk@cygnus.com>
8967
8968 * rs6000.md (fctiwz): Use (set (reg) (unspec:DI [(fix:SI ...)]))
8969 rather than (set (subreg:SI (reg)) (fix:SI ...)) so that register
8970 allocation knows (reg) is dead before the insn.
8971
8972 2000-01-21 Geoff Keating <geoffk@cygnus.com>
8973
8974 * rs6000.md (movsi_to_cr): Correct typo in output template.
8975
8976 2000-01-19 Geoffrey Keating <geoffk@cygnus.com>
8977
8978 * rs6000.c (rs6000_pic_labelno): Always define.
8979 (rs6000_pic_func_labelno): Delete.
8980 (lmw_operation): Check for a zero base register,
8981 which doesn't mean what we want.
8982 (stmw_operation): New function.
8983 (print_operand): Define new 'l' modifier.
8984 (rs6000_stack_info): We must save all 64 bits of the registers
8985 if TARGET_POWERPC64.
8986 (rs6000_output_load_toc_table): Delete.
8987 (rs6000_emit_load_toc_table): New function.
8988 (rs6000_allocate_stack_space): Delete.
8989 (rs6000_emit_allocate_stack): New function.
8990 (rs6000_emit_prologue): New function.
8991 (output_prolog): Use rs6000_emit_prologue.
8992 (rs6000_emit_epilogue): Change a few variable names to be
8993 more accurate. Restore all 64 bits of the registers if
8994 TARGET_POWERPC64. Only restore the FP registers which were used
8995 if they are being saved/restored one-at-a-time.
8996 (output_mi_thunk): Delete inefficient code generation.
8997 (output_function_profiler): Don't use rs6000_output_load_toc_table.
8998 * rs6000.h: Declare rs6000_emit_load_toc_table,
8999 rs6000_allocate_stack_space, stmw_operation. Don't declare
9000 rs6000_output_load_toc_table.
9001 * rs6000.md (elf_high): Allow register 0, but discourage it
9002 heavily.
9003 (elf_low): Support loading into register 0.
9004 (load_toc_aix_si): New pattern.
9005 (load_toc_aix_di): New pattern.
9006 (load_toc_v4_pic_si): New pattern.
9007 (load_toc_v4_pic_di): New pattern.
9008 (load_toc_v4_PIC_1): New pattern.
9009 (load_toc_v4_PIC_1b): New pattern.
9010 (load_toc_v4_PIC_2): New pattern.
9011 (builtin_setjmp_receiver): Use rs6000_emit_load_toc_table.
9012 (nonlocal_goto_receiver): Use rs6000_emit_load_toc_table.
9013 (prologue): New expander.
9014 (movesi_from_cr): New pattern.
9015 (stmw): New pattern.
9016 (save_fpregs_si): New pattern.
9017 (save_fpregs_di): New pattern.
9018
9019 2000-01-19 Geoff Keating <geoffk@cygnus.com>
9020
9021 * rs6000.md (movsi): Don't use force_reg when no_new_pseudos.
9022 (movdi): Likewise.
9023 (movhi): Likewise.
9024 (movqi): Likewise.
9025
9026 2000-01-19 Geoff Keating <geoffk@cygnus.com>
9027
9028 * rs6000.md (movsi_got): 'unspec 8' returns a SImode result,
9029 at present.
9030 (movsi_got_internal): Likewise.
9031 (movsi_got_internal+1): Likewise.
9032 (set_sp): 'unspec 7' does a SImode clobber.
9033
9034 2000-01-19 Geoff Keating <geoffk@cygnus.com>
9035
9036 * rs6000.md (floatsidf2): Don't use the fpmem "register", just
9037 allocate a stack temporary.
9038 (floatsidf2_internal): Likewise.
9039 (floatsidf2_internal+1): Likewise. Don't do bizzare hacks
9040 with unspec.
9041 (floatunssidf2): Don't use the fpmem "register", just
9042 allocate a stack temporary.
9043 (floatunssidf2_internal): Likewise.
9044 (floatunssidf2_internal+1): Likewise. Don't do bizzare hacks
9045 with unspec.
9046 (floatsidf2_loadaddr): Delete.
9047 (floatsidf2_store1): Delete.
9048 (floatsidf2_store2): Delete.
9049 (floatsidf2_load): Delete.
9050 (fix_truncdfsi2): Don't use the fpmem "register", just
9051 allocate a stack temporary.
9052 (fix_truncdfsi2_internal_si): Delete.
9053 (fix_truncdfsi2_internal_di): Delete.
9054 (fix_truncdfsi2_internal): New insn.
9055 (fix_truncdfsi2_internal+1): Don't use the fpmem "register".
9056 (fix_truncdfsi2_store): Delete.
9057 (fix_truncdfsi2_load): Delete.
9058 (fctiwz): Produce gen_fctiwz.
9059
9060 2000-01-19 Geoffrey Keating <geoffk@cygnus.com>
9061
9062 * eabi.h (INVOKE__main): Define.
9063 * rs6000.c (rs6000_stack_info): Don't handle call to NAME__MAIN
9064 specially.
9065 (rs6000_emit_prologue): Likewise.
9066 * rs6000.h (struct rs6000_stack): Don't keep track of whether
9067 this is the main program.
9068
9069 2000-01-19 Geoff Keating <geoffk@cygnus.com>
9070
9071 * rs6000.c (rs6000_va_arg): Delete some unused variables.
9072
9073 2000-01-19 Geoff Keating <geoffk@cygnus.com>
9074
9075 * rs6000.c (rs6000_va_arg): On AIX, padding for small arguments
9076 goes after the argument.
9077
9078 2000-01-12 Geoff Keating <geoffk@cygnus.com>
9079
9080 * rs6000.md: Document 'unspec' values used.
9081 (epilogue): New expander.
9082 (movesi_to_cr_one): New expander.
9083 (movesi_to_cr and following): New pattern.
9084 (lmw): New pattern.
9085 (return_internal_si): New pattern.
9086 (return_internal_di): New pattern.
9087 (return_and_restore_fpregs_si): New pattern.
9088 (return_and_restore_fpregs_di): New pattern.
9089 * rs6000.h: Declare new functions.
9090 * rs6000.c (rs6000_stack_info): Use current_function_is_leaf
9091 rather than rs6000_calls_p.
9092 (rs6000_makes_calls): Delete.
9093 (lmw_operation): New function.
9094 (mtcrf_operation): New function.
9095 (rs6000_emit_epilogue): New function.
9096 (output_epilog): Call rs6000_emit_epilogue and final if
9097 !TARGET_SCHED_PROLOG, instead of writing text unconditionally.
9098
9099 2000-01-12 Geoff Keating <geoffk@cygnus.com>
9100
9101 * aix43.h (SUBSUBTARGET_SWITCHES): Document switches.
9102 * aix41.h (SUBSUBTARGET_SWITCHES): Document switches.
9103 * aix.h (SUBTARGET_SWITCHES): Document switches.
9104 * rs6000.h: (TARGET_SWITCHES): Don't print options twice. Make
9105 sched-prolog and sched-epilog the same. Document all the
9106 switches.
9107 (TARGET_OPTIONS): No longer allow -mdebug-.
9108
9109 2000-01-12 Geoff Keating <geoffk@cygnus.com>
9110
9111 * rs6000.h (ASM_FILE_END): Move to aix.h.
9112 (EXTRA_SECTIONS): Move to aix.h.
9113 (READONLY_DATA_SECTION): Move to aix.h.
9114 (EXTRA_SECTION_FUNCTIONS): Move to aix.h.
9115 (SELECT_SECTION): Move to aix.h.
9116 (JUMP_TABLES_IN_TEXT_SECTION): Move to aix.h.
9117 (INT_REGNO_P): Use symbolic name for ARG_POINTER_REGNUM.
9118 (LINK_REGISTER_REGNUM): New definition.
9119 (RETURN_ADDR_RTX): Use symbolic name for LINK_REGISTER_REGNUM.
9120 (SLOW_UNALIGNED_ACCESS): Define in a way suitable for both
9121 AIX and SVR4.
9122 * sysv4.h: Delete the code between the inclusion of rs6000.h
9123 and svr4.h.
9124 (DWARF_DEBUGGING_INFO): Don't define, it's defined in elfos.h.
9125 (FP_ARG_MAX_REG): Move generic definition to rs6000.h.
9126 (RS6000_REG_SAVE): Move generic definition to rs6000.h.
9127 (RS6000_SAVE_AREA): Move generic definition to rs6000.h.
9128 * rs6000.md (floatsidf2_loadaddr): The first arg here is Pmode.
9129 (fix_truncdfsi2_internal): Rename to fix_truncdfsi2_internal_si.
9130 (fix_truncdfsi2_internal_di): New pattern.
9131 (fix_truncdfsi2_store): The second arg here is Pmode too.
9132 (fix_truncdfsi2_load): The second arg here is Pmode too.
9133 (tablejumpdi): Now that switch tables hold only SImode values,
9134 gcc needs to know how to add them to the pc which is DImode.
9135 * rs6000.c (rs6000_stack_info): Use symbolic name for
9136 LINK_REGISTER_REGNUM.
9137 (output_mi_thunk) [!TARGET_ELF]: Don't define sp, it's not used.
9138 (output_toc): Delete unused variables s1 and s2.
9139 (output_ascii): Use fputs not fprintf on a variable string.
9140
9141 2000-01-07 David Edelsohn <edelsohn@gnu.org>
9142
9143 * rs6000.c (processor_target_table): Add power3 as alias for 630.
9144 * aix43.h: Revert Aug 2 change.
9145 (HAS_INIT_SECTION): Define, not visible yet.
9146 (LD_INIT_SWITCH): Define, not visible yet.
9147 * t-aix43 (MULTILIB_OPTIONS): Revert Aug 2 change.
9148
9149 2000-01-04 Joel Sherrill (joel@OARcorp.com>
9150
9151 * config/rs6000/rtems.h: Include config/rtems.h.
9152
9153 2000-01-04 David Edelsohn <edelsohn@gnu.org>
9154
9155 * rs6000.h (HANDLE_PRAGMA_PACK): Define.
9156 (SLOW_UNALIGNED_ACCESS): Define.
9157 (CASE_VECTOR_MODE): Always use 32-bit offsets.
9158 (ASM_FILE_END): Generate 64-bit symbol in 64-bit mode.
9159 (EXTRA_SECTOIN_FUNCTIONS): Indent .csect pseudo-op.
9160 (toc_section): Likewise and .toc pseudo-op.
9161 (ASM_DECLARE_FUNCTION): Likewise. Align text more strictly in
9162 64-bit mode.
9163 (TEXT_SECTION_ASM_OP): Likewise.
9164 (ASM_OUTPUT_ADD_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Always use
9165 32-bit offsets.
9166
9167 1999-12-17 Jakub Jelinek <jakub@redhat.com>
9168
9169 * config/rs6000/rs6000.h (TARGET_POWERPC64): Make sure
9170 UNITS_PER_WORD and BITS_PER_WORD are compile time constants when
9171 compiling libgcc2.
9172
9173 2000-01-06 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9174
9175 * rs6000.h: Move more stuff from here...
9176 * aix.h: to here.
9177 * sysv4.h: Cleanup accordingly.
9178 * netware.h: Likewise
9179
9180 2000-01-05 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
9181
9182 * rs6000.h: Continue cleanup.
9183 * aix.h: Likewise.
9184 * lynx.h: Likewise.
9185 * netware.h: Likewise.
9186 * sol2.h: Likewise.
9187 * sysv4.h: Likewise.
9188 * win-nt.h: Likewise.
9189
9190 * rs6000.h (TARGET_SWITCHES): Add descriptions.
9191 (TARGET_OPTIONS): Likewise.
9192
9193 * sysv4.h (SUBTARGET_SWITCHES): Add descriptions.
9194 (SUBTARGET_OPTIONS): Likewise.
9195
9196 * rs6000.md: Fix compile time warnings.
9197
9198 2000-01-04 Geoff Keating <geoffk@cygnus.com>
9199
9200 vxworks patches from the Cygnus tree originally by
9201 Michael Meissner <meissner@cygnus.com> and Vladimir Makarov
9202 <vmakarov@cygnus.com>.
9203 * sysv4.h (SUBTARGET_SWITCHES): Add vxworks.
9204 (ENDFILE_SPEC): Likewise.
9205 (LIB_VXWORKS_SPEC): New macro.
9206 (STARTFILE_VXWORKS_SPEC): New macro.
9207 (ENDFILE_VXWORKS_SPEC): New macro.
9208 (LINK_START_VXWORKS_SPEC): New macro.
9209 (LINK_OS_VXWORKS_SPEC): New macro.
9210 (CPP_OS_VXWORKS_SPEC): New macro.
9211 (SUBTARGET_EXTRA_SPECS): Add all the vxworks specs.
9212 * vxppc.h: Rewrite to use proper configuration method.
9213 * vxppcle.h: New file.
9214 * ../../configure.in: Add powerpcle-wrs-vxworks*.
9215 * ../../configure: Rebuilt.
9216
9217 2000-01-04 Geoff Keating <geoffk@cygnus.com>
9218
9219 Lots of changes to rs6000.h, sysv4.h, aix.h,
9220 aix31.h, aix3newas.h, aix41.h, aix43.h, beos.h,
9221 with the aim that rs6000.h is the first header
9222 included and the others override it.
9223 * aix.h: New file.
9224
9225 * x-aix41-gld: Remove.
9226 * x-aix43: Remove.
9227 * x-aix41: Remove target-specific switches, and don't specify
9228 -Wl,-bbigtoc as we don't need it any more.
9229 * ../../configure.in: Use x-aix41 for ppc AIX 4.1 and above.
9230 Use t-aix43 for AIX 4.3 and above.
9231 * ../../configure: Regenerated.
9232
9233 * rs6000.h (TARGET_SWITCHES): Add some initial prolog-scheduling
9234 options, that don't do anything yet.
9235 (MASK_SCHED_PROLOG): New macro.
9236 (MASK_SCHED_EPILOG): New macro.
9237 (TARGET_SCHED_PROLOG): New macro.
9238 (TARGET_SCHED_EPILOG): New macro.
9239
9240 2000-01-04 Geoff Keating <geoffk@cygnus.com>
9241
9242 * rs6000.c: Correct comment, the `minimal' TOCs are actually
9243 one per translation unit, not one per function.
9244 (output_toc): Also do duplicate constant elimination
9245 for per-translation-unit TOCs.
9246
9247 * rs6000.md (nonlocal_goto_receiver): Put it back as before. Add
9248 a comment explaining _exactly_ when this pattern gets used.
9249 (builtin_setjmp_receiver): New pattern for better clarity.
9250 (init_v4_pic): Move it into a section dealing with TOC registers.
9251
9252 1999-12-30 Geoff Keating <geoffk@cygnus.com>
9253
9254 * rs6000.c (toc_hash_table): New variable.
9255 (rs6000_hash_constant): New function.
9256 (toc_hash_function): New function.
9257 (toc_hash_eq): New function.
9258 (toc_hash_mark_entry): New function.
9259 (toc_hash_mark_table): New function.
9260 (output_toc): Don't output duplicate TOC entries in
9261 a single file.
9262 (rs6000_add_gc_roots): Add the hash table as a GC root.
9263 * t-aix43: Move AR_FOR_TARGET and CLIB here from x-aix43,
9264 where they clearly shouldn't be. This may need to be fixed
9265 later when there is a GNU ar for AIX.
9266 * x-aix43: Don't define CLIB or AR_FOR_TARGET.
9267 Don't define BOOT_LDFLAGS as it is now not necessary.
9268
9269 1999-12-29 Geoff Keating <geoffk@cygnus.com>
9270
9271 * rs6000.c (rs6000_build_va_list): Use 'char *' rather than 'void *'
9272 for va_list on AIX. Use unsigned_char_type_node rather than
9273 constructing our own version on svr4.
9274
9275 1999-12-17 Geoff Keating <geoffk@cygnus.com>
9276
9277 * tramp.asm (__trampoline_size): Delete CYGNUS LOCAL comment,
9278 since patently it's not.
9279
9280 1999-12-08 Geoff Keating <geoffk@cygnus.com>
9281
9282 * config/rs6000/rs6000.md (nonlocal_goto_receiver): Turn into
9283 define_expand/define_insn pair, and handle restore of the
9284 SVR4 -fpic register.
9285
9286 Wed Mar 15 15:43:38 2000 Jeffrey A Law (law@cygnus.com)
9287
9288 * acconfig.h (HAVE_GAS_WEAK): New define.
9289 * configure.in (assembler weak support): Check for .weak support.
9290 * config.in, configure: Rebuilt.
9291 * pa/som.h (MAKE_DECL_ONE_ONLY, ASM_WEAKEN_LABEL): Only define if
9292 HAVE_GAS_WEAK is defined.
9293
9294 2000-03-15 Nick Clifton <nickc@cygnus.com>
9295
9296 * config/arm/arm.c (arm_output_epilogue): Do not pass %c to
9297 asm_fprintf().
9298
9299 2000-03-15 Zack Weinberg <zack@wolery.cumb.org>
9300
9301 * cppfiles.c (open_include_file): New function.
9302 (find_include_file, cpp_read_file): Use it.
9303
9304 2000-03-15 Jason Merrill <jason@casey.cygnus.com>
9305
9306 * cpphash.c (dump_hash_helper): Take the slot, not the element.
9307
9308 Wed Mar 15 14:28:54 2000 Jason Eckhardt <jle@cygnus.com>
9309
9310 * flow.c (verify_flow_info): Check for unconditional return.
9311
9312 Wed Mar 15 11:34:27 2000 Jim Wilson <wilson@cygnus.com>
9313
9314 * config/ia64/ia64.md (restore_stack_nonlocal): New.
9315 * config/ia64/lib1funcs.asm (__ia64_nonlocal_goto): Delete padding nop.
9316 (__ia64_restore_stack_nonlocal): New.
9317 * config/ia64/t-ia64 (LIB1ASMFUNCS): Add __restore_stack_nonlocal.
9318
9319 2000-03-15 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
9320
9321 * cpphash.c (collect_formal_parameters): Do not complain about
9322 parameter names that just start with `__VA_ARGS__'.
9323
9324 Wed Mar 15 13:26:58 MET 2000 Jan Hubicka <jh@suse.cz>
9325
9326 * i386.md (movhi_1): Promote movw imm, reg to movl imm, reg and
9327 movw reg, reg to movzwl reg, reg on PARTIAL_REGISTER_STALL machines.
9328 * i386.c (pentiumpro_cost): Set mul cost to 4.
9329 (x86_use_movx): Set for PPro.
9330
9331 Wed Mar 15 13:07:05 MET 2000 Jan Hubicka <jh@suse.cz>
9332
9333 * i386.md (ix86_compute_frame_size): stack_alignment_needed is
9334 STACK_BOUNDARY for empty frames now.
9335
9336 2000-03-14 Mark Mitchell <mark@codesourcery.com>
9337
9338 * stor-layout.c (layout_union): Remove.
9339 (layout_union_field): New function, split out from layout_union.
9340 (finish_union_layout): Likewise.
9341 (layout_field): Handle unions by calling layout_union_field.
9342 (finish_record_layout): Handle unions.
9343 (layout_type): Combine RECORD_TYPE, UNION_TYPE, and
9344 QUAL_UNION_TYPE handling.
9345
9346 Wed Feb 23 13:00:06 CET 2000 Jan Hubicka <jh@suse.cz>
9347
9348 * flow.c (fixup_reorder_chain): Avoid double labels in the basic block;
9349 end of basic block is jump_insn, not barrier; use create_basic_block
9350 instead of creating basic block by hand.
9351
9352 2000-03-14 Jason Eckhardt <jle@cygnus.com>
9353
9354 * flow.c (reorder_basic_blocks): Account for barriers when writing
9355 over NEXT_INSN (last_bb->end).
9356 (verify_flow_info): Add check for missing barriers.
9357
9358 2000-03-14 Greg McGary <gkm@gnu.org>
9359
9360 * c-lex.h (enum rid): Add RID_BOUNDED & RID_UNBOUNDED.
9361 * c-lex.c (init_lex): Handle RID_BOUNDED & RID_UNBOUNDED.
9362 * c-parse.gperf (__bounded, __bounded__, __ptrbase, __ptrbase__,
9363 __ptrextent, __ptrextent__, __ptrvalue, __ptrvalue__,
9364 __unbounded, __unbounded__): New keywords.
9365 * c-parse.in (PTR_VALUE PTR_BASE PTR_EXTENT): New tokens.
9366 * c-parse.y, c-parse.c, c-parse.h: Regenerate.
9367 * objc/objc-parse.y, objc/objc-parse.c: Regenerate.
9368
9369 2000-03-14 Bernd Schmidt <bernds@cygnus.co.uk>
9370
9371 * cselib.h: New file.
9372 * alias.c: Include "cselib.h".
9373 (fixed_scalar_and_varying_struct_p): Accept the addresses of the
9374 MEMs as two new arguments.
9375 (get_addr): New static function.
9376 (find_base_term): Handle VALUEs.
9377 (memrefs_conflict_p): Likewise.
9378 (true_dependence): Call get_addr on the addresses.
9379 Call fixed_scalar_and_varying_struct_p with addresses that have been
9380 passed through get_addr and canon_rtx.
9381 (write_dependence_p): Move DIFFERENT_ALIAS_SETS_P test for consistency
9382 with true_dependence.
9383 Call get_addr on the addresses; don't call canon_rtx on the MEMs.
9384 * loop.c: Include "cselib.h".
9385 (load_mems): Process extended basic block that enters the loop with
9386 cselib. Use that information to change initialization of the shadow
9387 register so that a constant equivalence is seen by later passes.
9388 * reload1.c: Include "cselib.h".
9389 (reload_cse_invalidate_regno): Delete function.
9390 (reload_cse_mem_conflict_p): Likewise.
9391 (reload_cse_invalidate_mem): Likewise.
9392 (reload_cse_invalidate_rtx): Likewise.
9393 (reload_cse_regno_equal_p): Likewise.
9394 (reload_cse_check_clobber): Likewise.
9395 (reload_cse_record_set): Likewise.
9396 (reg_values): Delete static variable.
9397 (invalidate_regno_rtx): Likewise.
9398 (reload_cse_delete_noop_set): New static function.
9399 (reload_cse_simplify): New static function, broken out of
9400 reload_cse_regs_1.
9401 (reload_cse_noop_set_p): Delete unused argument INSN.
9402 Just call rtx_equal_for_cselib_p on set source and destination.
9403 (reload_cse_regs_1): Break out some code into reload_cse_simplify and
9404 reload_cse_delete_noop_set. Delete code to keep track of values; use
9405 cselib functions instead. Delete code to push/pop obstacks.
9406 (reload_cse_simplify_set): Use cselib to find equivalent values.
9407 Delete code to push/pop obstacks.
9408 (reload_cse_simplify_operands): Likewise.
9409 * rtl.def (VALUE): New rtx code.
9410 * rtl.h (union rtunion_def): New elt rt_cselib.
9411 (X0CSELIB, CSELIB_VAL_PTR): New macros.
9412 * simplify_rtx.c: Include "ggc.h", "obstack.h", "cselib.h".
9413 (new_elt_list, new_elt_loc_list, unchain_one_value, clear_table,
9414 unchain_one_elt_list, unchain_one_elt_loc_list, check_useless_values,
9415 discard_useless_locs, discard_useless_values, entry_and_rtx_equal_p,
9416 hash_rtx, new_cselib_val, add_mem_for_addr, get_value_hash,
9417 cselib_lookup_mem, cselib_subst_to_values, cselib_invalidate_regno,
9418 cselib_mem_conflict_p, cselib_invalidate_mem, cselib_invalidate_rtx,
9419 cselib_record_set, cselib_record_sets): New static functions.
9420 (cselib_lookup, cselib_update_varray_sizes, cselib_init,
9421 cselib_finish, cselib_process_insn, rtx_equal_for_cselib_p,
9422 references_value_p): New functions.
9423 (MAX_USELESS_VALUES, REG_VALUES): New macros.
9424 (table, cselib_current_insn, next_unknown_value, cselib_nregs,
9425 n_useless_values, reg_values, callmem, cselib_obstack,
9426 cselib_startobj, empty_vals, empty_elt_lists, empty_elt_loc_lists):
9427 New static variables.
9428 * varray.h (union varray_data_tag): New elt te.
9429 (VARRAY_ELT_LIST_INIT, VARRAY_ELT_LIST): New macros.
9430 * Makefile.in (reload1.o, loop.o, simplify-rtx.o, alias.o): Update
9431 dependencies.
9432
9433 2000-03-14 Nick Clifton <nickc@cygnus.com>
9434
9435 * gcc.c (do_spec_1): Catch the case where %* is used in a
9436 substitution pattern, but it has not been initialised.
9437 Issue a meaningful error message if an unrecognised operator
9438 is encountered in a spec string.
9439
9440 2000-03-14 Richard Earnshaw <rearnsha@arm.com>
9441
9442 * function.c (prepare_function_start): Correctly initialize
9443 cfun->stack_alignment_needed.
9444
9445 2000-03-14 Zack Weinberg <zack@wolery.cumb.org>
9446
9447 * cppfiles.c (find_include_file): Don't assume nshort is a
9448 substring of name.
9449
9450 Tue Mar 14 08:42:21 2000 Jeffrey A Law (law@cygnus.com)
9451
9452 * configure.in (hppa configurations): Add pa32-regs.h to the
9453 list of tm files as appropriate.
9454 * configure: Rebuilt.
9455 * pa.c (compute_frame_size): Remove explicit knowledge about FP
9456 register numbering.
9457 (hppa_expand_prologue, hppa_expand_epilogue): Likewise.
9458 (fmpyaddoperands, fmpysuboperands): Likewise.
9459 * pa.h: Remove various definitions which depend on knowing
9460 how registers are numbered.
9461 * pa32-regs.h: New file with PA32 register numbering specific
9462 definitions.
9463
9464 2000-03-14 Richard Henderson <rth@cygnus.com>
9465
9466 * regmove.c (combine_stack_adjustments): New.
9467 (stack_memref_p, single_set_for_csa): New.
9468 (free_csa_memlist, record_one_stack_memref): New.
9469 (try_apply_stack_adjustment): New.
9470 (combine_stack_adjustments_for_block): New.
9471 * rtl.h (combine_stack_adjustments): Declare.
9472 * toplev.c (rest_of_compilation): Call it.
9473
9474 * i386.md: Revert 2000-01-16 change.
9475
9476 2000-03-14 Martin v. Löwis <loewis@informatik.hu-berlin.de>
9477
9478 * gccbug.in: Add web category, gcc specific classes.
9479
9480 2000-03-14 Nathan Sidwell <nathan@codesourcery.com>
9481
9482 * stor-layout.c (finalize_record_size): Fix typo.
9483
9484 2000-03-14 Stan Shebs <shebs@apple.com>
9485
9486 * c-typeck.c (c_alignof): Error on incomplete types.
9487 * extend.texi (Alignment): Document this.
9488
9489 2000-03-13 Zack Weinberg <zack@wolery.cumb.org>
9490
9491 * cppfiles.c: Include mkdeps.h.
9492 (find_include_file, read_include_file): Remove _cpp_ prefix
9493 from name, make static.
9494 (_cpp_execute_include): New function, broken out of
9495 do_include.
9496
9497 * cpplib.c: Don't include mkdeps.h.
9498 (struct directive): Remove type field. Reorder entries. The
9499 function takes only one argument.
9500 (struct if_stack): Make type field an int.
9501 (directive_table): Rename to dtable. Generate it, the
9502 prototypes of the directive handlers, and the enum for the
9503 directive numbers, from a template macro.
9504 (do_ifndef, do_include_next, do_import): New functions.
9505 (do_define, do_include, do_endif, do_ifdef, do_if, do_else,
9506 do_undef, do_line, do_elif, do_error, do_pragma, do_warning,
9507 do_ident, do_assert, do_unassert, do_sccs): Take only one
9508 argument.
9509 (do_sccs): Define always, but alter behavior based on
9510 SCCS_DIRECTIVE.
9511 (_cpp_handle_directive, consider_directive_while_skipping):
9512 Restructure for new directive table layout.
9513
9514 (pass_thru_directive): Take a directive number, not a pointer
9515 to a struct directive.
9516 (parse_include): New function, broken out of do_include.
9517 (do_include, do_import, do_include_next): Use parse_include
9518 and _cpp_execute_include.
9519 (do_elif, do_else): Test for T_ELSE specifically when checking
9520 for #elif/#else after #else.
9521 (parse_ifdef): New function, broken out of do_ifdef.
9522 (validate_else): Expect a name arg without a leading #.
9523 (if_directive_name): Delete.
9524 (cpp_define, cpp_assert, cpp_undef, cpp_unassert): Call
9525 directive handlers with only one argument.
9526
9527 * cpphash.h: Update prototypes.
9528 (enum node_type): Remove entries for directives.
9529 * Makefile.in: Update dependencies.
9530
9531 * cpphash.c (dump_hash_helper): Only dump nodes of type
9532 T_MACRO. Emit a newline after each definition.
9533
9534 2000-03-14 Martin v. Löwis <loewis@informatik.hu-berlin.de>
9535
9536 * gccbug.in: New file.
9537 * configure.in (all_outputs): Add gccbug.
9538 * Makefile.in (install-common): Install gccbug.
9539 (GCCBUG_INSTALL_NAME): New variable.
9540 * configure: Rebuilt.
9541
9542 2000-03-13 Jason Merrill <jason@casey.cygnus.com>
9543
9544 * function.c (put_var_into_stack): Use type_for_mode to calculate
9545 part_type. Use MEM_SET_IN_STRUCT_P.
9546 * expr.c (store_field): Handle CONCAT.
9547 (store_constructor): Use fields_length.
9548 * tree.c (fields_length): New fn.
9549 * tree.h: Declare it.
9550
9551 2000-03-13 Zack Weinberg <zack@wolery.cumb.org>
9552
9553 * Makefile.in (LIBCPP_OBJS): Add cpplex.o.
9554 (cpplex.o): New target.
9555 * po/POTFILES.in: Add cpplex.c.
9556
9557 * cpplex.c (_cpp_grow_token_buffer, null_cleanup,
9558 cpp_push_buffer, cpp_pop_buffer, cpp_scan_buffer,
9559 cpp_expand_to_buffer, cpp_buf_line_and_col, cpp_file_buffer,
9560 skip_block_comment, skip_line_comment, skip_comment,
9561 copy_comment, _cpp_skip_hspace, _cpp_skip_rest_of_line,
9562 _cpp_parse_name, skip_string, parse_string,
9563 _cpp_parse_assertion, cpp_get_token, cpp_get_non_space_token,
9564 _cpp_get_directive_token, find_position,
9565 _cpp_read_and_prescan, _cpp_init_input_buffer): Move here.
9566 (maybe_macroexpand, _cpp_lex_token): New functions.
9567
9568 * cpplib.c (SKIP_WHITE_SPACE, eval_if_expr, parse_set_mark,
9569 parse_goto_mark): Delete.
9570 (_cpp_handle_eof): New function.
9571 (_cpp_handle_directive): Rename from handle_directive.
9572 (_cpp_output_line_command): Rename from output_line_command.
9573 (do_if, do_elif): Call _cpp_parse_expr directly.
9574 * cppfiles.c (_cpp_read_include_file): Don't call
9575 init_input_buffer here.
9576 * cpphash.c (quote_string): Move here, rename _cpp_quote_string.
9577 * cppexp.c (_cpp_parse_expr): Diddle parsing_if_directive
9578 here; pop the token_buffer and skip the rest of the line here.
9579 * cppinit.c (cpp_start_read): Call _cpp_init_input_buffer
9580 here.
9581
9582 * cpphash.h (CPP_RESERVE, CPP_IS_MACRO_BUFFER, ACTIVE_MARK_P):
9583 Define here.
9584 (CPP_SET_BUF_MARK, CPP_GOTO_BUF_MARK, CPP_SET_MARK,
9585 CPP_GOTO_MARK): New macros.
9586 (_cpp_quote_string, _cpp_parse_name, _cpp_skip_rest_of_line,
9587 _cpp_skip_hspace, _cpp_parse_assertion, _cpp_lex_token,
9588 _cpp_read_and_prescan, _cpp_init_input_buffer,
9589 _cpp_grow_token_buffer, _cpp_get_directive_token,
9590 _cpp_handle_directive, _cpp_handle_eof,
9591 _cpp_output_line_command): Prototype them here.
9592 * cpplib.h (enum cpp_token): Add CPP_MACRO.
9593 (CPP_RESERVE, get_directive_token, cpp_grow_buffer,
9594 quote_string, output_line_command): Remove.
9595
9596 2000-03-13 Bernd Schmidt <bernds@cygnus.co.uk>
9597
9598 * stmt.c (expand_end_case): RANGE may be signed, and when checking
9599 whether it is too large we must also verify that it isn't negative.
9600
9601 2000-03-13 Jakub Jelinek <jakub@redhat.com>
9602
9603 * config/sparc/sparc.md: Remove all traces of TARGET_LIVE_G0.
9604 (movsi_zero_liveg0): Remove.
9605 (movsf_insn_novis_liveg0): Remove.
9606 (negsi2): Remove.
9607 (negsi2_not_liveg0): Rename to negsi2.
9608 (one_cmplsi2): Remove.
9609 (one_cmplsi2_not_liveg0): Rename to one_cmplsi2.
9610 (one_cmplsi2_liveg0): Remove.
9611 * config/sparc/sparc.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE,
9612 MASK_LIVE_G0, MASK_BROKEN_SAVERESTORE): Remove.
9613 (CONDITIONAL_REGISTER_USAGE): Remove TARGET_LIVE_G0 if.
9614 (PREDICATE_CODES): Remove zero_operand.
9615 * config/sparc/sparc.c: Remove all traces of TARGET_LIVE_G0 and
9616 TARGET_BROKEN_SAVERESTORE.
9617 (zero_operand): Remove.
9618 * config/sparc/splet.h (SUBTARGET_SWITCHES): Remove -mlive-g0,
9619 -mno-live-g0, -mbroken-saverestore and -mno-broken-saverestore
9620 options.
9621 (SUBTARGET_OVERRIDE_OPTIONS): Remove.
9622 * config/sparc/linux-aout.h (TARGET_LIVE_G0,
9623 TARGET_BROKEN_SAVERESTORE): Remove.
9624 * config/sparc/linux.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
9625 Remove.
9626 * config/sparc/linux64.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
9627 Remove.
9628 * config/sparc/sol2.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
9629 Remove.
9630
9631 * config/sparc/sparc.md (return_df_no_fpu): New pattern.
9632
9633 2000-03-13 Zack Weinberg <zack@wolery.cumb.org>
9634
9635 * cpplib.c (do_pragma_implementation): Fix off-by-one error
9636 truncating a string. Don't assume tokens are nul terminated.
9637 Problem noted by Andreas Jaeger <aj@suse.de>
9638
9639 2000-03-13 Jason Merrill <jason@casey.cygnus.com>
9640
9641 * dwarf2out.c (add_name_and_src_coords_attributes): Only add
9642 DW_AT_MIPS_linkage_name for TREE_PUBLIC decls.
9643 (ASM_OUTPUT_DWARF_ADDR_CONST): Don't output trailing newline.
9644
9645 2000-03-13 Richard Earnshaw <rearnsha@arm.com>
9646
9647 * stor-layout.c (new_record_layout_info): Fix typo inside ifdef
9648 STRUCTURE_SIZE_BOUNDARY.
9649
9650 2000-03-13 Mark Mitchell <mark@codesourcery.com>
9651
9652 * tree.h (record_layout_info_s): New structure.
9653 (record_layout_info): New type.
9654 (new_record_layout_info): New function.
9655 (layout_field): Likewise.
9656 (finish_record_layout): Likewise.
9657 * stor-layout.c (layout_record): Remove.
9658 (new_record_layout_info): New function.
9659 (layout_field): New function, broken out from layout_record.
9660 (finalize_record_size): Likewise.
9661 (compute_record_mode): Likewise.
9662 (finalize_type_size): New function, broken out from layout_type.
9663 (finish_record_layout): Likewise.
9664 (layout_type): Use them.
9665
9666 2000-03-12 Zack Weinberg <zack@wolery.cumb.org>
9667
9668 * cpphash.c: Don't include version.h.
9669 (special_symbol) [case T_VERSION]: Look for the string in
9670 hp->value.cpval; don't use version_string.
9671 * cppinit.c (initialize_builtins): Set hp->value.cpval for
9672 __VERSION__ to version_string.
9673 * Makefile.in (cpphash.o): Update deps.
9674
9675 2000-03-12 Zack Weinberg <zack@wolery.cumb.org>
9676
9677 Convert cpplib to use libiberty/hashtab.c.
9678
9679 * cpplib.h (struct cpp_reader): Make hashtab and
9680 all_include_files of type 'struct htab *'. Delete HASHSIZE
9681 and ALL_INCLUDE_HASHSIZE macros.
9682
9683 * cpphash.h: Update prototypes.
9684 (struct hashnode): Remove next, prev, and bucket_hdr members.
9685 Make length a size_t. Add hash member.
9686 (struct ihash): Remove next member. Add hash member. Make
9687 name a flexible array member.
9688
9689 * cppfiles.c: Include hashtab.h.
9690 (include_hash): Delete.
9691 (IHASHSIZE): New macro.
9692 (hash_IHASH, eq_IHASH, _cpp_init_include_hash): New functions.
9693 (cpp_included): Do the hash lookup here.
9694 (_cpp_find_include_file): Rewrite.
9695 (cpp_read_file): Put the "fake" hash entry into the hash
9696 table. Honor the control_macro, if it turns out we've seen
9697 the file before. Don't push the buffer here.
9698 (_cpp_read_include_file): Push the buffer here.
9699 (OMODES): New macro. Use it whenever we call open(2).
9700
9701 * cpphash.c: Include hashtab.h.
9702 (hash_HASHNODE, eq_HASHNODE, del_HASHNODE, dump_hash_helper,
9703 _cpp_init_macro_hash, _cpp_dump_macro_hash, _cpp_make_hashnode,
9704 _cpp_lookup_slot): New functions.
9705 (HASHSIZE): new macro.
9706 (hashf, _cpp_install, _cpp_delete_macro): Delete.
9707 (_cpp_lookup): Use hashtab.h routines.
9708
9709 * cppinit.c: Include hashtab.h.
9710 (cpp_reader_init): Call _cpp_init_macro_hash and
9711 _cpp_init_include_hash. Don't allocate hashtab directly.
9712 (cpp_cleanup): Just call htab_delete on pfile->hashtab and
9713 pfile->all_include_files.
9714 (initialize_builtins): Use _cpp_make_hashnode and
9715 htab_find_slot to add hash entries.
9716 (cpp_finish): Just call _cpp_dump_macro_hash.
9717 * cpplib.c: Include hashtab.h.
9718 (do_define): Use _cpp_lookup_slot and _cpp_make_hashnode to
9719 create hash entries.
9720 (do_pragma_poison, do_assert): Likewise.
9721 (do_include): Don't push the buffer here. Don't increment
9722 system_include_depth unless _cpp_read_include_file succeeds.
9723 (do_undef, do_unassert): Use _cpp_lookup_slot and htab_clear_slot
9724 or htab_remove_elt.
9725 (do_pragma_implementation): Use alloca to create copy.
9726
9727 * Makefile.in: Update dependencies.
9728
9729 2000-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9730
9731 * cppinit.c (cl_directive_handler): More K&R fixing.
9732
9733 Sat Mar 11 23:54:26 2000 Jim Wilson <wilson@cygnus.com>
9734
9735 * config/ia64/ia64.c (ia64_compute_frame_size): Align size to
9736 STACK_BOUNDARY.
9737 * config/ia64/ia64.h (REGISTER_MOVE_COST): Add missing parentheses.
9738
9739 2000-03-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9740
9741 * cppinit.c (no_arg, no_ass, no_dir, no_fil, no_mac, no_pth):
9742 Change from char[] to macros.
9743
9744 2000-03-12 Neil Booth <NeilB@earthling.net>
9745
9746 * cppinit.c (cpp_start_read): Update indirect function
9747 call to K&R C.
9748
9749 Sat Mar 11 16:18:12 2000 Jim Wilson <wilson@cygnus.com>
9750
9751 * config/ia64/ia64.h (ADDITIONAL_REGISTER_NAMES): Fix typo in loc79
9752 entry.
9753
9754 * config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
9755 config/ia64/ia64.md, config/ia64/xm-ia64.h: Fix copyright messages.
9756
9757 2000-03-11 Neil Booth <NeilB@earthling.net>
9758
9759 * cppinit.c (struct pending option): Replace undef with a
9760 pointer to a directive handling routine.
9761 (struct cpp_pending): Replace separate assert_ and define_
9762 lists with one directive_ list.
9763 (new_pending_define): Rename new_pending_directive. Extra
9764 argument is the directive's handling routine.
9765 (handle_option): Update to use new_pending_directive.
9766
9767 2000-03-11 Neil Booth <NeilB@earthling.net>
9768
9769 * cppfiles.c (file_cleanup, _cpp_find_include_file,
9770 remap_filename, _cpp_read_include_file, actual_directory,
9771 hack_vms_include_specification): Replace bcopy(), index() etc
9772 calls. Add casts to some allocations. Make some variables
9773 pointers to const [unsigned] char.
9774 * cpphash.c (_cpp_install, macro_cleanup, collect_expansion,
9775 collect_formal_parameters): Similarly.
9776 * cppinit.c (struct pending_option, append_include_chain,
9777 cpp_options_init, cpp_reader_init, initialize_standard_includes,
9778 cpp_start_read, new_pending_define, handle_option): Similarly.
9779 * cpplib.c (cpp_define, copy_comment, do_define, do_include,
9780 do_undef, do_error, do_warning, do_pragma, do_pragma_once,
9781 do_pragma_implementation, detect_if_not_defined,
9782 do_ifdef, skip_if_group, cpp_get_token, parse_string,
9783 do_assert, do_unassert): Similarly.
9784 * cpplib.h (cpp_buffer, cpp_options): Update types. Update
9785 function prototypes.
9786 * mkdeps.c (deps_add_target, deps_add_dep): cast allocations.
9787
9788 2000-03-10 Richard Henderson <rth@cygnus.com>
9789
9790 * builtins.c (expand_builtin_strlen): Revert last change.
9791 Use emit_insn_before if we're at the beginning of a sequence.
9792
9793 2000-03-10 Jason Merrill <jason@casey.cygnus.com>
9794
9795 * builtins.c (expand_builtin_strlen): Make sure that we have something
9796 at the beginning of the sequence.
9797
9798 * toplev.c (rest_of_compilation): Also set TREE_NOTHROW for
9799 deferred inlines.
9800
9801 * invoke.texi (C++ Dialect Options): Document -fno-enforce-eh-specs.
9802
9803 2000-03-10 Richard Henderson <rth@cygnus.com>
9804
9805 * except.c (can_throw): Use INTVAL on a CONST_INT.
9806 (reachable_handlers): Likewise.
9807 * flow.c (count_basic_blocks, find_basic_blocks_1): Likewise.
9808
9809 2000-03-10 Andreas Jaeger <aj@suse.de>
9810
9811 * config/mips/linux.h: Undefine MD_EXEC_PREFIX and
9812 MD_STARTFILE_PREFIX since those are not needed on linux.
9813 (ASM_FILE_START): New, from mips/gnu.h.
9814
9815 2000-03-09 Richard Henderson <rth@cygnus.com>
9816 Alex Samuel <samuel@codesourcery.com> and others
9817
9818 * Makefile.in (ssa.o): New rule.
9819 (OBJS): Add ssa.o.
9820 (STAGESTUFF): Add *.ssa and *.ussa.
9821 (mostlyclean): Delete *.ssa, *.ussa, */*.ssa, */*.ussa.
9822 * rtl.def (PHI): New RTL expression.
9823 * rtl.h (clear_log_links): New declaration.
9824 (convert_to_ssa): Likewise.
9825 (convert_from_ssa): Likewise.
9826 * flow.c (split_edge): If the entry node falls through to the
9827 split edge's source block, split the entry edge.
9828 (clear_log_links): New function.
9829 * toplev.c (ssa_dump): New variable.
9830 (flag_ssa): Likewise.
9831 (f_options): Add "ssa".
9832 (compile_file): Create SSA dump files.
9833 (rest_of_compilation): Go to and from SSA if enabled.
9834 (decide_d_option): Handle -de for SSA dump files.
9835 * ssa.c: New file.
9836
9837 Thu Mar 9 20:01:38 2000 Jim Wilson <wilson@cygnus.com>
9838
9839 * expr.c (expand_assignment): For a CALL_EXPR, special case PARM_DECL
9840 same as VAR_DECL.
9841
9842 2000-03-09 Benjamin Kosnik <bkoz@cygnus.com>
9843
9844 * config/alpha/linux.h (WCHAR_TYPE): Make consistent.
9845
9846 Thu Mar 9 18:10:02 2000 Jeffrey A Law (law@cygnus.com)
9847
9848 * config/pa/pa-hpux10.h (LIB_SPEC): Correct typo in !p case.
9849 (MD_STARTFILE_PREFIX_1): New macro.
9850
9851 2000-03-09 Robert Lipe <robertl@sco.com>
9852
9853 * config/ia64/ia64.c: Include system.h.
9854
9855 2000-03-09 Jason Merrill <jason@casey.cygnus.com>
9856
9857 * except.c (nothrow_function_p): If -fno-exceptions, just return.
9858 (init_eh_nesting_info): Likewise.
9859
9860 * tree.h (struct tree_common): Rename raises_flag to nothrow_flag.
9861 (TREE_NOTHROW): Rename from TREE_RAISES.
9862 * toplev.c (rest_of_compilation): Set it.
9863 * print-tree.c (print_node): Adjust.
9864 * tree.c (stabilize_reference, build, build1): Don't set TREE_RAISES.
9865 (stabilize_reference_1, get_unwidened, get_narrower): Likewise.
9866 * calls.c (emit_call_1): Add 'nothrow' parm. Add
9867 REG_EH_REGION note as appropriate.
9868 (libfunc_nothrow): New fn.
9869 (emit_library_call, emit_library_call_value): Use it.
9870 (expand_call): Check TREE_NOTHROW.
9871
9872 * varasm.c (make_decl_rtl): Skip initial '*' when setting
9873 DECL_ASSEMBLER_NAME.
9874
9875 2000-03-09 Andreas Jaeger <aj@suse.de>
9876
9877 * mips/linux.h (NO_IMPLICIT_EXTERN_C): Define.
9878 (TARGET_MEM_FUNCTIONS): Define.
9879
9880 2000-03-09 Jason Merrill <jason@casey.cygnus.com>
9881
9882 * i386.c (ix86_valid_type_attribute_p): Use compare_tree_int.
9883
9884 * except.c (can_throw): See through a SEQUENCE.
9885 (nothrow_function_p): New fn.
9886 * except.h: Declare it.
9887 * function.c (current_function_nothrow): New var.
9888 (prepare_function_start): Initialize it.
9889 * output.h: Declare it.
9890 * toplev.c (rest_of_compilation): Set it.
9891 * dwarf2out.c (dwarf2out_begin_prologue): Use it.
9892
9893 2000-03-09 Zack Weinberg <zack@wolery.cumb.org>
9894
9895 * cpphash.c (collect_formal_parameters): strncmp returns 0 for
9896 match. (cpp_compare_defs): Count the nul separator when
9897 advancing over argument names.
9898
9899 2000-03-09 Bernd Schmidt <bernds@cygnus.co.uk>
9900
9901 * recog.c (preprocess_constraints): Matching constraints affect
9902 same alternative/different operand, not same operand/different
9903 alternative.
9904
9905 * reload1.c (eliminate_regs_in_insn): Handle additions of eliminable
9906 register and a constant specially.
9907
9908 2000-03-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9909
9910 * libgcc2.h: New file.
9911 * libgcc2.c: Move macros, typedefs and prototypes to libgcc2.h.
9912
9913 Wed Mar 8 16:19:42 2000 Jim Wilson <wilson@cygnus.com>
9914
9915 * configure.in (ia64*-*-elf*, ia64*-*-linux*): New.
9916 * configure: Regenerate.
9917 * config/ia64: New.
9918
9919 2000-03-08 Zack Weinberg <zack@wolery.cumb.org>
9920
9921 * Makefile.in (LIBCPP_DEPS): New macro.
9922 (cpplib.o, cpphash.o, cpperror.o, cppexp.o, cppfiles.o): Use
9923 it to declare deps.
9924 * cpperror.c: Include cpphash.h.
9925 * cppexp.c: Include cpphash.h. Remove MULTIBYTE_CHARS
9926 dingleberry.
9927 (lex): Don't use CPP_WARN_UNDEF.
9928 (_cpp_parse_expr): Return an int, the truth value.
9929 * cppfiles.c: Include cpphash.h.
9930 (_cpp_merge_include_chains): Move to cppinit.c and make static.
9931 * cppinit.c (include_defaults_array): Disentangle.
9932 (cpp_cleanup): Don't free the if stack here.
9933 (cpp_finish): Pop off all buffers, not just one.
9934 * cpplib.c (eval_if_expr): Return int.
9935 (do_xifdef): Rename do_ifdef.
9936 (handle_directive): Don't use CPP_PREPROCESSED.
9937 (cpp_get_token): Don't use CPP_C89.
9938 * fix-header.c: Don't use CPP_OPTIONS.
9939
9940 * cpplib.h: Move U_CHAR, enum node_type, struct
9941 file_name_list, struct ihash, is_idchar, is_idstart,
9942 is_numchar, is_numstart, is_hspace, is_space, CPP_BUF_PEEK,
9943 CPP_BUF_GET, CPP_FORWARD, CPP_PUTS, CPP_PUTS_Q, CPP_PUTC,
9944 CPP_PUTC_Q, CPP_NUL_TERMINATE, CPP_NUL_TERMINATE_Q,
9945 CPP_BUMP_BUFFER_LINE, CPP_BUMP_LINE, CPP_PREV_BUFFER,
9946 CPP_PRINT_DEPS, CPP_TRADITIONAL, CPP_PEDANTIC, and prototypes
9947 of _cpp_simplify_pathname, _cpp_find_include_file,
9948 _cpp_read_include_file, and _cpp_parse_expr to cpphash.h.
9949 Move struct if_stack to cpplib.c. Move struct cpp_pending to
9950 cppinit.c.
9951 Change all uses of U_CHAR to be unsigned char instead.
9952 Delete CPP_WARN_UNDEF, CPP_C89, and CPP_PREPROCESSED.
9953
9954 2000-03-08 Jason Merrill <jason@casey.cygnus.com>
9955
9956 * dwarf2out.c (dw_fde_struct): Add 'nothrow'.
9957 (dwarf2out_begin_prologue): Set it.
9958 (output_call_frame_info): Don't emit EH unwind info for leaves.
9959
9960 * flow.c (count_basic_blocks, find_basic_blocks_1): A rethrow
9961 can occur outside of an EH region.
9962 * except.c: Correct comments about rethrow behavior.
9963 (rethrow_symbol_map): Do nothing if !flag_new_exceptions.
9964
9965 2000-03-08 Andrew MacLeod <amacleod@cygnus.com>
9966
9967 * flow.c (make_edges): Always call make_eh_edge for calls.
9968
9969 2000-03-08 Zack Weinberg <zack@wolery.cumb.org>
9970
9971 * cpplib.h (parse_underflow_t, CPP_NULL_BUFFER): Delete.
9972 (struct cpp_buffer): Remove fname and underflow fields.
9973 (struct cpp_reader): Remove get_token field.
9974 (struct include_hash): Rename to struct ihash. Add typedef to
9975 IHASH.
9976 (struct if_stack): Remove fname field.
9977 (IF_STACK_FRAME): Rename to IF_STACK.
9978
9979 * cpperror.c (print_containing_files): Trust that there are no
9980 macro buffers below the top file buffer.
9981 * cppfiles.c: Replace all references to 'struct include_hash'
9982 with 'IHASH'. Rename initialize_input_buffer to
9983 init_input_buffer. Don't set or reference cpp_buffer->fname,
9984 use buffer->ihash->name instead.
9985 * cpphash.c (special_symbol): Use cpp_file_buffer. Use NULL
9986 not CPP_NULL_BUFFER.
9987 * cppinit.c: Use NULL not CPP_NULL_BUFFER, IF_STACK not
9988 IF_STACK_FRAME, IHASH not struct include_hash.
9989 * cpplib.c: Rename eval_if_expression to eval_if_expr. Remove
9990 null_underflow. Use IF_STACK not IF_STACK_FRAME, IHASH not
9991 struct include_hash, NULL not CPP_NULL_BUFFER. Remove all
9992 references to cpp_buffer->fname (delete entirely, or use
9993 ->ihash->name instead) and IF_STACK->fname.
9994 (cpp_push_buffer): Don't set new->underflow.
9995 (do_include): Use cpp_file_buffer.
9996
9997 * cpphash.c (collect_formal_parameters): Remove duplicate
9998 increment of argslen. Pedwarn in C99 mode if __VA_ARGS__ is
9999 used as a macro argument name. Don't append "..." to namebuf
10000 for varargs macros. After we're done scanning, go through
10001 namebuf and make it NUL separated, not comma separated.
10002 (_cpp_compare_defs): Remove register tag from variables.
10003 Expect defn->argnames to be NUL separated.
10004 (_cpp_dump_definition): Expect defn->argnames to be NUL
10005 separated and in forward order.
10006 * cpphash.h: Update documentation of argnames field.
10007
10008 2000-03-08 Richard Henderson <rth@cygnus.com>
10009
10010 * builtins.c (expand_builtin_strlen): Be prepared for strlensi
10011 to fail. Don't pre-expand the source operand.
10012
10013 * i386.md (strlensi): Initialize eoschar and align before use.
10014
10015 2000-03-08 Jason Merrill <jason@casey.cygnus.com>
10016
10017 * expr.c (expand_expr, case ARRAY_REF): Still check for missing
10018 CONSTRUCTOR element.
10019
10020 2000-03-08 Gavin Romig-Koch <gavin@cetus.cygnus.com>
10021
10022 * mips.c (mips_expand_prologue): If the last
10023 named argument is the vararg marker "va_list", treat it as
10024 an unnamed argument.
10025
10026 2000-03-08 Clinton Popetz <cpopetz@cygnus.com>
10027
10028 * dbxout.c (dbxout_parms): When correcting for promoted
10029 big-endian parameters, use the mode of the DECL_RTL rather
10030 than UNITS_PER_WORD.
10031
10032 2000-03-08 Nathan Sidwell <nathan@codesourcery.com>
10033
10034 * c-common.h (make_fname_decl): Declare.
10035 * c-common.c (make_fname_decl): Define.
10036 (declare_hidden_char_array): Remove.
10037 (declare_function_name): Use make_fname_decl.
10038 * c-decl.c (c_make_fname_decl): New function.
10039 (init_decl_processing): Set make_fname_decl.
10040
10041 Tue Mar 7 23:50:31 2000 Jeffrey A Law (law@cygnus.com)
10042
10043 * cccp.c (handle_directive): Initialize backslash_newlines_p.
10044
10045 2000-03-07 Philipp Thomas <pthomas@suse.de>
10046
10047 * po/POTFILES.in: Remove cppalloc.c from file list.
10048
10049 2000-03-07 Steve Chamberlain <sac@pobox.com>
10050
10051 * pj.c (pj_expand_prologue): current_function->args_info is
10052 now current_function_args_info.
10053
10054 * pj.h (STORE_FLAG_VALUE, USER_LABEL_PREFIX,
10055 LOCAL_LABEL_PREFIX, ASM_GENERATE_INTERNAL_LABEL,
10056 ASM_OUTPUT_INTERNAL_LABEL, ASM_OUTPUT_SKIP): Define.
10057
10058 2000-03-08 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10059
10060 * config/c4x/c4x.h (PUT_SDB_TYPE): Define so that the type info is
10061 output as hexadecimal rather than the default octal.
10062
10063 2000-03-07 Zack Weinberg <zack@wolery.cumb.org>
10064
10065 * cpphash.c (special_symbol): Fix thinko in previous commit.
10066
10067 2000-03-07 Neil Booth <NeilB@earthling.net>
10068
10069 * cppexp.c (struct operation, left_shift, right_shift,
10070 cpp_parse_expr): Change some "char"s to "U_CHAR"s, and some
10071 "int"s to "unsigned int"s.
10072 * cpplib.c (detect_if_not_defined, do_assert, do_unassert):
10073 Similarly.
10074 * cpplib.h: Update for above.
10075 * mkdeps.c (deps_init, deps_calc_target): Cast pointers
10076 returned from allocations.
10077
10078 * cppinit.c (opt_comp, parse_options): New functions.
10079 (handle_option): Use parse_option to parse a single command
10080 line option, that possibly takes an argument.
10081 (cpp_handle_options): Sort the array of command line options on
10082 first invocation (non-ASCII hosts only).
10083 (print_help): Update.
10084
10085 2000-03-07 Zack Weinberg <zack@wolery.cumb.org>
10086
10087 * mkdeps.c (munge): Fix off-by-one bug and inconsistencies in
10088 backslash counting loops. Problem noted by Matt Kraai <kraai@ghs.com>.
10089
10090 * cppfiles.c (_cpp_find_include_file): Make sure ih->name is
10091 initialized.
10092 * cppinit.c (cpp_cleanup): Free imp->nshort also.
10093
10094 * cpperror.c (cpp_print_containing_files,
10095 cpp_print_file_and_line, v_cpp_message): Rename to
10096 print_containing_files, print_file_and_line, and v_message.
10097 * cppexp.c (cpp_parse_expr, cpp_parse_escape, cpp_lex): Rename
10098 to _cpp_parse_expr, parse_escape, and lex.
10099 (parse_charconst): Remove broken multibyte support.
10100 * cppfiles.c (include_hash): Make static.
10101 (cpp_included): New function.
10102 (merge_include_chains, find_include_file, finclude,
10103 simplify_pathname): Rename to _cpp_merge_include_chains,
10104 _cpp_find_include_file, _cpp_read_include_file, and
10105 _cpp_simplify_pathname.
10106 * cpphash.c (cpp_lookup, free_definition, delete_macro,
10107 cpp_install, create_definition, macroexpand, compare_defs,
10108 dump_definition): Rename to _cpp_lookup, _cpp_free_definition,
10109 _cpp_delete_macro, _cpp_install, _cpp_create_definition,
10110 _cpp_macroexpand, _cpp_compare_defs, and _cpp_dump_definition.
10111 * cppinit.c (cpp_handle_option): Rename to handle_option, make
10112 static.
10113 * cpplib.c: Remove extern prototype of cpp_parse_expr.
10114
10115 * cpphash.h: Update prototypes.
10116 * cpplib.h: Likewise. Prototype _cpp_parse_expr here.
10117
10118 2000-03-07 Andrew Haley <aph@cygnus.com>
10119
10120 * config/mips/mips.h (PTRDIFF_TYPE): Revert broken change;
10121 PTRDIFF_TYPE should be based solely on Pmode.
10122 (SIZE_TYPE): ditto.
10123
10124 2000-03-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10125
10126 * rtl.h (rtunion_def): Constify member `rtstr'.
10127 (emit_line_note_after, emit_line_note, emit_line_note_force,
10128 emit_note, decode_asm_operands): Constify.
10129
10130 * cse.c (canon_hash): Likewise.
10131
10132 * dbxout.c (dbxout_block): Likewise.
10133
10134 * diagnostic.c (file_and_line_for_asm, v_error_for_asm,
10135 v_warning_for_asm): Likewise.
10136
10137 * dwarfout.c (function_start_label): Likewise.
10138
10139 * emit-rtl.c (emit_line_note_after, emit_line_note, emit_note,
10140 emit_line_note_force): Likewise.
10141
10142 * final.c (last_filename, asm_insn_count, final_scan_insn,
10143 output_source_line): Likewise.
10144
10145 * function.h (struct emit_status): Likewise.
10146
10147 * gcse.c (hash_expr_1): Likewise.
10148
10149 * genattr.c (gen_attr, main): Likewise.
10150
10151 * genattrtab.c (struct function_unit, current_alternative_string,
10152 write_attr_valueq, n_comma_elts, next_comma_elt, attr_eq,
10153 attr_numeral, check_attr_test, check_attr_value,
10154 convert_set_attr_alternative, convert_set_attr,
10155 compute_alternative_mask, simplify_by_exploding, gen_attr,
10156 gen_unit): Likewise.
10157
10158 * genflags.c (gen_insn): Likewise.
10159
10160 * gengenrtl.c (type_from_format): Likewise.
10161
10162 * genopinit.c (gen_insn): Likewise.
10163
10164 * genoutput.c (n_occurrences, process_template, process_template):
10165 Likewise.
10166
10167 * ggc-page.c (ggc_set_mark, ggc_mark_if_gcable, ggc_get_size):
10168 Likewise.
10169
10170 * ggc-simple.c (ggc_set_mark, ggc_mark_if_gcable, ggc_get_size):
10171 Likewise.
10172
10173 * ggc.h (ggc_mark_string, ggc_mark, ggc_mark_if_gcable,
10174 ggc_set_mark, ggc_get_size): Likewise.
10175
10176 * objc/objc-act.c (build_module_descriptor, finish_objc): Likewise.
10177
10178 * optabs.c (init_one_libfunc): Likewise.
10179
10180 * output.h (assemble_start_function): Likewise.
10181
10182 * recog.c (decode_asm_operands): Likewise.
10183
10184 * toplev.c (rest_of_compilation): Likewise.
10185
10186 * tree.h (emit_line_note_after, emit_line_note,
10187 emit_line_note_force): Likewise.
10188
10189 * varasm.c (asm_output_bss, asm_output_aligned_bss,
10190 asm_emit_uninitialised, assemble_start_function,
10191 assemble_variable, const_hash, compare_constant_1,
10192 find_pool_constant, mark_constant_pool, assemble_alias): Likewise.
10193
10194 * xcoffout.h (DBX_FINISH_SYMBOL): Likewise.
10195
10196 * alpha/alpha.md (call_vms, call_value_vms): Likewise.
10197
10198 * arm/aof.h (ASM_OUTPUT_ASCII): Likewise.
10199
10200 * arm/aout.h (ASM_OUTPUT_ASCII): Likewise.
10201
10202 * arm/arm-protos.h (output_ascii_pseudo_op, arm_dllexport_name_p,
10203 arm_dllimport_name_p): Likewise.
10204
10205 * arm/arm.c (arm_encode_call_attribute, output_ascii_pseudo_op):
10206 Likewise.
10207
10208 * arm/arm.h (ASM_OUTPUT_MI_THUNK): Likewise.
10209
10210 * arm/elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10211
10212 * arm/pe.c (arm_dllexport_name_p, arm_dllimport_name_p,
10213 arm_mark_dllexport, arm_mark_dllimport,
10214 arm_pe_encode_section_info): Likewise.
10215
10216 * arm/telf.h (ASM_OUTPUT_DEF_FROM_DECLS,
10217 ASM_FINISH_DECLARE_OBJECT): Likewise.
10218
10219 * arm/thumb.c (thumb_function_prologue): Likewise.
10220
10221 * arm/thumb.h (ASM_OUTPUT_ASCII): Likewise.
10222
10223 * avr/avr.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10224
10225 * clipper/clix.h (ASM_OUTPUT_ASCII): Likewise.
10226
10227 * fx80/fx80.h (ASM_OUTPUT_ASCII): Likewise.
10228
10229 * i386/cygwin.h (ASM_OUTPUT_SECTION_NAME): Likewise.
10230
10231 * i386/freebsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10232
10233 * i386/i386-interix.h (ASM_OUTPUT_LIMITED_STRING,
10234 ASM_OUTPUT_ASCII, ASM_OUTPUT_SECTION_NAME): Likewise.
10235
10236 * i386/i386-protos.h (asm_output_function_prefix): Likewise.
10237
10238 * i386/i386.c (asm_output_function_prefix): Likewise.
10239
10240 * i386/i386elf.h (ASM_OUTPUT_ASCII): Likewise.
10241
10242 * i386/osfrose.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10243
10244 * i386/ptx4-i.h (ASM_OUTPUT_ASCII): Likewise.
10245
10246 * i386/sco5.h (ASM_FINISH_DECLARE_OBJECT,
10247 ASM_OUTPUT_LIMITED_STRING, ASM_OUTPUT_ASCII,
10248 ASM_OUTPUT_SECTION_NAME): Likewise.
10249
10250 * i386/sysv4.h (ASM_OUTPUT_ASCII): Likewise.
10251
10252 * i860/paragon.h (ASM_OUTPUT_ASCII): Likewise.
10253
10254 * i860/sysv3.h (ASM_OUTPUT_ASCII): Likewise.
10255
10256 * m32r/m32r.c (m32r_encode_section_info): Likewise.
10257
10258 * mcore-elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10259
10260 * mcore/mcore.c (mcore_encode_section_info): Likewise.
10261
10262 * mips/elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10263
10264 * mips/elf64.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10265
10266 * mips/iris6.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10267
10268 * mips/mips.h (ASM_OUTPUT_IDENT): Likewise.
10269
10270 * mips/mips.md (movdi, movsi): Likewise.
10271
10272 * mips/netbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10273
10274 * netbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10275
10276 * openbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
10277
10278 * ptx4.h (ASM_FINISH_DECLARE_OBJECT, ASM_OUTPUT_LIMITED_STRING,
10279 ASM_OUTPUT_ASCII): Likewise.
10280
10281 * rs6000/rs6000.c (rs6000_allocate_stack_space, output_epilog,
10282 output_mi_thunk, output_toc): Likewise.
10283
10284 * rs6000/rs6000.md (movsi): Likewise.
10285
10286 * rs6000/sysv4.h (ASM_OUTPUT_INT, ASM_OUTPUT_SECTION_NAME): Likewise.
10287
10288 * tahoe/harris.h (ASM_OUTPUT_ASCII): Likewise.
10289
10290 * v850/v850.c (print_operand, print_operand_address,
10291 v850_encode_data_area): Likewise.
10292
10293 2000-03-07 Clinton Popetz <cpopetz@cygnus.com>
10294
10295 * config/mips/mips.md (zero_extendsidi2): Always force operand
10296 one to memory for mips16.
10297
10298 Mon Mar 6 15:22:29 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10299
10300 * tree.h (INT_CST_LT, INT_CST_LT_UNSIGNED): Remove unneeded casts.
10301 (struct tree_int_cst): int_cst_low is now unsigned HOST_WIDE_INT.
10302 (attribute_hash_list, type_hash_canon): hashcode is now unsigned.
10303 (type_hash_lookup, type_hash_add, type_hash_list): Likewise.
10304 (min_precision): Result is unsigned.
10305 (add_double, neg_double, mul_double): Low word is unsigned.
10306 (lshift_double, rshift_double, lrotate_double): Likewise.
10307 (rrotate_double, div_and_round_double): Likewise.
10308 (tree_floor_log2, compare_tree_int): New functions.
10309 (preserve_rtl_expr_temps): New declaration.
10310 * c-common.c (declare_hidden_char_array): Use compare_tree_int.
10311 (decl_attributes): Use tree_log2 to find alignment.
10312 Check for TREE_INT_CST_HIGH for format args.
10313 (min_precision): Now unsigned.
10314 Use tree_floor_log2.
10315 (truthvalue_conversion): Delete long-disabled code.
10316 * c-decl.c (finish_struct): Clean up tests on field width.
10317 (finish_function): Use compare_tree_int.
10318 * c-pragma.c (handle_pragma_token): Use tree_log2 for alignment.
10319 * c-typeck.c (comptypes): Use tree_int_cst_equal.
10320 (default_conversion, digest_init): Use compare_tree_int.
10321 (build_binary_op): Use integer_all_onesp and compare_tree_int.
10322 Fix type errors in forming masks.
10323 * calls.c (initialize_argument_information): Use compare_tree_int.
10324 * dbxout.c (dbxout_type): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
10325 * except.c (expand_eh_region_start_tree): Use compare_tree_int.
10326 * expr.c (is_zeros_p, case INTEGER_CST): Use integer_zerop.
10327 (store_field): Use compare_tree_int.
10328 (expand_expr, case CONSTRUCTOR): Use TYPE_SIZE_UNIT.
10329 (expand_expr, case ARRAY_REF): Use compare_tree_int.
10330 (do_jump, case BIT_AND_EXPR): Use tree_floor_log2.
10331 (do_store_flag): Use compare_tree_int.
10332 * fold-const.c (encode, decode): Low part is always unsigned.
10333 (force_fit_type, add_double, neg_double, mul_double): Likewise.
10334 (lshift_double, rshift_double, lrotate_double): Likewise.
10335 (rrotate_double, div_and_round_double, int_const_binop): Likewise.
10336 (fold_convert): Use compare_tree_int.
10337 (operand_equal_p, case INTEGER_CST): Use tree_int_cst_equal.
10338 (invert_truthvalue, case INTEGER_CST): Likewise.
10339 (fold): Use compare_tree_int; add casts for unsigned TREE_INT_CST_LOW.
10340 * mkdeps.c (deps_dummy_targets): Make I unsigned.
10341 * rtl.h (add_double, neg_double, mul_double): Low words are unsigned.
10342 (lshift_double, rshift_double, lrotate_double, rrotate_double):
10343 Likewise.
10344 * stmt.c (expand_decl): Use compare_tree_int and mode_for_size_tree.
10345 (expand_end_case): Use compare_tree_int.
10346 (estimate_case_costs): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
10347 * stor-layout.c (mode_for_size_tree): Use compare_tree_int.
10348 (layout_decl): Likewise.
10349 (layout_record, layout_union): Make sizes unsigned.
10350 (layout_type, case VOID_TYPE): TYPE_SIZE must be bitsizetype.
10351 (layout_type, case QUAL_UNION_TYPE): Use compare_tree_int.
10352 * tree.c (struct type_hash): hashcode is unsigned.
10353 (build_type_attribute_variant, type_hash_list): Likewise.
10354 (type_hash_lookup, type_hash_add, type_hash_canon): Likewise.
10355 (attribute_hash_list, build_array_type, build_method_type): Likewise.
10356 (build_complex_type): Likewise.
10357 (real_value_from_int_cst): Remove unneeded casts.
10358 (integer_all_onesp): Add casts.
10359 (tree_floor_log2, compare_tree_int): New functions.
10360 (build_index_type): Use tree_int_cst_sgn.
10361 * varasm.c (assemble_variable): Use compare_tree_int.
10362
10363 2000-03-06 Jason Merrill <jason@casey.cygnus.com>
10364
10365 * cpphash.c (collect_expansion): Also catch ## at start of macro.
10366
10367 * varasm.c (make_decl_rtl): Don't add a number to members of
10368 local classes.
10369 (make_function_rtl): Likewise.
10370
10371 2000-03-06 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
10372
10373 * gcse.c (compute_can_copy): Adjust if/else blocks from rth's
10374 patch from 2000-01-28.
10375
10376 2000-03-06 Clinton Popetz <cpopetz@cygnus.com>
10377
10378 * config/sh/sh.c: (barrier_align): Handle a delay slot that is
10379 filled with an insn from the jump target.
10380
10381 2000-03-07 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
10382
10383 * config/c4x/c4x-protos.h (c4x_global_name): Constify char *.
10384 (c4x_external_ref): Likewise.
10385 * config/c4x/c4x.c (struct name_list): Likewise.
10386
10387 1999-12-16 Ben Collins <bcollins@debian.org>
10388
10389 * Makefile.in: Pass a new MULTILIB_EXCLUSIONS option as the sixth
10390 argument to genmultilib.
10391 * genmultilib: accept new MULTILIB_EXCLUSIONS option and output
10392 the contents into the multilib.h header.
10393 * gcc.c: Declare multilib_exclusions for the specs file.
10394 (set_multilib_dir): Use it.
10395 (print_multilib_info): Likewise.
10396 * t-linux64: Declare arguments for new MULTILIB_EXCLUSIONS option
10397 to pass to genmultilib.
10398
10399 2000-03-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10400
10401 * builtins.c (built_in_class_names, built_in_names): Constify a
10402 char*.
10403
10404 * gmon-sol2.c (monstartup, moncontrol): Cast ptrs to long, not
10405 int.
10406 (_mcleanup): Ensure value matches format specifier in sprintf.
10407
10408 * cpphash.c (special_symbol): Don't needlessly cast away
10409 const-ness.
10410
10411 * cppinit.c (base_name): Delete unused prototype.
10412
10413 * mkdeps.c (deps_init): Make definition K&R safe.
10414
10415 * tree.h (built_in_class_names, built_in_names): Constify a
10416 char*.
10417
10418 2000-03-06 Jakub Jelinek <jakub@redhat.com>
10419
10420 * config/sparc/sparc.c (eligible_for_epilogue_delay): Accept
10421 floating point instructions for epilogue delay.
10422
10423 * config/sparc/sparc.h (ASM_ARCH64_SPEC): Pass -no-undeclared-regs
10424 to gas if it supports .register pseudo.
10425
10426 * real.h (MAX_LONG_DOUBLE_TYPE_SIZE): Define to
10427 LONG_DOUBLE_TYPE_SIZE if not defined.
10428 Use MAX_LONG_DOUBLE_TYPE_SIZE instead of
10429 LONG_DOUBLE_TYPE_SIZE in preprocessor if clauses.
10430 * real.c: Likewise.
10431 * gengenrtl.c: Likewise.
10432 * print-rtl.c: Likewise.
10433 * rtl.c: Likewise.
10434 * config/sparc/sol2-sld-64.h (TARGET_DEFAULT): Set
10435 MASK_LONG_DOUBLE_128.
10436 * config/sparc/sol2.h (TARGET_DEFAULT): Likewise.
10437 * config/sparc/sp64-elf.h (TARGET_DEFAULT): Likewise.
10438 * config/sparc/linux64 (TARGET_DEFAULT): Likewise.
10439 (SUBTARGET_SWITCHES): Define.
10440 (CPP_ARCH32_SPEC): Define __LONG_DOUBLE_128__ if compiling
10441 with -mlong-double-128.
10442 (LONG_DOUBLE_TYPE_SIZE): Define depending on target_flags.
10443 (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
10444 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on CPP macros.
10445 (CC1_SPEC): Include -mlong-double-{64,128} as needed.
10446 * config/sparc/linux.h (SUBTARGET_SWITCHES): Define.
10447 (CPP_SUBTARGET_SPEC): Define __LONG_DOUBLE_128__ if compiling
10448 with -mlong-double-128.
10449 (LONG_DOUBLE_TYPE_SIZE): Define depending on target_flags.
10450 (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
10451 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on CPP macros.
10452 * config/sparc/sparc.h (MASK_LONG_DOUBLE_128,
10453 TARGET_LONG_DOUBLE_128): Define.
10454 * config/sparc/linux-aout.h (LONG_DOUBLE_TYPE_SIZE): Remove.
10455 * config/sparc/sparc.c (sparc_override_options): Disallow 64bit
10456 long double on TARGET_ARCH64.
10457
10458 2000-03-06 Mark Mitchell <mark@codesourcery.com>
10459
10460 * function.c (free_temps_for_rtl_expr): Don't free slots
10461 that have been pushed into a higher level.
10462
10463 Revert this patch:
10464 2000-03-05 Mark Mitchell <mark@codesourcery.com>
10465
10466 2000-03-05 Mark Mitchell <mark@codesourcery.com>
10467
10468 * basic-block.h (ALLOCA_REG_SET): Remove.
10469 (INITIALIZE_REG_SET): New macro.
10470 * flow.c (update_life_info): Use it.
10471 (calculate_global_regs_live): Likewise.
10472 (propagate_block): Likewise.
10473 * global.c (build_insn_chain): Likewise.
10474 * haifa-sched.c (schedule_region): Likewise.
10475
10476 2000-03-05 Stephane Carrez <stcarrez@worldnet.fr>
10477
10478 * dwarf2out.c (UNALIGNED_WORD_ASM_OP): Support 2 bytes pointer.
10479 (ASM_OUTPUT_DWARF_ADDR_CONST): Use UNALIGNED_WORD_ASM_OP.
10480 (DWARF_ARANGES_PAD_SIZE): New define.
10481 (output_aranges): Use it to pad the address range header.
10482 (DWARF_ROUND): Fix for non power of 2 rounding.
10483
10484 2000-03-05 Jason Merrill <jason@casey.cygnus.com>
10485
10486 * mkdeps.c (deps_calc_target): Remove incorrect 'const'.
10487
10488 2000-03-05 Mark Mitchell <mark@codesourcery.com>
10489
10490 * tree.def (RTL_EXPR): Update documentation.
10491 * tree.h (RTL_EXPR_HAS_NO_SCOPE): New macro.
10492 * expr.c (expand_expr): Handle RTL_EXPR_HAS_NO_SCOPE.
10493 * function.c (preserve_rtl_expr_temp): New function.
10494 (preserve_rtl_expr_temps): Likewise.
10495 (preserve_rtl_expr_result): Use it.
10496
10497 Revert this patch:
10498 2000-03-04 Mark Mitchell <mark@codesourcery.com>
10499
10500 2000-03-04 Thomas Schuster <Thomas.Schuster@gmx.net>
10501
10502 * regmove.c (copy_src_to_dest) Do not create src->dest move
10503 for unchanging destination.
10504
10505 2000-03-04 Mark Mitchell <mark@codesourcery.com>
10506
10507 * function.h (struct sequence_stack): Remove rtl_expr.
10508 (struct emit_staus): Likewise.
10509 (seq_rtl_expr): Remove.
10510 * tree.h (free_temps_for_rtl_expr): Don't declare.
10511 (start_sequence_for_rtl_expr): Likewise.
10512 * rtl.h (preserve_rtl_expr_result): Likewise.
10513 * emit-rtl.c (start_sequence): Don't set sequence_rtl_expr.
10514 (start_sequence_for_rtl_expr): Remove.
10515 (push_topmost_sequence): Don't save sequence_rtl_expr.
10516 (pop_topmost_sequence): Remove comment about not restoring it.
10517 (end_sequence): Don't set seq_rtl_expr.
10518 (init_emit): Don't initialize it.
10519 (mark_sequence_stack): Don't mark it.
10520 (mark_emit_status): Likewise.
10521 * except.c (protect_with_terminate): Use
10522 start_sequence_for_rtl_expr, not start_sequence.
10523 * expr.c (expand_expr, case RTL_EXPR): Don't call
10524 preserve_rtl_expr_result or free_temps_for_rtl_expr.
10525 * function.c (assign_stack_temp_for_type): Don't set rtl_expr.
10526 (preserve_rtl_expr_result): Remove.
10527 (free_temps_for_rtl_expr): Likewise.
10528 (pop_temp_slots): Likewise.
10529 (mark_temp_slot): Don't mark the rtl_expr.
10530 * stmt.c (expand_start_stmt_expr): Use start_sequence, not
10531 start_sequence_for_rtl_expr.
10532
10533 2000-03-04 Zack Weinberg <zack@wolery.cumb.org>
10534
10535 * mkdeps.c, mkdeps.h: New files.
10536 * po/POTFILES.in: Add them.
10537 * Makefile.in (LIBCPP_OBJS): Add mkdeps.o.
10538 (cpplib.o, cppinit.o): Depend on mkdeps.h.
10539 (mkdeps.o): New target.
10540
10541 * cppfiles.c: Delete deps_output.
10542 * cppinit.c: Include mkdeps.h. Delete known_suffixes,
10543 OBJECT_SUFFIX, and base_name.
10544 (cpp_cleanup): Use deps_free. Free ihash->name when clearing
10545 the include hash.
10546 (initialize_dependency_output): Use deps_init,
10547 deps_add_target, deps_calc_target, and deps_add_dep. Remove
10548 all the unnecessary string bashing.
10549 (cpp_finish): Use deps_write. Remove an unnecessary nesting
10550 level.
10551 * cpplib.c (do_include): Use deps_add_dep.
10552 * cpplib.h (struct cpp_reader): Replace deps_buffer,
10553 deps_allocated_size, deps_size, deps_column members with
10554 single pointer to a struct deps. Delete prototype of
10555 deps_output.
10556
10557 * cppinit.c: Fix thinko in previous patch.
10558
10559 Sat Mar 4 11:32:30 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10560
10561 * machmode.h (mode_for_size, smallest_mode_for_size): SIZE now signed.
10562 * stor-layout.c (mode_for_size, smallest_mode_for_size): Likewise.
10563 (mode_for_size_tree): New function.
10564 (layout_decl, layout_type): Call it and clean up BLKmode checks.
10565 * tree.h (mode_for_size_tree): New declaration.
10566
10567 * toplev.c (debug_ignore_block): Mark arg BLOCK as possibly unused.
10568
10569 2000-03-04 Jason Merrill <jason@casey.cygnus.com>
10570
10571 * stmt.c (is_body_block): Move...
10572 * dwarfout.c, dwarf2out.c: ...from here.
10573 * tree.h: Declare it.
10574 * emit-rtl.c (remove_unncessary_notes): Don't remove the body block.
10575 * final.c (final_start_function): Do call remove_unnecessary_notes
10576 when scheduling.
10577
10578 2000-03-03 Zack Weinberg <zack@wolery.cumb.org>
10579
10580 * config/vax/xm-vms.h: Define OBJECT_SUFFIX and EXECUTABLE_SUFFIX.
10581
10582 * cpplib.h (_dollar_ok): New macro.
10583 (is_idchar, is_idstart): Use it.
10584 (IStable): Rename to _cpp_IStable. Declare it const if
10585 gcc >=2.7 or C99. Delete all references to FAKE_CONST.
10586 (is_idchar, is_idstart, is_numchar, is_numstart, is_hspace,
10587 is_space): Update for renamed IStable.
10588
10589 * cppinit.c: Delete all references to FAKE_CONST and CAT
10590 macros. Define init_IStable as empty macro if gcc >=2.7 or
10591 C99. Change TABLE() to ISTABLE and hardcode name of table.
10592 (cpp_start_read): Don't change the IStable based on
10593 dollars_in_ident.
10594
10595 * cpphash.c (unsafe_chars): Add pfile argument. All callers
10596 changed. Handle '$' for char1 correctly.
10597 * cpplib.c (cpp_get_token): Use is_numchar when parsing numbers.
10598
10599 * cppexp.c (tokentab2): Make const.
10600 (cpp_lex): Make toktab const.
10601 * cppinit.c (include_defaults_array): Make const.
10602 (initialize_standard_includes): Make default_include const.
10603
10604 2000-03-03 Jason Merrill <jason@casey.cygnus.com>
10605
10606 * dwarf2out.c (dwarf2out_frame_debug): Add cast to silence warning.
10607 (dwarf2out_decl): Functions can now have DECL_IGNORED_P.
10608 (gen_decl_die): Likewise.
10609 * dwarfout.c (dwarfout_file_scope_decl): Likewise.
10610 (output_decl): Likewise.
10611
10612 * varasm.c (make_function_rtl): If we change the name used in the
10613 rtl, update DECL_ASSEMBLER_NAME accordingly.
10614 (make_decl_rtl): Likewise.
10615
10616 * toplev.c (rest_of_compilation): Tweak formatting.
10617
10618 * toplev.c (rest_of_compilation): find_loop_tree_blocks before
10619 remove_unnecessary_notes.
10620 (debug_ignore_block): New fn.
10621 * toplev.h: Declare it.
10622 * emit-rtl.c (remove_unncessary_notes): Call it.
10623 * dwarf2out.c (dwarf2out_ignore_block): New fn.
10624 * dwarf2out.h: Declare it.
10625 * final.c (final_start_function): Don't call remove_unnecessary_notes
10626 if we did insn scheduling.
10627
10628 2000-03-03 Zack Weinberg <zack@wolery.cumb.org>
10629
10630 * cppinit.c (cpp_handle_option): Set opts->pedantic directly.
10631 * cpplib.h: Delete SET_CPP_PEDANTIC.
10632
10633 Fri Mar 3 14:56:12 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10634
10635 * expr.c (expand_expr, case COMPONENT_REF): Use bitfield case if
10636 result is a RECORD_TYPE.
10637
10638 2000-03-03 Jonathan Larmour <jlarmour@cygnus.co.uk>
10639
10640 * mips/elf.h (CTOR_LISTS_DEFINED_EXTERNALLY): Added.
10641
10642 2000-03-03 Richard Henderson <rth@cygnus.com>
10643
10644 * alpha.c (alpha_emit_set_const_1): Re-order cases to prefer
10645 addition over compliments over shifts.
10646
10647 Fri Mar 3 12:49:28 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
10648
10649 * reload1.c (reload_combine_note_use): Handle return register USEs.
10650 REG case: Handle multi-hard-register hard regs.
10651
10652 Fri Mar 3 07:38:34 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10653
10654 * md.texi: Document use of '*' in insn pattern name.
10655
10656 2000-03-03 Jason Merrill <jason@casey.cygnus.com>
10657
10658 * calls.c (special_function_p): operator new may not be malloc-like.
10659
10660 * gcse.c (dump_hash_table): Really fix error in last change.
10661
10662 2000-03-02 Denis Chertykov <denisc@overta.ru>
10663
10664 * avr.c (print_operand): Use print_operand_address instead of
10665 output_addr_const.
10666 * avr/libgcc.S: Cleanup code.
10667
10668 2000-03-02 Richard Henderson <rth@cygnus.com>
10669
10670 * alpha.c (alpha_emit_set_const_1): Also try c + small constant.
10671
10672 2000-03-02 Mark Mitchell <mark@codesourcery.com>
10673
10674 * tree.h (TYPE_ALIGN_UNIT): New macro.
10675
10676 2000-03-02 Clinton Popetz <cpopetz@cygnus.com>
10677
10678 * i386.c: (constant_call_address_operand): Reject CONST_INT.
10679
10680 2000-03-02 Jason Merrill <jason@casey.cygnus.com>
10681
10682 * cpplib.h (CPP_PEDANTIC): Only true if system_header_p is not set
10683 for the buffer.
10684 (SET_CPP_PEDANTIC): New macro.
10685 * cpplib.c (do_include): Don't bother checking system_header_p.
10686 (do_warning, do_ident, do_assert, do_unassert): Likewise.
10687 * cppinit.c (cpp_handle_option): Use SET_CPP_PEDANTIC.
10688
10689 * function.h (struct expr_status): Add x_arg_space_so_far.
10690 (arg_space_so_far): New macro.
10691 * expr.c (init_expr): Initialize it.
10692 * calls.c (emit_call_1): Reset it.
10693 (compute_argument_block_size, expand_call): Use it.
10694 (expand_call, store_one_arg): Increment it.
10695
10696 Thu Mar 2 17:27:13 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10697
10698 * varasm.c (output_constant): Strip off a CONVERT_EXPR to
10699 a UNION_TYPE.
10700
10701 2000-03-02 Zack Weinberg <zack@wolery.cumb.org>
10702
10703 * cppfiles.c (cpp_read_file): New function.
10704
10705 * cpphash.c (collect_expansion): Make sure to reset last_token
10706 to NORM when we hit a string. Handle trailing whitespace
10707 properly when the expansion is empty.
10708 (create_definition): Disable line commands while parsing the
10709 directive line.
10710 (dump_definition): If pfile->lineno == 0, output a line
10711 command ahead of the dump, and add a trailing newline.
10712
10713 * cppinit.c (append_include_chain): Add fifth argument, which
10714 indicates whether or not system headers are C++ aware.
10715 (initialize_standard_includes): New function,
10716 broken out of read_and_prescan. Pass 'cxx_aware' value from
10717 the include_defaults_array on to append_include_chain.
10718 (dump_special_to_buffer): Const-ify char array.
10719 (builtin_array): Don't dump __BASE_FILE__.
10720 (cpp_start_read): Use cpp_read_file. Reorder code for
10721 clarity. Don't output line commands here for -D/-A/-U
10722 switches. Don't call deps_output for files included with
10723 -include or -imacros.
10724
10725 * cpplib.c (do_define): Don't pay any attention to the second
10726 argument.
10727 (cpp_expand_to_buffer): Disable line commands while scanning.
10728 (output_line_command): Work in the file buffer.
10729 * cpplib.h: Remove no_record_file flag from struct cpp_reader.
10730 Fix formatting of comments. Prototype cpp_read_file.
10731
10732 Thu Mar 2 13:29:46 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10733
10734 * c-common.c (c_common_nodes_and_builtins): Make sizetype_endlink
10735 reference the language-equivalent of sizetype.
10736 * c-typeck.c (comptypes): Treat sizetype like its language equivalent.
10737 * fold-const.c (size_binop, size_diffop): Put back checks.
10738 * gcse.c (dump_hash_table): Fix minor error in last change.
10739 * stor-layout.c (set_sizetype): Set TYPE_DOMAIN of sizetype.
10740 Clear TYPE_{NEXT,MAIN}_VARIANT and TYPE_{POINTER,REFERENCE}_to of
10741 all sizetypes.
10742
10743 Thu Mar 2 12:48:45 MET 2000 Jan Hubicka <jh@suse.cz>
10744
10745 * calls.c (expand_call) Do not attempt to combine stack adjustments
10746 with inhibit_defer_pop set.
10747
10748 2000-03-01 Mark Mitchell <mark@codesourcery.com>
10749
10750 * stor-layout.c (layout_decl): Allow front-ends to explicitly set
10751 the DECL_SIZE for a FIELD_DECL.
10752
10753 2000-03-01 Bruce Korb <bkorb@gnu.org>
10754
10755 * fixinc/inclhack.tpl: remove unused symlinks
10756 * fixinc/README: GCC Maintainer info
10757 * fixinc/inclhack.sh: regen
10758 * fixinc/fixincl.sh: regen
10759
10760 2000-03-01 Zack Weinberg <zack@wolery.cumb.org>
10761
10762 * cpphash.c (collect_expansion): Trim trailing white space
10763 from macro definitions, but don't go past the last insertion
10764 point.
10765
10766 Wed Mar 1 12:14:31 MET 2000 Jan Hubicka <jh@suse.cz>
10767
10768 * i386.md (mulqi3): New pattern.
10769
10770 2000-02-29 Zack Weinberg <zack@wolery.cumb.org>
10771
10772 * cpplib.h (CPP_ASSERTION, CPP_STRINGIZE, CPP_TOKPASTE): New
10773 token types.
10774 (struct cpp_reader): Add parsing_if_directive and
10775 parsing_define_directive flags.
10776 (struct cpp_options): Remove output_conditionals flag.
10777 (check_macro_name): Delete prototype.
10778
10779 * cpphash.h (struct macrodef): Delete.
10780 (struct reflist): Separate from struct definition.
10781 (struct definition): Remove unused fields. Add column number.
10782 (create_definition): Returns a DEFINITION *. Takes a
10783 cpp_reader * and an int.
10784
10785 * cpphash.c (SKIP_WHITE_SPACE): Delete.
10786 (PEEKC): Copy defn from cpplib.c.
10787 (rest_extension, REST_EXTENSION_LENGTH): Delete.
10788 (struct arg): New.
10789 (struct arglist): Simplify.
10790 (collect_expansion): Rewrite. Get tokens by calling
10791 cpp_get_token. Add more error checking.
10792 (collect_formal_parameters): New function, broken out of
10793 create_definition and reworked to use get_directive_token.
10794 (create_definition): All real work is now in collect_expansion
10795 and collect_formal_parameters. do_define handles finding the
10796 macro name. Return a DEFINITION, not a MACRODEF.
10797 (macroexpand): Replace bcopy with memcpy throughout. Replace
10798 character-at-a-time copy loop with memcpy and pointer increments.
10799 (compare-defs): d1->argnames / d2->argnames might be null.
10800
10801 * cpplib.c (copy_rest_of_line): Delete function.
10802 (skip_rest_of_line): Do all the work ourselves.
10803 (skip_string): New function.
10804 (parse_string): Use skip_string.
10805 (get_macro_name): New function.
10806 (check_macro_name): Delete.
10807 (copy_comment): Use CPP_RESERVE and CPP_PUTC_Q.
10808 (cpp_skip_hspace): Use CPP_BUMP_LINE.
10809 (handle_directive): ICE if we're called on a macro buffer.
10810 (do_define): Determine macro name and type (funlike/objlike)
10811 here. Expunge all uses of MACRODEF.
10812 (cpp_push_buffer): Set line_base to NULL.
10813 (do_undef, read_line_number): Don't worry about getting a POP token.
10814 (eval_if_expression): Set/reset parsing_if_directive around
10815 cpp_parse_expr. Don't clear only_seen_white.
10816 (skip_if_group): Remove output_conditionals logic. Use
10817 skip_rest_of_line.
10818 (cpp_get_token): Return ASSERTION, STRINGIZE, and TOKPASTE
10819 tokens under appropriate conditions.
10820 (cpp_unassert): Call do_unassert not do_assert. Oops.
10821
10822 * cppexp.c (parse_defined): New function, break out of
10823 cpp_lex.
10824 (cpp_lex): We now get CPP_ASSERTION tokens and can check them
10825 ourselves, with cpp_defined.
10826 * cppinit.c (cpp_handle_option, print_help): Delete -ifoutput.
10827
10828 * gcc.dg/20000209-2.c: Turn off -pedantic-errors.
10829 * gcc.dg/strpaste-2.c: New.
10830
10831 2000-02-29 Mark Mitchell <mark@codesourcery.com>
10832
10833 * fold-const.c (size_binop): Don't asert inputs are the same and
10834 have TYPE_IS_SIZETYPE set.
10835 (size_diffop): Likewise.
10836
10837 2000-02-29 Jason Merrill <jason@casey.cygnus.com>
10838
10839 * dwarfout.c (output_block): Output abstract blocks even if they
10840 don't have TREE_ASM_WRITTEN set.
10841
10842 * calls.c (emit_library_call): Check for null REG.
10843
10844 2000-03-01 Martin von Loewis <loewis@informatik.hu-berlin.de>
10845
10846 * c-decl.c (current_function_decl): Move to toplev.c.
10847 (init_decl_processing): Don't add current_function_decl as a ggc
10848 root here.
10849 * dbxout.c (dbxout_symbol): Change return type to int.
10850 (dbxout_symbol_location, dbxout_syms): Likewise.
10851 (dbxout_block): Don't emit LBRAC/RBRAC pairs for blocks without
10852 any locals. Use current_function_func_begin_label if set.
10853 * dbxout.h (dbxout_symbol, dbxout_syms): Change return type.
10854 * dwarf2out.c (dwarf2out_begin_prologue): Set
10855 current_function_func_begin_label.
10856 * final.c (final_start_function): Reset it.
10857 * toplev.c (current_function_decl): Define it here.
10858 (current_function_func_begin_label): New variable.
10859 (main): Add both as ggc roots.
10860 * tree.h (current_function_func_begin_label): Declare.
10861
10862 Tue Feb 29 14:07:04 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10863
10864 * gcse.c: Cleanups throughout: mostly white-space, but also
10865 some minor rearrangement of code.
10866
10867 Tue Feb 29 10:45:59 2000 Jeffrey A Law (law@cygnus.com)
10868
10869 * calls.c (emit_library_call): Do not abort if FUNCTION_ARG
10870 returns a PARALLEL. Use emit_group_load and use_group_regs
10871 as needed.
10872 (emit_library_call_value): Similarly.
10873
10874 * pa/t-pa: Use quadlib.c instead of quadlib.asm.
10875 * pa/quadlib.asm: Remove.
10876 * pa/quadlib.c: New file.
10877
10878 * configure.in (hpux10, hpux11, PA32 mode): Use i128 float format.
10879 * configure: Rebuilt.
10880
10881 2000-02-29 Philip Blundell <pb@futuretv.com>
10882
10883 * config/arm/conix-elf.h: New file.
10884 * configure.in (arm*-*-conix*): New configuration.
10885 * configure: Regenerate.
10886
10887 2000-02-28 Jason Merrill <jason@casey.cygnus.com>
10888
10889 * dwarf2out.c (gen_block_die): Output abstract blocks even if they
10890 don't have TREE_ASM_WRITTEN set.
10891
10892 Mon Feb 28 21:07:59 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
10893
10894 * Eliminate DECL_FIELD_SIZE.
10895 * builtins.c (built_in_class_names, built_in_names): New variables.
10896 * c-decl.c (finish_struct): Set specified size in DECL_SIZE.
10897 * expr.c (expand_expr, case COMPONENT_REF): Get field size from
10898 DECL_SIZE, not DECL_FIELD_SIZE.
10899 * print-tree.c (print_node): Remove code that prints extra blank
10900 lines in some cases.
10901 Properly handle inline and builtin function cases.
10902 * stor-layout.c (layout_decl): Get specified size from DEC_SIZE.
10903 * tree.h (built_in_class_named, built_in_names): New declarations.
10904 (union tree_decl): Rename internal unions to u1 and u2 and change
10905 some of their components.
10906 Add new field built_in_class.
10907 (DECL_ALIGN, DECL_INCOMING_RTL, DECL_SAVED_INSNS, DECL_FRAME_SIZE):
10908 Reflect above changes.
10909 (DECL_FUNCTION_CODE, DECL_BUILT_IN_CLASS): Likewise.
10910 (DECL_SET_FUNCTION_CODE, DECL_FIELD_SIZE): Deleted.
10911 * objc/objc-act.c (objc_copy_list): Use DECL_SIZE, not DECL_FIELD_SIZE.
10912 (encode_field_decl): Likewise; also remove obsolete test for bitfield.
10913
10914 2000-02-28 Dmitri Makarov <dim@windriver.com>
10915
10916 * extend.texi: Document ARM's support for long/short calls.
10917
10918 * invoke.texi: Document ARM's -mlong-calls command line switch.
10919
10920 * config/arm/arm-protos.h (arm_is_longcall_p): Add prototype.
10921 (arm_encode_call_attribute): Add prototype.
10922 (arm_set_default_type_attribute): Add prototype.
10923 (arm_strip_name_encoding): Add prototype.
10924
10925 * config/arm/arm.c (arm_init_cumulative_args): replace
10926 initialisation og 'long_calls' field with initialisation of
10927 'call_cookie' field.
10928 (enum arm_pragma_enum): New enum.
10929 (arm_pragma_long_calls): New static variable.
10930 (arm_process_pragma): Also process "#pragma long_calls_off".
10931 (arm_valid_type_attribute_p): Accept short_call attribute.
10932 (arm_comp_type_attributes): Check long/short call attributes.
10933 (arm_encode_call_attribute): New function: Encode long_call
10934 or short_call attribute in function name.
10935 (arm_set_default_type_attributes): New function: Assign
10936 default attributes to newly defined type.
10937 (current_file_function_operand): New function: Return true if
10938 the symbol is a function which has already been compiled.
10939 (arm_is_longcall_p): New function: Return true if the
10940 indicated function should be called via a long call.
10941 (arm_get_strip_length): New function. Returns number of
10942 prefix characters to be stripped from a function's name.
10943 (arm_strip_name_encoding): New function. Strip prefix characters
10944 from a function's name.
10945
10946 * config/arm/arm.h (CUMULATIVE_ARGS): Replace 'long_call' field
10947 with 'call_cookie'.
10948 (SHORT_CALL_FAG_CHAR): Define.
10949 (LONG_CALL_FAG_CHAR): Define.
10950 (ENCODED_SHORT_CALL_ATTR_P): Define.
10951 (ENCODED_LONG_CALL_ATTR_P): Define.
10952 (ARM_NAME_ENCODING_LENGTHS): Define.
10953 (STRIP_NAME_ENCODING): Define.
10954 (ASM_OUTPUT_LABELREF): Define, and use to strip name encoding.
10955 (ARM_ENCODE_CALL_TYPE): Define.
10956 (ENCODE_SECTION): Invoke ARM_ENCODE_CALL_TYPE.
10957 (ARM_DECLARE_FUNCTION_SIZE): Define.
10958 (SET_DEFAULT_TYPE_ATTRIBUTES): Define.
10959
10960 * config/arm/arm.md (call): Call arm_is_longcall_p to decide
10961 if a long call is needed.
10962 (call_value): Ditto.
10963 (call_symbol): Ditto.
10964
10965 * config/arm/elf.h (ASM_DECLARE_FUNCTION_SIZE): Add invocation of
10966 ARM_DECLARE_FUNCTION_SIZE.
10967
10968 * config/arm/pe.h (ARM_PE_FLAG_CHAR): Define.
10969 (SUBTARGET_NAME_ENCODING_LENGTHS): Define.
10970 (ARM_STRIP_NAME_ENCODING): Undefine.
10971 (STRIP_NAME_ENCODING): Undefine.
10972 (ASM_OUTPUT_LABELREF): Use arm_strip_name_encoding.
10973 (ASM_DECLARE_FUNCTION_NAME): Ditto.
10974 (ASM_OUTPUT_COMMON): Ditto.
10975 (ASM_DECLARE_OBJECT_NAME): Ditto.
10976
10977 * config/arm/pe.c (arm_dllexport_name_p): Check for
10978 ARM_PE_FLAG_CHAR.
10979 (arm_dllimport_name_p): Ditto.
10980 (arm_mark_dllexport): Use ARM_PE_FLAG_CHAR.
10981 (arm_mark_dllimport): Ditto.
10982
10983 Mon Feb 28 22:11:12 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
10984
10985 * sh.h (DWARF_LINE_MIN_INSTR_LENGTH): Define.
10986
10987 2000-02-28 Mark Mitchell <mark@codesourcery.com>
10988
10989 * xcoffout.c (xcoffout_begin_function): Fix typo in previous change.
10990
10991 2000-02-28 Zack Weinberg <zack@wolery.cumb.org>
10992
10993 * tm.texi: Document new target switch, NO_BUILTIN_WCHAR_TYPE.
10994 * cppinit.c (builtin_array): Define __WCHAR_TYPE__ only if
10995 NO_BUILTIN_WCHAR_TYPE is not defined.
10996 (CPP_WCHAR_TYPE): Delete.
10997 * cccp.c (main): Don't change wchar_type if cplusplus.
10998 (special_symbol, initialize_builtins): Honor NO_BUILTIN_WCHAR_TYPE.
10999
11000 2000-02-28 Nick Clifton <nickc@cygnus.com>
11001
11002 * config/arm/arm-wince-pe.h (SIZE_TYPE): Define to "unsigned long".
11003
11004 Mon Feb 28 14:21:15 2000 Catherine Moore <clm@cygnus.com>
11005
11006 * config/pa/som.h (MAKE_DECL_ONE_ONLY): Define.
11007 (ASM_WEAKEN_LABEL): Define.
11008
11009 Mon Feb 28 13:07:19 MET 2000 Jan Hubicka <jh@suse.cz>
11010
11011 * expr.c (store_constructor): Do not emit USE.
11012 * rtl.h (stupid_life_analysis): Remove.
11013
11014 Mon Feb 28 07:03:27 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11015
11016 * function.c (number_blocks): Reset next_block_index based on
11017 what debugging format is used, not what is defined.
11018
11019 * lcm.c: Minor reformatting throughout.
11020 (reg_dies, reg_becomes_live): Properly handle multiple hard regs.
11021
11022 * toplev.c (rest_of_compilation): Account for time in
11023 optimize_mode_switching.
11024
11025 * jump.c (jump_optimize_1): Don't call delete_barrier_successors
11026 if only marking labels.
11027
11028 Mon Feb 28 12:53:57 MET 2000 Jan Hubicka <jh@suse.cz>
11029
11030 * calls.c (expand_call): Attempt to combine stack adjustments with
11031 pending stack adjustments.
11032
11033 Mon Feb 28 11:34:43 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11034
11035 * loop.c (reg_in_basic_block_p): Don't abort when falling through
11036 to the end of the function.
11037
11038 2000-02-27 Mark Mitchell <mark@codesourcery.com>
11039
11040 * emit-rtl.c (remove_unncessary_notes): Remove notes for empty
11041 blocks.
11042 * final.c (next_block_index): Remove.
11043 (max_block_depth): Likewise.
11044 (pending_blocks): Likewise.
11045 (init_final): Don't initialize them.
11046 (final_start_function): Don't set next_block_index. Set up
11047 BLOCK_NUMBER.
11048 (final_scan_insn): Use BLOCK_NUMBER, not next_block_index.
11049 * function.h (number_blocks): New function.
11050 * function.c (get_block_vector): New function.
11051 (identify_blocks): Use it.
11052 (reorder_blocks): Set NOTE_BLOCK.
11053 (number_blocks): New function.
11054 * tree.def (BLOCK): Add documentation for TREE_ASM_WRITTEN flag.
11055 * tree.h (BLOCK_NUMBER): New macro.
11056 (tree_block): Add block_num field.
11057 * dbxout.c (next_block_number): Remove.
11058 (dbxout_init): Don't set it.
11059 (dbxout_block): Only output blocks that have TREE_ASM_WRITTEN
11060 set. Use BLOCK_NUMBER, rather than next_block_num, to determine
11061 block numbers.
11062 * toplev.c (rest_of_compilation): Always call
11063 find_loop_tree_blocks. Fix indentation.
11064 * dwarf2out.c (next_block_number): Remove.
11065 (gen_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
11066 to determine block numbers.
11067 (gen_inlined_subroutine_die): Likewise.
11068 (gen_block_die): Only output blocks that have TREE_ASM_WRITTEN set.
11069 (decls_for_scope): Don't increment next_block_number.
11070 * dwarfout.c (next_block_number): Remove.
11071 (output_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
11072 to determine block numbers.
11073 (output_inlined_subroutine_die): Likewise.
11074 (output_block): Only output blocks that have TREE_ASM_WRITTEN set.
11075 (output_decls_for_scope): Don't increment next_block_number.
11076 * sdbout.c (next_block_number): Remove.
11077 (sdbout_block): Use BLOCK_NUMBER.
11078 (sdbout_begin_block): Simplify.
11079 * xcoffout.c (next_block_number): Remove.
11080 (xcoffout_block): Use BLOCK_NUMBER, not next_block_number.
11081 (xcoffout_begin_block): Don't set next_block_number.
11082 (xcoffout_begin_function): Likewise. Use BLOCK_NUMBER, not
11083 next_block_number.
11084
11085 Sun Feb 27 16:40:33 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11086
11087 * builtins.c (c_strlen): Use size_diffop and return ssizetype value.
11088 (expand_builtin_strcpy): Pass correct type to size_binop.
11089 (expand_builtin_strcmp): Likewise.
11090 Clean up conditional structure.
11091 * c-decl.c (init_decl_processing): Don't call set_sizetype twice.
11092 (complete_array_type): Don't use size_binop for MAXINDEX.
11093 * c-typeck.c (c_sizeof): Use size_one_node and TYPE_SIZE_UNIT.
11094 (c_sizeof_nowarn, c_size_in_bytes): Likewise.
11095 (c_alignof): Use size_one_node.
11096 (build_unary_op): Pass arg of proper type to size_binop.
11097 (really_start_incremental_init, push_init_level): Use sizetype for
11098 constructor{,_bit,_unfilled}_index.
11099 (pop_init_label, output_init_element): Likewise.
11100 (output_pending_init_elements, process_init_element): Likewise.
11101 * calls.c (compute_argument_block_size): Field VAR is ssizetype.
11102 * expr.c (store_expr): Use size_int.
11103 (store_constructor): Use proper types for size_binop args.
11104 (get_inner_reference, expand_expr, case ARRAY_REF): Likewise.
11105 (expand_expr_unaligned): Likewise.
11106 (string_contant): Return object of sizetype.
11107 * expr.h (SUB_PARM_SIZE): Call size_diffop and pass proper types.
11108 (ARGS_SIZE_RTX): Call ARGS_SIZE_TREE.
11109 (ARGS_SIZE_TREE): Pass proper types to size_binop.
11110 * fold-const.c (int_const_binop): Refine when size_int is called.
11111 (fold_convert): Likewise.
11112 (size_int_wide): Rework to take KIND as arg, only take low order
11113 bits, handle new sizetype_tab datatype, and chain entries in
11114 size_table.
11115 (size_int_type_wide): New function.
11116 (size_binop): Validate types of arguments.
11117 (ssize_binop): Deleted.
11118 (size_diffop): New function.
11119 (extract_muldiv): Only fold division into multiplication for sizetypes.
11120 * function.c (assign_parms): Use size_diffop and make sure
11121 VAR field is of ssizetype; also pass proper type to size_binop.
11122 (locate_and_pad_parm, pad_to_arg_alignment): Likewise.
11123 (round_down): Deleted from here.
11124 * store-layout.c (sizetype_tab): Now an array.
11125 (sizetype_set, early_root_list): New variables.
11126 (variable_size): Use size_one_node.
11127 (round_up): Pass proper type to size_binop.
11128 (round_down): Moved to here and corrected as above.
11129 (layout_record): Pass proper arg types to size_binop.
11130 (layout_type): Likewise.
11131 If sizetype_set is zero, record the type just laid out.
11132 (make_unsigned_type): Don't call set_sizetype;
11133 (make_signed_type): Likewise; also, call fixup_signed_type.
11134 (initialize_sizetypes): New function.
11135 (set_sizetype): Make copy of types, set TYPE_IS_SIZETYPE, and
11136 set name of bitsizetype to "bit_size_type".
11137 Fix up type of sizes of all types made before call.
11138 * tm.texi (ROUND_TYPE_SIZE_UNIT): New macro.
11139 * tree.c (fix_sizetype): Deleted.
11140 (build_common_tree_nodes): Call initialize_sizetypes.
11141 (build_common_tree_nodes_2): Don't call fix_sizetype.
11142 * tree.h (TYPE_IS_SIZETYPE): New macro.
11143 (initialize_sizetype): New declaration.
11144 (enum size_type_kind): New type.
11145 (struct sizetype_tab): Deleted.
11146 (sizetype_tab): Now array; adjust sizetype macros.
11147 (size_diffop, size_int_type_wide): New functions.
11148 (size_int_wide): Change number of args and type; access macros changed.
11149 (ssize_int, sbitsize_int): New macros.
11150 * config/i960/i960.h (ROUND_TYPE_SIZE): Use size_int.
11151 (ROUND_TYPE_SIZE_UNIT): New macro.
11152
11153 2000-02-27 Zack Weinberg <zack@wolery.cumb.org>
11154
11155 * c-lex.c (putback_buffer): Make 'buffer' an unsigned char *.
11156
11157 Sun Feb 27 07:44:17 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11158
11159 * gcov-io.h (__fetch_long, __store_long, __read_long, __write_long):
11160 Mark as possibly unused.
11161
11162 * cse.c (cse_insn): Delete dead code involving tablejump.
11163 Pass CODE_LABEL, not LABEL_REF to gen_jump and reset INSN_CODE.
11164
11165 * Makefile.in (libcpp.a): Start by deleting it.
11166
11167 2000-02-27 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
11168
11169 * cpplib.h (enum file_change_code): Added rename_file.
11170 * cpplib.c (do_line): If a filename is given, set file_change to
11171 rename_file.
11172 (output_line_command): If file_change is rename_file, always
11173 output a # directive with the file name.
11174
11175 * cpplib.c (do_pragma): Accept #pragma without consecutive token.
11176
11177 2000-02-26 Mark Mitchell <mark@codesourcery.com>
11178
11179 * integrate.c (copy_decl_for_inlining): Preserve TREE_ADDRESSABLE
11180 when copying a PARM_DECL or RESULT_DECL.
11181
11182 2000-02-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11183
11184 * fix-header.c (recognized_function): Also fix prototypes for
11185 functions taking "void".
11186
11187 2000-02-26 Geoff Keating <geoffk@cygnus.com>
11188
11189 * reload1.c (do_output_reload): Check reg_reloaded_valid before
11190 looking at reg_reloaded_contents.
11191
11192 2000-02-26 Zack Weinberg <zack@wolery.cumb.org>
11193
11194 * Makefile.in (STMP_FIXINC): New toggle.
11195 (LIBGCC2_DEPS): Delete all references.
11196 (stmp-headers): Delete target. All references either deleted
11197 or changed to stmp-int-headers.
11198 (all.cross): Don't depend on stmp-headers or STMP_FIXPROTO.
11199 (LIBCPP_OBJS): Take out cppalloc.o.
11200 (cppalloc.o): Delete target.
11201 (stmp-int-hdrs): Depend on $(STMP_FIXINC).
11202 (gen-protos, fix-header): Link with libiberty.a.
11203 * build-make: Don't change FIXINCLUDES. Override STMP_FIXINC
11204 to empty.
11205
11206 * configure.in: Remove refs to strerror.
11207 * acconfig.h: Take out NEED_DECLARATION_STRERROR.
11208 * system.h: Take out strerror stanza.
11209
11210 * cpperror.c (my_strerror): Delete function.
11211 (cpp_error_from_errno, cpp_notice_from_errno): Use xstrerror.
11212 * cppmain.c (main): Call xmalloc_set_program_name first thing.
11213 * cppalloc.c: Delete file.
11214 * gen-protos.c: Don't provide xrealloc.
11215
11216 * fixinc/fixincl.c, fixinc/fixlib.c, fixinc/procopen.c: Use
11217 xstrerror throughout.
11218
11219 2000-02-26 Bruce Korb <bkorb@gnu.org>
11220
11221 * fixinc/inclhack.def (undefine_null): the bypass pattern needs to
11222 match for DOS headers, too.
11223 * fixinc/inclhack.sh,fixincl.x: Regenerate.
11224
11225 2000-02-26 Geoff Keating <geoffk@cygnus.com>
11226
11227 * config/elfos.h (ASM_OUTPUT_LABELREF): Don't define. The default
11228 is right for most ELF targets.
11229 * config/ns32k/ns32k.h (ASM_OUTPUT_LABELREF): Don't define.
11230 Let the default file use %U properly.
11231 * config/sh/elf.h (ASM_OUTPUT_LABELREF): Don't define. Use the
11232 default.
11233
11234 * config/fp-bit.c (pack_d): Properly handle rounding of denormal
11235 numbers.
11236
11237 Sat Feb 26 09:39:16 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11238
11239 * toplev.c (documented_lang_options): Correct spelling error.
11240 (decode_d_option, decode_f_option, main): Likewise.
11241
11242 * toplev.c (print_time): Avoid SIGFPE when all_time is zero.
11243
11244 * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Use .set at
11245 to tell assembler it is permitted to expand large constants.
11246
11247 2000-02-25 Mumit Khan <khan@xraylith.wisc.edu>
11248
11249 * protoize.c: (AUX_INFO_SUFFIX): New macro.
11250 (aux_info_suffix): Use.
11251 (SAVE_SUFFIX): New macro.
11252 (save_suffix): Use.
11253 (munge_compile_parms): Fix typo in NUL. DJGPP supports /dev/null.
11254 (gen_aux_info_file): Use aux_info_suffix instead of ".X".
11255 (edit_file): Handle 8.3 restriction for DOS/DJGPP filenames.
11256
11257 * invoke.texi (Running Protoize): Update documentation.
11258
11259 2000-02-25 Mark Elbrecht <snowball3@bigfoot.com>
11260
11261 * i386/djgpp.h (CPP_PREDEFINES): Remove Unix defines.
11262
11263 2000-02-25 John Wehle (john@feith.com)
11264
11265 * rtlanal.c (find_last_value): Allow NULL_RTX for valid_to.
11266
11267 2000-02-25 Anthony Green <green@cygnus.com>
11268
11269 * toplev.c (rest_of_compilation): Rebuild jump labels if
11270 combine_instructions has created a new direct jump.
11271 * combine.c (try_combine): Add new_direct_jump_p argument. Set it
11272 when appropriate.
11273 (combine_instructions): Call try_combine with new argument.
11274 Return non-null value when new direct jump instruction is created.
11275 * rtl.h: combine_instructions returns an int.
11276
11277 Fri Feb 25 19:49:08 2000 Jeffrey A Law (law@cygnus.com)
11278
11279 * cse.c (cse_insn): Replace the PATTERN of the insn with an new
11280 jump when changing a computed jump into a jump to a known
11281 target.
11282
11283 Fri Feb 25 19:22:44 2000 Graham Stott <grahams@rcp.co.uk>
11284
11285 * resource.c (mark_referenced_resources): Changed use SET_DEST (...)
11286 to XEXP (..., 0) on RTL nodes which are not SET or CLOBBER.
11287
11288 * i386.md (define_expand "clrstrsi"): Fix typo.
11289
11290 Fri Feb 25 18:49:39 2000 "K. Richard Pixley" <rich@microunity.com>
11291
11292 * rtl.texi: Fix typo.
11293
11294 Fri Feb 25 20:02:35 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11295
11296 * sh.c (calc_live_regs): Multiply value assigned to *COUNT_PTR by
11297 UNITS_PER_WORD. Change caller initial_elimination_offset.
11298 (rounded_frame_size): Take into account that argument pushed has
11299 changed. Fix TARGET_ALIGN_DOUBLE problem.
11300
11301 2000-02-25 Geoff Keating <geoffk@cygnus.com>
11302
11303 * haifa-sched.c (schedule_block): Explain the real reason
11304 we delete REG_SAVE_NOTEs on the first insn of a block.
11305 Don't delete REG_SAVE_NOTES for NOTE_INSN_SETJMP.
11306
11307 2000-02-24 Mark Mitchell <mark@codesourcery.com>
11308
11309 * input.h (push_srcloc): New function.
11310 (pop_srcloc): Likewise.
11311 * toplev.c (push_srcloc): Define it.
11312 (pop_srcloc): Likewise.
11313
11314 2000-02-24 Richard Henderson <rth@cygnus.com>
11315
11316 * flow.c (life_analysis): When collecting reg info, clear
11317 regs_ever_live.
11318
11319 Thu Feb 24 22:06:52 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11320
11321 Fix bug exposed by reload.c no longer rounding the frame
11322 size to BIGGEST_ALIGNMENT:
11323 * sh.c (rounded_frame_size): New function.
11324 (sh_expand_prologue, sh_expand_epilogue): Use it.
11325 (initial_elimination_offset): Likewise.
11326
11327 Thu Feb 24 20:04:11 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11328
11329 Fix breakage from 6th Feb thread_prologue_and_epilogue_insns change:
11330 * sh-protos.h (sh_need_epilogue): Declare.
11331 * sh.c (sh_need_epilogue_known): New static variable.
11332 (sh_need_epilogue): New function.
11333 (function_epilogue): Clear need_epilogue_known.
11334 * sh.md (return): Split into expander / insn pattern.
11335 Make the expander conditional on ! sh_need_epilogue ().
11336
11337 2000-02-24 Nathan Sidwell <nathan@codesourcery.com>
11338
11339 * machmode.h (get_mode_alignment): Declare.
11340 (GET_MODE_ALIGNMENT): Call it.
11341 * stor-layout.c (get_mode_alignment): New function. Make
11342 sure alignment is always power of 2.
11343
11344 2000-02-23 Zack Weinberg <zack@wolery.cumb.org>
11345
11346 * i386.h: Remove useless definition of "I386" and misleading
11347 comment above it.
11348
11349 2000-02-23 Zack Weinberg <zack@wolery.cumb.org>
11350
11351 * tree.h (TREE_SET_PERMANENT): New macro. Document conditions
11352 under which TREE_PERMANENT will be set.
11353 * tree.c (make_node, copy_node, make_tree_vec, tree_cons,
11354 build1): Use TREE_SET_PERMANENT.
11355 * print-tree.c (print_node): Don't report value of
11356 TREE_PERMANENT if ggc_p is true.
11357
11358 * c-common.c (c_get_alias_set): Don't use TREE_PERMANENT to
11359 decide whether to give a type a new alias set.
11360 * objc/objc-act.c (build_objc_string_object): Never copy the string.
11361 * tree.c (make_node): Set DECL_IN_SYSTEM_HEADER irrespective
11362 of value of 'obstack'.
11363
11364
11365 2000-02-24 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
11366
11367 * config/c4x/c4x.c (c4x_process_after_reload): Split all insns.
11368
11369 2000-02-23 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
11370
11371 * cpplib.h (enum cpp_token): Added CPP_WCHAR and CPP_WSTRING.
11372 * cpplib.c (cpp_get_token): Produce them.
11373 * cppexp.c (cpp_lex): Handle them.
11374
11375 2000-02-23 Nick Clifton <nickc@cygnus.com>
11376
11377 * config/arm/arm.c (arm_comp_type_attributes): Simply and
11378 comment tests on type attributes.
11379
11380 Wed Feb 23 16:42:21 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11381
11382 * final.c (shorten_branches): Make value passed to LOOP_ALIGN
11383 conform to documentation.
11384 * sh.h (LOOP_ALIGN): If aligning loops, call sh_loop_align
11385 to check for special cases.
11386 * sh-protos.h (sh_loop_align): Declare.
11387 * sh.c (sh_loop_align): Define.
11388
11389 2000-02-22 Andrew Haley <aph@cygnus.com>
11390
11391 * config/mips/mips.h (GAS_ASM_SPEC): Pass -mgp32/-mgp64 to gas.
11392 (SIZE_TYPE): Is 32 bits when using -mgp32.
11393 (PTRDIFF_TYPE): Ditto.
11394
11395 Wed Feb 23 07:26:27 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11396
11397 * diagnostic.c (init_output_buffer): Handle case of null PREFIX.
11398
11399 2000-02-23 Zack Weinberg <zack@wolery.cumb.org>
11400
11401 * config/i386/i386.h: If IN_TARGET_LIBS is defined, make
11402 BIGGEST_FIELD_ALIGNMENT a constant.
11403
11404 2000-02-21 Jason Merrill <jason@casey.cygnus.com>
11405
11406 * dwarf2out.c (output_line_info): Put the marker for the end of
11407 the line number info at the actual end.
11408 (gen_struct_or_union_type_die): Use decl_function_context
11409 to check for local classes.
11410 * dwarfout.c (output_type): Likewise.
11411
11412 Tue Feb 22 01:38:57 2000 Jeffrey A Law (law@cygnus.com)
11413
11414 * pa.h (FUNCTION_ARG_PASS_BY_REFERENCE): Handle pass-by-reference
11415 for arguments with a mode, but no type.
11416 (FUNCTION_ARG_CALLEE_COPIES): Similarly.
11417 * t-pa (LIB2FUNCS_EXTRA): Add quadlib.asm.
11418 * pa/long_double.h: New file.
11419 * configure.in (hpux10, hpux11 configurations): hpux10 and hpux11
11420 both have 128bit wide long doubles.
11421 * configure: Rebuilt.
11422
11423 2000-02-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11424
11425 * defaults.h (ASM_OUTPUT_ASCII): Constify a char*.
11426
11427 * flow.c (get_common_dest, chain_reorder_blocks, make_reorder_chain,
11428 fixup_reorder_chain, skip_insns_between_block): Add static prototypes.
11429 (life_analysis): Wrap variable `i' with macro ELIMINABLE_REGS.
11430
11431 * haifa-sched.c (rank_for_schedule): Don't cast away const-ness.
11432
11433 * integrate.c (compare_blocks, find_block): Likewise.
11434
11435 * rtl.c (fatal_with_file_and_line): Add ATTRIBUTE_PRINTF_2.
11436
11437 * rtl.h (set_file_and_line_for_stmt): Constify a char*.
11438
11439 * stmt.c (stmt_status, set_file_and_line_for_stmt,
11440 expand_asm_operands): Likewise.
11441
11442 Mon Feb 21 17:06:27 2000 Jason Eckhardt <jle@cygnus.com>
11443
11444 * predict.c (estimate_probability): Added the pointer heuristic to
11445 the collection of static branch predictors.
11446
11447 2000-02-21 Catherine Moore <clm@cygnus.com>
11448
11449 * config/mips/mips.h (ASM_SPEC): Add -mfix700.
11450 * invoke.texi (-mfix7000): Document.
11451
11452 2000-02-21 Gabriel Dos Reis <gdr@codesourcery.com>
11453
11454 * diagnostic.c (init_output_buffer): Make it possible to output at
11455 least 32 characters if we're given a too long prefix.
11456
11457 2000-02-20 Mark Mitchell <mark@codesourcery.com>
11458
11459 * varasm.c (initializer_constant_valid_p): Call
11460 lang_expand_constant to simplify the constant.
11461
11462 2000-02-20 Bruce Korb <bkorb@gnu.org>
11463
11464 * fixinc/inclhack.def(stdio_va_list):
11465 typedef needs to be disabled.
11466 * fixinc/inclhack.sh: regen
11467 * fixinc/fixincl.x: regen
11468
11469 2000-02-20 Geoff Keating <geoffk@cygnus.com>
11470
11471 * print-rtl.c (print_rtx): Don't print addresses when
11472 flag_dump_unnumbered.
11473
11474 2000-02-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11475
11476 * sparc.c (sparc_output_scratch_registers): Mark parameter with
11477 ATTRIBUTE_UNUSED.
11478 (sparc_va_arg, sparc_flat_output_function_prologue,
11479 sparc_flat_output_function_epilogue): Cast value to unsigned in
11480 comparison.
11481 (sparc_emit_float_lib_cmp): Remove unused variable `cmp'.
11482
11483 * sparc.md: Add default case in switch.
11484
11485 2000-02-19 Richard Henderson <rth@cygnus.com>
11486
11487 * c-typeck.c (add_pending_init): Don't abort for multiple
11488 fields at the same offset.
11489 (pending_init_member): Test the correct member.
11490
11491 2000-02-19 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
11492
11493 * except.c (start_dynamic_handler) : Use TYPE_MODE (integer_type_node)
11494 instead of SImode.
11495 (start_catch_handler) : Same.
11496
11497 2000-02-19 Brad Lucier (lucier@math.purdue.edu)
11498
11499 * Makefile.in: Have flow.o depend on $(EXPR_H)
11500
11501 Sat Feb 19 18:43:13 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11502
11503 * c-common.c (decl_attributes): Set DECL_SIZE_UNIT.
11504 * c-decl.c (duplicate_decls, finish_enum): Likewise.
11505 (finish_decl): Remove -Wlarger-than code from here.
11506 * flags.h (id_clash_len): Now int.
11507 (larger_than_size): Now HOST_WIDE_INT.
11508 * fold-const.c (size_int_wide): No more HIGH parm; NUMBER is signed.
11509 Clean up checking to see if in table.
11510 (make_bit_field_ref): Remove extra parm to bitsize_int.
11511 * ggc-common.c (ggc_mark_tree_children): Mark DECL_SIZE_UNIT.
11512 * print-tree.c (print_node): Print DECL_SIZE_UNIT and TYPE_SIZE_UNIT.
11513 * stmt.c (expand_decl): Use DECL_SIZE_UNIT for stack checking size
11514 and for computing size of decl.
11515 * stor-layout.c (layout_decl): Set DECL_SIZE_UNIT.
11516 Move -Wlarger-than code to here.
11517 (layout_record): Remove extra arg to bitsize_int.
11518 Set TYPE_BINFO_SIZE_UNIT.
11519 (layout_union): Remove extra arg to bitsize_int.
11520 Use proper type for size of QUAL_UNION.
11521 (layout_type): Remove extra arg to bitsize_int.
11522 * toplev.c (id_clash_len): Now int.
11523 (larger_than_size): Now HOST_WIDE_INT.
11524 (decode_W_option): Clean up id-clash and larger-than- cases.
11525 * tree.c (get_identifier, maybe_get_identifier): Remove unneeded casts.
11526 (expr_align, case FUNCTION_DECL): DECL_ALIGN is not defined.
11527 * tree.h (BINFO_SIZE_UNIT, TYPE_BINFO_SIZE_UNIT, DECL_SIZE_UNIT): New.
11528 (struct tree_decl): New field size_unit.
11529 (size_int_wide): No HIGH operand; NUMBER is now signed.
11530 (size_int_2): Deleted.
11531 (size_int, bitsize_int): Don't use it and rework args.
11532 * varasm.c (assemble_variable, output_constructor): Use DECL_SIZE_UNIT.
11533
11534 Fri Feb 18 20:01:58 2000 Jeffrey A Law (law@cygnus.com)
11535
11536 * pa/quadlib.asm (_U_QFgt, _U_Qfge): Fix flags for _U_Qfcmp call.
11537
11538 2000-02-18 Geoff Keating <geoffk@cygnus.com>
11539
11540 * invoke.texi (Warning Options): Add an explanation of why
11541 you might want the -Wfloat-equal flag.
11542
11543 Fri Feb 18 20:08:57 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
11544
11545 * bitmap.c (bitmap_operation): Avoid using -1 for index since unsigned.
11546 * cppinit.c (new_pending_define): Add cast to avoid warning.
11547 * expmed.c (extract_bit_field): Likewise.
11548 * flow.c (enum reorder_skip_type): New type.
11549 (skip_insns_between_blcok): New it.
11550 Rework to avoid warning about possibly undefined variable.
11551 * function.c (assign_parms): Make thisparm_boundary unsigned.
11552 * genrecog.c (write_switch): Cast XWINT result to int.
11553 * lcm.c: Many static fcns and vars now #ifdef OPTIMIZE_MODE_SWITCHING.
11554 * mips-tfile.c (init_file): Make two versions of FDR intializer:
11555 one for MIPS and one for Alpha.
11556 (get_tag, copy_object): Add casts to avoid warnings.
11557 * optabs.c (init_one_libfunc): Cast NAME to (char *).
11558 * reload.c (find_reloads): Make TYPE enum reload_type.
11559 * sbitmap.c (dump_sbitmap): J is unsigned; don't use "1L".
11560 * unroll.c (unroll_loop): Initialize UNROLL_NUMBER.
11561 * varasm.c (compare_constant_1): Add cast to avoid warning.
11562 * config/alpha/alpha.c (alpha_emit_xfloating_libcall): Cast FUNC
11563 to (char *).
11564 (alpha_expand_unaligned_load, alpha_expand_unaligned_store):
11565 Cast switch operand of size to int.
11566 (alpha_expand_epilogue): Always initialize fp_offset and sa_reg.
11567 * config/alpha/alpha.h (INITIAL_ELIMINATION_OFFSET): Add abort
11568 in unhandled case.
11569
11570 2000-02-18 Nick Clifton <nickc@cygnus.com>
11571
11572 * config/arm/elf.h (ASM_OUTPUT_ALIGN): Do not generate
11573 anything for an alignment of zero.
11574
11575 * config/arm/thumb.h (ASM_OUTPUT_ALIGN): Do not generate
11576 anything for an alignment of zero.
11577
11578 2000-02-18 Martin von Loewis <loewis@informatik.hu-berlin.de>
11579
11580 * gcc.texi (Bug Reporting): Refer to bugs.html.
11581 (Bug Lists): Likewise.
11582 * system.h (GCCBUGURL): New preprocessor define.
11583 * rtl.c (fancy_abort): Use it.
11584 * gcc.c (main): Likewise.
11585
11586 2000-02-18 Richard Henderson <rth@cygnus.com>
11587
11588 * flow.c (INSN_VOLATILE, SET_INSN_VOLATILE, uid_volatile): Remove.
11589 (life_analysis_1): Subsume into ...
11590 (life_analysis): ... here. Force PROP_REG_INFO off after reload.
11591 Use update_life_info for the relaxation.
11592 (update_life_info): Update REG_BASIC_BLOCK for registers live on
11593 entry and regs_live_at_setjmp.
11594 (set_noop_p): Simplify.
11595 (notice_stack_pointer_modification_1): Renamed from s/_1//.
11596 (record_volatile_insns): Split into ...
11597 (delete_noop_moves): ... here,
11598 (notice_stack_pointer_modification): ... here,
11599 (insn_dead_p): ... and here.
11600 (propagate_block): Don't query INSN_VOLATILE.
11601 (mark_used_regs): Mind !PROP_REG_INFO.
11602 * toplev.c (rest_of_compilation): Call mark_constant_function here,
11603 not in life_analysis.
11604
11605 Fri Feb 18 01:29:22 EST 2000 John Wehle (john@feith.com)
11606
11607 * loop.c (canonicalize_condition): New function,
11608 broken out of get_condition.
11609 (get_condition): Use it.
11610 * expr.h (canonicalize_condition): Prototype it.
11611
11612 * tree.h (tree_int_cst_msb): Declare.
11613 * tree.c (tree_int_cst_msb): New function.
11614
11615 2000-02-17 Mark Mitchell <mark@codesourcery.com>
11616
11617 * stmt.c (set_file_and_line_for_stmt): Don't crash if cfun->stmt
11618 isn't set.
11619
11620 * invoke.texi (-fmessage-length=n): Document.
11621
11622 2000-02-17 Jason Merrill <jason@casey.cygnus.com>
11623
11624 * bitmap.c (bitmap_operation): Don't leak bitmap elements.
11625
11626 2000-02-17 Mark Mitchell <mark@codesourcery.com>
11627
11628 * function.c (thread_prologue_and_epilogue_insns): Put a line note
11629 after the prologue.
11630
11631 2000-02-17 Nick Clifton <nickc@cygnus.com>
11632
11633 * config/arm/thumb.c: Replace includes of system headers with
11634 #include "system.h".
11635
11636 2000-02-16 Richard Henderson <rth@cygnus.com>
11637
11638 * configure.in (alpha-linux*, alpha-netbsd) [extra_parts]:
11639 Add crtbeginS.o and crtendS.o.
11640 * alpha/elf.h (STARTFILE_SPEC): Use crtbeginS.o.
11641 (ENDFILE_SPEC): Use crtendS.o.
11642 * alpha/t-crtbe (crtbeginS.o, crtendS.o): New targets.
11643
11644 * alpha/crtbegin.asm (__do_frame_takedown): Merge into ...
11645 (__do_global_dtors_aux): ... here. Call __cxa_finalize if
11646 shared and present.
11647 (__dso_handle): New variable.
11648 * alpha/crtend.asm (__do_global_ctors_aux): Remove runtime
11649 bias to __CTOR_END__.
11650
11651 2000-02-16 Richard Henderson <rth@cygnus.com>
11652
11653 * Makefile.in (s-crtS, crtbeginS, crtendS): Prefix usage with $(T).
11654
11655 Wed Feb 16 21:40:04 2000 Hans-Peter Nilsson <hp@bitrange.com>
11656
11657 * longlong.h (__clz_tab): Declare as static to match definition.
11658
11659 2000-02-16 Mark Elbrecht <snowball3@bigfoot.com>
11660
11661 * i386/xm-djgpp.h (LIBSTDCXX): Delete. Moved to config/i386/djgpp.h.
11662 (XREF_FILE_NAME): Define.
11663
11664 * i386/djgpp.h (DATA_SECTION_ASM_OP): Define.
11665 (EH_FRAME_SECTION_ASM_OP): Define.
11666 (IDENT_ASM_OP): Define.
11667 (TEXT_SECTION_ASM_OP): Define.
11668 (CPP_SPEC): Define.
11669 (CTORS_SECTION_ASM_OP): Define.
11670 (CTOR_SECTION_FUNCTION): Use it.
11671 (DTORS_SECTION_ASM_OP): Define.
11672 (DTOR_SECTION_FUNCTION): Use it.
11673
11674 2000-02-16 Zack Weinberg <zack@wolery.cumb.org>
11675
11676 * reg-stack.c (emit_swap_insn): Do not put a new insn before a
11677 NOTE_BASIC_BLOCK.
11678
11679 * flow.c (dump_regset, debug_regset, dump_bb, debug_bb,
11680 debug_bb_n): New functions.
11681 (dump_flow_info, print_rtl_with_bb): Use dump_regset.
11682 * basic-block.h: Prototype new functions.
11683
11684 Wed Feb 16 21:07:53 2000 Denis Chertykov <denisc@overta.ru>
11685
11686 * configure.in: Add support for avr target.
11687 * configure: Rebuilt.
11688
11689 * invoke.texi: Add AVR invocation docs.
11690 * install.texi: Add information about AVR.
11691 * md.texi: Add AVR constraint letters description.
11692 * extend.texi: Add description for AVR specific attributes.
11693
11694 2000-02-16 Jason Merrill <jason@casey.cygnus.com>
11695
11696 * fixinc/fixinc.svr4: Wrap byteorder.h with extern "C".
11697
11698 2000-02-16 Nick Clifton <nickc@cygnus.com>
11699
11700 * emit-rtl.c (emit_insn): Move RTL check into make_insn_raw.
11701 (make_insn_raw): Move RTL check here.
11702
11703 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11704
11705 * version.c: Include gansidecl.h and version.h.
11706
11707 * version.h: Wrap entire file in macro __GCC_VERSION_H__.
11708
11709 * configure.in (gcc_version): When setting, narrow search to
11710 lines containing `version_string'.
11711
11712 * Makefile.in (mainversion): Likewise.
11713 (GCC_H): New variable.
11714 (gcc.h): Delete target.
11715 (gcc.o, gccspec.o, cppspec.o): Depend on $(GCC_H), not gcc.h.
11716 (version.o): Depend on version.h.
11717 (dbxout.o): Don't depend on gcc.h.
11718
11719 Wed Feb 16 15:04:49 2000 Hans-Peter Nilsson <hp@bitrange.com>
11720 Michael Meissner <meissner@cygnus.com>
11721
11722 * md.texi (Simple Constraints): Add item about whitespace.
11723 * genoutput.c (strip_whitespace): New.
11724 (scan_operands) [MATCH_OPERAND, MATCH_SCRATCH]: Call
11725 strip_whitespace for constraints.
11726 Test pointer using NULL, not 0.
11727
11728 2000-02-16 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
11729
11730 * cpplib.c (do_line): Pedwarn for #line > 32767.
11731
11732 * c-lex.c (readescape): Warn about '\x', but do not reject it.
11733
11734 2000-02-15 Jonathan Larmour <jlarmour@redhat.co.uk>
11735
11736 * gcc.c (default_compilers): Add new __GNUC_PATCHLEVEL__ define
11737 to default cpp spec.
11738 (do_spec_1): Add support for %v3 spec used by __GNUC_PATCHLEVEL__.
11739 * cpp.texi: Document __GNUC_PATCHLEVEL__.
11740 * cpp.1: Likewise.
11741
11742 * objc/lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to
11743 default spec.
11744
11745 2000-02-15 Denis Chertykov <denisc@overta.ru>
11746
11747 * configure.in: Add support for avr target.
11748
11749 Wed Feb 16 03:21:43 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11750
11751 * sh.h (OVERRIDE_OPTIONS): Don't set sh_addr_diff_vec_mode.
11752 (sh_addr_diff_vec_mode): Don't declare.
11753 * sh.c (sh_addr_diff_vec_mode): Delete.
11754
11755 Wed Feb 16 01:27:52 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11756
11757 * sh.md (mulsi3_highpart): Add REG_EQUAL note to last insn.
11758
11759 Wed Feb 16 00:58:06 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11760
11761 * sh.md (udivsi3_i1, divsi3_i1, umulhisi3_i, mulhisi3_i): Name.
11762 (smulsi3_highpart_i): Name.
11763 (udivsi3): Wrap emitted insns in REG_LIBCALL / REG_RETVAL notes.
11764 (divsi3, mulhisi3, umulhisi3, mulsidi3, umulsidi3): Likewise.
11765 (smulsi3_highpart, umulsi3_highpart): Likewise.
11766
11767 (mulsidi3_i, umulsidi3_i): Make rtl describe operation
11768 correctly independent of endianness.
11769 (mulsidi3, umulsidi3): Now define_insn. Hide details that
11770 confuse the optimizers.
11771 (mulsidi3+1, umulsidi3+1): New define_split.
11772
11773 Tue Feb 15 23:22:26 2000 Andrew Haley <aph@cygnus.com>
11774
11775 * config/sh/sh.md: Guard insn splits against illegal registers.
11776 * config/sh/sh.h: Correct comment about macros.
11777
11778 Tue Feb 15 22:30:36 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
11779 Andrew MacLeod <amacleod@cygnus.com>
11780
11781 * Makefile.in (lcm.o): Depend on insn-attr.h.
11782 * basic-block.h (optimize_mode_switching): Declare.
11783 * lcm.c (tm_p.h, insn-attr.h): #include.
11784 (seginfo, bb_info): New structs.
11785 (antic, transp, comp, delete, insert) : New file-scope static variables.
11786 (new_seginfo, add_seginfo, make_preds_opaque, reg_dies): New functions.
11787 (reg_becomes_live, optimize_mode_switching): Likewise.
11788 * tm.texi: Add description of mode switching macros.
11789 * toplev.c (rest_of_compilation): Call optimize_mode_switching.
11790
11791 * sh-protos.h (remove_dead_before_cse): Remove prototype.
11792 (fldi_ok, fpscr_set_from_mem): New prototypes.
11793 * sh.h (OPTIMIZATION_OPTION): Remove sh_flag_remove_dead_before_cse set.
11794 (CONST_DOUBLE_OK_FOR_LETTER_P, SECONDARY_INPUT_RELOAD_CLASS):
11795 Disable fldi for (TARGET_SH4 && ! TARGET_FMOVD).
11796 (sh_flag_remove_dead_before_cse): Remove declaration.
11797 (NUM_MODES_FOR_MODE_SWITCHING, OPTIMIZE_MODE_SWITCHING): New macros.
11798 (MODE_USES_IN_EXIT_BLOCK, MODE_NEEDED, MODE_AT_ENTRY): Likewise.
11799 (MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
11800 * sh.c (broken_move): Disable fldi for (TARGET_SH4 && ! TARGET_FMOVD).
11801 (barrier_align): Allow for JUMP_INSNS containing a parallel.
11802 (machine_dependent_reorg): Remove sh_flag_remove_dead_before_cse set.
11803 (fldi_ok): New function.
11804 (get_fpscr_rtx): Add fpscr_rtx as GC root.
11805 (emit_sf_insn): Only generate fpu switches when optimize < 1.
11806 (emit_df_insn): Likewise.
11807 (expand_fp_branch, emit_fpscr_use, remove_dead_before_cse): Delete.
11808 (sh_flag_remove_dead_before_cse): Delete.
11809 (get_free_reg, fpscr_set_from_mem): New functions.
11810 * sh.md (movdf, movsf): Remove no_new_pseudos code.
11811 (return): Remove emit_fpscr_use / remove_dead_before_cse calls.
11812
11813 2000-02-15 Loren Rittle <ljrittle@acm.org>
11814
11815 * ginclude/stddef.h: Correct usage of _BSD_RUNE_T_ for FreeBSD.
11816
11817 2000-02-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11818
11819 * Makefile.in (TREE_H, collect2.o, gcc.h, mips-tfile.o, cccp.o,
11820 cpphash.o, cppinit.o, protoize.o, unprotoize.o): Depend on version.h.
11821
11822 * cccp.c: Include version.h and/or don't declare `version_string'.
11823 * collect2.c: Likewise.
11824 * alpha.c: Likewise.
11825 * arm/aof.h: Likewise.
11826 * arm/coff.h: Likewise.
11827 * arm/elf.h: Likewise.
11828 * arm/pe.h: Likewise.
11829 * arm/tcoff.h: Likewise.
11830 * arm/telf.h: Likewise.
11831 * arm/tpe.h: Likewise.
11832 * arm/vxarm.h: Likewise.
11833 * convex/convex.c: Likewise.
11834 * i386/dgux.c: Likewise.
11835 * i386/sun386.h: Likewise.
11836 * m88k/m88k.c: Likewise.
11837 * mcore/mcore-pe.h: Likewise.
11838 * mips/mips.h: Likewise.
11839 * romp/romp.h: Likewise.
11840 * sh/sh.c: Likewise.
11841 * cpphash.c: Likewise.
11842 * cppinit.c: Likewise.
11843 * dwarf2out.c: Likewise.
11844 * dwarfout.c: Likewise.
11845 * gcc.c: Likewise.
11846 * gcc.h: Likewise.
11847 * mips-tfile.c: Likewise.
11848 * protoize.c: Likewise.
11849 * toplev.c: Likewise.
11850 * tree.h: Likewise.
11851
11852 * version.c (version_string): Constify a char*.
11853
11854 * version.h: New file.
11855
11856 2000-02-14 Nick Clifton <nickc@cygnus.com>
11857
11858 * configure.in: Add mcore-elf and mcore-pe targets.
11859 * configure: Regenerate.
11860
11861 * NEWS: Add note that MCore port has been contributed.
11862
11863 * invoke.texi: Document command line switches for MCore port.
11864 * install.texi: Add MCore to list of supported targets.
11865
11866 2000-02-14 Geoff Keating <geoffk@cygnus.com>
11867
11868 * collect2.c (main) [COLLECT_EXPORT_LIST]: If we have frames,
11869 then we will need to import the frame handling functions.
11870 (scan_prog_file) [COLLECT_EXPORT_LIST]: We will also need
11871 to import the frames themselves.
11872
11873 Mon Feb 14 13:31:01 2000 Stan Cox <scox@cygnus.com>
11874 Jason Eckhardt <jle@cygnus.com>
11875
11876 * basic_block.h: Added prototype for reorder_basic_blocks.
11877 * toplev.c: Changes to add -freorder-blocks and graph dump after
11878 block reordering is done.
11879 * flow.c (reorder_block_def): New structure for use during block
11880 reordering.
11881 (REORDER_BLOCK_*): New macros to access members of above structure.
11882 (skip_insns_between_block, get_common_dest, chain_reorder_blocks,
11883 make_reorder_chain, fixup_reorder_chain, reorder_basic_blocks): New
11884 functions for block reordering.
11885
11886 Mon Feb 14 11:24:44 2000 Hans-Peter Nilsson <hp@bitrange.com>
11887
11888 * gcc.texi (Passes): Fix typo.
11889 * md.texi (Standard Names): Ditto.
11890 * tm.texi (Storage Layout): Ditto.
11891
11892 2000-02-13 Zack Weinberg <zack@wolery.cumb.org>
11893
11894 * cpplib.c (do_define): Only free the old definition if it
11895 actually had one.
11896
11897 2000-02-13 Neil Booth <NeilB@earthling.net>
11898
11899 * cppfiles.c (read_and_prescan): When emitting deferred
11900 newlines, test speccase[] again instead of checking each
11901 possible whitespace character in turn. When we encounter \r,
11902 look behind for \n first, then ahead.
11903
11904 2000-02-13 Zack Weinberg <zack@wolery.cumb.org>
11905
11906 * cse.c (cse_altered): New internal flag.
11907 (cse_insn): Set it if we changed an insn.
11908 (cse_main): Clear cse_altered before each basic block.
11909 Only garbage collect if cse_altered is true afterward.
11910
11911 Sun Feb 13 14:12:28 2000 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
11912
11913 * sparc/sol2.h (LIB_SPEC): Link -ldl if profiling.
11914
11915 Sun Feb 13 13:21:55 2000 Jeffrey A Law (law@cygnus.com)
11916
11917 * combine.c (simplify_comparison): Fix typo.
11918
11919 Sun Feb 13 12:57:52 2000 Neil Booth <NeilB@earthling.net>
11920
11921 * prefix.c (concat, lookup_key): Use xmalloc and xrealloc
11922 consistently.
11923
11924 2000-02-13 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
11925
11926 * flow.c (flow_loop_tree_node_add): Use better algorithm by passing
11927 previously inserted node instead of root node. Caller changed.
11928
11929 2000-02-13 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
11930
11931 * basic-block.h (FLOW_LOOP_FIRST_BLOCK, FLOW_LOOP_LAST_BLOCK): Delete.
11932
11933 2000-02-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11934
11935 * crtstuff.c (__do_global_ctors_aux, __reg_frame_ctor,
11936 __dereg_frame_dtor): Add prototype argument.
11937
11938 * gthr-dce.h (__gthread_active_p, __gthread_once): Likewise.
11939
11940 * gthr-posix.h (__gthread_active_p, __gthread_once): Likewise.
11941
11942 * gthr-solaris.h (__gthread_active_p, __gthread_once): Likewise.
11943
11944 * gthr-vxworks.h (__gthread_once): Likewise.
11945
11946 * gthr-win32.h (__gthread_active_p, __gthread_once): Likewise.
11947
11948 Sat Feb 12 01:44:26 MET 2000 Jan Hubicka <jh@suse.cz>
11949
11950 * i386.c (ix86_emit_restore_regs_using_mov): Break out from ...
11951 (ix86_expand_epilogue): ... here. Use mov instead of add to restore
11952 stack pointer in functions w/o saved registers, output LEAVE more often
11953 on TARGET_USE_LEAVE machines.
11954
11955 2000-02-07 Dmitri Makarov <dim@wrs.com> & Bernd Schmidt <bernds@redhat.com>
11956
11957 * config/arm/arm.c (arm_init_cumulative_args); New function:
11958 Initlaise the CUMULATIE_ARGS strcuture for a function
11959 defintion.
11960 (arm_function_arg): New function: Determine where to place a
11961 function's argument. Also handles deciding the function's
11962 call cookie.
11963 (current_file_function_operand): New function: Return true if
11964 the symbol is a function which has already been compiled.
11965 (arm_is_long_call_p): New function: Return true if the
11966 indicated function should be called via a long call.
11967 (arm_valid_type_attribute_p): New function: Return true if the
11968 attribute is a valid, arm specific, attribute.
11969 (arm_comp_type_attribute): New function: Return true if the
11970 two types have compatable, arm specific, attributes.
11971
11972 * config/arm/arm.h (CUMULATIVE_ARGS): Redefine to be a
11973 structure.
11974 (FUNCTION_ARG): Redefine to call arm_function_arg.
11975 (FUNCTION_ARG_PARTIAL_NREGS): Redefine to use correct
11976 structure field.
11977 (INIT_CUMULATIVE_ARGS): Redefine to call
11978 arm_init_cumulative_args.
11979 (FUNCTION_ARG_ADVANCE): Redefine to use correct structure
11980 field.
11981 (SETUP_INCOMING_VARARGS): Redefine to use correct structure
11982 field.
11983 (ARM_MARK_NEARBY_FUNCTION): New macro: Mark already compiled
11984 functions.
11985 (ENCODE_SECTION): Add call to ARM_MARK_NEARBY_FUNCTION.
11986 (VALID_MACHINE_TYPE_ATTRIBUTE): Define.
11987 (COMP_TYPE_ATTRIBUTES): Define.
11988
11989 * config/arm/arm.md (call): Call arm_is_long_call_p to decide
11990 if a long call is needed.
11991 (call_value): Call arm_is_long_call_p to decide if a long call
11992 is needed.
11993 (call_symbol): Call arm_is_long_call_p to decide if a long call
11994 is needed.
11995
11996 * config/arm/arm-protos.h: Add prototype for arm_is_long_call_p.
11997
11998 2000-02-11 Denis Chertykov <denisc@overta.ru>
11999
12000 * README.AVR: New file with information about the avr ports.
12001 * config/avr: New directory with avr port files.
12002
12003 2000-02-11 Andreas Jaeger <aj@suse.de>
12004
12005 * fixinc/Makefile.in (FIXINC_DEFS): Remove unneeded @fixinc_defs@.
12006
12007 2000-02-11 Zack Weinberg <zack@wolery.cumb.org>
12008
12009 * cpphash.c: Fix formatting, update commentary.
12010 (dump_definition): Take three separate arguments instead of a
12011 MACRODEF structure argument.
12012 * cpphash.h: Update prototype of dump_definition.
12013 * cppinit.c (cpp_finish): Update call of dump_definition.
12014
12015 * cpplib.c (do_define): Always create new hash entry with
12016 T_MACRO type. Remove redundant check for redefinition of
12017 poisoned identifier. Update call of dump_definition.
12018 (do_undef): Don't call check_macro_name. Rename sym_length to
12019 len.
12020 (do_error, do_warning): Don't use copy_rest_of_line or
12021 SKIP_WHITE_SPACE.
12022 (do_warning): Don't use pedwarn for the actual warning,
12023 only the notice about its not being in the standard. (Fixes
12024 bug with #warning in system headers.)
12025 (do_ident): Stricter argument checking - accept only a single
12026 string after #ident. Also, macro-expand the line.
12027 (do_xifdef): Use cpp_defined. De-obfuscate.
12028
12029 (do_pragma): Split out specific pragma handling to separate
12030 functions. Use get_directive_token. Update commentary. Do
12031 not pass on #pragma once or #pragma poison to the front end.
12032 (do_pragma_once, do_pragma_implementation, do_pragma_poison,
12033 do_pragma_default): New.
12034
12035 Feb 11 12:30:53 2000 Jeffrey A Law (law@cygnus.com)
12036
12037 * jump.c (jump_optimize_1): The first operand in a relational
12038 can be a CONST_INT.
12039 * optabs.c (emit_conditional_move): Handle relationals which
12040 have a known true/false result.
12041
12042 2000-02-11 Geoff Keating <geoffk@cygnus.com>
12043
12044 * function.c (thread_prologue_and_epilogue_insns): Don't insert
12045 a RETURN insn into a block which already ends with a jump.
12046
12047 2000-02-11 Geoff Keating <geoffk@cygnus.com>
12048
12049 * haifa-sched.c (BUF_LEN): Increase a lot.
12050
12051 2000-02-11 Nick Clifton <nickc@cygnus.com>
12052
12053 * configure.in: Add tm_p_file specification for thumb targets.
12054 * configure: Regenerate.
12055
12056 * config/arm/thumb-protos.h: New file: Prototypes for exported
12057 functions defined in thumb.c.
12058
12059 2000-02-11 Robert Lipe <robertl@sco.com>
12060
12061 * Makefile.in (bootstrap-lean): Remove additional files.
12062 (bootstrap2-lean): Likewise.
12063 (VOL_FILES): List of files for above.
12064
12065 2000-02-11 Nathan Sidwell <nathan@acm.org>
12066
12067 * cpphash.c (special_symbol): Remove spurious argument to
12068 cpp_lookup.
12069
12070 2000-02-11 Joel Sherrill (joel@OARcorp.com>
12071
12072 * configure.in: (i*86-*-rtems*): Swapped elf and coff
12073 stanzas.
12074 * configure: Rebuilt.
12075
12076 2000-02-11 Rodney Brown <RodneyBrown@pmsc.com>
12077
12078 * pa-protos.h: Wrap function_arg_padding in TREE_CODE #ifdef.
12079
12080 Fri Feb 11 02:59:05 2000 Jeffrey A Law (law@cygnus.com)
12081
12082 * pa.c, pa.h: Remove trigraph sequences within comments.
12083
12084 Fri Feb 11 02:51:56 2000 Pavel Roskin <pavel_roskin@geocities.com>
12085
12086 * invoke.texi (PPC Options): -mno-new-mnenomics -> -mold-mnemonics.
12087
12088 Fri Feb 11 02:48:30 2000 Brad Lucier (lucier@math.purdue.edu)
12089
12090 * sbitmap.h: Make SBITMAP_ELT_BITS unsigned.
12091
12092 2000-02-11 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12093
12094 * config/c4x/c4x.c (fp_zero_operand): Check for CONST_DOUBLE.
12095
12096 2000-02-11 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12097
12098 * config/c4x/c4x.h (ASM_GLOBALIZE_LABEL): Use c4x_global_label.
12099 (ASM_OUTPUT_EXTERNAL): Use c4x_external_ref.
12100 (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
12101 (ASM_FILE_END): Use c4x_file_end.
12102 * config/c4x/c4x.c (c4x_global_label): New function.
12103 (c4x_external_ref, c4x_file_end): Likewise.
12104
12105 * config/c4x/c4x-protos.h (c4x_global_label): Add prototype.
12106 (c4x_external_ref, c4x_end_file): Likewise.
12107
12108 2000-02-10 Zack Weinberg <zack@wolery.cumb.org>
12109
12110 * cppexp.c: Don't include cpphash.h.
12111 (parse_charconst, cpp_lex): Use cpp_defined.
12112 (cpp_lex): Use get_directive_token throughout. Remove
12113 unnecessary cases from switch. Move assertion-handling code
12114 down to OTHER case.
12115 (cpp_parse_expr): If we see '+' or '-', check the context to
12116 determine if they are unary or binary operators. Streamline
12117 the jumps a bit. Do not call skip_rest_of_line.
12118
12119 * cpplib.c: Make skip_rest_of_line and cpp_skip_hspace
12120 static. Export get_directive_token. Update commentary.
12121 (cpp_defined): New function.
12122 (do_define): Remove reference to T_PCSTRING. Call
12123 free_definition to release memory for old definition, when
12124 redefining a macro.
12125 (eval_if_expression): Set only_seen_white to 0 before calling
12126 cpp_parse_expr. Call skip_rest_of_line after it returns.
12127 (cpp_read_check_assertion): Don't preserve a pointer into the
12128 token buffer across a call to cpp_get_token.
12129
12130 * Makefile.in (cppexp.o): Don't depend on cpphash.h.
12131 * cppfiles.c (redundant_include_p): Use cpp_defined.
12132 * cpphash.c (free_definition): New function.
12133 (delete_macro): Use it. Update commentary.
12134 * cpphash.h: Typedef HASHNODE here. Prototype cpp_lookup and
12135 free_definition.
12136 * cpplib.h: Don't typedef HASHNODE here. Delete T_PCSTRING
12137 from enum node_type. Prototype cpp_defined and get_directive_token.
12138 Don't prototype cpp_lookup, skip_rest_of_line, or cpp_skip_hspace.
12139
12140 * fix-header.c (check_macro_names): Use cpp_defined.
12141 (read_scan_file): Set inhibit_warnings and inhibit_errors in
12142 the options structure.
12143
12144 2000-02-10 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
12145
12146 * c-pragma.c (maximum_field_alignment): Remove duplicate declaration.
12147
12148 2000-02-10 Jason Merrill <jason@casey.cygnus.com>
12149
12150 * dwarf2out.c (add_abstract_origin_attribute): Check TREE_CODE (origin)
12151 rather than die->die_tag.
12152
12153 Thu Feb 10 16:26:49 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
12154
12155 * combine.c (make_extraction, force_to_mode): Avoid warning on
12156 mixed-signedness conditionals.
12157 (make_field_assignment, nonzero_bits): Likewise.
12158 * expmed.c (store_fixed_bit_field): ALIGN arg now unsigned.
12159 (store_split_bit_field, extract_split_bit_field): Likewise.
12160 (extract_fixed_bit_field, store_bit_field,
12161 * expr.c: Change alignment to be unsigned everywhere.
12162 (move_by_pieces, store_constructor_field, store_constructor):
12163 Alignment parm is unsigned.
12164 (emit_block_move, emit_group_load, emit_group_store): Likewise.
12165 (clear_storage, emit_push_insn, compare_from_rtx): Likewise.
12166 (do_compare_rtx_and_jump): Likewise.
12167 (move_by_pieces_ninsns, clear_by_pieces): Likewise.
12168 Compare align with GET_MODE_ALIGNMENT.
12169 (expand_expr_unaligned): Pointer to alignment is pointer to unsigned.
12170 (get_inner_reference): Likewise.
12171 (copy_blkmode_from_reg, emit_push_insn): Remove unneeded casts.
12172 (expand_assignment): Local vars for alignment now unsigned.
12173 (store_constructor, store_field, expand_expr, do_jump): Likewise.
12174 (do_compare_and_jump): Likewise.
12175 (store_field): Call new function expr_align.
12176 * expr.h (emit_block_move, emit_group_load, emit_group_store):
12177 Alignment arg now unsigned.
12178 (clear_storage, emit_push_insn, compare_from_rtx): Likewise.
12179 (do_compare_rtx_and_jump, store_bit_field): Likewise.
12180 (extract_bit_field): Likewise.
12181 * fold-const.c (add_double): Add cast to eliminate signedness warning.
12182 * machmode.h (GET_MODE_ALIGNMENT): Result is unsigned.
12183 (get_best_mode): Alignment arg is unsigned.
12184 * rtl.h (move_by_pieces): Likewise.
12185 * store-layout.c (maximum_field_alignment, set_alignment):
12186 Now unsigned.
12187 (layout_decl): Alignment arg is now unsigned.
12188 Remove unneeded casts.
12189 (layout_record, layout_union, layout_type): Remove unneeded casts.
12190 Local alignment variables now unsigned.
12191 (get_best_mode): Alignment arg now unsigned.
12192 * tree.c (expr_align): New function.
12193 * tree.h (expr_align): Likewise.
12194 (maximum_field_alignment, set_alignment): Now unsigned.
12195 (get_inner_reference): Alignment argument is now pointer to unsigned.
12196 * varasm.c (assemble_variable): Add cast to eliminate warning.
12197
12198 Thu Feb 10 12:56:47 2000 Jim Wilson <wilson@cygnus.com>
12199
12200 * expmed.c (store_bit_field): If op0 and fieldmode are the same size,
12201 then store directly into op0.
12202
12203 * calls.c (expand_call): When emitting a NOTE_INSN_SETJMP, search for
12204 the CALL_INSN, and emit the note immediately after it.
12205
12206 2000-02-10 Nick Clifton <nickc@cygnus.com>
12207
12208 * config/arm/thumb.md (epilogue): Include a (return) in the
12209 generated insn, and emit it using emit_jump_insn not
12210 emit_insn.
12211
12212 Thu Feb 10 18:28:59 MET 2000 Jan Hubicka <jh@suse.cz>
12213
12214 * function.c (assign_temp): Change zero-sized arrays to size 1.
12215 * integrate.c (expand_inline_function): Do not update
12216 stack_alignment_needed
12217 * i386.c (compute_frame_size): Remove #ifdef PREFERRED_FRAME_BOUNDARY,
12218 add some sanity checking, remove optimization for function with
12219 zero frame size.
12220
12221 2000-02-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12222
12223 * flow.c (mark_regs_live_at_end): Delete unused variables.
12224
12225 * ggc-page.c (ggc_page_print_statistics): bzero -> memset.
12226
12227 * integrate.c (copy_rtx_and_substitute): Wrap variable `alignment'
12228 in macro FRAME_GROWS_DOWNWARD.
12229
12230 * stmt.c (expand_end_bindings): Delete unused variable.
12231
12232 * unroll.c (iteration_info): Mark parameter `loop' with
12233 ATTRIBUTE_UNUSED.
12234
12235 2000-02-10 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
12236
12237 * fixinc/server.c (load_data): Return NULL if the marker line is
12238 not found.
12239 (run_shell): If load_data returns NULL, retry the command once, in
12240 a new shell.
12241
12242 * configure: Rebuilt.
12243
12244 2000-02-09 Bruce Korb <bkorb@gnu.org>
12245
12246 * gcc/fixincludes: ** DELETED **
12247 * gcc/fixcpp: ** DELETED **
12248 * gcc/fixinc-nt.sed: ** DELETED **
12249 * gcc/just-fixinc: ** DELETED **
12250 * gcc/Makefile.in: Removed out-dated commentary
12251 * gcc/configure.in: Removed fast-fixincludes disablement.
12252 * MAINTAINERS(Ian Taylor) moved to "Write after approval" group.
12253
12254 2000-02-09 Clinton Popetz <cpopetz@cygnus.com>
12255 * function.c (thread_prologue_and_epilogue_insns): Uncomment
12256 last change.
12257
12258 2000-02-09 Richard Henderson <rth@cygnus.com>
12259
12260 * jump.c (delete_insn): Don't delete user labels at -O0.
12261
12262 2000-02-09 Robert Lipe <robertl@sco.com>
12263
12264 * Makefile.in (gen-protos): Don't depend on HOST_LIBDEPS.
12265 Don't link with HOST_LIBS.
12266
12267 2000-02-09 Zack Weinberg <zack@wolery.cumb.org>
12268
12269 * configure.in: Correct --help text for --with-dwarf2.
12270 Put tm-dwarf2.h after other tm files, if it's requested.
12271 * configure: Regenerate.
12272 * config/tm-dwarf2.h: #undef PREFERRED_DEBUGGING_TYPE before
12273 defining it.
12274
12275 2000-02-09 Zack Weinberg <zack@wolery.cumb.org>
12276
12277 * cpplib.h: Provide HASHNODE typedef and forward decl of
12278 struct hashnode only. Kill cpp_hashnode typedef. MACRODEF,
12279 DEFINITION, struct hashnode, struct macrodef, struct
12280 definition, scan_decls prototype, default defn of
12281 INCLUDE_LEN_FUDGE moved elsewhere.
12282
12283 * cpphash.h: MACRODEF, DEFINITION, struct macrodef, struct
12284 definition, and struct hashnode moved here. Remove the unused
12285 'predefined' field from struct definition. Replace the 'args'
12286 union with its sole member. All users updated (cpphash.c).
12287 Delete HASHSTEP and MAKE_POS macros, and hashf prototype. Add
12288 multiple include guard.
12289
12290 * cpphash.c (hashf): Make static; use better algorithm; drop
12291 HASHSIZE parameter; return an unsigned int.
12292 (cpp_lookup): Drop HASH parameter. PFILE parameter is
12293 used. Calculate HASHSIZE modulus here.
12294 (cpp_install): Drop HASH parameter. Calculate HASHSIZE modulus
12295 here.
12296 (create_definition): Drop PREDEFINITION parameter.
12297 * cpplib.c (do_define): Don't calculate a hash value here.
12298 Don't pass (keyword == NULL) to create_definition.
12299
12300 * scan.h: Prototype scan_decls here.
12301 * cppfiles.c: Move INCLUDE_LEN_FUDGE default defn here.
12302 * cppexp.c, cppfiles.c, cppinit.c, cpplib.c, fix-header.c: All
12303 callers of cpp_lookup and cpp_install updated.
12304
12305 * cpphash.c (macarg): Hoist all the flag diddling out of the
12306 function...
12307 (macroexpand): ... and out of the loop that calls macarg.
12308 Skip over the initial paren before macro arguments with
12309 cpp_get_non_space_token; point may be some distance before
12310 that paren. Abort if it's not there.
12311
12312 * cpplib.c (parse_clear_mark): Delete function.
12313 (parse_set_mark, parse_goto_mark): Make static.
12314 (ACTIVE_MARK_P): New macro.
12315 (skip_block_comment, skip_line_comment): Do not bump the line
12316 if ACTIVE_MARK_P is true.
12317 (cpp_pop_buffer): The buffer to be popped may not have an
12318 active mark.
12319 (cpp_get_token): When looking for the initial paren before
12320 macro arguments, only set a mark in a file buffer, Always
12321 return to that mark before proceeding to call macroexpand or
12322 return a NAME token.
12323
12324 * cpplib.h: Remove prototypes of parse_set_mark,
12325 parse_clear_mark, parse_goto_mark.
12326 (struct cpp_options): Rename 'put_out_comments' to
12327 'discard_comments' and invert its sense.
12328 * cppinit.c, cpphash.c, cpplib.c: All users of
12329 put_out_comments changed to use discard_comments, with
12330 opposite sense.
12331
12332 2000-02-09 Clinton Popetz <cpopetz@cygnus.com>
12333
12334 * function.c (thread_prologue_and_epilogue_insns): Don't delete
12335 the edge from a block that both jumps and falls through to the
12336 fallthru block.
12337
12338 2000-02-09 Scott Bambrough <scottb@netwinder.org>
12339
12340 * config/arm/arm.md (movsi): In PIC mode, make sure that a
12341 constant source address is legitimate.
12342
12343 2000-02-09 Philip Blundell <pb@futuretv.com>
12344
12345 * config/arm/arm.c (legitimize_pic_address): Handle LABEL_REF
12346 correctly.
12347
12348 * config/arm/arm.h (LEGITIMATE_CONSTANT_P): Allow anything when
12349 generating PIC.
12350 (LEGITIMATE_PIC_OPERAND): Disallow references to labels.
12351
12352 2000-02-09 Zack Weinberg <zack@wolery.cumb.org>
12353
12354 * cpplib.c (cpp_define, cpp_undef): Make sure the stacked buffer
12355 ends with a newline and a NUL. Don't be so clever manipulating
12356 strings.
12357
12358 Wed Feb 9 14:18:08 MET 2000 Jan Hubicka <jh@suse.cz>
12359
12360 * reload1.c (reload) Align stack frame to cfun->stack_alignment_needed,
12361 not to BIGGEST_ALIGNMENT.
12362
12363 2000-02-08 Geoff Keating <geoffk@cygnus.com>
12364
12365 * dwarf2.h (DW_CFA_GNU_negative_offset_extended): New constant.
12366 * dwarf2out.c (dwarf_cfi_name): Print name of new constant.
12367 (reg_save): Use DW_CFA_GNU_negative_offset_extended when needed.
12368 (output_cfi): Handle output of DW_CFA_GNU_negative_offset_extended.
12369 * frame.c (execute_cfa_insn): Handle
12370 DW_CFA_GNU_negative_offset_extended.
12371
12372 2000-02-08 Richard Henderson <rth@cygnus.com>
12373
12374 * flow.c (tidy_fallthru_edges): Split out from ...
12375 (delete_unreachable_blocks): ... here.
12376 (find_basic_blocks): Use it.
12377
12378 Tue Feb 8 15:51:50 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
12379
12380 * stmt.c (expand_decl): Do set RTX_UNCHANGING_P for TREE_READONLY.
12381
12382 2000-02-08 Zack Weinberg <zack@wolery.cumb.org>
12383
12384 * Makefile.in (GEN_PROTOS_OBJS): Remove libcpp.a.
12385 (gen_protos.o): Don't depend on cpplib.h or cpphash.h.
12386 (fix-header.o): Don't depend on cpphash.h.
12387
12388 * scan.c (hashstr): New function.
12389 * scan.h: Prototype it.
12390 * fix-header.c: Don't include cpphash.h. Use hashstr.
12391 * gen-protos.c: Don't include cpphash.h or cpplib.h. Use
12392 hashstr. Report hash table statistics. Add private
12393 definition of xrealloc.
12394
12395 2000-02-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12396
12397 * i386.h (TARGET_SWITCHES): Fix typo in option name.
12398
12399 2000-02-08 Clinton Popetz <cpopetz@cygnus.com>
12400
12401 * function.c (thread_prologue_and_epilogue_insns): Don't replace
12402 jumps with returns unless they are jumps to the fallthru block.
12403
12404 Tue Feb 8 07:53:55 2000 Jan Hubicka <jh@suse.cz>
12405
12406 * i386.md (addqi3_cc): Fix contraints.
12407
12408 Tue Feb 8 01:39:45 2000 Hans-Peter Nilsson <hp@bitrange.com>
12409
12410 * function.c (emit_return_into_block): Wrap in #ifdef HAVE_return.
12411
12412 2000-02-07 Mark Mitchell <mark@codesourcery.com>
12413
12414 * cpplib.c (cpp_get_token): Call CPP_BUMP_LINE after reading a
12415 carriage return after a macro name.
12416
12417 2000-02-07 Fred Fish <fnf@be.com>
12418
12419 * i386/beos-elf.h: (ASM_IDENTIFY_GCC): Define to nothing
12420 so the gcc2_compiled symbol doesn't confuse BeOS debuggers.
12421
12422 2000-02-07 Zack Weinberg <zack@wolery.cumb.org>
12423
12424 * cppfiles.c (deps_output): Count spacers in deps_column.
12425
12426 2000-02-07 Neil Booth <NeilB@earthling.net>
12427
12428 * cppinit.c (initialize_dependency_output): If there is no
12429 suffix, don't try to look for known suffixes. Use strrchr.
12430 (cpp_start_read): Remove duplicate initialization.
12431
12432 Mon Feb 7 18:36:41 MET 2000 Jan Hubicka <jh@suse.cz>
12433
12434 * calls.c (compute_argument_block_size): New argument
12435 preferred_stack_boundary.
12436 (expand_call): update cfun->preferred_stack_boundary, update call of
12437 compute_argument_block_size
12438 (emit_library_call): Increate cfun->preferred_stack_boundary
12439 to PREFERRED_STACK_BOUNDARY
12440 (emit_library_call_value): Likewise.
12441 * explow.c (allocate_dynamic_stack_spave): Likewise.
12442 * function.c (prepare_function_start): Set
12443 cfun->preferred_stack_boundary
12444 * function.h (struct function): Add preferred_stack_boundary field.
12445 * integrate.c (expand_inline_function): Update
12446 cfun->preferred_stack_boundary and cfun->stack_alignment_needed.
12447 (copy_rtx_and_substitute): Align frame to stack_alignment_needed only.
12448 * i386.c (compute_frame_size): Use cfun->preferred_stack_boundary.
12449
12450 2000-02-06 Zack Weinberg <zack@wolery.cumb.org>
12451
12452 * cpplib.c (my_strerror, cpp_error, cpp_error_with_line,
12453 cpp_error_from_errno, cpp_warning, cpp_warning_with_line,
12454 cpp_pedwarn, cpp_pedwarn_with_line,
12455 cpp_pedwarn_with_file_and_line): Move to cpperror.c.
12456 (cpp_print_file_and_line, v_cpp_error, v_cpp_warning,
12457 v_cpp_error_with_line, v_cpp_warning_with_line,
12458 cpp_message_from_errno, cpp_perror_with_name): Delete.
12459
12460 * cpperror.c (cpp_print_containing_files): Take starting
12461 buffer as argument.
12462 (cpp_file_line_for_message): Rename to cpp_print_file_and_line.
12463 (v_cpp_message): Now called directly by all entry points.
12464 Remove -1 case.
12465 (cpp_pfatal_with_name, cpp_message): Delete.
12466 (cpp_notice_from_errno, cpp_ice): New functions.
12467 (cpp_notice): Is now for reporting error conditions, just
12468 without an associated file.
12469 (cpp_error, cpp_error_with_line): Don't do anything if
12470 opts->inhibit_errors is on.
12471 (cpp_pedwarn_with_file_and_line): Take column argument also.
12472
12473 * cpplib.h: Update prototypes of exported functions.
12474 (struct cpp_options): Add inhibit_errors.
12475
12476 * cppalloc.c, cppfiles.c: Use fprintf not cpp_notice for
12477 non-error messages. Include intl.h.
12478
12479 * cppinit.c, cppmain.c: Likewise. Also, use
12480 cpp_notice_from_errno instead of cpp_perror_with_name or
12481 cpp_pfatal_with_name, and cpp_notice instead of cpp_message.
12482
12483 * cppexp.c, cpphash.c, cppinit.c, cpplib.c: Use cpp_ice to
12484 report internal errors.
12485
12486 * cpplib.c (do_define): Switch bcopy to memcpy.
12487 Give cpp_pedwarn_with_file_and_line a dummy column argument.
12488
12489 * cpplib.c (copy_rest_of_line): Revert previous change: don't
12490 bail out early if we hit a line comment.
12491
12492 2000-02-06 Richard Henderson <rth@cygnus.com>
12493
12494 * flow.c (flow_delete_insn, make_edge, remove_edge): Export.
12495 * basic-block.h: Declare them.
12496 * emit-rtl.h (active_insn_p): New.
12497 (next_active_insn, prev_active_insn): Use it.
12498 * rtl.h: Declare it.
12499 * function.c (emit_return_into_block): New.
12500 (thread_prologue_and_epilogue_insns): Insert return insns instead
12501 of epilogues when possible.
12502 * jump.c (jump_optimize_1): Remove code to insert a return insn
12503 on the fallthru to the exit block.
12504
12505 * i386.c (ix86_can_use_return_insn_p): Fail for large poped args
12506 and for non-empty stack frames.
12507 * i386.md (return): Expand to return-pop as needed.
12508
12509 2000-02-06 Richard Henderson <rth@cygnus.com>
12510
12511 * simplify-rtx.c (simplify_relational_operation): Canonicalize
12512 constant to op1 for testing.
12513
12514 2000-02-06 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12515
12516 * config/c4x/c4x.md (*ldi_on_overflow): New pattern.
12517 (fixuns_truncqfqi2): Use it.
12518
12519 2000-02-06 Richard Henderson <rth@cygnus.com>
12520
12521 * i386.c (ix86_agi_dependant): Handle pro_epilogue_adjust_stack
12522 as a TYPE_LEA insn.
12523
12524 * i386.md (widening and peepholes): Mask the constant instead of
12525 using gen_lowpart.
12526
12527 2000-02-05 Zack Weinberg <zack@wolery.cumb.org>
12528
12529 * cppfiles.c (read_and_prescan) [case SPECCASE_QUESTION]: Bump
12530 input pointer before possibly branching off to the backslash
12531 code.
12532 * cpphash.c (macroexpand): Correctly delete \r escapes when
12533 stringifying parameters.
12534 * cpplib.c (copy_rest_of_line): Go directly to skip_block_comment
12535 if we can; bail out early if we hit a line comment.
12536 (handle_directive): Treat '# 123' in an .S file just like
12537 '# <punctuation>'. Discard the shifted '#' if we hit '#\n'.
12538 Return 1 for '# not_a_directive'.
12539 (get_directive_token): Pop macro buffers here, so that
12540 cpp_get_token can't sneakily move past a newline.
12541 Add sanity checks.
12542 (cpp_get_token): goto randomchar if handle_directive returns 0.
12543
12544 * cppalloc.c: Update copyright.
12545 * cpplib.c: Merge all the static function prototypes into one
12546 block.
12547 * cpplib.h: Remove #if 0 block.
12548
12549 * cpperror.c: Remove #ifdef EMACS block.
12550 * cppmain.c: Likewise.
12551 * cpphash.c: Remove #if 0 blocks.
12552 * cppinit.c: Remove #if 0 blocks, and the -lint option.
12553 * cpplib.c: Remove #if 0 blocks and code referencing
12554 pcp_inside_if or for_lint. Remove duplicate error message.
12555 Fix error messages for #else after #else or #elif. Reformat.
12556 Remove archaic TODO list.
12557 * cpplib.h: Remove pcp_inside_if and for_lint flags.
12558
12559 2000-02-05 Zack Weinberg <zack@wolery.cumb.org>
12560
12561 * i386/osf1elf.h: Add missing backslash to multiline string.
12562
12563 2000-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12564
12565 * longlong.h [sparc] (udiv_qrnnd): Avoid stringifying macro arg.
12566
12567 2000-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12568
12569 * Makefile.in (c-common.o): Depend on $(EXPR_H).
12570
12571 * c-common.c: Include expr.h.
12572
12573 * c-pragma.c (mark_align_stack): Add prototype.
12574
12575 * caller-save.c (add_stored_regs): Likewise.
12576
12577 * combine.c (record_promoted_value): Likewise.
12578
12579 * i386.c (ix86_sched_reorder_pentium, ix86_sched_reorder_ppro):
12580 Likewise.
12581
12582 * cppinit.c (new_pending_define): Likewise.
12583
12584 * cpplib.c (skip_block_comment, skip_line_comment): Likewise.
12585
12586 * dwarf2out.c (save_rtx, splice_child_die, reverse_die_lists,
12587 AT_class, AT_flag, AT_int, AT_unsigned, AT_string, AT_ref, AT_loc,
12588 AT_addr, AT_lbl, get_AT_ref, free_AT, free_die, local_scope_p,
12589 class_scope_p): Likewise.
12590
12591 * dwarf2out.h (dwarf2out_set_demangle_name_func,
12592 dwarf2out_add_library_unit_info): Likewise.
12593
12594 * ggc.h (ggc_page_print_statistics): Likewise.
12595
12596 * haifa-sched.c (propagate_deps): Likewise.
12597
12598 * reg-stack.c (next_flags_user, record_label_references): Likewise.
12599
12600 * rtl.h (set_stack_check_libfunc): Likewise.
12601
12602 * toplev.h (set_fatal_function): Likewise.
12603
12604 * toplev.c (set_fatal_function): Delete prototype.
12605
12606 * diagnostic.c: Deconstify functions returning malloc'ed ptrs.
12607
12608 2000-02-05 Geoff Keating <geoffk@cygnus.com>
12609
12610 * ginclude/ppc-asm.h (FUNC_START): Use USER_LABEL_PREFIX.
12611 (FUNC_END): Likewise.
12612
12613 2000-02-05 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12614
12615 * caller-save.c: Include tm_p.h.
12616
12617 2000-02-05 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12618
12619 * Makefile.in (libgcc.a): Add $(LIBGCC1) to libgcc.a after $(LIBGCC2).
12620
12621 2000-02-04 Neil Booth <NeilB@earthling.net>
12622
12623 * cccp.c (main): Check 'dir' for a NULL pointer before passing
12624 it to strcmp.
12625
12626 2000-02-04 Zack Weinberg <zack@wolery.cumb.org>
12627
12628 * recog.h: Remove NO_MD_PROTOTYPES ifdefs.
12629 * genflags.c: Use the max_operand_1 logic from genemit.c to
12630 calculate how many arguments gen_insn prototypes have. Remove
12631 NO_MD_PROTOTYPES ifdefs from the generated file.
12632 * genoutput.c: Don't define NO_MD_PROTOTYPES in the generated
12633 file. Cast gen_insn initializers to insn_gen_fn.
12634 * config/alpha/vms.h: Don't define NO_MD_PROTOTYPES.
12635 * gcc.texi: Remove documentation of NO_MD_PROTOTYPES.
12636
12637 2000-02-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12638
12639 * fixinc/Makefile.in (HDR): Add machname.h.
12640 (clean): Likewise.
12641
12642 2000-02-05 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12643
12644 * config/c4x/c4x.h (c4x_compare_op0, c4x_compare_op1): Move ...
12645 (c4x_regclass_map, c4x_caller_save_map, c4x_rpts_cycles): Ditto.
12646 (c4x_cpu_version): Ditto.
12647 * config/c4x/c4x-protos.h: ... here.
12648
12649 2000-02-04 Jason Merrill <jason@casey.cygnus.com>
12650
12651 * dwarf2out.c (add_abstract_origin_attribute): Don't call
12652 gen_abstract_function on our context if we're a nested function.
12653
12654 2000-02-05 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
12655
12656 * config/c4x/c4x.md (fixuns_truncqfqi2): Rewrite.
12657 * config/c4x/libgcc.S (ufix_truncqfhi2n): Fix.
12658
12659 2000-02-04 Bruce Korb <bkorb@gnu.org>
12660
12661 * fixinc/genfixes(machname.h):
12662 Move the functionality from gen-machine.h into this file.
12663 UNdef MN_NAME_PAT if there are no names to change.
12664 Also, be a little kinder when AutoGen is not present.
12665
12666 * fixinc/Makefile.in(machname.h):
12667 Change the generation rule to use genfixes.
12668
12669 * fixinc/fixfixes.c(machine_name):
12670 machine_name_fix's functionality now dependent upon whether
12671 MN_NAME_PAT is defined.
12672
12673 * fixinc/fixtests.c(machine_name):
12674 ditto.
12675
12676 * fixinc/fixlib.c(mn_get_regexps): conditional on definition
12677 of MN_NAME_PAT.
12678
12679 * fixinc/fixlib.h(mn_get_regexps):
12680 ditto
12681
12682 * fixinc/gen-machine.h: DELETED
12683
12684 2000-02-04 Jan Hubicka <jh@suse.cz>
12685 Richard Henderson <rth@cygnus.com>
12686
12687 * i386.c (SAVE_REGS_FIRST): Remove.
12688 (ix86_initial_elimination_offset): Handle only SAVE_REGS_FIRST mode.
12689 (ix86_compute_frame_size): Likewise.
12690 (ix86_expand_prologue): Likewise. Use pro_epilogue_adjust_stack.
12691 (ix86_emit_restore_regs): Remove.
12692 (ix86_emit_epilogue_esp_adjustment): Use pro_epilogue_adjust_stack
12693 when a frame pointer is in use.
12694 (ix86_expand_epilogue): Handle only SAVE_REGS_FIRST mode. Use mov
12695 instead of pop to restore a register when profitable; emit leave
12696 when profitable.
12697 (ix86_attr_length_default): Handle pro_epilogue_adjust_stack
12698 as a TYPE_LEA insn.
12699 (ix86_adjust_cost): Handle pro_epilogue_adjust_stack as TYPE_ALU.
12700 * i386.md (prologue_allocate_stack): Remove.
12701 (epilogue_deallocate_stack): Remove.
12702 (pro_epilogue_adjust_stack): New.
12703
12704 2000-02-04 Richard Henderson <rth@cygnus.com>
12705
12706 * function.c (diddle_return_value): Rework to use a callback function.
12707 Use current_function_return_rtx if it's been set up.
12708 (do_clobber_return_reg, clobber_return_register): New.
12709 (do_use_return_reg, use_return_register): New.
12710 (expand_function_end): Use them.
12711 * stmt.c (expand_null_return): Likewise.
12712 * function.h: Declare them.
12713 * flow.c (mark_regs_live_at_end): Use diddle_return_value.
12714 (mark_reg): Change arguments as appropriate for callback.
12715 * integrate.c (expand_inline_function): Revert 19 Jan change.
12716
12717 Fri Feb 4 20:25:42 2000 Hans-Peter Nilsson <hp@bitrange.com>
12718
12719 * tm.texi (Values in Registers): Fix typo: "fo" "for".
12720 (Misc): Say the scheduler, not the Haifa scheduler.
12721
12722 2000-02-04 Clinton Popetz <cpopetz@cygnus.com>
12723
12724 * jump.c (mark_jump_label): Add in_mem param, check SYMBOL_REFs
12725 when in_mem is set. Update all callers.
12726
12727 2000-02-04 Richard Henderson <rth@cygnus.com>
12728
12729 * i386/openbsd.h (INT_ASM_OP): Define.
12730
12731 Fri Feb 4 10:51:30 2000 Hans-Peter Nilsson <hp@bitrange.com>
12732
12733 * tm.texi: Fix various typos.
12734
12735 Thu Feb 3 17:17:32 2000 Steve Ellcey <sje@cup.hp.com>
12736
12737 * config/pa/pa-hpux11.h (LIB_SPEC): Correct typo in !p case.
12738 (MD_STARTFILE_PREFIX_1): New macro.
12739
12740 Thu Feb 3 15:08:13 MET 2000 Jan Hubicka <jh@suse.cz>
12741
12742 * i386.md (movstrsi, clrstrsi): Support variable sized copies, align
12743 destination when needed.
12744 (strmovsi, strsetsi): New expander.
12745 (strmovsi_1, strsetsi_1): New pattern.
12746 * i386.h (MASK_NO_ALIGN_STROP, MASK_INLINE_ALL_STROP,
12747 TARGET_ALIGN_STRINGOPS, TARGET_INLINE_ALL_STRINGOPS): New macros.
12748 (TARGET_SWITCHES) Add align-stringops and inline-all-stringops.
12749 * invoke.texi (align-stringops, inline-all-stringops): Document.
12750
12751 Wed Feb 2 23:04:47 2000 Krister Walfridsson <cato@df.lth.se>
12752
12753 * i386/netbsd.h (INT_ASM_OP): Define.
12754
12755 2000-02-02 Zack Weinberg <zack@wolery.cumb.org>
12756
12757 * cpplib.h (cpp_reader): Add new flag, no_directives.
12758 * cpphash.c (macarg): Set it.
12759 * cpplib.c (handle_directive): If no_directives is on and we
12760 find a directive, issue an error and discard the line.
12761
12762 Wed Feb 2 13:07:10 2000 Jim Wilson <wilson@cygnus.com>
12763
12764 * config/sparc/sparc.h (PREFERRED_RELOAD_CLASS): Delete 'E' check for
12765 FP constants. Add ! TARGET_FPU check for FP constants.
12766
12767 2000-02-02 Clinton Popetz <cpopetz@cygnus.com>
12768
12769 * flow.c (find_basic_blocks): Don't kill label_value_list
12770 here.
12771 (cleanup_cfg): Kill it here.
12772
12773 Wed Feb 2 08:12:30 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
12774
12775 * expr.c (store_field): Ensure ALIGN is no stricter than the
12776 alignment of EXP.
12777
12778 2000-02-02 Richard Henderson <rth@cygnus.com>
12779
12780 * jump.c (delete_insn): Partially revert 19 Jan change;
12781 don't convert unused code labels to notes at -O0.
12782
12783 2000-02-02 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
12784
12785 * toplev.c (rest_of_compilation): Run rebuild_jump_labels after
12786 split_all_insns to recreate REG_LABEL notes for flow2 pass.
12787
12788 2000-02-01 Richard Henderson <rth@cygnus.com>
12789
12790 * i386.c (general_no_elim_operand): New.
12791 (nonmemory_no_elim_operand): New.
12792 (ix86_expand_move): Copy eliminable operands before a push.
12793 * i386-protos.h: Declare new functions.
12794 * i386.h (CAN_ELIMINATE): Simplify.
12795 (PREDICATE_CODES): Update.
12796 * i386.md (push insns): Don't allow eliminable register operands.
12797
12798 2000-02-01 Richard Henderson <rth@cygnus.com>
12799
12800 * flow.c (mark_regs_live_at_end): Follow expand_function_end and
12801 replace BLKmode with DECL_RTL's mode.
12802
12803 2000-02-01 Zack Weinberg <zack@wolery.cumb.org>
12804
12805 * frame.c (find_fde): Convert for loop to do-while so compiler
12806 sees it's always executed at least once.
12807 * libgcc2.c (BBINBUFSIZE): Kill.
12808 (__bb_init_prg): Use fgets.
12809 (__bb_exit_trace_func): Don't paste strings.
12810 * unroll.c (unroll_loop): Initialize unroll_type, not
12811 unroll_number, and tweak logic to match.
12812
12813 * i386.c (ix86_expand_int_movcc): Add explicit 'return 0' in
12814 all failure paths.
12815 (ix86_flags_dependant): Likewise. Disentangle control flow.
12816 (ix86_sched_reorder): Break guts out to
12817 ix86_sched_reorder_pentium and ix86_sched_reorder_ppro.
12818 (ix86_sched_reorder_ppro): Initialize pair2 and insnp before
12819 any possible use.
12820
12821 * i386.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Don't
12822 use string concatenation. Don't save and restore esi.
12823
12824 * fixinc/Makefile.in (fixincl.sh): Don't depend on inclhack.def.
12825 (machname.h): Remove script to separate file. Use two-step
12826 sequence so target is not created if script fails.
12827 * fixinc/gen-machname.h: New file. Handle case where no non-reserved
12828 identifiers are defined.
12829 * fixinc/fixlib.c (mn_get_regexps): Return a flag: if MN_NAME_PAT is
12830 an empty string, machine_name doesn't need to do anything at
12831 all.
12832 (is_cxx_header): Add more cases to regexp.
12833 * fixinc/fixlib.h: Update prototype.
12834 * fixinc/fixtests.c, fixinc/fixfixes.c: Update callers of
12835 mn_get_regexps.
12836 * fixinc/fixincl.c: Define NO_BOGOSITY.
12837
12838 * fixinc/inclhack.def (no_double_slash, else_endif_label): Ifdef out.
12839 (hp_sysfile): Add missing comma.
12840 (math_exception): Put the wrapper ifdefs at the beginning and
12841 the end of the file.
12842 * fixinc/fixincl.x, fixinc/inclhack.sh: Regenerate.
12843
12844 2000-02-01 Richard Henderson <rth@cygnus.com>
12845
12846 * sparc.c (fp_zero_operand): Turn into a normal predicate.
12847 Use CONST0_RTX. Update all callers.
12848 * sparc.h, sparc-protos.h: Update accordingly.
12849 * sparc.md (fp mov insns): Use fp_zero_operand directly
12850 where applicable.
12851
12852 Wed Feb 2 02:59:45 2000 Hans-Peter Nilsson <hp@bitrange.com>
12853
12854 * tm.texi (Values in Registers): Fix typo in HARD_REGNO_NREGS
12855 example.
12856
12857 2000-02-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12858
12859 * Makefile.in (specs.ready): New target.
12860 (fixinc.sh): Depend on `specs.ready' instead of `specs'.
12861
12862 2000-02-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12863
12864 * fixinc.irix: Use unique filenames for writing into /tmp,
12865 * fixinc.ptx: Likewise.
12866 * fixinc.sco: Likewise.
12867 * fixinc.svr4: Likewise.
12868 * fixinc.winnt: Likewise.
12869
12870 2000-02-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12871
12872 * tsystem.h: New file.
12873
12874 * Makefile.in (libgcc2.a, stmp-multilib, crtbegin.o, crtend.o,
12875 s-crtS): Depend on tsystem.h.
12876
12877 * crtstuff.c: Include tsystem.h.
12878 * frame.c: Likewise.
12879 * libgcc2.c: Likewise.
12880
12881 Tue Feb 1 19:53:27 CET 2000 Jan Hubicka <jh@suse.cz>
12882
12883 * builtins.c (expand_builtin_memset): Expand for variable sized
12884 lengths too.
12885
12886 2000-02-01 David Billinghurst <David.Billinghurst@riotinto.com.au>
12887
12888 * config/mips/iris6.h (SUBTARGET_ASM_SPEC) : Default ISA based
12889 on ABI.
12890
12891 Tue Feb 1 00:57:40 2000 Hans-Peter Nilsson <hp@bitrange.com>
12892
12893 * dwarfout.c (SHORT_TYPE_SIZE): Correct default.
12894
12895 * tm.texi (Type Layout): Correct entry for CHAR_TYPE_SIZE.
12896
12897 2000-01-31 Chandra Chavva <cchavva@cygnus.com>
12898
12899 * combine.c (try_combine) [HAVE_cc0]: Trying to check the missed
12900 case 3->2 combining (combining with splitting) in which 2 is CC0
12901 setter/user and 3 is user. The rest of cases 2->1 and 3->2 are
12902 checked at the begining of the function with the aid of calling
12903 function 'can_combine_p'.
12904
12905 2000-01-31 Dave Brolley <brolley@redhat.com>
12906
12907 * cccp.c (struct argdata): Redeclare 'newlines' field as 'int'.
12908
12909 2000-01-31 Jason Merrill <jason@casey.cygnus.com>
12910
12911 * jump.c (redirect_jump): Move a NOTE_INSN_FUNCTION_END to the
12912 new label.
12913
12914 2000-01-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12915
12916 * gansidecl.h (PROTO, VPROTO, PVPROTO): Delete macros.
12917
12918 * sbitmap.h (sbitmap_first_set_bit, sbitmap_last_set_bit):
12919 PROTO -> PARAMS.
12920
12921 2000-01-30 Zack Weinberg <zack@wolery.cumb.org>
12922
12923 * i386/386bsd.h, i386/beos-pe.h, i386/bsd386.h, i386/crtdll.h,
12924 i386/cygwin.h, i386/dgux.h, i386/djgpp-rtems.h, i386/djgpp.h,
12925 i386/freebsd.h, i386/gnu.h, i386/i386-aout.h, i386/i386-coff.h,
12926 i386/i386-interix.h, i386/i386elf.h, i386/linux.h, i386/lynx-ng.h,
12927 i386/lynx.h, i386/mach.h, i386/mingw32.h, i386/moss.h,
12928 i386/netbsd.h, i386/next.h, i386/openbsd.h, i386/osf1elf.h,
12929 i386/ptx4-i.h, i386/rtems.h, i386/rtemself.h, i386/sco.h,
12930 i386/sequent.h, i386/sun.h, i386/sysv4.h, i386/uwin.h, i386/vsta.h,
12931 i386/vxi386.h, i386/win-nt.h, i386/win32.h:
12932 Remove -Di386 -Acpu(i386) -Amachine(i386) from CPP_PREDEFINES.
12933
12934 * i386/osf1elf.h, i386/scodbx.h, i386/seq-sysv3.h, i386/sysv5.h:
12935 Add %(cpp_cpu) to CPP_SPEC.
12936
12937 * i386/osf1elf.h, i386/osfelf.h, i386/osfrose.h:
12938 Add %(cc1_cpu) to CC1_SPEC.
12939
12940 2000-01-28 Ulrich Drepper <drepper@redhat.com>
12941
12942 * c-decl.c (c_decode_option): Accept optional numeric argument to
12943 -Wformat and set warn_format.
12944 * c-common.c: Don't emit warning about non-constant printf format
12945 string unless warn_format > 1.
12946
12947 2000-01-30 Richard Henderson <rth@cygnus.com>
12948
12949 * alpha.md (return_internal): Allow after reload only.
12950
12951 2000-01-30 Richard Henderson <rth@cygnus.com>
12952
12953 * i386.c (ix86_compute_frame_size): Omit padding1 if the
12954 local frame size is zero.
12955
12956 2000-01-30 Richard Henderson <rth@cygnus.com>
12957
12958 * alpha.c (alpha_expand_epilogue): Don't emit the return insn.
12959 * alpha.h (EPILOGUE_USES): New. Mark $26 live.
12960 * alpha.md (return): Turn into an expander.
12961 (return_internal): Don't use $26.
12962 (epilogue): Emit the return insn.
12963
12964 2000-01-30 Richard Henderson <rth@cygnus.com>
12965
12966 * alpha.md (negtf2, abstf2): Fix word order thinko.
12967 (extendsftf2): New.
12968 (trunctfsf2): Avoid intermediate rounding errors.
12969
12970 2000-01-30 Zack Weinberg <zack@wolery.cumb.org>
12971
12972 * cppfiles.c (find_position): Drop 'colp' argument, return the
12973 new line base.
12974 (read_and_prescan): Adjust to match. Don't ever manipulate
12975 line or line_base except via find_position.
12976
12977 2000-01-29 Zack Weinberg <zack@wolery.cumb.org>
12978
12979 * c-parse.in: Apply Ulrich's changes from c-parse.y.
12980 * c-parse.y, objc/objc-parse.y, c-parse.c, objc/objc-parse.c:
12981 Regenerate.
12982
12983 2000-01-29 Zack Weinberg <zack@wolery.cumb.org>
12984
12985 * cpperror.c (cpp_file_line_for_message): If 'line' is zero,
12986 just print "<command line>". If 'filename' is null or an
12987 empty string, print "<stdin>" for the filename.
12988 * cpplib.c (do_define): Don't print the 'location of the
12989 previous definition' message if we're still parsing the
12990 command line.
12991 (cpp_pedwarn_with_file_and_line): Always call
12992 cpp_file_line_for_message.
12993
12994 2000-01-29 Mark Mitchell <mark@codesourcery.com>
12995
12996 * flow.c (mark_regs_live_at_end): Fix typo.
12997
12998 2000-01-28 Ulrich Drepper <drepper@redhat.com>
12999
13000 * c-common.c: Adjust variable names, comments, help strings to c99.
13001 * c-lex.c: Likewise.
13002 * c-parse.y: Likewise.
13003 * c-tree.h: Likewise.
13004 * cccp.c: Likewise.
13005 * cpplib.h: Likewise.
13006 * c-decl.c: Likewise. Recognize options with names "*99" as well.
13007 * cppinit.c: Likewise.
13008
13009 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
13010
13011 * c4x.h (INIT_TARGET_OPTABS): Add all missing local optab entries.
13012 * c4x.c: Define the optab rtx values.
13013 (c4x_add_gc_roots): Add the ggc roots for these optab rtx values.
13014 (c4x_emit_libcall): Use new optab rtx values.
13015 (c4x_emit_libcall3): Likewise.
13016 (c4x_emit_libcall_mulhi): Likewise.
13017 * c4x-protos.h: Add prototypes for optab rtx values and change
13018 prototypes for above c4x_emit_libcall functions.
13019
13020 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
13021
13022 * c4x.c (c4x_output_ascii): Restrict line length of output when TI
13023 syntax is used.
13024 (c4x_function_prologue): Use regnames intead of float_reg_names when
13025 TI syntax is used.
13026 (c4x_function_epilogue): Likewise.
13027 (c4x_print_operand): Likewise.
13028 * c4x.h (HOST_WIDE_INT_PRINT_HEX): Redefine.
13029 * c4x.md (set_high): Disable for TARGET_TI.
13030
13031 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
13032
13033 * c4x.h (PREFERRED_RELOAD_CLASS): Change to restrict the reloading
13034 of framepointer + constant to ADDR_REGS class.
13035 * c4x.md (addqi3, addqi3_noclobber_reload): Update.
13036 * c4x.c (std_or_reg_operand): New function.
13037 * c4x-protos.h (std_or_reg_operand): Prototype it.
13038
13039 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
13040
13041 * t-c4x: Change qi,qf,di,df into si,sf,hi,hf to generate same
13042 object names as libgcc2.c.
13043 * libgcc.S: Use newly defined names.
13044
13045 Fri Jan 7 19:48:04 CET 2000 Jan Hubicka <jh@suse.cz>
13046 * sbitmap.c (sbitmap_first_set_bit, sbitmap_last_set_bit): New
13047 function.
13048 * sbitmap.h (sbitmap_first_set_bit, sbitmap_last_set_bit): Declare.
13049 * basic_block.h (FLOW_LOOP_FIRST_BLOCK): New macro.
13050 (FLOW_LOOP_LAST_BLOCK): Likewise.
13051
13052 2000-01-21 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13053
13054 * basic-block.h (struct loop): New fields 'first' and 'last'.
13055 * flow.c (flow_loops_find): Compute loop->first and loop->last.
13056 (flow_loops_dump): Use loop->first to check for NOTE_INSN_LOOP_BEG
13057 and loop->last to check for NOTE_INSN_LOOP_END.
13058
13059 Fri Jan 28 10:57:58 2000 Jason Eckhardt <jle@cygnus.com>
13060
13061 * predict.c (estimate_probability): Use the new FIRST and LAST fields
13062 of the loop descriptor rather than HEADER and LATCH. Also added
13063 missing break statements as well making some coding style modifications
13064 as suggested by Michael Hayes.
13065
13066 2000-01-28 Richard Henderson <rth@cygnus.com>
13067
13068 * flow.c (find_basic_blocks): Remove do_cleanup argument.
13069 Break out that code ...
13070 (cleanup_cfg): ... here.
13071 (commit_one_edge_insertion): Detect a return instruction being
13072 emitted to an edge. Emit a barrier following; clear fallthru.
13073 (commit_edge_insertions): Verify CFG consistency.
13074 * function.c (expand_function_start): Kill unused variable.
13075 (expand_function_end): Likewise.
13076 (thread_prologue_and_epilogue_insns): Use insert_insn_on_edge
13077 to insert the epilogue.
13078
13079 * gcse.c (gcse_main): Adjust for find_basic_blocks change.
13080 (delete_null_pointer_checks): Likewise.
13081 * output.h: Likewise.
13082 * reg-stack.c (reg_to_stack): Likewise.
13083 * toplev.c (rest_of_compilation): Likewise. Run
13084 thread_prologue_and_epilogue_insns after rebuilding the CFG.
13085
13086 2000-01-28 Richard Henderson <rth@cygnus.com>
13087
13088 * Makefile.in (flow.o): Revert 24 Jan change.
13089 * flow.c (mark_regs_live_at_end): Likewise. Force BLKmode
13090 FUNCTION_VALUE result to DECL_RESULT's mode.
13091
13092 * haifa-sched.c (schedule_insns): Don't recompute reg info
13093 after reload.
13094
13095 2000-01-28 Zack Weinberg <zack@wolery.cumb.org>
13096
13097 * configure.in: Make --enable-cpplib the default.
13098 * configure: Regenerate.
13099 * gcc.dg/990119-1.c: No longer expected to fail.
13100
13101 2000-01-28 Bernd Schmidt <bernds@cygnus.co.uk>
13102
13103 * jump.c (jump_optimize_1): Delete an optimization that is also done
13104 by merge_blocks in flow.
13105
13106 2000-01-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13107
13108 * diagnostic.c (build_message_string, output_printf,
13109 line_wrapper_printf): Add ATTRIBUTE_PRINTF_*.
13110 (build_location_prefix): Fix non-literal format string.
13111
13112 2000-01-27 Richard Henderson <rth@cygnus.com>
13113
13114 * alpha.md (trunctfsf2): New.
13115
13116 2000-01-27 Andrew Hobson <ahobson@eng.mindspring.net>
13117
13118 * configure.in (alpha-dec-osf5): Enable MASK_SUPPORT_ARCH.
13119
13120 2000-01-27 Zack Weinberg <zack@wolery.cumb.org>
13121
13122 * cppinit.c (cpp_handle_option): Recognize C++ comments under
13123 -std=gnu89.
13124 * cpplib.c (skip_block_comment, skip_line_comment): Split code
13125 out of...
13126 (skip_comment) ... here. Permit C++ comments in system
13127 headers always. Warn about C++ comments in user code under
13128 -std=gnu89 -pedantic.
13129 (copy_comment): Use skip_comment.
13130 (cpp_skip_hspace, cpp_get_token): skip_comment can no longer
13131 return EOF.
13132 (consider_directive_while_skipping, do_else, do_endif): Call
13133 validate_else unconditionally.
13134 (validate_else): Check CPP_PEDANTIC here. Accept non-comment
13135 text after the conditional in a system header.
13136 * cpplib.h (struct cpp_buffer): Add flag
13137 warned_cplusplus_comments.
13138
13139 2000-01-27 Geoffrey Keating <geoffk@cygnus.com>
13140
13141 * emit-rtl.c (unshare_all_rtl): Unshare virtual parameters too.
13142 Use unshare_all_rtl_1.
13143 (unshare_all_rtl_again): New function.
13144 (unshare_all_rtl_1): New function split out of unshare_all_rtl.
13145
13146 * function.c (purge_addressof_1): Use unshare_all_rtl_again
13147 rather than resetting the 'used' flags ourself.
13148
13149 * toplev.c (rest_of_compilation): Add current_function_decl
13150 to the unshare_all_rtl call.
13151 * tree.h: Prototype unshare_all_rtl.
13152 * rtl.h: Prototype unshare_all_rtl_again here.
13153
13154 2000-01-27 Geoffrey Keating <geoffk@cygnus.com>
13155
13156 * genoutput.c (output_prologue): Include ggc.h in generated
13157 files.
13158 * Makefile.in (insn-output.o): Depends on ggc.h.
13159
13160 2000-01-27 Ian Dall <ian@sibyl.beware.dropbear.id.au>
13161 Hans-Peter Nilsson <hp@bitrange.com>
13162
13163 * ns32k/xm-ns32k.h (memcpy, memset, memcmp): Delete.
13164 Remove redundant include of xm-ns32k.h.
13165 * ns32k/xm-genix.h (memcpy, memset, memcmp): Add definitions.
13166 Remove redundant include of xm-ns32k.h.
13167 * ns32k/xm-netbsd.h (memcpy, memset, memcmp): No longer undefine.
13168 Remove redundant include of xm-ns32k.h.
13169 * ns32k/netbsd.h (TARGET_DEFAULT): Enable multiply-add instructions.
13170
13171 * ns32k/ns32k.h: Update comment on multiply-add instructions.
13172 (TARGET_SWITCHES): Add documentation strings.
13173 (DWARF_FRAME_REGNUM): Override default definition.
13174 (REG_CLASS_CONTENTS): Add comments.
13175 (SUBSET_P): Format to reduce line length.
13176 (SMALL_REGISTER_CLASSES): Make a run time option.
13177 (GO_IF_NONINDEXED_ADDRESS): Reformat.
13178 (GO_IF_LEGITIMATE_ADDRESS): Ensure that cfun is non NULL before
13179 dereferencing it. Braces to avoid "ambiguous else" were misplaced.
13180 (regclass_map): fix typo in comment.
13181 * ns32k/ns32k.c: Add spaces before parentheses for consistant style.
13182 Prefer gen_rtx_FOO(...) to gen_rtx(FOO,...).
13183 (trace, reg_or_mem_operand): Delete, unused function.
13184 (calc_address_cost): Small offsets are cheaper than large ones.
13185 (expand_block_move): Generate more efficient code when bytes is a
13186 known at compile time.
13187 * ns32k/ns32k.md: Alternate constraints for multiply-add instructions.
13188 (udivmodsi4, udivmodhi4, udivmodqi4): Use nonimmediate_operand
13189 instead of reg_or_mem_operand.
13190
13191 * ns32k/ns32k.md: Use nonimmediate_operand or stricter for outputs,
13192 not general_operand. Similarly use "=rm" or stricter, not "=g".
13193 For input operands, use stricter constraints than "g" if not
13194 general_operand. Similarly use stricter predicate than
13195 "general_operand" when stricter constraints than "g" are present,
13196 except for matching constraints.
13197 (movstrsi): Use "memory_operand" for operands 0 and 1.
13198 (truncsiqi2, truncsihi2, trunchiqi2): Remove.
13199 (udivmoddisi4_internal): Use nonimmediate_operand for operand 0,
13200 not reg_or_mem_operand.
13201 (udivmoddisi4): Ditto.
13202 Use nonimmediate_operand for operand 1, not reg_or_mem_operand.
13203 Use nonimmediate_operand for operand 3, not register_operand.
13204 (udivmoddiqi4_internal): Use register_operand for operand 1, not
13205 reg_or_mem_operand.
13206
13207 2000-01-27 Fred Fish <fnf@be.com>
13208
13209 * gthr-posix.h: Fix typo; compatibily -> compatibility.
13210 * gthr-single.h: Likewise.
13211 * gthr-solaris.h: Likewise.
13212 * gthr-vxworks.h: Likewise.
13213 * gthr-win32.h: Likewise.
13214 * gthr.h: Likewise.
13215
13216 2000-01-27 Zack Weinberg <zack@wolery.cumb.org>
13217
13218 * cppinit.c: Add " (cpplib)" to end of string printed by
13219 -v / --version.
13220
13221 2000-01-27 Richard Henderson <rth@cygnus.com>
13222
13223 * alpha.c (alpha_emit_conditional_move): Use VOIDmode when
13224 testing for a signed comparison.
13225 (alpha_emit_floatuns): New.
13226 * alpha-protos.h: Declare it.
13227 * alpha.md (floatunsdisf2, floatunsdidf2): New.
13228 (extendsfdf2): Tidy.
13229
13230 2000-01-27 Jakub Jelinek <jakub@redhat.com>
13231
13232 * config/sparc/linux64.h (CC1_SPEC): If compiling -m32 with -g but
13233 no -g option specifying debugging format, default to -gstabs+.
13234
13235 Wed Jan 26 22:19:14 1999 J"orn Rennecke <amylaar@cygnus.co.uk>
13236
13237 * calls.c (special_function_p): New argument fork_or_exec.
13238 (expand_call): When profile_arc_flag is set and the function
13239 is in the fork_or_exec group, call __bb_fork_func first.
13240 * libgcc2.c, _bb module (__bb_fork_func): New function.
13241 (__bb_exit_func): If fcntl F_SETLKW is available, use it to lock
13242 output file.
13243 * config/svr4.h (TARGET_HAS_F_SETLKW): Define.
13244 * tree.h (special_function_p): Update prototype.
13245
13246 2000-01-26 Richard Henderson <rth@cygnus.com>
13247
13248 * alpha.c (alpha_split_tfmode_pair): New.
13249 * alpha-protos.h: Declare it.
13250 * alpha.md (abstf2, negtf2): New.
13251 (movtf insn): Add input G constraint.
13252 (movtf splitter): Use alpha_split_tfmode_pair.
13253
13254 2000-01-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13255
13256 * i386/cygwin.h: PROTO -> PARAMS.
13257
13258 2000-01-26 Jakub Jelinek <jakub@redhat.com>
13259
13260 * config/sparc/sparc.c (sparc_emit_float_lib_cmp): Handle
13261 TARGET_ARCH32 again. Handle ORDERED, UN* and LTGT comparisons
13262 using _Qp_cmp/_Q_cmp and testing the return value.
13263 (print_operand): Call reverse_condition_maybe_unordered if
13264 we are handling CCFPmode or CCFPEmode.
13265 Handle ORDERED, UN* and LTGT comparisons.
13266 * config/sparc/sparc.md (cmptf): Use even on TARGET_ARCH32
13267 if not TARGET_HARD_QUAD.
13268 (seq, sne, sgt, slt, sge, sle, beq, bne, bgt, blt, bge, ble,
13269 bunordered, bordered, bungt, bunlt, buneq, bunge, bunle, bltgt):
13270 Call sparc_emit_float_lib_cmp even on TARGET_ARCH32.
13271 Adjust gen_b* calls so that they reflect return comparison of
13272 sparc_emit_float_lib_cmp.
13273
13274 2000-01-26 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
13275
13276 * config/alpha/alpha.c (alpha_emit_xfloating_cvt): Do not assume
13277 incoming operands array is large enough for one more operand.
13278 (alpha_emit_xfloating_arith): Likewise.
13279
13280 2000-01-25 Zack Weinberg <zack@wolery.cumb.org>
13281
13282 * fixinc/Makefile.in (machname.h): SunOS 4 sed can't handle a
13283 file with one line and no trailing newline.
13284 Patch by Kaveh Ghazi <ghazi@caip.rutgers.edu>.
13285 * fixinc/fixtests.c (machine_name_test): Fix fencepost error
13286 checking if the match is on the line.
13287 * fixinc/gnu-regex.c: Provide regerror not __regerror.
13288
13289 2000-01-25 Richard Henderson <rth@cygnus.com>
13290
13291 * sparc.c (output_cbranch): Fix accidental squashing of the
13292 fp branch pre-delay nop.
13293
13294 2000-01-25 Richard Henderson <rth@cygnus.com>
13295
13296 * tree.def (UNNE_EXPR): Remove.
13297 * c-typeck.c (build_binary_op): Don't handle it.
13298 * expr.c (expand_expr, do_jump, do_store_flag): Likewise.
13299
13300 * rtl.def (UNNE): Remove.
13301 (LTGT): Add.
13302 * jump.c (reverse_condition): Update accordingly.
13303 (swap_condition): Likewise.
13304 (comparison_dominates_p): Handle unordered comparisons.
13305 (reverse_condition_maybe_unordered): New.
13306 * rtl.h (reverse_condition_maybe_unordered): Declare.
13307
13308 * sparc.c (select_cc_mode): Update for UNNE/LTGT.
13309 (output_cbranch): Use reverse_condition_maybe_unordered and LTGT.
13310 * sparc.h (REVERSIBLE_CC_MODE): Always true. Update docs.
13311 * sparc.md (bltgt): New.
13312
13313 2000-01-25 Nick Clifton <nickc@redhat.com>
13314
13315 * emit-rtl.c (emit_insn): Only check machine class insns for
13316 improper emission of a RETURN.
13317
13318 2000-01-25 Richard Henderson <rth@cygnus.com>
13319
13320 * Makefile.in (flow.o): Depend on $(EXPR_H).
13321 * flow.c (mark_regs_live_at_end): Use hard_function_value, i.e.
13322 duplicate the structure of diddle_return_value for keeping regs live.
13323
13324 2000-01-26 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13325
13326 * loop.c (current_loop_info): Delete.
13327 (consec_sets_invariant_p): Add loop argument, update callers.
13328 (get_condition_for_loop): Likewise.
13329 (count_nonfixed_reads, update_giv_derive): Likewise.
13330 (simplify_giv_expr, general_induction_var): Likewise.
13331 (consec_sets_giv, recombine_givs): Likewise.
13332 (move_movables): Delete loop_start and loop_end arguments,
13333 add loop argument, and update callers.
13334 (find_mem_givs, check_final_value): Likewise.
13335 (record_giv, maybe_eliminate_biv, maybe_eliminate_biv_1): Likewise.
13336 (loop_invariant_p): Rename from invariant_p, add loop argument, and
13337 update callers.
13338 (basic_induction_var): Add loop argument, delete loop_level argument,
13339 and update callers.
13340 * unroll.c (iteration_info): Delete loop_start and loop_end arguments,
13341 add loop argument, and update callers.
13342 (find_splittable_regs, find_splittable_givs): Likewise.
13343 (reg_dead_after_loop, loop_find_equiv_value): Likewise.
13344 (final_biv_value, final_giv_value, back_branch_in_range_p): Likewise.
13345 (biv_total_increment): Delete loop_start and loop_end arguments;
13346 update callers.
13347 (precondition_loop_p): Delete loop_start and loop_info arguments;
13348 update callers.
13349 * loop.h (get_condition_for_loop): Add loop argument.
13350 (biv_total_increment): Delete loop_start and loop_end arguments.
13351 (precondition_loop_p): Delete loop_start and loop_info arguments;
13352 add loop argument.
13353 (final_biv_value): Delete loop_start and loop_end arguments;
13354 add loop argument.
13355 (final_giv_value, back_branch_in_range_p): Likewise.
13356
13357 2000-01-25 Gavin Romig-Koch <gavin@cygnus.com>
13358
13359 * config/mips/mips.h (LEGITIMATE_CONSTANT_P): Fix for mips16.
13360
13361 2000-01-25 Gavin Romig-Koch <gavin@cygnus.com>
13362
13363 * Makefile.in (c-gperf.h) : Change the "See" pointer to
13364 point to the new "generated_files" doc.
13365
13366 2000-01-25 Clinton Popetz <cpopetz@cygnus.com>
13367
13368 * config/fp-bit.c (_unord_f2): Fix typo.
13369
13370 2000-01-25 Zack Weinberg <zack@wolery.cumb.org>
13371
13372 * c-common.c, c-decl.c, c-lang.c, c-lex.c, c-parse.in, c-pragma.c,
13373 c-typeck.c, objc/objc-act.c: Remove all references to obstack
13374 functions obsoleted by GC, such as push_obstacks_nochange,
13375 end_temporary_allocation, savealloc, saveable_tree_cons, etc.
13376 and code which existed only to decide whether or not to call
13377 them. Remove now-unused NESTED argument from start_function;
13378 all callers changed. Do not change behavior based on ggc_p.
13379 The use of the ixp_obstack in c-iterate.c and the util_obstack
13380 in objc/objc-act.c remain; these are not obsoleted by garbage
13381 collection.
13382 * c-tree.h: Update prototype for start_function.
13383
13384 * c-parse.y, c-parse.c, objc/objc-parse.c, objc/objc-parse.y: Rebuild.
13385
13386 2000-01-25 Clinton Popetz <cpopetz@cygnus.com>
13387
13388 * config/mips/mips.md (zero_extendsidi2_internal): Disable for
13389 mips16.
13390
13391 2000-01-25 Richard Henderson <rth@cygnus.com>
13392
13393 * sparc-protos.h (select_cc_mode): Declare.
13394 * sparc.c (select_cc_mode): New. Handle unordered compares.
13395 (output_cbranch): Always reverse via code change. Handle
13396 unordered compares. Factor tests and string updates.
13397 * sparc.h (SELECT_CC_MODE): Split out to select_cc_mode.
13398 (REVERSIBLE_CC_MODE): Also exclude CCFPmode.
13399 * sparc.md (bunordered, bordered): New.
13400 (bungt, bunlt, buneq, bunge, bunle): New.
13401
13402 2000-01-25 Richard Henderson <rth@cygnus.com>
13403
13404 * dwarf2out.c (dwarf2out_init): Use ggc_add_rtx_varray_root.
13405 * ggc-common.c (ggc_add_rtx_varray_root): New.
13406 (ggc_mark_rtx_varray): New.
13407 (ggc_mark_rtx_varray_ptr): New. Shift all ggc_mark_foo_ptr
13408 functions down below ggc_mark_foo.
13409 * ggc.h (ggc_add_rtx_varray_root, ggc_mark_rtx_varray): Declare.
13410
13411 2000-01-25 Richard Henderson <rth@cygnus.com>
13412
13413 * alpha.c (secondary_reload_class): Don't allocate a secondary
13414 for integral mode memories into FLOAT_REGS. Rearrange the more
13415 complicated memory expression inward.
13416
13417 2000-01-25 Zack Weinberg <zack@wolery.cumb.org>
13418
13419 * inclhack.def: Fixes to play nicer with FreeBSD, and
13420 corrections to comments.
13421 (cxx_unready): Add select expression.
13422 (irix_sockaddr): Add bypass expression.
13423 (machine_ansi_h_va_list): New fix.
13424 (stdio_va_list): No need to edit _BSD_VA_LIST_.
13425 Split out addition of "#include <stdarg.h>" to...
13426 (stdio_stdarg_h): ... here.
13427 (systypes_for_aix): Rename to systypes_stdlib_size_t. Apply
13428 to stdlib.h also. Do not munge _BSD_SIZE_T_.
13429 (sysz_stdlib_for_sun): Delete duplicate fix for unprotected
13430 size_t.
13431 (ultrix_ifdef): Tighten up select expression.
13432
13433 * fixincl.tpl: Exorcise 'exesel'. Rewrite calculations of
13434 re_ct and max_mach to avoid use of shell. Make printed names
13435 match names in inclhack.def. Use static copyright date.
13436 Don't count c_test and test expressions as requiring regex_t
13437 slots. Add some commentary.
13438 * inclhack.tpl: Do not include the 'This script contains N
13439 fixup scripts' line if PROGRAM is defined. Use static
13440 copyright date.
13441
13442 2000-01-24 Jason Merrill <jason@casey.cygnus.com>
13443
13444 * dwarf2out.c: include "varray.h", not dyn-string.h.
13445 (ASM_OUTPUT_DWARF2_ADDR_CONST, ASM_NAME_TO_STRING): Lose.
13446 (addr_const_to_string, addr_to_string): Lose.
13447 (ASM_OUTPUT_DWARF_ADDR_CONST): Copy from dwarfout.c.
13448 (struct dw_val_struct): val_addr is now an rtx.
13449 (add_AT_addr, AT_addr, free_AT, output_aranges): Adjust.
13450 (used_rtx_varray): New varray.
13451 (dwarf2out_init): Initialize it.
13452 (save_rtx): New fn.
13453 (mem_loc_descriptor, add_const_value_attribute): Call it instead of
13454 addr_to_string.
13455 * arm/telf.h, arm/unknown-elf.h, mn10200.h, mn10300.h,
13456 sparc/sp64-elf.h: Remove definition of ASM_OUTPUT_DWARF2_ADDR_CONST.
13457 * Makefile.in (dwarf2out.o): Update dependencies.
13458
13459 2000-01-24 Richard Henderson <rth@cygnus.com>
13460
13461 * i386.c (i386_dwarf_output_addr_const): New.
13462 * i386.h (ASM_OUTPUT_DWARF_ADDR_CONST): New.
13463
13464 * dwarf2out.c (mem_loc_descriptor): Call ASM_SIMPLIFY_DWARF_ADDR
13465 if defined.
13466 * dwarfout.c (output_mem_loc_descriptor): Likewise.
13467 * i386.c (i386_simplify_dwarf_addr): New.
13468 * i386.h (ASM_SIMPLIFY_DWARF_ADDR): New.
13469
13470 Mon Jan 24 16:56:10 2000 Jim Wilson <wilson@cygnus.com>
13471
13472 * dwarf2out.c (gen_struct_or_union_type_die): Set complete if
13473 TYPE_STUB_DECL is NULL.
13474
13475 2000-01-24 Richard Henderson <rth@cygnus.com>
13476
13477 * builtins.c (expand_tree_builtin): Move ...
13478 * c-common.c (expand_tree_builtin): ... here.
13479
13480 2000-01-25 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13481
13482 * loop.h (LOOP_INFO): New accessor macro.
13483 * basic-block.h (struct loop): Rename field `info' to `aux'.
13484 * loop.c (scan_loop): Replace loop->info with LOOP_INFO (loop).
13485 (prescan_loop, strength_reduce, check_dbra_loop, insert_bct): Likewise.
13486 * unroll.c (loop_iterations, unroll_loop): Likewise.
13487
13488 2000-01-24 Christopher Faylor <cgf@cygnus.com>
13489
13490 * config/i386/t-cygwin: Accomodate new winsup directory layout
13491 when searching for include files.
13492
13493 2000-01-24 Richard Henderson <rth@cygnus.com>
13494
13495 * rtl.def: Add unordered fp comparisions.
13496 * tree.def: Likewise.
13497 * tree.h: Add ISO C 9x unordered fp comparision builtins.
13498
13499 * builtins.c (expand_tree_builtin): New function.
13500 * c-typeck.c (build_function_call): Use it.
13501 (build_binary_op): Support unordered compares.
13502 * c-common.c (c_common_nodes_and_builtins): Add unordered compares.
13503
13504 * combine.c (known_cond): Handle reverse_condition returning UNKNOWN.
13505 (reversible_comparison_p): Allow UNORDERED/ORDERED to be reversed.
13506 * cse.c (fold_rtx): Check FLOAT_MODE_P before reversing.
13507 (record_jump_equiv): Handle reverse_condition returning UNKNOWN.
13508 * jump.c (reverse_condition): Don't abort for UNLE etc, but
13509 return UNKNOWN.
13510 (swap_condition): Handle unordered compares.
13511 (thread_jumps): Check can_reverse before reversing.
13512 * loop.c (get_condition): Likewise. Allow UNORERED/ORDERED to be
13513 reversed for FP.
13514
13515 * optabs.c (can_compare_p): New argument CODE. Verify branch or
13516 setcc is present before acking for cmp_optab. Update all callers.
13517 (prepare_float_lib_cmp, init_optabs): Handle UNORDERED.
13518 * expmed.c (do_cmp_and_jump): Update for can_compare_p.
13519 * expr.c (expand_expr): Likewise. Support unordered compares.
13520 (do_jump, do_store_flag): Likewise.
13521 * expr.h (enum libfunc_index): Add unordered compares.
13522
13523 * Makefile.in (FPBIT_FUNCS): Add _unord_sf.
13524 (DPBIT_FUNCS): Add _unord_df.
13525 * config/fp-bit.c (_unord_f2): New.
13526 * fp-test.c (main): Try unordered compare builtins.
13527
13528 * alpha-protos.h (alpha_fp_comparison_operator): Declare.
13529 * alpha.c (alpha_comparison_operator): Check mode properly.
13530 (alpha_swapped_comparison_operator): Likewise.
13531 (signed_comparison_operator): Likewise.
13532 (alpha_fp_comparison_operator): New.
13533 (alpha_emit_conditional_branch): Handle unordered compares.
13534 * alpha.h (PREDICATE_CODES): Update.
13535 * alpha.md (fp compares): Use alpha_fp_comparison_operator.
13536 (bunordered, bordered): New.
13537
13538 2000-01-24 Richard Henderson <rth@cygnus.com>
13539
13540 * alpha.c (alpha_emit_xfloating_cvt): Thinko in operand manipulation.
13541 * alpha.md (movtf): New expander, insn, and splitter.
13542
13543 Mon Jan 24 19:49:47 MET 2000 Jan Hubicka <jh@suse.cz>
13544
13545 * reg-stack.c (subst_stack_regs_pat): Handle correctly USEs of
13546 dead registers.
13547
13548 Mon Jan 24 17:37:31 MET 2000 Jan Hubicka <jh@suse.cz>
13549
13550 * i386.h (FIRST_PSEUDO_REGISTER): Set to 21.
13551 (FIXED_REGISTERS, CALL_USED_REGISTERS,
13552 REG_ALLOC_ORDER): Add frame pointer
13553 (FRAME_POINTER_REGNUM): Set to 20
13554 (HARD_FRAME_POINTER_REGNUM): New macro.
13555 (ELIMINABLE_REGS): Eliminate ARG_POINTER and FRAME_POINTER
13556 to HARD_FRAME_POINTER.
13557 (REGNO_OK_FOR_BASE_P): Accept FRAME_POINTER_REGNUM
13558 (REG_OK_FOR_INDEX_NONSTRICT_P): Likewise.
13559 (REG_OK_FOR_BASE_NONSTRICT_P): Likewise.
13560 (HI_REGISTER_NAMES): Add "frame".
13561 (CAN_ELIMINATE): Handle FRAME_POINTER_REGNUM elimination.
13562 (debug_reg): Handle FRAME_POINTER_REGNUM.
13563 (reg_class): Add arg pointer and frame pointer to NON_Q_REGS,
13564 GENERAL_REGS and INDEX_REGS.
13565 * i386.c (SAVED_REGS_FIRST): new macro.
13566 (AT_BP): Use hard_frame_pointer_rtx instead of frame_pointer_rtx
13567 (ix86_decompose_address, memory_address_length): Likewise.
13568 (regclass_map): Add frame pointer.
13569 (call_insn_operand): Handle frame_pointer_rtx.
13570 (reg_no_sp_operand): Likewise.
13571 (ix86_decompose_address): Handle frame_pointer_rtx as stack_pointer_rtx.
13572 (print_operand, legitimize_pic_address): Fix formating.
13573 (ix86_compute_frame_size): Make static, update prototype, new
13574 parameters padding1, padding2, use ix86_nsaved_regs, use
13575 stack_alignment_needed.
13576 (ix86_initial_elimination_offset): Handle FRAME_POINTER_REGNUM
13577 to HARD_FRAME_POINTER_REGNUM conversions.
13578 (ix86_expand_prologue): Handle SAVED_REGS_FIRST prologues.
13579 (ix86_expand_epilogue): Handle SAVED_REGS_FIRST epilogues.
13580 (print_reg): Abort on FRAME_POINTER_REGNUM
13581
13582 Mon Jan 24 16:50:08 MET 2000 Jan Hubicka <jh@suse.cz>
13583
13584 * i386.h (PREDICATE_CODES): Add aligned_operand.
13585 * i386.c (aligned_operand): New function.
13586 (ix86_aligned_p): Kill.
13587 * i386.md (movhi_1): Emit mov for aligned operands.
13588 (promoting peep2s): Use aligned_operand.
13589
13590 2000-01-23 Zack Weinberg <zack@wolery.cumb.org>
13591
13592 * fixinc/fixfixes.c (fix_char_macro_uses): Correct regular
13593 expression to allow underscores in macro names.
13594 (fix_char_macro_defines): Increment scanning pointer.
13595
13596 2000-01-23 Richard Henderson <rth@cygnus.com>
13597
13598 * alpha/osf.h (TARGET_HAS_XFLOATING_LIBS): Define.
13599 * alpha/osf5.h: New file.
13600 * configure.in (alpha-*-osf5): Add it to tm_file.
13601
13602 * emit-rtl.c (operand_subword): Support TFmode on a 64-bit target.
13603
13604 * alpha-protos.h (alpha_emit_xfloating_arith): Declare.
13605 (alpha_emit_xfloating_cvt, function_arg): Declare.
13606 * alpha.c (alpha_emit_conditional_branch): Call
13607 alpha_emit_xfloating_compare for TFmode compares.
13608 (alpha_lookup_xfloating_lib_func): New.
13609 (alpha_compute_xfloating_mode_arg): New.
13610 (alpha_emit_xfloating_libcall): New.
13611 (alpha_emit_xfloating_arith): New.
13612 (alpha_emit_xfloating_compare): New.
13613 (alpha_emit_xfloating_cvt): New.
13614 (print_operand): Add default abort case.
13615 (function_arg): Mind FUNCTION_ARG_PASS_BY_REFERENCE.
13616 * alpha.h (TARGET_HAS_XFLOATING_LIBS): New.
13617 (BIGGEST_ALIGNMENT): Increase to 128 bits.
13618 (RETURN_IN_MEMORY): True for TF/TCmode.
13619 (ALPHA_ARG_SIZE): TF/TCmode is passed indirect.
13620 (FUNCTION_ARG): Move to function_arg.
13621 (FUNCTION_ARG_PASS_BY_REFERENCE): New.
13622 (ASM_OUTPUT_LONG_DOUBLE): New.
13623 (ASM_OUTPUT_DOUBLE): Always output bits.
13624 * alpha.md (addtf3, divtf3, multf3, subtf3, cmptf): New.
13625 (fix_trunctfdi2, floatditf2, floatunsditf2): New.
13626 (extenddftf2, trunctfdf2): New.
13627
13628 2000-01-23 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
13629
13630 * config/sparc/sol2-sld-64.h (TRANSFER_FROM_TRAMPOLINE): Moved...
13631 * config/sparc/sol2.h: ... here.
13632
13633 2000-01-24 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13634
13635 * basic-block.h (struct loops): New field `levels'.
13636 * flow.c (flow_loops_level_compute): Traverse all outer loops.
13637 (flow_loop_level_compute): Initialise level to 1.
13638 (flow_loops_find): Set loops->levels.
13639 (flow_loops_dump): Print loops->levels.
13640
13641 2000-01-23 Richard Henderson <rth@cygnus.com>
13642
13643 * libgcc2.c (dwarf_reg_size_table): Size with DWARF_FRAME_REGISTERS.
13644 (throw_helper): Iterate over DWARF_FRAME_REGISTERS.
13645
13646 2000-01-23 Richard Henderson <rth@cygnus.com>
13647
13648 * i386.c (dbx_register_map, svr4_dbx_register_map): New.
13649 * i386.h (DBX_REGISTER_NUMBER): Use them.
13650 * i386/beos-elf.h, i386/freebsd-elf.h, i386/i386elf.h: Likewise.
13651 * i386/linux.h, i386/osfrose.h, i386/ptx4-i.h: Likewise.
13652 * i386/rtemself.h, i386/sco5.h, i386/sysv4.h: Likewise.
13653 * i386/sequent.h: Kill incorrect comment.
13654
13655 2000-01-23 Mark Mitchell <mark@codesourcery.com>
13656
13657 * ggc-page.c (struct page_entry): Make `context_depth' an
13658 `unsigned short'.
13659 (struct globals): Likewise.
13660
13661 2000-01-23 Clinton Popetz <cpopetz@cygnus.com>
13662
13663 * loop.c (check_dbra_loop): When checking a loop for
13664 reversability, check the source of any stores to ensure
13665 they don't depend on an initial value.
13666
13667 2000-01-23 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13668
13669 * config/c4x/c4x.h (ASM_OUTPUT_BSS): Redefine.
13670
13671 2000-01-22 Zack Weinberg <zack@wolery.cumb.org>
13672
13673 * fixinc/fixincl.c: Move declarations of 'pz_fname' and
13674 'pz_scan' into scope of entire function. Only affects
13675 compiles with -DDEBUG.
13676
13677 2000-01-22 Alan Modra <alan@SPRI.Levels.UniSA.Edu.Au>
13678
13679 * config/elfos.h (UNIQUE_SECTION): Restore uninitialised data
13680 section naming to that prior to 2000-01-07 patch.
13681 * config/mips/elf.h (UNIQUE_SECTION): Ditto.
13682 * config/mips/elf64.h (UNIQUE_SECTION): Ditto.
13683 * config/mips/iris6gld.h (UNIQUE_SECTION): Ditto.
13684 * config/i386/interix.c (UNIQUE_SECTION): Ditto.
13685 * config/i386/winnt.c (UNIQUE_SECTION): Ditto.
13686
13687 2000-01-22 Bernd Schmidt <bernds@cygnus.co.uk>
13688
13689 * config/arm/arm.c (soft_df_operand): Reject SUBREGs containing a
13690 constant.
13691
13692 2000-01-21 Jim Wilson <wilson@cygnus.com>
13693
13694 * fixinc/inclhack.tpl: Test for directory before trying to cd into it.
13695 * fixinc/fixincl.sh, fixinc/inclhack.sh: Regenerate.
13696
13697 2000-01-21 Zack Weinberg <zack@wolery.cumb.org>
13698
13699 * cpphash.c (change_newlines): Delete function.
13700 (struct argdata): Delete 'newlines' and 'use_count' fields.
13701 (macroexpand): Remove code referencing those fields.
13702
13703 2000-01-22 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13704
13705 * loop.c (loops_info): New variable.
13706 (loop_optimize): Allocate loops->array and free it on exit.
13707 Allocate memory for loops_info and assign to each loop,
13708 replacing alloca.
13709 (find_and_verify_loops): Do not allocate loops->array.
13710
13711 2000-01-21 Zack Weinberg <zack@wolery.cumb.org>
13712
13713 * fixinc/fixfixes.c (machine_name_fix): Don't free 'scratch'.
13714
13715 2000-01-21 Jakub Jelinek <jakub@redhat.com>
13716
13717 * config/sparc/sparc.md (movsi_pic_label_ref): Avoid creating new
13718 pseudos if expanded after first flow.
13719 (movdi_pic_label_ref): Likewise.
13720
13721 2000-01-20 Richard Henderson <rth@cygnus.com>
13722
13723 * jump.c (jump_optimize_1): Don't do addr_vec optimizations at -O0.
13724
13725 2000-01-20 Zack Weinberg <zack@wolery.cumb.org>
13726
13727 * Makefile.in (fixinc.sh): Depend on specs.
13728 * fixinc/Makefile.in: Add rule to create machname.h.
13729 (fixlib.o): Depend on machname.h.
13730 * fixinc/fixtests.c (machine_name): New test.
13731 * fixinc/fixfixes.c (machine_name): New fix.
13732 * fixinc/fixlib.c (mn_get_regexps): New helper function for
13733 the machine_name test and fix.
13734 * fixinc/fixlib.h: Prototype it.
13735 * fixinc/inclhack.def (machine_name): Use the C test and fix.
13736 * fixinc/fixincl.x, fixinc/inclhack.sh: Rebuild.
13737
13738 * gcc.c (do_spec_1) [case P]: Take care not to create
13739 identifiers with three leading or trailing underscores.
13740
13741 * fixinc/Makefile.in (FIXINC_DEFS): Add -DIN_GCC.
13742 (fixincl): Don't specify libraries twice on link line.
13743 (gnu-regex.o): Remove special rule.
13744 * fixinc/gnu-regex.c: Define REGEX_MALLOC if C_ALLOCA was
13745 defined by config.h. Do not define _REGEX_RE_COMP.
13746 (regcomp): Allocate and initialize a fastmap.
13747 * fixinc/gnu-regex.h: Do not define _REGEX_RE_COMP.
13748
13749 2000-01-20 Brad Lucier <lucier@math.purdue.edu>
13750
13751 * Makefile.in (predict.o): Depend on $(EXPR_H), not expr.h.
13752
13753 2000-01-19 Richard Henderson <rth@cygnus.com>
13754
13755 * flow.c (propagate_block): Replace FIRST, LAST and BNUM
13756 arguments with BB. Update all callers. Tidy line wrapping.
13757
13758 2000-01-19 Clinton Popetz <cpopetz@cygnus.com>
13759
13760 * emit-rtl.c (try_split): Return last_insn if we split the
13761 last_insn.
13762
13763 Thu Jan 20 01:01:23 MET 2000 Jan Hubicka <jh@suse.cz>
13764
13765 * i386-protos.h (ix86_compute_frame_size): Remove prototype.
13766 (ix86_initial_elimination_offset): Declare.
13767 * i386.c (ix86_nsaved_regs): Break out from ...
13768 (ix86_can_use_return_insn_p): ... here.
13769 (ix86_emit_save_regs): Break out from ...
13770 (ix86_expand_prologue): ... here.
13771 (ix86_emit_epilogue_esp_adjustment, ix86_emit_restore_regs): Break
13772 out from ...
13773 (ix86_expand_epilogue): ... here.
13774 (ix86_compute_frame_size): Make static, add prototype.
13775 (ix86_initial_elimination_offset): Break out from ...
13776 * i386.h (INITIAL_ELIMINATION_OFFSET): ... here.
13777
13778 2000-01-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13779
13780 * recog.h (OUT_FCN): Delete.
13781
13782 * vax.md: Call `get_insn_template' instead of OUT_FCN.
13783
13784 2000-01-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13785
13786 * cppalloc.c: PROTO -> PARAMS.
13787 * cpperror.c: Likewise.
13788 * cppfiles.c: Likewise.
13789 * cpplib.c: Likewise.
13790 * cpplib.h: Likewise.
13791
13792 * config/arm/arm-protos.h: PROTO -> PARAMS.
13793 * config/arm/arm.c: Likewise.
13794 * config/c4x/c4x.c: Likewise.
13795 * config/fr30/fr30-protos.h: Likewise.
13796 * config/nextstep.c: Likewise.
13797 * config/pa/pa.c: Likewise.
13798 * config/pj/pj.c: Likewise.
13799 * config/rs6000/rs6000.c: Likewise.
13800 * config/v850/v850-protos.h: Likewise.
13801 * config/v850/v850.c: Likewise.
13802
13803 2000-01-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13804
13805 * i370-protos.h: New file.
13806
13807 * i370.c: Include tm_p.h. Fix compile time warnings.
13808
13809 * i370.h: Move prototypes to i370-protos.h. Fix compile time
13810 warnings.
13811
13812 * i370.md: Likewise.
13813
13814 2000-01-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13815
13816 * real.c (enan, einan, eiisnan, eiisneg, make_nan): Wrap in NANS.
13817 (target_isinf, target_isnan, eisnan): Mark parameter with
13818 ATTRIBUTE_UNUSED.
13819 (eiisinf): Wrap in INFINITY.
13820 (etoe113, etoe64, etoe53, etoe24): Wrap label `nonorm' in INFINITY.
13821 (ibmtoe): Remove unused variable `rndsav'.
13822
13823 Wed Jan 19 20:23:06 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
13824
13825 * sh.h (PASS_IN_REG_P): Remove extraneous paranthesis.
13826 (GO_IF_LEGITIMATE_ADDRESS): Added missing tab.
13827
13828 2000-01-19 Zack Weinberg <zack@wolery.cumb.org>
13829
13830 * fixinc/Makefile.in: Correct dependencies of fixincl and fixincl.o.
13831 * fixinc/fixfixes.c (IO_use, CTRL_use, IO_defn, CTRL_defn): New fixes.
13832 (fix_char_macro_defines, fix_char_macro_uses): New functions.
13833
13834 * fixinc/fixlib.c (is_cxx_header): Do the text scan with a regexp.
13835 Recognize Emacs mode markers also.
13836 * fixinc/fixtests.c (else_endif_label): Fix bug in recognition of
13837 C++ comments in C++ headers. Call is_cxx_header only if
13838 necessary.
13839
13840 * fixinc/inclhack.def (avoid_bool): Add select for the problem and
13841 bypass for ncurses.
13842 (bsd43_io_macros, io_def_quotes, ioctl_fix_ctrl): Replace with...
13843 (io_def_quotes, io_use_quotes, ctrl_def_quotes, ctrl_use_quotes):
13844 ... these, which use the new C fixes.
13845 (math_exception): Escape literal '+' in bypass expression.
13846
13847 * fixinc/fixincl.x, fixinc/fixincl.sh, fixinc/inclhack.sh:
13848 Regenerate.
13849
13850 2000-01-19 Geoff Keating <geoffk@cygnus.com>
13851
13852 * rtlanal.c (reg_referenced_p): A CLOBBER of a MEM uses any REGs
13853 inside the MEM.
13854
13855 2000-01-20 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13856
13857 * loop.c (loop_optimize): Allocate loop_info structure for each loop
13858 prior to calling scan_loop.
13859
13860 Wed Jan 19 19:54:38 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
13861
13862 * sh.c (find_barrier, gen_block_redirect): Fix indentation.
13863 (split_branches, calc_live_regs): Likewise.
13864
13865 Wed Jan 19 19:12:36 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
13866
13867 * sh.md (fpu_single, fp_mode): New attributes.
13868
13869 2000-01-20 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
13870
13871 * loop.c (current_loop_info): Renamed from loop_info_data
13872 and changed to a pointer.
13873 (loop_optimize): Allocate loop_info structure for each loop
13874 and initialise to zero.
13875 (scan_loop): Set current_loop_info.
13876
13877 * unroll.c (loop_iterations): Don't abort if REG_USERVAR_P set
13878 on iteration_var.
13879
13880 2000-01-19 Richard Henderson <rth@cygnus.com>
13881
13882 * stupid.c: Die die die.
13883 * Makefile.in (OBJS): Remove stupid.o.
13884 (stupid.o): Likewise.
13885
13886 * except.c (emit_eh_context): Don't emit USEs for stupid.
13887 * explow.c (probe_stack_range): Likewise.
13888 * flags.h (obey_regdecls): Remove.
13889 * flow.c (find_basic_blocks): Don't run try_merge_blocks
13890 when not optimizing.
13891 (life_analysis): Limit data collection when not optimizing.
13892 (mark_regs_live_at_end): Always mark the return value registers.
13893 (mark_used_regs): Remove dummy RETURN case.
13894 (print_rtl_with_bb): Don't consult obey_regdecls.
13895 * function.c (use_variable, use_variable_after): Remove.
13896 (assign_parms): Consult optimize not obey_regdecls.
13897 (expand_function_start): Don't emit USEs for stupid.
13898 (expand_function_end): Likewise.
13899 * global.c (build_insn_chain): Export.
13900 * integrate.c (expand_inline_function): Kill return-value USE
13901 handling code.
13902 * jump.c (jump_optimize_1): Do simple jump optimizations and
13903 dead code elimination.
13904 (calculate_can_reach_end): Remove check_deleted argument.
13905 (delete_insn): Patch out insns even when not optimizing.
13906 * local-alloc.c (block_alloc): Don't do tying when not optimizing.
13907 * rtl.h (use_variable, use_variable_after): Remove declarations.
13908 (build_insn_chain): Declare.
13909 * stmt.c (expand_value_return): Don't emit USEs for stupid.
13910 (expand_end_bindings): Likewise.
13911 (expand_decl): Likewise. Consult optimize not obey_regdecls.
13912 * toplev.c (obey_regdecls): Remove.
13913 (rest_of_compilation): Don't set it. Kill stupid in favour of
13914 flow1, local-alloc, and reload.
13915 (main): Don't set obey_regdecls.
13916
13917 * config/nextstep.c (handle_pragma): Likewise.
13918
13919 * alpha/alpha.md (allocate_stack): Don't emit USEs for stupid.
13920
13921 * arm/arm.h (CONDITIONAL_REGISTER_USAGE): Don't fix reg 0 for stupid.
13922
13923 2000-01-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13924
13925 * alpha-protos.h: PROTO -> PARAMS.
13926 * alpha.c: Likewise.
13927 * elf.h: Likewise.
13928 * h8300.c: Likewise.
13929 * i386-protos.h: Likewise.
13930 * i386.c: Likewise.
13931 * m32r-protos.h: Likewise.
13932 * m32r.c: Likewise.
13933 * mips.c: Likewise.
13934 * mips.md: Likewise.
13935 * gmon-sol2.c: Likewise.
13936 * sparc.c: Likewise.
13937
13938 2000-01-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13939
13940 * ns32k-protos.h: New file.
13941
13942 * ns32k.c: Fix compile time warnings.
13943
13944 * ns32k.h: Move prototypes to ns32k-protos.h. Fix compile time
13945 warnings.
13946
13947 * ns32k.md: Likewise.
13948
13949 2000-01-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13950
13951 * vax-protos.h: New file.
13952
13953 * vax.c: Fix compile time warnings.
13954
13955 * vax.h: Move prototypes to vax-protos.h. Fix compile time
13956 warnings.
13957
13958 * vax.md: Likewise.
13959
13960 * vaxv.md: Likewise.
13961
13962 2000-01-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13963
13964 * romp-protos.h: New file.
13965
13966 * romp.c: Fix compile time warnings.
13967
13968 * romp.h: Move prototypes to romp-protos.h. Fix compile time
13969 warnings.
13970
13971 * romp.md: Likewise.
13972
13973 2000-01-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13974
13975 * we32k-protos.h: New file.
13976
13977 * we32k.c: Fix compile time warnings.
13978
13979 * we32k.h: Move prototypes to we32k-protos.h. Fix compile time
13980 warnings.
13981
13982 2000-01-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
13983
13984 * calls.c (emit_call_1): Mark parameter with ATTRIBUTE_UNUSED.
13985
13986 * except.c (eh_regs): Likewise.
13987
13988 * final.c (output_operand): Likewise.
13989
13990 * fold-const.c (target_isinf, target_isnan): Likewise.
13991
13992 Tue Jan 18 16:19:55 MET 2000 Jan Hubicka <hubicka@freesoft.cz>
13993
13994 * i386.h (BIGGEST_ALIGNMENT): Set to 128.
13995 (BIGGEST_FIELD_ALIGNMENT): Set to (TARGET_ALIGN_DOUBLE ? 64 : 32)
13996
13997 * i386.md (memstr): Do not use rep stosb for counts divisible by 4
13998 when optimize_size.
13999 (clrstrsi): Rewrite.
14000 (strsethi, strsetqi): New expanders.
14001 (strsethi_1, strsetqi_1, rep_stossi, rep_stosqi): New insn patterns.
14002 (cmpstrsi): Emit compare insn before cmpstrsi_1
14003 (cmpstrsi_nz): use flags, set type to str, prefix_length to 1.
14004 (strlensi_1): Likewise.
14005 (cmpstrsi_1): Likewise; do not output compare.
14006 (strlen expander): Do not unroll when optimizing for size.
14007 (*subsi3_carry): Rename to subsi3_carry
14008 (addqi3_cc): New pattern.
14009 * i386.h (processor_costs): Add move_ratio field.
14010 (MOVE_RATIO): Use move_ratio field, set to 3 for OPTIMIZE_SIZE
14011 * i386.c (*_cost): Set move_ratio.
14012 (x86_unroll_strlen): Enable for Athlon, PPro and K6 too.
14013 (x86_expand_strlensi_1): Rewrite the main loop.
14014
14015 2000-01-17 Richard Henderson <rth@cygnus.com>
14016
14017 * combine.c (combine_simplify_rtx): Give FLOAT_STORE_FLAG_VALUE a mode.
14018 * cse.c (find_comparison_args, fold_rtx): Likewise.
14019 * integrate.c (subst_constants): Likewise.
14020 * loop.c (get_condition): Likewise.
14021
14022 * tm.texi (FLOAT_STORE_FLAG_VALUE): Update docs.
14023
14024 * alpha.h (FLOAT_STORE_FLAG_VALUE): Use REAL_VALUE_ATOF.
14025
14026 2000-01-18 Martin v. Löwis <loewis@informatik.hu-berlin.de>
14027
14028 * c-parse.in (SAVE_WARN_FLAGS): Create an INTEGER_CST.
14029 (RESTORE_WARN_FLAGS): Unpack it.
14030 Change semantic type of extension to ttype.
14031 * c-common.c (split_specs_attrs): Expect an INTEGER_CST.
14032 * c-parse.y, c-parse.c, objc/objc-parse.y,
14033 objc/objc-parse.c: Regenerate.
14034
14035 2000-01-17 Zack Weinberg <zack@wolery.cumb.org>
14036
14037 * fixinc/fixlib.c: Add copyright notice.
14038 (compile_re): New function.
14039 * fixinc/fixlib.h: Prototype compile_re.
14040
14041 * fixinc/fixfixes.c, fixinc/fixtests.c, fixinc/fixincl.c:
14042 Use compile_re to compile regular expressions.
14043
14044 * fixinc/fixincl.c (egrep_test): Don't bother asking regexec
14045 where the pattern matched.
14046
14047 * fixinc/inclhack.def (sun_memcpy): Move to AAB_sun_memcpy,
14048 use 'replace'.
14049 (ultrix_ansi_compat): Likewise.
14050 (interactv_add1): Rename to 'isc_omits_with_stdc', remove shell test,
14051 add egrep test.
14052 (interactv_add2, interactv_add3): Delete.
14053 (x11_sprintf): Don't use filename glob.
14054 * fixinc/fixincl.x, fixinc/inclhack.sh, fixinc/fixincl.sh:
14055 Regenerate.
14056
14057 2000-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14058
14059 * print-rtl.c: PROTO -> PARAMS.
14060 * real.c: Likewise.
14061 * reg-stack.c: Likewise.
14062 * resource.c: Likewise.
14063 * sdbout.h: Likewise.
14064 * simplify-rtx.c: Likewise.
14065 * stor-layout.c: Likewise.
14066 * stupid.c: Likewise.
14067 * xcoffout.c: Likewise.
14068 * xcoffout.h: Likewise.
14069
14070 2000-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14071
14072 * toplev.c: PROTO -> PARAMS.
14073 * toplev.h: Likewise.
14074 * tree.c: Likewise.
14075 * tree.h: Likewise.
14076 * unroll.c: Likewise.
14077 * varasm.c: Likewise.
14078 * varray.c: Likewise.
14079 * varray.h: Likewise.
14080
14081 2000-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14082
14083 * reload.c: PROTO -> PARAMS.
14084 * reload.h: Likewise.
14085 * reload1.c: Likewise.
14086 * reorg.c: Likewise.
14087 * resource.h: Likewise.
14088 * rtl.c: Likewise.
14089 * rtl.h: Likewise.
14090 * rtlanal.c: Likewise.
14091 * sbitmap.h: Likewise.
14092 * sdbout.c: Likewise.
14093 * stack.h: Likewise.
14094 * stmt.c: Likewise.
14095 * system.h: Likewise.
14096
14097 2000-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14098
14099 * machmode.h: PROTO -> PARAMS.
14100 * mbchar.h: Likewise.
14101 * mips-tdump.c: Likewise.
14102 * mips-tfile.c: Likewise.
14103 * optabs.c: Likewise.
14104 * output.h: Likewise.
14105 * prefix.c: Likewise.
14106 * profile.c: Likewise.
14107 * protoize.c: Likewise.
14108 * real.h: Likewise.
14109 * recog.c: Likewise.
14110 * recog.h: Likewise.
14111 * regclass.c: Likewise.
14112 * regmove.c: Likewise.
14113 * regs.h: Likewise.
14114
14115 2000-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14116
14117 * ggc-common.c: PROTO -> PARAMS.
14118 * ggc-page.c: Likewise.
14119 * ggc-simple.c: Likewise.
14120 * ggc.h: Likewise.
14121 * global.c: Likewise.
14122 * graph.c: Likewise.
14123 * gthr-win32.h: Likewise.
14124 * haifa-sched.c: Likewise.
14125 * halfpic.h: Likewise.
14126 * integrate.c: Likewise.
14127 * integrate.h: Likewise.
14128 * jump.c: Likewise.
14129 * lcm.c: Likewise.
14130 * local-alloc.c: Likewise.
14131 * loop.c: Likewise.
14132 * loop.h: Likewise.
14133
14134 2000-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14135
14136 * genattr.c: PROTO -> PARAMS.
14137 * genattrtab.c: Likewise.
14138 * gencheck.c: Likewise.
14139 * gencodes.c: Likewise.
14140 * genconfig.c: Likewise.
14141 * genemit.c: Likewise.
14142 * genextract.c: Likewise.
14143 * genflags.c: Likewise.
14144 * gengenrtl.c: Likewise.
14145 * genopinit.c: Likewise.
14146 * genoutput.c: Likewise.
14147 * genpeep.c: Likewise.
14148 * genrecog.c: Likewise.
14149
14150 2000-01-16 Mark Mitchell <mark@codesourcery.com>
14151
14152 * tree.h (BINFO_VPTR_FIELD): Augment documentation.
14153
14154 2000-01-16 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
14155
14156 * aclocal.m4 (AC_FUNC_MMAP_ZERO): New macro.
14157 * configure.in (AC_FUNC_MMAP_ZERO): Use instead of AC_FUNC_MMAP.
14158 * ggc-page.c: Replace HAVE_MMAP with HAVE_MMAP_ZERO.
14159 * configure, config.in: Rebuilt.
14160
14161 2000-01-16 Zack Weinberg <zack@wolery.cumb.org>
14162
14163 * config/i386/i386.md: Add peephole to merge successive stack
14164 adjusts.
14165
14166 Sat Jan 15 15:41:14 EST 2000 John Wehle (john@feith.com)
14167
14168 * gcse.c (insert_insn_end_bb): Use emit_block_insn_before
14169 instead of emit_insn_before. Also handle NOTE_INSN_BASIC_BLOCK
14170 when walking backwards to find all the parameter loads when
14171 the basic block ends in a call.
14172
14173 2000-01-15 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14174
14175 * loop.c (this_loop_info): Delete.
14176 (uid_loop): Add in place of uid_loop_num. All uses updated.
14177 (loop_number_exit_count): Delete and replace with entry in loop
14178 structure. All uses updated.
14179 (loop_number_loop_starts, loop_number_loop_ends): Likewise.
14180 (loop_number_loop_cont, loop_number_cont_dominator): Likewise.
14181 (loop_outer_loop): Likewise.
14182 (loop_invalid, loop_number_exit_labels): Likewise.
14183 (loop_used_count_register): Delete and replace with entry in
14184 loop_info structure.
14185 (find_and_verify_loops): Add loops argument.
14186 (verify_dominator, mark_loop_jump, prescan_loop): Replace loop_start,
14187 loop_end, etc. arguments with loop structure pointer. All callers
14188 changed.
14189 (loop_reg_used_before_p, scan_loop, strength_reduce): Likewise.
14190 (check_dbra_loop, next_insn_in_loop, try_copy_prop): Likewise.
14191 (load_mems_and_recount_loop_regs_set, load_mems): Likewise.
14192 (insert_bct): Likewise.
14193 (basic_induction_var): New argument level.
14194 * loop.h (struct loop_info): Delete fields num, loops_enclosed,
14195 vtop, and cont. Add used_count_register.
14196 (uid_loop): Delete declaration.
14197 (loop_number_exit_count): Likewise.
14198 (loop_number_loop_starts, loop_number_loop_ends): Likewise.
14199 (loop_number_loop_cont, loop_number_cont_dominator): Likewise.
14200 (loop_outer_loop, loop_used_count_register): Likewise.
14201 (loop_invalid, loop_number_exit_labels): Likewise.
14202 (unroll_loop): Replace loop_start and loop_end arguments
14203 with loop structure pointer.
14204 (loop_precondition_p, loop_iterations): Likewise.
14205 Include basic-block.h.
14206 * unroll.c: (unroll_loop): Replace loop_start and loop_end arguments
14207 with loop structure pointer.
14208 (loop_precondition_p, loop_iterations): Likewise.
14209 * basic-block.h (struct loop): New entries vtop, cont,
14210 cont_dominator, start, end, top, scan_start, exit_labels,
14211 exit_count.
14212 * Makefile.in (LOOP_H): Add basic-block.h to dependencies.
14213
14214 2000-01-15 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
14215
14216 * defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT.
14217
14218 2000-01-14 Nathan Sidwell <sidwell@codesourcery.com>
14219
14220 * config.in: Rebuilt for 2000-01-13 change to acconfig.h.
14221
14222 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14223
14224 * pdp11-protos.h: New file.
14225
14226 * pdp11.c: Include tm_p.h. Add static prototypes. Fix compile
14227 time warnings.
14228
14229 * pdp11.h: Move prototypes to pdp11-protos.h. Fix compile time
14230 warnings.
14231
14232 * pdp11.md: Likewise.
14233
14234 * 2bsd.h: Likewise.
14235
14236 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14237
14238 * mn10300-protos.h: New file.
14239
14240 * mn10300.c: Include tm_p.h. Add static prototypes. Fix compile
14241 time warnings.
14242
14243 * mn10300.h: Move prototypes to mn10300-protos.h. Fix compile time
14244 warnings.
14245
14246 * mn10300.md: Likewise.
14247
14248 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14249
14250 * mn10200-protos.h: New file.
14251
14252 * mn10200.c: Include tm_p.h. Add static prototypes. Fix compile
14253 time warnings.
14254
14255 * mn10200.h: Move prototypes to mn10200-protos.h. Fix compile time
14256 warnings.
14257
14258 * mn10200.md: Likewise.
14259
14260 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14261
14262 * h8300-protos.h: New file.
14263
14264 * h8300.c: Include tm_p.h. Add static prototypes. Fix compile
14265 time warnings.
14266
14267 * h8300.h: Move prototypes to h8300-protos.h. Fix compile time
14268 warnings.
14269
14270 * h8300.md: Likewise.
14271
14272 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14273
14274 * varasm.c (asm_output_bss): Mark parameters with ATTRIBUTE_UNUSED.
14275 (asm_emit_uninitialised): Likewise.
14276
14277 2000-01-13 Gavin Romig-Koch <gavin@cygnus.com>
14278
14279 * config/mips/mips.h (ISA_HAS_INT_CONDMOVE): New.
14280 * config/mips/mips.md: Use ISA_HAS_INT_CONDMOVE.
14281
14282 2000-01-14 Clinton Popetz <cpopetz@cygnus.com>
14283
14284 * config/mips/mips.c (override_options): Don't turn on extra
14285 alignment for mips16.
14286
14287 2000-01-14 Clinton Popetz <cpopetz@cygnus.com>
14288
14289 * config/mips/mips.c (mips_va_arg): Fix fprv for the 32 bit
14290 eabi, and make sure queued POSTINCREMENT rtl is emitted at
14291 the right point.
14292
14293 2000-01-14 Clinton Popetz <cpopetz@cygnus.com>
14294
14295 * builtins.c (PAD_VARARGS_DOWN): Define.
14296 (std_expand_builtin_va_arg): Use the above macro.
14297 * config/mips/mips.h (PAD_VARARGS_DOWN): Define.
14298 * tm.texi (Register Arguments): Document the above macro.
14299
14300 2000-01-14 Nick Clifton <nickc@cygnus.com>
14301
14302 * emit-rtl.c (emit_insn): If checking is enabled, make sure
14303 that this function has not been used to emit a jump
14304 instruction.
14305
14306 * jump.c (return_jump_1): Cope with being passed a null rtx.
14307
14308 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14309
14310 * eh-common.h: PROTO -> PARAMS.
14311 * emit-rtl.c: Likewise.
14312 * errors.c: Likewise.
14313 * errors.h: Likewise.
14314 * except.c: Likewise.
14315 * except.h: Likewise.
14316 * explow.c: Likewise.
14317 * expmed.c: Likewise.
14318 * expr.c: Likewise.
14319 * expr.h: Likewise.
14320 * final.c: Likewise.
14321 * fix-header.c: Likewise.
14322 * flow.c: Likewise.
14323 * fold-const.c: Likewise.
14324 * function.c: Likewise.
14325 * function.h: Likewise.
14326 * gcc.c: Likewise.
14327 * gcov-io.h: Likewise.
14328 * gcov.c: Likewise.
14329 * gcse.c: Likewise.
14330
14331 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14332
14333 * sh-protos.h: New file.
14334
14335 * sh.c: Include insn-config.h, toplev.h, recog.h and tm_p.h.
14336 Add static prototypes. Fix compile time warnings.
14337
14338 * sh.h: Move prototypes to sh-protos.h. Fix compile time warnings.
14339 * sh.md: Likewise.
14340 * elf.h: Likewise.
14341
14342 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14343
14344 * arc-protos.h: New file.
14345
14346 * arc.c: Include tm_p.h. Add static prototypes. Fix compile
14347 time warnings.
14348
14349 * arc.h: Move prototypes to arc-protos.h. Fix compile time
14350 warnings.
14351
14352 * arc.md: Likewise.
14353
14354 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14355
14356 * dsp16xx-protos.h: New file.
14357
14358 * dsp16xx.c: Include tm_p.h. Add static prototypes. Fix compile
14359 time warnings.
14360
14361 * dsp16xx.h: Move prototypes to dsp16xx-protos.h. Fix compile time
14362 warnings.
14363
14364 * dsp16xx.md: Likewise.
14365
14366 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14367
14368 * convex-protos.h: New file.
14369
14370 * convex.c: Include tm_p.h. Add static prototypes. Fix compile
14371 time warnings.
14372
14373 * convex.h: Move prototypes to convex-protos.h. Fix compile time
14374 warnings.
14375
14376 2000-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14377
14378 * elxsi-protos.h: New file.
14379
14380 * elxsi.c: Include tm_p.h. Add static prototypes. Fix compile
14381 time warnings.
14382
14383 * elxsi.h: Move prototypes to elxsi-protos.h. Fix compile time
14384 warnings.
14385
14386 * elxsi.md: Likewise.
14387
14388 2000-01-14 Clinton Popetz <cpopetz@cygnus.com>
14389
14390 * config/mips/mips.h (REGISTER_MOVE_COST): Remove redundant
14391 case for moving from HI/LO/HI_LO_REG. This makes the behavior
14392 match the comment for MIPS16.
14393
14394 Fri Jan 14 00:28:06 2000 Jeffrey A Law (law@cygnus.com)
14395
14396 * flow.c (split_edge): Do not call set_block_for_insn if we
14397 do not have a basic_block_for_insn structure.
14398
14399 * fr30.h (TRAMPOLINE_TEMPLATE): Use nops to ensure the static chain
14400 and destination functions are 32bit aligned within the trampoline.
14401 (TRAMPOLINE_SIZE, INITIALIZE_TRAMPOLINE): Corresponding changes.
14402 (TRAMPOLINE_ALIGNMENT): Define.
14403
14404 * cse.c (cse_insn): When changing (set (pc) (reg)) to
14405 (set (pc) (label_ref)), verify the change creates a valid insn.
14406
14407 * fr30.c (call_operand): Tighten and rework to match rules for
14408 call RTL expressions.
14409 * fr30.h (PREDICATE_CODES, case call_operand): Only allow MEMs.
14410 * fr30.md (call patterns): Improve constraints.
14411
14412 Thu Jan 13 23:44:03 2000 Richard Henderson <rth@cygnus.com>
14413
14414 * fr30.c (fr30_expand_epilogue): Revert last change.
14415 Use emit_jump_insn for the return insn.
14416
14417 Thu Jan 13 14:46:03 2000 Jason Eckhardt <jle@cygnus.com>
14418 Stan Cox <scox@cygnus.com>
14419
14420 * predict.c: New file. Preliminary infrastructure work for static
14421 branch prediction and basic block reordering.
14422 * basic-block.h: Add prototype for estimate_probability.
14423 * Makefile.in: Add rules for predict.o.
14424
14425 2000-01-13 Jason Merrill <jason@yorick.cygnus.com>
14426
14427 * fixincludes (va_list): Use __not_va_list__ for the dummy.
14428 * fixinc/*: Likewise.
14429
14430 2000-01-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14431
14432 * cccp.c: PROTO -> PARAMS.
14433 * cexp.y: Likewise.
14434 * collect2.c: Likewise.
14435 * combine.c: Likewise.
14436 * convert.h: Likewise.
14437 * cse.c: Likewise.
14438 * dbxout.c: Likewise.
14439 * dbxout.h: Likewise.
14440 * diagnostic.c: Likewise.
14441 * doprint.c: Likewise.
14442 * dwarf2out.c: Likewise.
14443 * dwarf2out.h: Likewise.
14444 * dwarfout.c: Likewise.
14445 * dwarfout.h: Likewise.
14446 * dyn-string.h: Likewise.
14447
14448 2000-01-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14449
14450 * calls.c (emit_call_1): Wrap varaible `struct_value_size_rtx' in
14451 macro conditionals guarding use.
14452
14453 * dwarf2out.c: Include "tm_p.h".
14454
14455 * function.c (locate_and_pad_parm): Mark parameter with
14456 ATTRIBUTE_UNUSED.
14457 (expand_function_end): Likewise for variable `context'.
14458
14459 * reorg.c (make_return_insns): Wrap prototype in macro HAVE_return.
14460
14461 2000-01-13 Nick Clifton <nickc@cygnus.com>
14462
14463 * config/fr30/fr30.c (fr30_expand_epilogue): Emit USEs of pop'ed
14464 register to prevent compile time warnings.
14465
14466 2000-01-13 Zack Weinberg <zack@wolery.cumb.org>
14467
14468 * longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv'
14469 to avoid -Wtraditional warning.
14470
14471 2000-01-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14472
14473 * 1750a-protos.h: New file.
14474
14475 * 1750a.c: Include tm_p.h. Add static prototypes. Fix compile
14476 time warnings.
14477
14478 * 1750a.h: Move prototypes to 1750a-protos.h. Fix compile time
14479 warnings.
14480
14481 * 1750a.md: Likewise.
14482
14483 2000-01-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14484
14485 * a29k-protos.h: New file.
14486
14487 * a29k.c: Include tm_p.h. Add static prototypes. Fix compile
14488 time warnings.
14489
14490 * a29k.h: Move prototypes to a29k-protos.h. Fix compile time
14491 warnings.
14492
14493 2000-01-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14494
14495 * clipper-protos.h: New file.
14496
14497 * clipper.c: Include tm_p.h. Add static prototypes. Fix compile
14498 time warnings.
14499
14500 * clipper.h: Move prototypes to clipper-protos.h. Fix compile time
14501 warnings.
14502
14503 Thu Jan 13 16:03:06 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
14504
14505 * reload1.c (reload_combine_note_store): Use HARD_REGNO_NREGS.
14506
14507 2000-01-13 Nathan Sidwell <sidwell@codesourcery.com>
14508
14509 * configure.in (--enable-new-gxx-abi): New option.
14510 * acconfig.h (ENABLE_NEW_GXX_ABI): New define.
14511 * Makefile.in (GXX_ABI_FLAG): New variable.
14512 * configure: Regenerate.
14513
14514 2000-01-13 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14515
14516 * stor-layout.c (layout_type): Use FORCE_STRUCT_BLK.
14517 * tm.texi (FORCE_STRUCT_BLK): Document.
14518 * config/c4x/c4x.h (FORCE_STRUCT_BLK): New macro.
14519
14520 Wed Jan 12 23:12:47 2000 Hans-Peter Nilsson <hp@axis.com>
14521
14522 * config/ns32k/ns32k.md: Revert Jan 9 change.
14523
14524 * genrecog.c (maybe_both_true_2): Do not compare a predicate-test
14525 to a mode-test, if the predicate is address_operand.
14526
14527 Wed Jan 12 22:34:00 2000 Jeffrey A Law (law@cygnus.com)
14528
14529 * combine.c (if_then_else_cond): Be careful about what kinds
14530 of RTL expressions are passed to operand_subword.
14531
14532 * flow.c (split_edge): If we have to insert a new jump, make
14533 sure to associate it with a basic block.
14534
14535 * flow.c (commit_one_edge_insertion): A block with one successor
14536 can end in a JUMP_INSN that is not a simplejump.
14537
14538 2000-01-12 Robert Lipe <robertl@sco.com>
14539
14540 * i386/sco5.h (INIT_SECTION_ASM_OP_COFF): Rename section to "ctor".
14541 (BUILD_VA_LIST_TYPE): Define.
14542 (EH_FRAME_SECTION_ASM_OP): Explictly define to better interact
14543 with crtstuff.c.
14544
14545 2000-01-12 Jason Merrill <jason@casey.cygnus.com>
14546
14547 * cccp.c (do_pragma): Add cast to (char *).
14548
14549 2000-01-12 Richard Henderson <rth@cygnus.com>
14550 Fred Fish <fnf@be.com>
14551 Jason Merrill <jason@cygnus.com>
14552
14553 * configure.in (i?86-*-beos{pe,elf,}*): Recognize.
14554 * i386/t-beos, i386/x-beos, i386/xm-beos.h: New files.
14555 * i386/beos-elf.h, i386/beos-pe.h: New files.
14556
14557 * Makefile.in (CROSS_SYSTEM_HEADER_DIR): New.
14558 * cross-make (SYSTEM_HEADER_DIR): Define using
14559 CROSS_SYSTEM_HEADER_DIR.
14560
14561 * gcc.c (LIBRARY_PATH_ENV): Provide default.
14562 (process_command): Use it.
14563 (main): Likewise. Kill trailing = from env vars.
14564 (build_search_list): Put it back.
14565 * collect2.c (main): Use LIBRARY_PATH_ENV.
14566
14567 * configure.in (GCC_NEED_DECLARATIONS): Add environ.
14568 * toplev.c: Use NEED_DECLARATION_ENVIRON.
14569
14570 * tm.texi (Frame Layout): Document SMALL_STACK.
14571 * c-common.c (c_common_nodes_and_builtins): Check it.
14572
14573 * system.h: Undef alloca after including glibc's <stdlib.h>,
14574 if USE_C_ALLOCA is defined.
14575
14576 * gcc.c (set_input): New fn.
14577 (main): After all input files are compiled, reset the input file
14578 info to the first.
14579
14580 * aclocal.m4 (rindex, index): If already defined, don't attempt
14581 to redefine.
14582
14583 * ginclude/varargs.h: (__va_list__): Define ifndef.
14584 * ginclude/stdarg.h: Likewise.
14585
14586 * ginclude/stddef.h (__WCHAR_TYPE__) [BEOS]: Use int
14587 instead of unsigned char.
14588
14589 * hash.h (true, false, boolean): Undef before enum.
14590
14591 * expmed.c (choose_multiplier): Cast &mhigh_lo and &mhigh_hi to be
14592 proper type of "HOST_WIDE_INT *", rather than their natural type of
14593 "unsigned HOST_WIDE_INT *".
14594
14595 2000-01-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14596
14597 * svr3.h (ASM_FILE_START): Wrap if-clause in squigly brackets.
14598
14599 * recog.c (memory_address_p): Mark parameter with ATTRIBUTE_UNUSED.
14600
14601 * regclass.c (choose_hard_reg_mode): Likewise.
14602
14603 * reload.c (find_valid_class, strict_memory_address_p): Likewise.
14604
14605 * reorg.c (optimize_skip): Wrap prototype in macro conditionals.
14606
14607 2000-01-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14608
14609 * c-common.c: PROTO -> PARAMS.
14610 * c-common.h: Likewise.
14611 * c-decl.c: Likewise.
14612 * c-iterate.c: Likewise.
14613 * c-lang.c: Likewise.
14614 * c-lex.c: Likewise.
14615 * c-lex.h: Likewise.
14616 * c-parse.in: Likewise.
14617 * c-pragma.c: Likewise.
14618 * c-pragma.h: Likewise.
14619 * c-tree.h: Likewise.
14620 * c-typeck.c: Likewise.
14621 * objc/objc-act.c: Likewise.
14622 * objc/objc-act.h: Likewise.
14623
14624 2000-01-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14625
14626 * m88k-protos.h: New file.
14627
14628 * m88k.c: Include tm_p.h. Add static prototypes. Fix compile
14629 time warnings.
14630
14631 * m88k.h: Move prototypes to m88k-protos.h. Fix compile time warnings.
14632
14633 * m88k.md: Likewise.
14634
14635 * tekXD88.h: Likewise.
14636
14637 2000-01-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14638
14639 * m68k-protos.h: New file.
14640
14641 * m68k.c: Include tm_p.h. Add static prototypes. Fix compile
14642 time warnings.
14643
14644 * m68k.h: Move prototypes to m68k-protos.h. Fix compile time warnings.
14645
14646 * mot3300.h: Likewise.
14647
14648 2000-01-12 Richard Earnshaw <rearnsha@arm.com>
14649
14650 * haifa-sched.c (split_edges): Pass edgeset_size as second arg to
14651 extract_bitlst.
14652 (extract_bitlist): Declare bitlen.
14653
14654 2000-01-12 Zack Weinberg <zack@wolery.cumb.org
14655
14656 * cccp.c: Accept and ignore -lang-fortran.
14657
14658 * c-typeck.c (build_c_cast): Issue -Wcast-qual warnings if the
14659 qualifiers don't match at any level of pointerness.
14660
14661 2000-01-12 Robert Lipe <robertl@sco.com>
14662
14663 * i386/sysv5.h (CPP_SPEC, LIBSPEC): Add -pthreadT.
14664
14665 2000-01-12 Bernd Schmidt <bernds@cygnus.co.uk>
14666
14667 * reload1.c (reload_reg_unavailable): New static variable.
14668 (reload_reg_free_p): Test it.
14669 (reload_reg_free_for_value_p): Test it instead of
14670 reload_reg_used.
14671 (choose_reload_regs_init): Compute it.
14672
14673 Wed Jan 12 03:24:41 2000 Toshiyasu Morita (toshi.morita@sega.com)
14674
14675 * reorg.c (fill_slots_from_thread): Check modified_in_p
14676 before replacing.
14677
14678 Wed Jan 12 03:20:31 2000 John Marshall <john_w_marshall@palm.com>
14679
14680 * gcc.texi (Funding, GNU/Linux, Copying, Contributors): Format
14681 these nodes even if INTERNALS is not set.
14682
14683 Wed Jan 12 09:39:22 2000 Nick Burrett <nick.burrett@btinternet.com>
14684
14685 * gcse.c (delete_null_pointer_checks_1): Cope when
14686 get_condition cannot determine the condition.
14687
14688 2000-01-12 Gabriel Dos Reis <gdr@codesourcery.com>
14689
14690 * toplev.h (set_message_length): Declare.
14691
14692 * diagnostic.c (obstack_chunk_alloc): Define macro.
14693 (obstack_chunk_free): Likewise.
14694 (struct output_buffer): New data structure.
14695 (vmessage): Remove.
14696 (output_maximum_width): New variable.
14697 (doing_line_wrapping, set_message_length, init_output_buffer,
14698 get_output_prefix, output_space_left, emit_output_prefix,
14699 output_newline, output_append, output_puts, dump_output,
14700 vbuild_message_string, build_message_string, build_location_prefix,
14701 voutput_notice, output_printf, line_wrapper_printf,
14702 vline_wrapper_message_with_location): New functions. Implement
14703 automatic line wrapping.
14704 (v_message_with_decl): Make it handle automatic line wrapping.
14705 (v_error_with_file_and_line): Likewise.
14706 (v_warning_with_file_and_line): Likewise.
14707 (announce_function): Likewise.
14708 (default_print_error_function): Likewise.
14709
14710 2000-01-11 16:24 -0800 Zack Weinberg <zack@wolery.cumb.org>
14711
14712 * cpplib.h (struct cpp_options): Change lang_asm to char.
14713 Add lang_fortran.
14714 * cppinit.c (builtin_array): Take out __STDC_VERSION__, it's
14715 done in cpp_handle_option now.
14716 (initialize_builtins): Take out special case code used only by
14717 __STDC_VERSION__.
14718 (cpp_handle_option): Turn off trigraphs and trigraph warnings
14719 if -traditional. Recognize -lang-fortran and set
14720 lang_fortran, also turn off cplusplus_comments.
14721 (print_help): Document -lang-fortran.
14722 * cpplib.c (handle_directive): Ignore `# 123 "file"' if
14723 lang_asm. Ignore all directives other than `# 123 "file"' if
14724 CPP_PREPROCESSED.
14725 (cpp_get_token): If -traditional, don't recognize directives
14726 unless the # is in column 1.
14727 (parse_string): If lang_fortran or lang_asm, silently
14728 terminate strings ('' or "") at end of line.
14729 Remove unnecessary braces.
14730
14731 2000-01-11 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
14732 Richard Henderson <rth@cygnus.com>
14733
14734 * resource.c (mark_referenced_resources): Mark a set strict_low_part
14735 as used.
14736 * config/i386/i386.c (ix86_expand_setcc): Re-enable clear + set
14737 strict_low_part when possible.
14738
14739 2000-01-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14740
14741 * alias.c: PROTO -> PARAMS.
14742 * basic-block.h: Likewise.
14743 * bitmap.c: Likewise.
14744 * bitmap.h: Likewise.
14745 * builtins.c: Likewise.
14746 * c-aux-info.c: Likewise.
14747 * caller-save.c: Likewise.
14748 * calls.c: Likewise.
14749
14750 2000-01-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14751
14752 * Makefile.in (toplev.o): Depend on regs.h.
14753
14754 * output.h (tdesc_section): Prototype.
14755
14756 * regclass.c (copy_cost): Mark parameters with ATTRIBUTE_UNUSED.
14757
14758 * sdbout.c: Include "tm_p.h".
14759
14760 * toplev.c: Include "regs.h".
14761
14762 Tue Jan 11 11:37:58 2000 Mike Stump <mrs@wrs.com>
14763
14764 * unroll.c (unroll_loop): Add EH support.
14765
14766 2000-01-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14767
14768 * pa-protos.h: New file.
14769
14770 * pa.c: Include recog.h and tm_p.h.
14771 (compute_zdepwi_operands, compute_movstrsi_length,
14772 remove_useless_addtr_insns, store_reg, load_reg, set_reg_plus_d,
14773 find_addr_reg, import_milli): Add static prototypes.
14774 (pa_cpu_string, pa_arch_string): Constify a char*.
14775 (legitimize_pic_address): Pass argument `mode' to pic_label_operand.
14776 (read_only_operand): Add argument `mode'.
14777 (singlemove_string, output_move_double, output_fp_move_double,
14778 output_block_move, output_and, output_ior, output_ascii,
14779 remove_useless_addtr_insns, milli_names, output_mul_insn,
14780 output_div_insn, output_mod_insn, output_arg_descriptor,
14781 output_cbranch, output_bb, output_bvb, output_dbra, ,
14782 output_millicode_call, output_call, hppa_encode_label,
14783 output_parallel_movb, output_parallel_addb): Constify a char*.
14784 (hppa_va_start): Mark parameter `stdarg_p' with ATTRIBUTE_UNUSED.
14785 (output_parallel_addb): Remove extra arg to `constrain_operands'
14786
14787 * pa.h: Move all prototypes to pa-protos.h.
14788 (pa_cpu_string, pa_arch_string): Constify a char*.
14789 (LEGITIMIZE_ADDRESS): Call `symbolic_operand' with mode argument.
14790
14791 * pa.md: Call `function_label_operand' with mode argument.
14792 Likewise for `read_only_operand'.
14793 Fix nesting of parens in call to `symbolic_operand'.
14794
14795 2000-01-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14796
14797 * i860-protos.h: New file.
14798
14799 * i860.c: Include tm_p.h. Add static prototypes. Fix compile
14800 time warnings.
14801
14802 * i860.h: Move prototypes to i860-protos.h. Fix compile time warnings.
14803
14804 * i860.md: Likewise.
14805
14806 Tue Jan 11 18:59:35 MET 2000 Jan Hubicka <jh@suse.cz>
14807
14808 * i386.md (movstrsi expander): Rewrite.
14809 (movstrsi_1 insn): Deleted.
14810 (strmovhi, strmovqi expander): New expanders.
14811 (movshi_1, movsqi_1, rep_movsi, rep_movqi): New patterns.
14812 * i386.c (x86_single_stringop): New global variable.
14813 * i386.h (x86_single_stringop): Declare.
14814 (TARGET_SINGLE_STRINGOP): New macro.
14815
14816 2000-01-11 Clinton Popetz <cpopetz@cygnus.com>
14817
14818 * config/mips/mips.c (mips_va_arg): For EABI, emit the queued
14819 integer vararg POSTINCREMENT before the destination of the jump
14820 for the hard fp case.
14821 (function_arg_pass_by_reference): Pass a copy of CUM to
14822 FUNCTION_ARG.
14823
14824 * config/mips/mips.h (GO_IF_LEGITIMATE_ADDRESS): Move check
14825 for CONSTANT_ADDRESS_P above while loop for subreg.
14826
14827 2000-01-11 Clinton Popetz <cpopetz@cygnus.com>
14828
14829 * flow.c (propagate_block): When a prologue/epilogue insn
14830 is marked dead, unconditionally clear libcall_is_dead and
14831 insn_is_dead, and only dump rtl if warnings aren't being
14832 suppressed.
14833
14834 Tue Jan 11 16:26:47 MET 2000 Jan Hubicka <jh@suse.cz>
14835
14836 * i386.c (ix86_attr_length_default): Handle TYPE_STR and TYPE_CLD.
14837 * i386.md (FIRST_PSEUDO_REGISTER): Set to 20.
14838 (FIXED_REGISTERS): Set dirflag as fixed.
14839 (CALL_USED_REGISTERS): Set dirflag as used.
14840 (REG_ALLOC_ORDER): Set dirflag as last one.
14841 (DIRFLAG_REG): New macro.
14842 (MD_ASM_CLOBBERS): Asm clobber dirflag for backward compatibility.
14843 (HI_REGISTER_NAMES): Add dirflag.
14844 (DEBUF_PRINT_REG): Handle dirflag.
14845 * i386.md (type attribute): New cld and str types.
14846 (length_opcode attribute): Set cld and str to 1.
14847 (memory attribute): Set str to unknown - it is not clear from the
14848 patterns.
14849 (pent_np function unit): Prefixed string operations takes 12 cycles
14850 minimally; cld takes 2 cycles.
14851 (ppro_uops attribute): Str is "many" and cld is "few".
14852 (ppro_p0 unit): Handle cld here.
14853 (k6_alux unit): Handle cld and str types.
14854 (k6_load unit): It is ocupied by str opcodes.
14855 (k6_store unit): It is ocupied by str opcodes.
14856 (athlon_decode): Str is vector decoded.
14857 (athlon_ieu): Handle str and cld.
14858 (cld pattern): New.
14859 (movstrsi, clrstr, cmpstr, strlen expander): Emit cld instruction
14860 (movstrsi_1, clrstrsi_1, cmpstrsi_1, strlensi_1,
14861 cmpstrsi_nz_1 insn): Do not output cld instruction
14862
14863 Tue Jan 11 06:14:39 2000 David Starner <dstarner98@aasaa.ofe.org>
14864
14865 * gcc.texi (G++ and GCC): Add Java and Chill.
14866 (Bug Critera): Don't list languages.
14867
14868 * gcc.texi (Incompatibilities): No longer claim most C compilers
14869 are K&R.
14870
14871 * gcc.texi (G++ and GCC): Update other front-ends list.
14872
14873 Tue Jan 11 05:49:01 2000 Jeffrey A Law (law@cygnus.com)
14874
14875 * i386.c (ix86_expand_setcc): Fix typo.
14876 (ix86_expand_movcc): Similarly.
14877
14878 * Band-aid until haifa's bitset implementation is nuked.
14879 * haifa-sched.c (extract_bitlst): New parameter for size of the
14880 bitset in bits. All callers changed. Avoid looking at undefined
14881 bits in the bitset.
14882 (edgeset_bitsize): New variable.
14883 (schedule_region): Initialize edgeset_bitsize.
14884
14885 2000-01-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14886
14887 * Makefile.in (optabs.o): Depend on real.h
14888 (resource.o): Depend on insn-attr.h
14889
14890 * builtins.c (result_vector): Wrap prototype in macro conditions
14891 governing definition and use.
14892
14893 * c-common.c: Include tm_p.h.
14894
14895 * c-lex.c: Likewise.
14896
14897 * elfos.h: Constify a char*.
14898
14899 * final.c (align_fuzz): Wrap prototype in macro HAVE_ATTR_length.
14900 (get_attr_length, shorten_branches, profile_after_prologue): Mark
14901 parameter with ATTRIBUTE_UNUSED.
14902
14903 * fold-const.c (exact_real_inverse): Wrap variable `i' in
14904 CHECK_FLOAT_VALUE.
14905
14906 * haifa-sched.c (schedule_insns): Mark parameter with
14907 ATTRIBUTE_UNUSED.
14908
14909 * optabs.c: Include real.h.
14910
14911 * real.h (ereal_atof): Add prototype arguments.
14912
14913 * resource.c: Include insn-attr.h.
14914
14915 * sdbout.c (sdbout_queue_anonymous_type,
14916 sdbout_dequeue_anonymous_types): Wrap in macro
14917 SDB_ALLOW_FORWARD_REFERENCES.
14918 (sdbout_init, sdbout_start_new_source_file): Mark parameter with
14919 ATTRIBUTE_UNUSED.
14920
14921 * stmt.c (expand_return): Wrap variable `op0' in macro HAVE_return.
14922
14923 * stupid.c: Include tm_p.h.
14924
14925 * tree.c (real_value_from_int_cst): Mark parameter with
14926 ATTRIBUTE_UNUSED.
14927
14928 2000-01-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14929
14930 * i960-protos.h: New file.
14931
14932 * i960.c: Include tm_p.h. Add static prototypes. Fix compile
14933 time warnings.
14934
14935 * i960.h: Move prototypes to i960-protos.h. Fix compile time warnings.
14936
14937 2000-01-10 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
14938
14939 * combine.c (expand_field_assignment): Do not discard SUBREGs
14940 while computing nonzero_bits.
14941
14942 2000-01-09 Nick Clifton <nickc@cygnus.com>
14943
14944 * config/arm/arm.c: Fix compile time warnings about signed vs
14945 unsigned constants.
14946 * config/arm/arm.h: Fix compile time warnings about signed vs
14947 unsigned constants.
14948
14949 2000-01-09 Philip Blundell <philb@gnu.org>
14950
14951 * config/arm/arm.c (output_return_instruction): Use `ldr' rather
14952 than `ldm' with only one register.
14953 * config/arm/arm.md (push_multi): Use `str' rather than `stm' with
14954 only one register.
14955
14956 * config/arm/linux-gas.h (CLEAR_INSN_CACHE): Say that R0 is
14957 clobbered.
14958
14959 Sun Jan 9 17:50:23 2000 Hans-Peter Nilsson <hp@axis.com>
14960
14961 * config/ns32k/ns32k.md (load or push effective address): Operand 1
14962 must have SImode.
14963
14964 2000-01-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14965
14966 * elfos.h (ASM_OUTPUT_LIMITED_STRING): Add parentheses around
14967 assignment used as truth value.
14968
14969 * function.c (assign_temp): Mark parameter `dont_promote' with
14970 ATTRIBUTE_UNUSED. Wrap variable `unsignedp' with macro
14971 PROMOTE_FOR_CALL_ONLY.
14972
14973 * genrecog.c (write_subroutine): Mark variable `operands' with
14974 ATTRIBUTE_UNUSED.
14975
14976 * optabs.c (prepare_cmp_insn): Mark parameter `align' with
14977 ATTRIBUTE_UNUSED.
14978
14979 * sdbout.c (sdbout_init): Likewise for parameter `asm_file'.
14980 (sdbout_begin_block, sdbout_end_block): Likewise for `file'.
14981
14982 * toplev.c (note_deferral_of_defined_inline_function): Likewise
14983 for `decl'.
14984
14985 2000-01-09 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
14986
14987 * config/c4x.h: Tidy up comments.
14988 * config/c4x.c: Likewise.
14989
14990 Sun Jan 9 01:02:55 EST 2000 John Wehle (john@feith.com)
14991
14992 * fold-const.c (lshift_double, rshift_double): Handle
14993 shifting by 2 * HOST_BITS_PER_WIDE_INT correctly.
14994
14995 2000-01-08 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
14996
14997 * toplev.c (rest_of_compilation): Initialize cse_not_expected as
14998 in prepare_function_start().
14999
15000 Sat Jan 8 12:12:46 2000 Nick Clifton <nickc@cygnus.com>
15001
15002 * config/v850/v850.c (expand_epilogue): Interrupt functions no
15003 longer allocate extra stack for function calls.
15004
15005 2000-01-08 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15006
15007 * config/c4x/c4x.md (*subqf3_set): Fix typo.
15008
15009 2000-01-08 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15010
15011 * config/c4x/c4x.h (CALLER_SAVE_PROFITABLE): Define as 0.
15012
15013 2000-01-07 David Edelsohn <edelsohn@gnu.org>
15014
15015 * rs6000.c (processor_target_table): Add power3 as alias for 630.
15016 * aix43.h: Revert Aug 2 change.
15017 (HAS_INIT_SECTION): Define, not visible yet.
15018 (LD_INIT_SWITCH): Define, not visible yet.
15019 * t-aix43 (MULTILIB_OPTIONS): Revert Aug 2 change.
15020
15021 * glimits.h (__LONG_MAX__): Recognize 64-bit AIX too.
15022
15023 * collect2.c (main): Expand ld2 size further.
15024 (export_object_lst): Cast assignment to avoid warning.
15025 (main, LD_INIT_SWITCH): Add AIX 4.2+ -binitfini support.
15026 (scan_prog_file, COFF): Do not collect initialization or
15027 finalization functions generated for entire shared object if
15028 init/fini support present.
15029
15030 2000-01-07 Nick Clifton <nickc@cygnus.com>
15031
15032 * config/elfos.h: Tidy up formatting of marcos. Make sure
15033 that .section directives are always prefixed by a tab.
15034
15035 * config/svr4.h: Add #include "elfos.h" and remove duplicate
15036 definitions.
15037
15038 2000-01-07 Matt Austern <austern@sgi.com>
15039
15040 * fold-const.c (real_hex_to_f): Remove duplicate declaration of
15041 expon.
15042
15043 Fri Jan 7 01:55:34 2000 Jeffrey A Law (law@cygnus.com)
15044
15045 * Makefile.in (crtend.o): Pass @inhibit_libc@ to compilation of
15046 crtstuff.c.
15047 (crtbegin.o, s-crtS): Likewise.
15048
15049 2000-01-06 Richard Henderson <rth@cygnus.com>
15050
15051 * alpha.md (adddi_2+1): Limit offset such that it will be
15052 loadable with a single ldah+lda pair.
15053 (adddi_2+2): Explicitly fail split if we can't make it work.
15054
15055 2000-01-06 Mumit Khan <khan@xraylith.wisc.edu>
15056
15057 * protoize.c: Conditionally include unistd.h.
15058 (IS_SAME_PATH_CHAR): New macro.
15059 (IS_SAME_PATH): New macro.
15060 (CPLUS_FILE_SUFFIX): New macro.
15061 (cplus_suffix): New static variable.
15062 (is_abspath): New static function.
15063 (in_system_include_dir): Handle DOS style pathnames.
15064 (file_could_be_converted): Likewise.
15065 (file_normally_convertible): Likewise.
15066 (directory_specified_p): Likewise.
15067 (file_excluded_p): Likewise.
15068 (abspath): Likewise.
15069 (shortpath): Likewise.
15070 (referenced_file_is_newer): Likewise.
15071 (save_def_or_dec): Likewise.
15072 (do_processing): Likewise.
15073 (main): Likewise.
15074 (edit_file): Likewise. Use rename instead of link.
15075 (rename_c_file): Likewise. Don't rename syscalls file.
15076 (munge_compile_params): Define null device for DOS based systems.
15077 (process_aux_info_file): Use binary mode if appliable.
15078 (edit_file): Likewise.
15079 * invoke.texi (Running Protoize): Document C++ suffixes used.
15080
15081 * cccp.c: Delete PATH_SEPARATOR, DIR_SEPARATOR and
15082 IS_DIR_SEPARATOR macros.
15083 * collect2.c: Likewise.
15084 * cppinit.c: Likewise.
15085 * dwarf2out.c: Likewise.
15086 * gcc.c: Likewise.
15087 * gcov.c: Likewise.
15088 * prefix.c: Likewise.
15089 * rtl.c: Likewise.
15090 * toplev.c: Likewise.
15091 * system.h: And move to here.
15092
15093 * prefix.c (update_path): Fix typo in variable name.
15094
15095 2000-01-06 Richard Henderson <rth@cygnus.com>
15096
15097 * flow.c (mark_set_1): Use loop_depth+1 as reference weight.
15098 (find_auto_inc, mark_used_regs, try_pre_increment_1): Likewise.
15099 (count_reg_sets_1, count_reg_references): Likewise.
15100 (flow_loops_level_compute): Start counting actual loop depth at 1.
15101 (flow_loops_find): Likewise.
15102 * local-alloc.c (update_equiv_regs): Likewise.
15103 * regclass.c (regclass): Re-instate Jan 4 0-based loop_depth change.
15104
15105 2000-01-06 Gabriel Dos Reis <dosreis@cmla.ens-cachan.fr>
15106
15107 * defaults.h (DWARF_FRAME_REGISTERS): if not defined, default to
15108 FIRST_PSEUDO_REGISTER
15109 * dwarf2out.c: Don't include frame.h
15110 * dwarfout.c: Likewise
15111 * Makefile.in (dwarfout.o, dwarf2out.o): Remove dependence on
15112 frame.h
15113
15114 Thu Jan 6 13:44:59 CET 2000 Jan Hubicka <jh@suse.cz>
15115
15116 * reg-stack.c (subst_stack_regs_pat): Handle correctly USEs of
15117 dead registers.
15118
15119 * i386.c (movsf splitter): Fix typo in my last checkin.
15120
15121 2000-01-05 Nick Clifton <nickc@cygnus.com>
15122
15123 * varasm.c (IN_NAMED_SECTION): Allow targets to provide their
15124 own definition of this macro.
15125 (asm_emit_uninitialised): Invoke UNIQUE_SECTION if either
15126 flag_data_sections or UNIQUE_SECTION_P are true.
15127
15128 * tm.texi (UNIQUE_SECTION): Document that it can be called for
15129 unitialised data decls.
15130
15131 * config/i386/winnt.c (i386_pe_unique_section): Cope with
15132 being called for uninitialised data.
15133
15134 * config/i386/interix.c (i386_pe_unique_section): Cope with
15135 being called for uninitialised data.
15136
15137 * config/mips/elf.h (UNIQUE_SECTION): Cope with being called
15138 for uninitialised data.
15139
15140 * config/mips/elf64.h (UNIQUE_SECTION): Cope with being called
15141 for uninitialised data.
15142
15143 * config/mips/iri6gld.h (UNIQUE_SECTION): Cope with being called
15144 for uninitialised data.
15145
15146 * config/arm/unknown-elf.h (IN_NAMED_SECTION): Define.
15147 (UNIQUE_SECTION_P): Always generate a unique section if
15148 flag_data_sections is true.
15149 (UNIQUE_SECTION): Also generate unique sections for
15150 uninitialised data.
15151 (ASM_OUTPUT_ALIGNED_BSS): Redefine to use named_section().
15152 (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Redefine to use
15153 named_section().
15154
15155 2000-01-06 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15156
15157 * config/c4x/t-c4x (TARGET_LIBGCC2_CFLAGS): Don't redefine SF, DF,
15158 SI, or DI.
15159
15160 2000-01-06 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15161
15162 * config/c4x/c4x.md (udivqi3, divqi3): Delete.
15163 (umodqi3, modqi3, udivhi3, divhi3, umodhi3, modhi3, ffsqi2): Likewise.
15164 (*smulqi3_highpart_noclobber, *umulqi3_highpart_noclobber): New.
15165 (*lshrqi3_const_noclobber, *lshrqi3_nonconst_noclobber): Likewise.
15166 (*ashrqi3_const_noclobber, *ashrqi3_nonconst_noclobber): Likewise.
15167
15168 * c4x.h (INIT_TARGET_OPTABS): Define to init libcalls.
15169
15170 2000-01-05 11:25 -0800 Zack Weinberg <zack@rabi.columbia.edu>
15171
15172 * c-decl.c (finish_enum): Simplify code to determine minimum and
15173 maximum values of the enum, and calculate the type. Remove check
15174 for FUNCTION_DECLs in the values list, which cannot happen. Replace
15175 the DECL_INITIAL of each enumeration constant with a copy converted
15176 to the enumeration type. When updating variant types, don't bother
15177 updating the type itself.
15178
15179 * c-typeck.c (build_binary_op): Simplify conditional expressions
15180 when weeding out spurious signed-unsigned warnings. Add new
15181 spurious warning category: if the unsigned quantity is an enum
15182 and its maximum value fits in signed_type(result_type). Update
15183 commentary.
15184 (build_conditional_expr): Warn here if one alternative is signed
15185 and the other is unsigned.
15186
15187 2000-01-05 Nick Clifton <nickc@cygnus.com>
15188
15189 * config/fr30/fr30.h: Remove extraneous comments.
15190
15191 2000-01-05 Bernd Schmidt <bernds@cygnus.co.uk>
15192
15193 * reload1.c (choose_reload_regs): When disabling a reload, also
15194 set reload_spill_index to -1.
15195
15196 2000-01-04 Joel Sherrill (joel@OARcorp.com>
15197
15198 * configure.in (m68*-*-rtemscoff*): New target, formal name for
15199 old m68*-*-rtems*.
15200 (m68*-*-rtemself*): New target.
15201 (mips64orion-*-rtems*): Remove duplicate definition of tm_file.
15202 (sparc*-*-rtemsaout*): New target, formal name for old sparc*-*-rtems*.
15203 (sparc*-*-rtemself*): New target.
15204 (sparc*-*-rtems*): Now elf not a.out.
15205 * config/i386/rtems.h: Include config/rtems.h.
15206 * config/i386/rtemself.h: Include config/rtems.h.
15207 * config/i960/rtems.h: Include config/rtems.h.
15208 * config/m68k/rtems.h: Include config/rtems.h.
15209 * config/m68k/rtemself.h: Include config/rtems.h.
15210 * config/mips/rtems64.h: Include config/rtems.h.
15211 * config/pa/rtems.h: Include config/rtems.h.
15212 * config/rs6000/rtems.h: Include config/rtems.h.
15213 * config/sh/rtems.h: Include config/rtems.h.
15214 * config/sh/rtemself.h: Include config/rtems.h.
15215 * config/sparc/rtems.h: Include config/rtems.h.
15216 * config/sparc/rtemself.h: Include config/rtems.h
15217
15218 Tue Jan 4 23:59:26 2000 Denis Chertykov <denisc@overta.ru>
15219
15220 * final.c (shorten_branches): Correctly compute length of
15221 asms without operands.
15222
15223 Tue Jan 4 22:55:41 2000 Steve Chamberlain <sac@pobox.com>
15224
15225 * configure.in: Add pj target.
15226 * configure: Regenerate.
15227 * config/pj: New directory.
15228 * config/pj/lib1funcs.S: New file.
15229 * config/pj/linux.h: New file.
15230 * config/pj/pj.c: New file.
15231 * config/pj/pj.md: New file.
15232 * config/pj/pjl.h: New file.
15233 * config/pj/t-pj: New file.
15234 * config/pj/xm-pj.h: New file
15235
15236 Tue Jan 4 22:30:16 2000 Jeffrey A Law (law@cygnus.com)
15237
15238 * toplev.c (rest_of_compilation): Run shorten-branches before
15239 reg-stack for now.
15240
15241 2000-01-05 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15242
15243 * config/c4x/c4x.h (IS_XXX_REG, IS_XXX_REGNO): Swap behaviour of
15244 macros so that they're consistent with their names.
15245 * config/c4x/c4x.c (IS_XXX_REG, IS_XXX_REGNO): Likewise.
15246 * config/c4x/c4x.md (IS_XXX_REG, IS_XXX_REGNO): Likewise.
15247
15248 2000-01-05 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
15249
15250 * config/c4x/c4x.md (*addqi3_noclobber_reload): Ensure that CC never
15251 modified inadvertently.
15252
15253 2000-01-04 Joel Sherrill <joel@OARcorp.com>
15254
15255 * configure.in (v850*-*-rtems*): New target.
15256 * configure: Regenerate.
15257 * config/v850/rtems.h: New file.
15258
15259 2000-01-04 Mumit Khan <khan@xraylith.wisc.edu>
15260
15261 * gthr-win32.h (__gthread_active_p): Support Mingw MT runtime.
15262 (__gthread_key_create): Likewise.
15263 (__gthread_key_dtor): Likewise.
15264 (__gthread_once): Fix logic.
15265 (__gthread_key_delete): Cast away constness.
15266
15267 * i386/cygwin.h (SUBTARGET_SWITCHES): Add -mthreads option.
15268 * invoke.texi: Document.
15269 * i386/mingw32.h (CPP_SPEC): Use.
15270 (LIBGCC_SPEC): Likewise.
15271 * i386/crtdll.h (LIBGCC_SPEC): Likewise.
15272
15273 2000-01-04 David Edelsohn <edelsohn@gnu.org>
15274
15275 * rs6000/sysv4.h (ASM_OUTPUT_DEF): Undefine.
15276 (HANDLE_PRAGMA_PACK): Undefine.
15277 (SLOW_UNALIGNED_ACCESS): Define.
15278
15279 2000-01-04 David Edelsohn <edelsohn@gnu.org>
15280
15281 * expmed.c (SLOW_UNALIGNED_ACCESS): Add mode and align parameters
15282 to default definition.
15283 (store_bit_field): Call SLOW_UNALIGNED_ACCESS with mode and alignment.
15284 (store_fixed_bit_field): Call macro with word_mode and alignment.
15285 (extract_bit_field): Call macro with relevant mode and alignment.
15286 * expr.c (SLOW_UNALIGNED_ACCESS): Add mode and align parameters
15287 to default definition.
15288 (move_by_pieces): Call SLOW_UNALIGNED_ACCESS with word_mode
15289 and alignment.
15290 (move_by_pieces_ninsns): Likewise.
15291 (clear_by_pieces): Likewise.
15292 (emit_push_insn): Likewise.
15293 (store_field): Call macro with relevant mode and alignment.
15294 (expand_expr): Likewise.
15295 (expand_expr_unaligned): Likewise.
15296
15297 * rs6000.h (HANDLE_PRAGMA_PACK): Define.
15298 (SLOW_UNALIGNED_ACCESS): Define.
15299 (CASE_VECTOR_MODE): Always use 32-bit offsets.
15300 (ASM_FILE_END): Generate 64-bit symbol in 64-bit mode.
15301 (EXTRA_SECTION_FUNCTIONS): Indent .csect pseudo-op.
15302 (toc_section): Likewise and .toc pseudo-op.
15303 (ASM_DECLARE_FUNCTION): Likewise. Align text more strictly in
15304 64-bit mode.
15305 (TEXT_SECTION_ASM_OP): Likewise.
15306 (ASM_OUTPUT_ADD_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Always use
15307 32-bit offsets.
15308
15309 * a29k.h (SLOW_UNALIGNED_ACCESS): Add MODE and ALIGN parameters.
15310 * alpha.h (SLOW_UNALIGNED_ACCESS): Likewise.
15311 * arm/thumb.h (SLOW_UNALIGNED_ACCESS): Likewise.
15312 * gmicro.h (SLOW_UNALIGNED_ACCESS): Likewise.
15313 * fr30.h (SLOW_UNALIGNED_ACCESS): Likewise.
15314
15315 Tue Jan 4 11:44:13 2000 Jeffrey A Law (law@cygnus.com)
15316
15317 * regclass.c: Revert my Jan 4 change to loop cost computation.
15318
15319 Tue Jan 4 19:22:39 MET 2000 Jan Hubicka <hubicka@freesoft.cz>
15320
15321 * regclass.c (regclass): Do not obey REG_N_REFS in non-optimizing
15322 compilation.
15323
15324 2000-01-04 Stan Cox <scox@cygnus.com>
15325
15326 * haifa-sched.c (build_control_flow): Change unreachable simple
15327 loop test to check if current block has only one predecessor.
15328 (find_rgns): Initialize degree. Use dest as degree index, not src.
15329
15330 2000-01-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
15331
15332 * builtins.c (expand_builtin_strlen): Initialize variable `icode'.
15333
15334 * calls.c (expand_call): Likewise for
15335 `old_stack_arg_under_construction'.
15336
15337 * cpphash.c (macroexpand): Likewise for `args' and `rest_zero'.
15338
15339 * function.c (pad_to_arg_alignment): Likewise for `save_var' and
15340 `save_constant'.
15341
15342 * gcc.c (execute): Likewise for `ut' and `st'.
15343
15344 * genattrtab.c (attr_rtx): Likewise for `rt_val'.
15345
15346 * genopinit.c (gen_insn): Likewise for `m1', `m2' and `op'.
15347
15348 * jump.c (jump_optimize_1): Likewise for `temp2'.
15349
15350 * local-alloc.c (block_alloc): Likewise for `r1'.
15351
15352 * loop.c (recombine_givs): Likewise for `life_start' and `life_end'.
15353
15354 * reg-stack.c (check_asm_stack_operands): Likewise for `clobber_reg'.
15355 (subst_asm_stack_regs): Likewise for `clobber_reg' and `clobber_loc'.
15356
15357 * regmove.c (fixup_match_1): Likewise for `insn_const', `dst_node'
15358 and `set2'.
15359
15360 * reload.c (find_reloads): Likewise for `goal_alternative_number'
15361 and `goal_earlyclobber'.
15362
15363 * scan-decls.c (scan_decls): Likewise for `prev_id_end'.
15364
15365 * sdbout.c (sdbout_one_type): Likewise for `member_scl'.
15366
15367 * stupid.c (stupid_life_analysis): Likewise for `chain'.
15368
15369 * unroll.c (copy_loop_body): Likewise for `copy'.
15370
15371 * varasm.c (output_constructor): Likewise for `byte'.
15372
15373 Tue Jan 4 15:34:34 MET 2000 Jan Hubicka <hubicka@freesoft.cz>
15374
15375 * i386.c (ix86_expand_move): Allow pushes of memory, offload to memory
15376 all FP constants for constant->reg moves.
15377 (ix86_split_to_parts): Try to convert memory address into immediate
15378 when available in the constant pool.
15379 * i386.h (PREFERRED_RELOAD_CLASS): Allow CONST_DOUBLE->integer reg
15380 moves.
15381 (LEGITIMATE_CONSTANT_P): Return 1.
15382 * i386.md (pushsf): New splitter to convert constant pool memory
15383 reference to immediate.
15384 (mov?f): Likewise; do not allow CONST_DOUBLE for reg moves before
15385 reload.
15386
15387 2000-01-04 Bernd Schmidt <bernds@cygnus.co.uk>
15388
15389 * i386.md (ashlsi3_cmpno): Don't accept variables shifts.
15390 (ashlhi3_cmpno, ashlqi3_cmpno, ashrsi3_cmpno, ashrhi3_cmpno,
15391 ashrqi3_cmpno, lshrsi3_cmpno, lshrhi3_cmpno, lshrqi3_cmpno): Likewise.
15392 (rotlsi3_cmpno, rotlhi3_cmpno, rotlqi3_cmpno, rotrsi3_cmpno,
15393 rotrhi3_cmpno, rotrqi3_cmpno): Likewise.
15394
15395 2000-01-04 Martin von Löwis <loewis@informatik.hu-berlin.de>
15396
15397 * ginclude/stdbool.h: Support compilation as C++.
15398
15399 Tue Jan 4 01:35:13 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
15400
15401 * fold-const.c (make_range): Don't try to reverse an unbounded range.
15402
15403 Tue Jan 4 00:18:46 2000 Jeffrey A Law (law@cygnus.com)
15404
15405 * regclass.c (regclass): Properly compute loop_cost. Adjust
15406 comments.
15407
15408 * regclass.c: Fix minor whitespace problems.
15409
15410 2000-01-03 Anthony Green <green@cygnus.com>
15411
15412 * config/i386/i386.md (builtin_setjmp_receiver): New pattern.
15413 Restore the pic register if required.
15414
15415 2000-01-03 Ulrich Drepper <drepper@cygnus.com>
15416
15417 * c-common.c (format_char_info): Update comment.
15418 (check_format_info): Recognize 'z' modifier in the same way 'Z'
15419 was recognized. Emit warning for formats new in ISO C99 only
15420 if flag_isoc9x is not set.
15421
15422 Mon Jan 3 12:59:54 2000 Mark P. Mitchell <mark@codesourcery.com>
15423
15424 * config/mips/iris6gld.h: Fix typo in -mabi=n32 specs.
15425
15426 Mon Jan 3 15:33:37 MET 2000 Jan Hubicka <hubicka@freesoft.cz>
15427
15428 * combine.c (expand_compound_operation): Do not convert ZERO_EXTEND to
15429 SIGN_EXTEND, convert SIGN_EXTEND to ZERO_EXTEND.
15430 (make_compound_operation): Choose cheaper alternative between
15431 ZERO_EXTEND and SIGN_EXTEND when sign bit is not set.
15432
15433 * regclass.c (op_costs): Remove global variable.
15434 (record_reg_classes): New parameter "op_costs" and "reg_pref".
15435 (record_operand_costs): Break out from ...
15436 (scan_one_insn): ... here.
15437 (dump_regclass): Make dumps nicer.
15438 (regclass): Dump preferrences choosed and changes done during passes.
15439
15440 2000-01-03 Jakub Jelinek <jakub@redhat.com>
15441
15442 * config/sparc/sparc.c (gen_df_reg): Fix for 32bit SPARC.
15443
15444 2000-01-03 Jakub Jelinek <jakub@redhat.com>
15445
15446 * config/sparc/sparc.c (gen_df_reg): New function.
15447 * config/sparc/sparc-protos.h (gen_df_reg): Add prototype.
15448 * config/sparc/sparc.md (movtf_no_e_insn_sp64+1,
15449 movtf_no_e_insn_sp64+2, movtf_no_e_insn_sp64+3, movtf_cc_sp64+1,
15450 movtf_cc_reg_sp64+1): Use it.
15451
15452 2000-01-02 Mark Mitchell <mark@codesourcery.com>
15453
15454 * integrate.c (copy_decl_for_inlining): Clear TREE_ADDRESSABLE on
15455 copied LABEL_DECLs.
15456
15457 Mon Jan 3 02:54:40 2000 Hans-Peter Nilsson <hp@bitrange.com>
15458
15459 * config/i386/i386.c (ix86_expand_unary_operator): Function
15460 definition made void.
15461 (ix86_expand_binary_operator): Update outdated preceding comment.
15462 * config/i386/i386-protos.h (ix86_expand_unary_operator): Update
15463 prototype.
15464
15465 * config/i386/i386.c (override_options): Fix option-name typo.
15466
15467 2000-01-02 Mark Mitchell <mark@codesourcery.com>
15468
15469 * system.h (CEIL): Define.
15470 * builtins.c (CEIL): Remove.
15471 * expmed.c (CEIL): Likewise.
15472 * expr.c (CEIL): Likewise.
15473 * stor-layout.c (CEIL): Likewise.
15474
15475 2000-01-02 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
15476
15477 * expr.c (store_constructor_field): Fix typo introduced with last
15478 gcc2 merge.
15479
15480 2000-01-01 Mark Mitchell <mark@codesourcery.com>
15481
15482 * tree.h (BINFO_N_BASETYPES): New macro.
15483
15484 2000-01-01 Bernd Schmidt <bernds@cygnus.co.uk>
15485
15486 * expmed.c (emit_store_flag): Prevent losing a pending stack
15487 adjust the same way we prevent losing queued increments.
15488
15489 See ChangeLog.2 for earlier changes.