OSDN Git Service

* i386.md (addqi_low_1): Remove.
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 Tue Jun 27 12:03:03 MET DST 2000  Jan Hubicka  <jh@suse.cz>
2
3         * i386.md (addqi_low_1): Remove.
4
5 2000-06-27  Philipp Thomas  <pthomas@suse.de>
6
7         * 1750a.h: Mark help strings for options/switches for translation.
8         * a29k.h: Likewise.
9         * alpha.h: Likewise.
10         * arm.h: Likewise.
11         * pe.h: Likewise.
12         * riscix.h: Likewise.
13         * c4x.h: Likewise.
14         * clipper.h: Likewise.
15         * convex.h: Likewise. 
16         * elxsi.h: Likewise.
17         * fr30.h: Likewise.
18         * fx80.h: Likewise.
19         * h8300.h: Likewise.
20         * i370.h: Likewise.
21         * cygwin.h: Likewise.
22         * dgux.h: Likewise.
23         * djgpp.h: Likewise.
24         * i386.h: Likewise.
25         * osf1elf.h: Likewise.
26         * osfrose.h: Likewise.
27         * sco5.h: Likewise.
28         * win32.h: Likewise.
29         * i860.h: Likewise.
30         * paragon.h: Likewise.
31         * i960.h: Likewise.
32         * ia64.h: Likewise.
33         * m32r.h: Likewise.
34         * mcore.h: Likewise.
35         * mips.h: Likewise.
36         * mn10300.h: Likewise.
37         * ns32k.h: Likewise.
38         * pdp11.h: Likewise.
39         * pj.h: Likewise.
40         * aix.h: Likewise.
41         * aix41.h: Likewise.
42         * aix43.h: Likewise.
43         * beos.h: Likewise.
44         * rs6000.h: Likewise.
45         * sysv4.h: Likewise.
46         * linux.h: Likewise.
47         * linux64.h: Likewise.
48         * sp64-elf.h: Likewise.
49         * sparc.h: Likewise.
50         * splet.h: Likewise.
51         * v850.h: Likewise.
52         * convex.h (TARGET_SWITCHES): Provide descriptions and mark them
53         for translation.
54         * sp86x-aout.h: Remove bogus first definition of SUBTARGET_SWITCHES.
55         Properly document option and mark for translation.
56         * sp86x-elf.h: Likewise.
57
58 2000-06-27  Bernd Schmidt  <bernds@cygnus.co.uk>
59
60         Add MMX and SSE registers to i386 machine description.
61         * i386-protos.h (ix86_constant_alignment, ix86_data_alignment,
62         ix86_local_alignment): Declare.
63
64         * i386.h (TARGET_MMX, TARGET_SSE): New.
65         (FIRST_PSEUDO_REGISTER, FIXED_REGISTERS, CALL_USED_REGISTERS,
66         REG_ALLOC_ORDER, HARD_REGNO_NREGS, HARD_REGNO_MODE_OK,
67         REG_CLASS_NAMES, REG_CLASS_CONTENTS,REG_CLASS_FROM_LETTER,
68         enum reg_class, HI_REGISTER_NAMES): Added MMX/SSE registers.
69         (FIRST_SSE_REG, LAST_SSE_REG, SSE_REGNO_P): New.
70         (FIRST_MMX_REG, LAST_MMX_REG, MMX_REGNO_P, MMX_REG_P): New macros.
71         (RETURN_IN_MEMORY): Handle MMX/SSE.
72         (REG_PARM_STACK_SPACE): Added so the first three TImode parameters
73         also get stack space.
74         (MUST_PASS_IN_STACK): Added TImode to the default definition.
75         (CUMULATIVE_ARGS): Added sse_nregs, sse_regno and sse_words.
76         (MMX_REGISTER_NAMES): New.
77         (ALIGN_MODE_128): New macro.
78         (CONSTANT_ALIGNMENT): Code moved out-of-line; just call the function.
79         (DATA_ALIGNMENT): Likewise.
80         (LOCAL_ALIGNMENT): Likewise.
81         (CONDITIONAL_REGISTER_USAGE): Make MMX/SSE regs fixed if not
82         TARGET_MMX/TARGET_SSE.
83         (VALID_SSE_REG_MODE, VALID_MMX_REG_MODE): New macros.
84         (REG_CLASS_FROM_LETTER): 'y' for MMX regs.
85         (SECONDARY_MEMORY_NEEDED): Be conservative about copying between
86         SSE/MMX regs and something else.
87         (CLASS_MAX_NREGS): 1 for SSE and MMX regs.
88         (REGISTER_MOVE_COST): 10 if trying to move between MMX and SSE regs,
89         3 if moving between MMX regs and something else.
90
91         * i386.c (reg_class): Add SSE_REGS, MMX_REGS.
92         (regclass_map): Add MMX/SSE registers.
93         (print_operand): Add code to print XMMWORD as appropriate.
94         (ix86_split_movdi): Abort for MMX regs.
95         (init_cumulative_args): Also allow SSE_REGS
96         (function_arg_advance, function_arg): Likewise
97         (print_reg): Support 'm'.  Add case for TImode.
98         (override_options): TARGET_SSE implies TARGET_MMX.
99         (ix86_constant_alignment, ix86_data_alignment, ix86_local_alignment):
100         New functions.
101
102         * config/i386/unix.h (VALUE_REGNO): VECTOR_MODE values go to
103         FIRST_SSE_REG.
104         * config/i386/ptx4-i.h (RETURN_IN_MEMORY): Return MMX values in
105         memory.
106         * config/i386/sysv4.h (RETURN_IN_MEMORY): Likewise.
107         * config/i386/i386elf.h (RETURN_IN_MEMORY): Likewise.
108
109 2000-06-26  Geoff Keating  <geoffk@cygnus.com>
110
111         * ssa.c (struct rename_set_data): Change the name of field
112         'set_dest' to 'old_reg'.  Add comments.
113         (struct rename_context): Change the name of 'set_data' to
114         'new_renames'.  Add new field 'done_renames'.
115         (create_delayed_rename): New function.
116         (apply_delayed_renames): New function.
117         (rename_insn_1): Use the new functions.  Handle CLOBBERS.  Handle
118         SUBREGs and similar by emitting a move.
119         (new_registers_for_updates): Delete, functionality moved to
120         apply_delayed_renames.
121         (rename_block): Handle moves emitted by rename_insn_1 by putting
122         them into a SEQUENCE with the original insn.  Add sanity checks
123         and comments.
124         (rename_equivalent_regs_in_insn): Don't handle SUBREGs specially.
125         (rename_equivalent_regs): Expand SEQUENCEs out to individual insns.
126         
127 2000-06-26  Andrew Macleod <amacleod@cygnus.com>
128             Jason Merrill <jason@redhat.com>
129
130         * dwarf2.h (enum dwarf_call_frame_info): Add 
131         DW_CFA_def_cfa_expression.
132         * dwarf2out.c (union dw_cfi_oprnd_struct): Add a pointer to a
133         dw_loc_descr_struct entry.
134         (struct cfa_loc): New structure to track a CFA location.
135         (lookup_cfa): Take a cfa_loc parameter instead of a reg and an offset.
136         (lookup_cfa_1): Take a cfa_loc parameter instead of a reg and an
137         offset, plus handle DW_CFA_def_cfa_expression.
138         (def_cfa_1): Use to be dwarf2out_def_cfa, only now it uses a
139         cfa_loc record.
140         (dwarf2out_def_cfa): Entry point maintained for compatability.
141         (dwarf_cfi_name): Add DW_CFA_def_cfa_expression.
142         (cfa_reg, cfa_offset): Replace with cfa_loc record 'cfa'.
143         (cfa_store_reg, cfa_store_offset): Replace with cfa_loc 'cfa_store'.
144         (initial_return_save, dwarf2out_stack_adjust): Use cfa.reg, not
145         cfa_reg.
146         (dwarf2out_frame_debug_expr): Use new cfa_loc records. Recognize rtl
147         sequences for the new DW_CFA_def_cfa_expression record.
148         (dwarf2out_frame_debug): Use new variables/fields.A
149         (output_cfi): Handle DW_CFA_def_cfa_expression.
150         (output_cfa_loc): New function to generate a CFI record for 
151         DW_CFA_def_cfa_expression.
152         (get_cfa_from_loc_descr): New function to get a cfa_loc record from
153         a dw_loc_descr sequeunce.
154         (build_loc_descr): Build a dw_loc_descr from a cfa_loc record.
155         (dwarf_stack_op_name, new_loc_descr, add_loc_descr, size_of_loc_descr,
156         size_of_locs, output_loc_operands, output_loc_sequence): Move into
157         unwind info section.
158         * frame.h (frame_state): Add base_offset and indirect fields.
159         * frame-dwarf2.c (decode_stack_op): New function to interpret a
160         dw_loc_descr operation.
161         (execute_cfa_insn): Add support for DW_CFA_def_cfa_expression.
162         (struct frame_state): Add base offset and indirect fields.
163         * libgcc2.c (next_stack_level): Support indirect loading for CFA.
164
165 2000-06-26  Joseph S. Myers  <jsm28@cam.ac.uk>
166
167         * c-decl.c (grokdeclarator): Don't warn about `long long' in C99.
168         Make warnings about implicit int be pedwarns in C99.  Don't warn
169         about duplicate type qualifiers in C99.
170         (start_function): Make warning about implict int return type be a
171         pedwarn in C99.
172         * c-lex.c (yylex): Don't warn about `long long' in C99.
173         * c-typeck.c (c_expand_return): In C99, always pedwarn about
174         `return' with no value in function returning non-void.
175
176 2000-06-26  Richard Henderson  <rth@cygnus.com>
177
178         * c-typeck.c (pedwarn_c99): New.
179         * diagnostic.c (verror, vwarning, vpedwarn): Export.
180         * toplev.h: Prototype them.
181
182 2000-06-26  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
183
184         * c-typeck.c (digest_init): Return error_mark_node node when
185         TREE_TYPE (init)  == error_mark_node.
186
187 2000-06-26  Philipp Thomas  <pthomas@suse.de>
188
189         * aclocal.m4 (AM_WITH_NLS): Don't set MSGFMT or GMSGFMT to no,
190         test for msgfmt without path instead.
191         * configure: Rebuilt.
192
193 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
194
195         * gengenrtl.c (special_rtx): Fix typo in comment.
196
197 2000-06-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
198
199         * mklibgcc.in (LIB2FUNCS): Add missing space.
200
201 2000-06-24  Bernd Schmidt  <bernds@cygnus.co.uk>
202
203         * tree.h (enum tree_index): Add vector type nodes.
204         Add accessor macros for them.
205         (TYPE_REPRESENATION_TYPE): New macro.
206         * tree.c (build_common_tree_nodes_2): Build these nodes.
207         (finish_vector_type): New function.
208         * c-common.c (type_for_mode): Handle vector modes.
209         * tm.texi (VECTOR_MODE_SUPPORTED_P): Document.
210
211         * dbxout.c (dbxout_type): Handle VECTOR_TYPEs.
212         * dwarf.h (enum dwarf_fundamental_type): Add 128 bit integers.
213         * dwarf2out.c (lookup_type_die): Handle VECTOR_TYPEs.
214         (gen_type_die): Likewise.
215         * dwarfout.c (dwarf_fund_type_name): Handle 128 bit integers.
216         (fundamental_type_code): Likewise.
217         (type_is_fundamental): VECTOR_TYPEs aren't.
218         (output_type): Handle VECTOR_TYPEs.
219
220 2000-06-25  Kazu Hirata  <kazu@hxi.com>
221
222         * config/arm.c: Fix a comment typo.
223         * config/arm.h: Likewise.
224
225 2000-06-25  Philipp Thomas  <pthomas@suse.de>
226
227         * aclocal.m4 (AM_WITH_NLS): Set create_catalogs=no if no catalog
228         compiler found.
229         AM_GNU_GETTEXT: Don't set CATALOGS if create_catalogs=no.
230         * configure: Rebuilt.
231         
232 2000-06-25  John David Anglin  <dave.anglin@nrc.ca>
233
234         * config/vax/vax.h (TARGET_SWITCHES): Provide descriptions.
235
236 2000-06-25 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
237
238         * mklibgcc.in: Prefer LIB1ASMFUNCS over LIB2FUNCS when generating
239         libgcc.a.
240
241 2000-06-24  Marc Espie <espie@cvs.openbsd.org>
242
243         * collect2.c (resolve_lib_name): Move '/' check out of loop.
244
245 2000-06-24  Dirk Duellmann  <Dirk.Duellmann@cern.ch>
246
247         * ginclude/stddef.h (NULL): define for non-gnu C++ parsers as 0.
248
249 2000-06-24  Jakub Jelinek  <jakub@redhat.com>
250
251         * stmt.c (expand_decl_cleanup): Emit a dummy insn after
252         last_unconditional_cleanup.
253
254 2000-06-24  Bernd Schmidt  <bernds@cygnus.co.uk>
255
256         * tree.def (VECTOR_TYPE): New node type.
257         * tree.h: Adjust some comments to reflect addition of vector types.
258         (TYPE_VECTOR_SUBPARTS): New macro.
259         * stor-layout.c (layout_type): Handle VECTOR_TYPE.
260         * c-convert.c (convert): Likewise.
261         * convert.c (convert_to_integer): Handle vector modes.
262         (convert_to_vector): New function.
263         * convert.h (convert_to_vector): Declare.
264         * expr.c (convert_move): Handle vector modes.
265         * expmed.c (extract_bit_field): Don't abort for vector modes.
266
267 2000-06-24  Marek Michalkiewicz  <marekm@linux.org.pl>
268
269         * config/avr/avr-protos.h (avr_hard_regno_mode_ok): New prototype.
270         * config/avr/avr.c (out_adj_frame_ptr, out_set_stack_ptr):
271         New functions, common code moved from function_{prologue,epilogue}
272         and extended to support the -mtiny-stack option.
273         (function_prologue, function_epilogue): Use them.
274         Use lo8/hi8 consistently for asm output readability.
275         (avr_hard_regno_mode_ok): New function.
276         * config/avr/avr.h (TARGET_SWITCHES): Fix typo.  Add -mtiny-stack.
277         (UNITS_PER_WORD): Define as 4 (not 1) when compiling libgcc2.c.
278         (HARD_REGNO_MODE_OK): Call the avr_hard_regno_mode_ok function.
279         * config/avr/avr.md (*mov_sp_r): Add support for -mtiny-stack.
280         Write SPH before SPL.
281         (*movqi): No need to disable interrupts for just one "out"
282         in alternative 5.  Change length attribute from 4 to 1.
283         * config/avr/libgcc.S (__prologue_saves__, __epilogue_restores__):
284         Write SPH before SPL.
285
286 2000-06-24  Bernd Schmidt  <bernds@cygnus.co.uk>
287
288         * rtl.texi (Vector Operations): New node.
289         (Arithmetic): Add ss_plus, us_plus, ss_minus, us_minus.
290         (Conversions): Add ss_truncate, us_truncate.
291         * rtl.def (VEC_MERGE, VEC_SELECT, VEC_CONCAT, VEC_REORDER,
292         VEC_CONST, VEC_DUPLICATE, SS_PLUS, SS_MINUS, SS_TRUNCATE,
293         US_TRUNCATE): New rtx codes.
294         * machmode.def: Add vector modes.
295         * machmode.h (enum mode_class): Add MODE_VECTOR_INT and
296         MODE_VECTOR_FLOAT.
297         (INTEGER_MODE_P): Check for MODE_VECTOR_INT.
298         (FLOAT_MODE_P): Check for MODE_VECTOR_FLOAT.
299         (VECTOR_MODE_P): New.
300
301 2000-06-24  Nathan Sidwell  <nathan@codesourcery.com>
302
303         * cpp.texi: Clarify #pragma GCC namespace.      
304
305 2000-06-24  Philipp Thomas  <pthomas@suse.de>
306
307         * aclocal.m4(AM_GNU_GETTEXT): If LINGUAS isn't set, build
308         all catalogs specified in ALL_LINGUAS.
309         * configure: Rebuilt.
310
311 2000-06-23  Jakub Jelinek  <jakub@redhat.com>
312
313         * config/sparc/sparc.md (reload_outdi+1): Handle
314         HOST_BITS_PER_WIDE_INT == 64 case correctly.
315         (adddi3_insn_sp32+1, adddi3_insn_sp32+2, andsi3+2): Likewise.
316
317 2000-06-23  Geoffrey Keating  <geoffk@cygnus.com>
318
319         * alias.c (fixed_scalar_and_varying_struct_p): Don't examine
320         struct vs. scalar-ness when -fno-strict-aliasing.
321
322 2000-06-23  Nathan Sidwell  <nathan@codesourcery.com>
323
324         * cpplib.c (struct pragma_entry): New structure.
325         (pragma_dispatch): Pragma dispatcher.
326         (top_pragmas, gcc_pragmas): New static variables.
327         (do_pragma): Use pragma_dispatch.
328         (do_pragma_gcc): New pragma handler.
329         * cpp.texi: Update.
330
331 2000-06-23  Jakub Jelinek  <jakub@redhat.com>
332
333         * calls.c (compute_argument_addresses): Force stack slots into
334         alias set 0.
335         * expr.c (emit_push_insn): Force pushes into alias set 0.
336
337 2000-06-23  Richard Henderson  <rth@cygnus.com>
338
339         * config/ia64/ia64.md (pred_rel_mutex): Only take one register.
340         * config/ia64/ia64.c (emit_predicate_relation_info): Adjust to match.
341
342 2000-06-22  Jason Merrill  <jason@redhat.com>
343
344         * toplev.c (compile_file): Always call timevar_print.
345         * Makefile.in (calls.o): Depend on TIMEVAR_H.
346
347 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
348
349         * varasm.c (constant_descriptor): Make contents unsigned char.
350         (mark_const_hash_entry): Adjust.
351         (const_hash): Just hash the code of unknown nodes.
352         (compare_constant_1): Adjust for unsigned char.
353         Use language specific expander on unknown nodes.
354         (record_constant_1): Likewise.
355
356 2000-06-21  Zack Weinberg  <zack@wolery.cumb.org>
357
358         * cppfiles.c (cpp_make_system_header): New function.
359         * cpplib.h: Prototype it.
360         * cpplib.c (do_line, do_pragma_system_header): Use it.
361         * fix-header.c (read_scan_file): Use it.
362
363         * fix-header.c (check_macro_names): Cast second arg of
364         cpp_defined to const unsigned char *.
365         (read_scan_file): Make getchar_call const unsigned char.
366
367 2000-06-21  Zack Weinberg  <zack@wolery.cumb.org>
368
369         * cppfiles.c: Include splay-tree.h, not hashtab.h.
370         (redundant_include_p, make_IHASH, hash_IHASH, eq_IHASH): Delete.
371         (destroy_include_file_node): New.
372         (_cpp_init_include_hash): Rename _cpp_init_include_table.
373         Create a splay tree, not a hash table.
374         (open_include_file): Look up the path in the include table,
375         do the multiple include optimization here, etc.
376         (cpp_included): Walk the path.
377         (find_include_file): Just walk the path calling
378         open_include_file, or call it directly for an absolute path.
379         (_cpp_fake_ihash): Rename _cpp_fake_include and update for new
380         scheme.
381         (read_include_file): Update for new scheme.  Don't close the
382         file unless reading fails.
383         (_cpp_execute_include, cpp_read_file): Tweak for new scheme.
384
385         * cpphash.h (struct ihash, NEVER_REINCLUDE): Delete.
386         (struct include_file): New.
387         (NEVER_REREAD, DO_NOT_REREAD, CPP_IN_SYSTEM_HEADER): New
388         macros.
389         (CPP_PEDANTIC, CPP_WTRADITIONAL): Update.
390         Update prototypes.
391
392         * cppinit.c: Include splay-tree.h.
393         (cpp_reader_init, cpp_cleanup): Update.
394
395         * cpplib.h (struct cpp_buffer): Change ihash field to 
396         'struct include_file *inc'.  Remove system_header_p.
397         (struct cpp_reader): Change all_include_files to a
398         struct splay_tree_s *.
399
400         * cpplex.c: Update all references to cpp_buffer->ihash and/or
401         cpp_buffer->system_header_p.
402         (cpp_pop_buffer): Close file here, only if DO_NOT_REREAD.
403
404         * Makefile.in (SPLAY_TREE_H): New macro.
405         (cppfiles.o, cppinit.o): Update dependencies.
406
407 Wed Jun 21 11:05:48 2000  Martin Buchholz <martin@xemacs.org>
408
409         * invoke.texi (g++): "g++" is not a script anymore.
410
411 2000-06-20  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
412
413         * function.c (round_down): Delete obsolete prototype.
414
415         * pa.h (CPP_SPEC): Add whitespace after -D__STDC_EXT__.
416
417 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
418
419         * configure.in: Use 'test a = b' not 'test a == b'.
420         * configure: Regen.
421
422         * Makefile.in (fix-header): Link with $(LIBS) not $(HOST_LIBS).
423
424         * Makefile.in: Remove all references to HOST_INTLLIBS.
425
426         * cpplex.c (parse_name): Don't warn about $ in identifiers if
427         skipping.
428
429 2000-06-20  Philipp Thomas  <pthomas@suse.de>
430
431         * config/pa/pa.h(TARGET_SWITCHES): Require binutils 2.10 or later
432         for PA 2.0.
433
434 Mon Jun 19 23:26:40 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
435
436         * Take REG_INC notes into account.
437
438 2000-06-19  Zack Weinberg  <zack@wolery.cumb.org>
439
440         * c-parse.in (undeclared_variable_notice): Moved to c-typeck.c.
441         (primary: IDENTIFIER): Just call build_external_ref.
442         * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
443         Regenerate.
444         * c-lex.c (lastiddecl): Remove.
445         (yylex): Replace all instances of lastiddecl with local
446         variables.
447
448         * c-typeck.c (build_external_ref): New function.  Treat decls
449         with C_DECL_ANTICIPATED mostly the same as nonexistent decls.
450         Look up the decl from the id here.  Call lookup_objc_ivar.
451         * c-lang.c (lookup_objc_ivar): Stub.
452         * objc/objc-act.c (lookup_objc_ivar): New function.
453
454         * c-tree.h: Prototype lookup_objc_ivar and build_external_ref.
455         * c-lex.h: Don't declare lastiddecl.
456
457 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
458
459         * c-common.h (IF_COND): Added documentation.
460         (THEN_CLAUSE): Likewise.
461         (ELSE_CLAUSE): Likewise.
462         (WHILE_COND): Likewise.
463         (WHILE_BODY): Likewise.
464         (DO_COND): Likewise.
465         (DO_BODY): Likewise.
466         (RETURN_EXPR): Likewise.
467         (EXPR_STMT_EXPR): Likewise.
468         (FOR_INIT_STMT): Likewise.
469         (FOR_COND): Likewise.
470         (FOR_EXPR): Likewise.
471         (FOR_BODY): Likewise.
472         (SWITCH_COND): Likewise.
473         (SWITCH_BODY): Likewise.
474         (CASE_LOW): Likewise.
475         (CASE_HIGH): Likewise.
476         (GOTO_DESTINATION): Likewise.
477         (COMPOUND_BODY): Likewise.
478         (ASM_CV_QUAL): Likewise.
479         (ASM_STRING): Likewise.
480         (ASM_OUTPUTS): Likewise.
481         (ASM_INPUTS): Likewise.
482         (ASM_CLOBBERS): Likewise.
483         (DECL_STMT_DECL): Likewise.
484         (STMT_EXPR_STMT): Likewise.
485         (LABEL_STMT_LABEL): Likewise.
486
487         * c-common.def: Added documenetion for SRCLOC, EXPR_STMT,
488         COMPOUND_STMT, DECL_STMT, IF_STMT, FOR_STMT, WHILE_STMT, DO_STMT,
489         RETURN_STMT, BREAK_STMT, CONTINUE_STMT, SWITCH_STMT, GOTO_STMT,
490         LABEL_STMT, ASM_STMT, SCOPE_STMT, CASE_LABEL, STMT_EXPR.
491
492 2000-06-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
493
494         * configure.in (--enable-checking): Update --help doc to reflect
495         new defaults.  Ensure $ac_save_IFS is set before $IFS is changed.
496
497 Sun Jun 18 21:42:15 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
498
499         * gcse.c (insert_insn_end_bb): Always put after NOTE_INSN_BASIC_BLOCK.
500
501         * function.c (put_var_into_stack): Don't reference DECL_ fields
502         if input is a SAVE_EXPR.
503         Use set_mem_attributes in COMPLEX case.
504
505 2000-06-18  Richard Henderson  <rth@cygnus.com>
506
507         * config/ia64/ia64-protos.h (process_for_unwind_directive): Declare.
508         (ia64_file_start): Declare.
509         * config/ia64/ia64.h (ADDL_REGNO_P): Don't compare unsigned against 0.
510         (GR_REGNO_P): Likewise.
511         * config/ia64/ia64.c: Many prototypes.
512         (ia64_reg_numbers): Constify.
513         (ia64_input_reg_names, ia64_local_reg_names): Likewise.
514         (ia64_section_threshold): Make unsigned.
515         (ia64_print_operand): Constify.
516         (fix_range): Constify.
517         (ia64_init_builtins): Don't compare signed vs unsigned.
518         (ia64_expand_builtin): Likewise.
519
520         * config/ia64/ia64.h (EXTRA_CONSTRAINT): New.
521         (CONSTRAINT_OK_FOR_Q): New.
522         * config/ia64/ia64.md (movdi_internal): Use Q for fp<->mem.
523         (movsf_internal, movdf_internal): Likewise.
524         (cmovdi_internal): Rewrite so that constraints and predicates match;
525         simplify splitters.
526         (cmovsi_internal): Likewise.
527
528         * config/ia64/ia64.h (ASM_SPEC): Add -x for gas.
529         (ASM_FILE_START): New.
530         * config/ia64/ia64.c (ia64_file_start): New.
531         (rtx_needs_barrier): Handle pred.rel.mutex.
532         (emit_predicate_relation_info): New.
533         * config/ia64/ia64.md (pred_rel_mutex): New.
534         * config/ia64/linux.h (ASM_SPEC): Define.
535         * config/ia64/sysv4.h (ASM_FILE_START): Define.
536
537         * config/ia64/ia64.c (ia64_encode_section_info): Fix thinko
538         filtering global register variables.
539
540 2000-06-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
541
542         * c-common.c (add_c_tree_codes): Fix definition for traditional C.
543
544 2000-06-17  Michael Meissner  <meissner@redhat.com>
545
546         * gcc.c (do_spec_1, '%v3' case): Do not abort if patch level is
547         not present and there is a field after a '-'.
548
549 2000-06-17  Bruce Korb  <bkorb@gnu.org>
550
551         * fixinc/check.tpl:  finish the implementation of multiple tests
552         for a single fix
553         * fixinc/inclhack.def(ctrl_quotes_def): add a second test
554         (io_quotes_def): add a second test
555         (various): reorder `files' so that "limits.h" is never first
556         * fixinc/tests/base/*: update the testing output
557
558 Sat Jun 17 10:33:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
559
560         * gcc.texi: Remove reference to stupid.c.
561
562 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
563
564         * c-common.c (c_tree_code_type): New array.
565         (c_tree_code_length): Likewise.
566         (c_tree_code_name): Likewise.
567         (add_c_tree_codes): New function.
568
569         * c-common.h (add_c_tree_codes): Declare.
570         (enum c_tree_code): New enum.
571
572         * c-lex.c (init_parse): Added call to add_c_tree_codes.
573
574 2000-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
575
576         * fixinc/inclhack.def (ctrl_quotes_def, io_quotes_def): Modify
577         select pattern to also match macro defs with only one argument.
578
579 Thu Jun 15 18:56:12 2000  Jeffrey A Law  (law@cygnus.com)
580
581         * i386.md: Create new [right,left] rotate and right shift
582         patterns to optimize shift by 1 bit for certain ia32 processors.
583         Update patterns which perform left shifts to optimize shift by
584         1 bit for certain ia32 processors.
585         * i386.c (const_int_1_operand): New predicate.
586         * i386.h (PREDICATE_CODES): Handle const_int_1_operand.
587         * i386-protos.h (const_int_1_operand): Prototype.
588
589 Wed Jun 14 23:46:26 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
590
591         * mips.c (machine_dependent_reorg): Fix braces for nested if.
592
593 2000-06-14  Geoff Keating  <geoffk@cygnus.com>
594
595         * rs6000.c (toc_hash_eq): Use CODE_LABEL_NUMBER to compare
596         LABEL_REFs.
597
598 2000-06-14  Richard Henderson  <rth@cygnus.com>
599
600         * conflict.c (conflict_graph_compute): Don't look for REG_INC.
601
602         * config/ia64/ia64.c (ia64_setup_incoming_varargs): Don't emit
603         auto-inc code.
604
605         * print-rtl.c (print_rtx): Emit space before mem alias set.
606
607 2000-06-14  David Edelsohn  <edelsohn@gnu.org>
608
609         * rs6000.c (expand_block_move): Fix typo in earlier change.
610         (print_operand): Remove unused variables neg and op.
611         (toc_hash_mark_entry): Fix prototype.
612
613 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
614
615         * c-common.h (IF_COND): Moved here from cp/cp-tree.h.
616         (THEN_CLAUSE): Likewise.
617         (ELSE_CLAUSE): Likewise.
618         (WHILE_COND): Likewise.
619         (WHILE_BODY): Likewise.
620         (DO_COND): Likewise.
621         (DO_BODY): Likewise.
622         (RETURN_EXPR): Likewise.
623         (EXPR_STMT_EXPR): Likewise.
624         (FOR_INIT_STMT): Likewise.
625         (FOR_COND): Likewise.
626         (FOR_EXPR): Likewise.
627         (FOR_BODY): Likewise.
628         (SWITCH_COND): Likewise.
629         (SWITCH_BODY): Likewise.
630         (CASE_LOW): Likewise.
631         (CASE_HIGH): Likewise.
632         (GOTO_DESTINATION): Likewise.
633         (COMPOUND_BODY): Likewise.
634         (ASM_CV_QUAL): Likewise.
635         (ASM_STRING): Likewise.
636         (ASM_OUTPUTS): Likewise.
637         (ASM_INPUTS): Likewise.
638         (ASM_CLOBBERS): Likewise.
639         (DECL_STMT_DECL): Likewise.
640         (STMT_EXPR_STMT): Likewise.
641         (LABEL_STMT_LABEL): Likewise.
642         (SCOPE_BEGIN_P): Likewise.
643         (SCOPE_END_P): Likewise.
644         (SCOPE_STMT_BLOCK): Likewise.
645         (SCOPE_NULLIFIED_P): Likewise.
646         (SCOPE_NO_CLEANUPS_P): Likewise.
647         (SCOPE_PARTIAL_P): Likewise.
648         (ASM_VOLATILE_P): Likewise.
649         (STMT_LINENO): Likewise.
650         (STMT_LINENO_FOR_FN_P): Likewise.
651
652         * c-common.def: New file. Added SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
653         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
654         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
655         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
656         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
657
658         * gencheck.c (tree_codes[]): Added '#include "c-common.def"'.
659
660 2000-06-14  David O'Brien  <obrien@FreeBSD.org>
661
662         * gcc.c (main): Quiet compiler warnings.  argv is assumed to be
663         writable in parts of the GCC code.
664
665         * config/elfos.h (ASM_GENERATE_INTERNAL_LABEL): Make printf
666         specification match cast.
667
668 Wed Jun 14 09:25:57 2000  Jeffrey A Law  (law@cygnus.com)
669
670         * configure.in: Revert AC_TYPE_GETGROUPS patch from June 13.
671         * configure, config.in: Rebuilt.
672         * sys-protos.h: Similarly.
673
674 Wed Jun 14 03:39:58 EDT 2000  John Wehle  (john@feith.com)
675
676         * ifcvt.c (EDGE_COMPLEX): Move definition ...
677         * basic-block.h (EDGE_COMPLEX): ... here.
678
679         * loop.c (check_dbra_loop): Specify the register when
680         generating REG_NONNEG notes and don't generate duplicates.
681
682 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
683
684         * tree.h (TYPE_USER_ALIGN, DECL_USER_ALIGN): Define.
685         (struct tree_type, struct tree_decl): Add user_align member.
686         * stor-layout.c (layout_decl): Set DECL_USER_ALIGN.
687         (place_union_field): If BIGGEST_FIELD_ALIGNMENT is defined
688         and DECL_USER_ALIGN 0, cap alignment to this value.
689         (place_field): Likewise.
690         (finalize_type_size): Set TYPE_USER_ALIGN.
691         (layout_type): Likewise.
692         (initialize_sizetypes): Likewise.
693         * c-common.c (decl_attributes): Set TYPE_USER_ALIGN resp.
694         DECL_USER_ALIGN to 1.
695         * c-decl.c (duplicate_decls): Set DECL_USER_ALIGN.
696         (xfer_tag): Set TYPE_USER_ALIGN.
697         (finish_struct): Set DECL_USER_ALIGN resp. TYPE_USER_ALIGN.
698         (finish_enum): Likewise.
699         * stmt.c (expand_decl): Set DECL_USER_ALIGN.
700         (expand_anon_union_decl): Likewise.
701         * tree.c (make_node): Set DECL_USER_ALIGN resp. TYPE_USER_ALIGN.
702         (build_index_type): Set TYPE_USER_ALIGN.
703         (build_range_type): Likewise.
704         (build_common_tree_nodes_2): Likewise.
705         * tm.texi (BIGGEST_FIELD_ALIGNMENT): Document the changed meaning.
706
707 2000-06-13  Andreas Jaeger  <aj@suse.de>
708
709         * configure.in: Use --enable-checking=misc,tree,gc by default if
710         no --enable-checking option is given and for
711         --enable-checking=yes.
712         * configure: Rebuilt.
713
714 2000-06-13  Richard Henderson  <rth@cygnus.com>
715
716         * libgcc2.c (ia64_throw_helper): Use __builtin_return_address.
717         (__throw): Don't pass the address of a label.
718
719         * config/ia64/ia64.c (ia64_compute_frame_size): Use
720         current_function_is_leaf.
721         (ia64_expand_prologue): Likewise.  Modify return_address_pointer_rtx
722         instead of reg_names[RETURN_ADDRESS_REGNUM].
723         (ia64_init_machine_status): Reset return_address_pointer_rtx.
724         * config/ia64/ia64.h (RETURN_ADDRESS_POINTER_REGNUM): Rename
725         from RETURN_ADDRESS_REGNUM.  Update all uses.
726         (RETURN_ADDR_RTX): Use return_address_pointer_rtx; return
727         zero instead of null on failure.
728         (ELIMINABLE_REGS): Add ra->b0 elimination.
729         (CAN_ELIMINATE): Update accordingly.
730         (INITIAL_ELIMINATION_OFFSET): Likewise.
731         (REGISTER_NAMES): Use an illegal assembler name for
732         RETURN_ADDRESS_POINTER_REGNUM.
733
734 2000-06-13  Richard Henderson  <rth@cygnus.com>
735
736         * config/ia64/ia64.h (enum reg_class): Remove FR_INT_REGS, FR_FP_REGS,
737         GR_AND_FR_INT_REGS, GR_AND_FR_FP_REGS.
738         (REG_CLASS_NAMES): Likewise.
739         (REG_CLASS_CONTENTS): Likewise.
740         (FR_FP_REGNO_P, FR_INT_REGNO_P): Remove.
741         (HARD_REGNO_MODE_OK): Remove references to them.
742         (REGNO_REG_CLASS): Likewise.
743         (REG_CLASS_FROM_LETTER): Likewise.
744         (CLASS_MAX_NREGS): Likewise.
745         (REGISTER_MOVE_COST): Likewise.
746         * config/ia64/ia64.c (ia64_secondary_reload_class): Likewise.
747         * config/ia64/ia64.md (*): Replace "e" constraints with "f".
748         (movqi_internal): Special case moves from zero.
749         (movhi_internal, movsi_internal): Likewise.
750         (movdi_internal): Likewise.  Fill out "f" constraints.
751         (movsf_internal): Fill out "r" constraints.
752         (movdf_internal): Likewise.
753
754 2000-06-13  Richard Henderson  <rth@cygnus.com>
755
756         * flow.c (insn_dead_p): Keep sets to PIC_OFFSET_TABLE_REGNUM
757         alive before reload.
758
759         * haifa-sched.c (struct deps): Add in_post_call_group_p.
760         (add_dependence): Handle notes between SCHED_GROUP_P insns.
761         (remove_dependence): Always define.
762         (set_sched_group_p): New.
763         (sched_analyze_2): Use it.
764         (sched_analyze_insn): Don't special-case naked uses.  Look for
765         and extend in_post_call_group_p.
766         (sched_analyze): Clear stale SCHED_GROUP_P.  Set in_post_call_group_p.
767         (init_deps): Clear in_post_call_group_p.
768
769 2000-06-13  Richard Henderson  <rth@cygnus.com>
770
771         * combine.c (subst): Use CLASS_CANNOT_CHANGE_MODE and
772         CLASS_CANNOT_CHANGE_MODE_P instead of CLASS_CANNOT_CHANGE_SIZE
773         and hard-coded tests.
774         (simplify_set): Likewise.
775         (gen_lowpart_for_combine): Likewise.
776         * emit-rtl.c (gen_lowpart_common): Likewise.
777         * global.c (find_reg): Likewise.
778         * local-alloc.c (find_free_reg): Likewise.
779         * recog.c (register_operand): Likewise.
780         * regclass.c (init_reg_sets_1): Likewise.
781         (record_operand_costs, regclass): Likewise.
782         * reload.c (push_reload): Likewise.
783         * reload1.c (choose_reload_regs): Likewise.
784         * flow.c (mark_used_regs): Conditionally set REG_CHANGES_MODE.
785         * local-alloc.c (struct qty): Rename changes_size to changes_mode.
786         Update all references.
787         * regs.h (struct reg_info_def): Likewise.
788         (REG_CHANGES_MODE): Rename from REG_CHANGES_SIZE.
789         * tm.texi (CLASS_CANNOT_CHANGE_MODE): Document.
790         (CLASS_CANNOT_CHANGE_MODE_P): Likewise.
791
792         * config/alpha/alpha.h (CLASS_CANNOT_CHANGE_MODE): Rename.
793         (CLASS_CANNOT_CHANGE_MODE_P): New.
794         * config/mips/mips.h: Likewise.
795         * config/pa/pa32-regs.h: Likewise.
796         * config/pa/pa64-regs.h: Likewise.
797         * config/rs6000/rs6000.h: Likewise.
798         * config/sh/sh.h: Likewise.
799         * config/ia64/ia64.h (CLASS_CANNOT_CHANGE_MODE): New.
800         (CLASS_CANNOT_CHANGE_MODE_P): New.
801         * config/avr/avr.h (CLASS_CANNOT_CHANGE_SIZE): Remove dead code.
802         * config/d30v/d30v.h: Likewise.
803
804 2000-06-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
805
806         * configure.in: Add AC_TYPE_GETGROUPS test.
807         * sys-protos.h: Use GETGROUPS_T * for second arg of getgroups.
808         * configure: Rebuilt.
809         * config.in: Rebuilt.
810
811 2000-06-13  Richard Henderson  <rth@cygnus.com>
812
813         * explow.c (set_mem_attributes): Do nothing for NULL type.
814
815 Tue Jun 13 14:45:10 2000  Jeffrey A Law  (law@cygnus.com)
816
817         * config/m68k/openbsd.h (ASM_SPEC): pass down options to assembler
818         correctly.
819
820 2000-06-13  James E. Wilson  <wilson@cygnus.com>
821
822         * config/ia64/ia64.md (movxf_internal): Add missing "e" to ldf/stf.
823
824 Tue Jun 13 14:05:35 2000  Jeffrey A Law  (law@cygnus.com)
825
826         * Makefile.in (gensupport.o): Remove bogus $(HOST_PREFIX) reference.
827
828 2000-06-13  Philipp Thomas  <pthomas@suse.de>
829
830         * configure.in(ALL_LINGUAS): Changed en_UK to en_GB.
831         * configure: Rebuilt.
832
833 2000-06-07  David O'Brien  <obrien@FreeBSD.org>
834
835         * configure.in:  Adjust FreeBSD bits to match changes to config.guess.
836         We now default to ELF for the i386, and a.out is the special case.
837         * configure:  Rebuilt.
838
839 Tue Jun 13 10:05:30 2000  Hans-Peter Nilsson  <hp@axis.com>
840
841         * final.c (final_scan_insn): Delete notes between cc0 setter and
842         user when restarting from setter.
843
844 2000-06-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
845
846         * vax.h (INDEX_TERM_P): Define evaluation order of &&'s in || and
847         cast to squelch signed/unsigned warnings.
848
849 2000-06-13  Zack Weinberg  <zack@wolery.cumb.org>
850
851         * cpplib.c (handle_directive): Print non-NUL-terminated string
852         with %.*s.
853
854 2000-06-12  Michael Meissner  <meissner@redhat.com>
855
856         * ifcvt.c (dead_or_predicable): Don't do conditional execution
857         path if the machine needs extra support to do conditional
858         execution.
859
860 Mon Jun 12 17:04:17 2000  Jeffrey A Law  (law@cygnus.com)
861
862         * print-rtl.c (print_rtx, case MEM): Use HOST_WIDE_INT_PRINT_DEC
863         to print the alias set.
864         * print-tree.c (print_node, DECL_* nodes and case 't'): Similarly.
865
866 2000-06-12  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
867
868         * config/float-vax.h: Add GFLOAT defines.
869
870 Mon Jun  12  9:44:00 2000  Mark Klein  <mklein@dis.com>
871
872         * configure.in: Update tm dependencies for MPE.
873         * configure: Rebuilt.
874
875 2000-06-12  H.J. Lu  <hjl@gnu.org>
876
877         * gengenrtl.c (obstack_alloc_rtx): Correct the allocated size.
878
879 2000-06-12  David Edelsohn  <edelsohn@gnu.org>
880
881         * aix41.h (SUBTARGET_SWITCHES): Delete threads.
882         (CPP_SPEC): Change mthreads to pthread.
883         (LIB_SPEC): Likewise.
884         (STARTFILE_SPEC): Likewise.
885         * aix43.h (SUBTARGET_SWITCHES): Delete threads.
886         (CPP_SPEC): Change mthreads to pthread.
887         (LIB_SPEC): Likewise.
888         (STARTFILE_SPEC): Likewise.
889         * rs6000-protos.h (reg_or_arith_cint_operand): New.
890         * rs6000.c (reg_or_arith_cint_operand): New.
891         (num_insns_constant_wide): Decorate unsigned constant.
892         * rs6000.h (PREDICATE_CODES): Add reg_or_arith_cint_operand.
893         * rs6000.md (addsi3): Use new predicate.
894         (subsi3, adddi3, subdi3): Likewise.
895
896 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
897
898         * c-common.c (lang_get_alias_set): Fix typo.
899
900 2000-06-12  Richard Earnshaw <rearnsha@arm.com>
901
902         * flow.c (mark_used_regs): Revert last change.
903         (life_analysis): Remove PROP_AUTOINC if running after reload.
904         (propagate_one_insn): PROP_AUTOINC is always off after reload.
905
906 2000-06-11  Richard Earnshaw <rearnsha@arm.com>
907
908         * flow.c (mark_used_regs): Don't call find_auto_inc after reload
909         has run.
910
911 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
912
913         * bb-reorder.c (build_scope_forest): Initialize variable
914         `curr_scope'.
915
916         * calls.c (expand_call): Likewise for variables
917         `save_pending_stack_adjust' and `save_stack_pointer_delta'.
918
919         * i386.c (function_arg_advance, function_arg): Cast to avoid
920         signed/unsigned warnings.
921
922         * i386.h (MEMORY_MOVE_COST): Likewise.
923
924         * ifcvt.c (cond_exec_process_if_block): Initialize variables
925         `else_start' and `else_end'.
926
927         * libgcc2.h (__eh_alloc, __eh_free): Prototype.
928
929         * regrename.c (rr_replace_reg): Initialize variable `dest_subregno'.
930
931 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
932
933         * Makefile.in (libintl.a): Depend on intl.all.
934
935 2000-06-09  H.J. Lu  (hjl@gnu.org)
936
937         * Makefile.in (c-parse.o): Also depend on output.h.
938
939 2000-06-09  Rodney Brown  <RodneyBrown@mynd.com>
940
941         * mcore-protos.h: discards const warning removal.
942         * mcore.c: discards const warning removal.
943
944 2000-06-09  Kazu Hirata  <kazu@hxi.com>
945
946         * config/h8300/lib1funcs.asm: Declare the machine architecture at
947         the beginning of the file.
948
949 2000-06-09  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
950
951         * real.h:  Add prototype for ldexp.
952
953 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
954
955         * ggc-none.c, ggc-simple.c, ggc-page.c (ggc_alloc_obj): Rename
956         it ggc_alloc, drop second argument, never clear returned memory.
957         * ggc-common.c (ggc_alloc_string): Use ggc_alloc.
958         (ggc_alloc_cleared): New.
959         * ggc.h: Prototype ggc_alloc and ggc_alloc_cleared, not
960         ggc_alloc_obj.  Remove ggc_alloc macro.
961         (ggc_alloc_rtx, ggc_alloc_rtvec, ggc_alloc_tree): Use ggc_alloc.
962
963         * rtl.c (rtvec_alloc): Clear the vector always.
964         (rtx_alloc): Clear the first word always.  Remove dirty
965         obstack tricks (this routine is no longer a bottleneck).
966         * tree.c (make_node): Clear the new node always.
967         (make_tree_vec): Likewise.
968         (tree_cons): Clear the common structure always.
969         (build1): Likewise; also, clear TREE_COMPLEXITY.
970         * gengenrtl.c: Use puts wherever possible.  Remove extra
971         newlines.
972         (gendef): Clear the first word of an RTX in the generator
973         function, irrespective of ggc_p.  Initialize '0' slots to
974         NULL.
975         (genlegend): Don't generate obstack_alloc_rtx routine, just a
976         thin wrapper macro around obstack_alloc.
977
978         * stmt.c (expand_fixup): Use ggc_alloc.
979         * c-typeck.c (add_pending_init): Use ggc_alloc.
980         * emit-rtl.c (init_emit_once): Clear CONST_DOUBLE_CHAIN(tem).
981         * varasm.c (immed_double_const): Set CONST_DOUBLE_MEM(r) to
982         const0_rtx when it is created.
983         (immed_real_const_1): Set CONST_DOUBLE_CHAIN(r) to NULL_RTX if
984         we are not in a function.
985
986         * tree.c (tree_class_check_failed): Make second arg an int.
987         * tree.h: Update prototype.
988
989 2000-06-09  Geoff Keating  <geoffk@cygnus.com>
990
991         * tree.h (VOID_TYPE_P): Don't look at the TYPE_MAIN_VARIANT
992         of an error_mark_node.
993
994 Fri Jun  9 20:35:13 2000  Denis Chertykov  <denisc@overta.ru>
995
996         * config/avr/avr.c (asm_output_section_name): bugfix.
997
998 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
999
1000         * timevar.def: Add TV_EXPAND.
1001         * timevar.c (timevar_print): Update timing information.
1002         * calls.c (try_to_integrate): Push to TV_INTEGRATION for inlining.
1003
1004         * stmt.c (expand_return): Check for error_mark_node.
1005
1006 2000-06-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1007
1008         * configure.in: Also avoid wrapping auto-build.h with IN_GCC.
1009
1010         * scan-types.sh (VALUE) Wrap use with double quotes to protect
1011         variable against filename expansion when it contains "char *".
1012
1013         * system.h (SSIZE_MAX): Delete backup definition.
1014
1015         * cppfiles.c (read_include_file): Use INTTYPE_MAXIMUM(ssize_t)
1016         instead of SSIZE_MAX.
1017
1018 2000-06-09  Jakub Jelinek  <jakub@redhat.com>
1019
1020         * configure.in: Check whether gas supports -relax.
1021         * configure, config.in: Rebuilt.
1022         * config/sparc/sparc.h (ASM_RELAX_SPEC): Define.
1023         (EXTRA_SPECS): Add asm_relax.
1024         (ASM_SPEC): Add %(asm_relax).
1025         (TARGET_SWITCHES): Add -mrelax and -mno-relax.
1026         * config/sparc/linux64.h (LINK_ARCH_SPEC): Rename to LINK_SPEC.
1027         (LINK_SPEC): Pass -relax to linker unless -mno-relax or -r.
1028         (ASM_SPEC): Add %(asm_relax).
1029         * config/sparc/linux.h (LINK_SPEC, ASM_SPEC): Likewise.
1030         * config/sparc/sparc.c (output_sibcall): If HAVE_AS_RELAX_OPTION,
1031         never use sethi/jmpl for leaf tail calls.  Use or with rs2 %g0
1032         instead of mov, so that gas can further optimize it.
1033
1034 2000-06-08  James E. Wilson  <wilson@bletchleypark.cygnus.com>
1035
1036         * dwarf2out.c (size_of_die, case dw_val_class_const): Use
1037         size_of_sleb128.
1038         (value_format, case dw_val_class_const): Use sdata format.
1039         (output_die): Call output_sleb128.
1040
1041 2000-06-08  James E. Wilson  <wilson@cygnus.com>
1042
1043         * dwarf2out.c (ASM_OUTPUT_DWARF_DATA8): Add new macro that uses
1044         UNALIGNED_DOUBLE_INT_ASM_OP.  Rename old macro to
1045         ASM_OUTPUT_DWARF_CONST_DOUBLE.
1046         (output_die, case dw_val_class_unsigned_const): Correct call to
1047         ASM_OUTPUT_DWARF_DATA8.
1048         (output_die, case dw_val_class_long_long): Use
1049         ASM_OUTPUT_DWARF_CONST_DOUBLE.
1050         * tree.c (host_integerp): Accept unsigned HOST_WIDE_INT values when
1051         pos is zero.
1052
1053         * config/ia64/ia64-protos.h (ia64_output_end_prologue): Add.
1054         (output_function_prologue): Fix mispelling.
1055         (output_function_prologue, output_function_epilogue): Reorder to
1056         match ia64.c definition order.
1057         * config/ia64/ia64.c (ia64_expand_prologue): Add comment.
1058         (ia64_expand_epilogue): Set RTX_FRAME_RELATED_P on stack restore insns.
1059         Use r3 instead of r2 for large stack restores.
1060         (ia64_output_end_prologue): New function.
1061         (process_set): Emit ".restore sp" for epilogue stack restores.
1062         * config/ia64/ia64.h (FUNCTION_END_PROLOGUE): Define.
1063
1064 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
1065
1066         * dbxout.c (dbxout_type_fields): Don't segfault on fields with
1067         incomplete types.
1068
1069 2000-06-08  Nathan Sidwell  <nathan@codesourcery.com>
1070
1071         * frame.c (end_fde_sort): Remove extraneous erratic array test.
1072
1073 2000-06-08  Denis Perchine <dyp@perchine.com>
1074
1075         * frame.c (start_fde_sort): Don't malloc (0).
1076
1077 2000-06-07  Zack Weinberg  <zack@wolery.cumb.org>
1078
1079         * c-decl.c (pushdecl): Do not call COMPLETE_TYPE_P on
1080         error_mark_node.
1081         * print-tree.c (print_node): The transparent_union_flag means
1082         different things for unions and arrays.  Do not inspect it
1083         with TYPE_TRANSPARENT_UNION.
1084
1085 2000-06-06  Jakub Jelinek  <jakub@redhat.com>
1086
1087         * cpplib.c (do_ifdef, do_ifndef): Don't segfault if parse_ifdef
1088         returned NULL.
1089
1090 Wed Jun  7 20:34:33 2000  Denis Chertykov  <denisc@overta.ru>
1091
1092         * config/avr/avr.c (asm_output_section_name): output section
1093         attributes.
1094         * config/avr/libgcc.S (.text.libgcc): declare section attributes.
1095
1096 2000-06-06  James E. Wilson  <wilson@cygnus.com>
1097
1098         * frame.h (struct unwind_info_ptr): Collapse version, flags, and length
1099         fields into header field.
1100         (IA64_UNW_HDR_LENGTH, IA64_UNW_HDR_FLAGS, IA64_UNW_HDR_VERSION): New
1101         macros to access length, flags, and version info from header field.
1102         * config/ia64/crtbegin.asm (__do_frame_setup_aux): Delete here.
1103         * config/ia64/crtend.asm (__do_frame_setup_aux): Add here.
1104         (__do_global_ctors_aux): Fix caller.
1105         * config/ia64/frame-ia64.c (get_unwind_record): Change parameter
1106         prologue_flag to header.  Pass to read_P_record.
1107         (read_P_record): New argument header.  Implement P4 format.
1108         Multiply P7_T_SIZE by 16.
1109         (execute_one_ia64_descriptor): New static local region_header.  Pass to
1110         get_unwind_record.  Copy r to region_header if r is a header record.
1111         (print_all_records): Likewise.
1112         (__build_ia64_frame_state): Use IA64_UNW_HDR_LENGTH.
1113         (__get_personality, __get_except_table): Likewise.
1114         * config/ia64/ia64.c (process_set): Do not divide offsets by 4.
1115
1116 2000-06-06  Philipp Thomas  <pthomas@suse.de>
1117
1118         * configure.in (AC_C_INLINE): Added.
1119         * aclocal.m4 (AM_WITH_NLS): Enable --with-included-gettext by default.
1120         * configure: Regenerate.
1121
1122 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
1123
1124         * c-common.h (c_language_kind): New type.
1125         (c_language): New variab.e
1126         * c-common.c (lang_get_alias_set): Don't put structures in
1127         non-zero alias sets in C++.
1128         * c-decl.c (c_language): Define it.
1129         * c-lex.c (doing_objc_thang): Remove.
1130         * c-tree.h (doing_objc_thang): Make it a macro.
1131         * objc/objc-act.c (lang_decode_option): Set c_language, not
1132         doing_objc_thang.
1133
1134 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
1135
1136         * diagnostic.c (output_maximum_width): Remove.
1137         (doing_line_wrapping): Tweak.
1138         (diagnostic_buffer): New object.
1139         (global_output_buffer): New object.
1140         (output_destroy_prefix): New function.
1141         (default_initialize_buffer): Likewise.
1142         (reshape_diagnostic_buffer): Likewise.
1143         (initialize_diagnostics): Likewise.
1144         (output_clear): Tweak.
1145         (line_wrapper_printf): Adjust call to init_output_buffer.
1146         (vline_wrapper_message_with_location): Likewise.  Use
1147         output_destroy_prefix.
1148         (v_message_with_decl): Likewise.
1149
1150         * diagnostic.h (struct output_buffer): Constify prefix.
1151         (init_output_buffer, output_get_prefix): Constify.
1152         (diagnostic_message_length_per_line): Likewise.
1153         (reshape_diagnostic_buffer): Declare.
1154         (default_initialize_buffer): Declare.
1155         (initialize_diagnostics): Declare.
1156         (diagnostic_buffer): Declare new obbject.
1157
1158         * toplev.c: #include diagnostic.h
1159         (display_help): Document diagnostic formatting options.
1160         (decode_f_option): Handle diagnostic formatting options.
1161         (main): Setup initialization for diagnostic messages outputter.
1162
1163         * toplev.h (set_message_length): Remove.
1164
1165         * Makefile.in (toplev.o): Depends upon diagnostic.h
1166
1167         * invoke.texi : Document diagnostics formatting options.
1168
1169 Tue Jun  6 19:25:32 2000  Philippe De Muyter  <phdm@macqel.be>
1170
1171         * configure.in (Make the links): Typo fix : the file that must be
1172         included without #ifdef IN_GCC is `auto-host.h', not `auto-config.h'.
1173         * configure: File rebuilt.
1174
1175 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
1176
1177         * eh-common.h (EH_ALLOC_SIZE, EH_ALLOC_ALIGN): New #defines.
1178         (eh_context): Add alloc_mask and alloc_buffer emergency fallback
1179         space.
1180         * libgcc2.c (__eh_alloc): Moved from cp/exception.cc. Fallback on
1181         emergency eh_context buffer, if malloc fails.
1182         (__eh_free): Moved from cp/exception.cc. Release to emergency
1183         eh_context buffer, if appropriate.
1184
1185 2000-06-06  Jason Merrill  <jason@casey.soma.redhat.com>
1186
1187         * expr.c (store_expr): Fix typo.
1188
1189 2000-06-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1190
1191         * m68k.c (legitimize_pic_address): Move prototype ...
1192
1193         * m68k-protos.h (legitimize_pic_address): ... here.
1194
1195         * m68k.md (legitimize_pic_address): Delete prototypes.
1196         (untyped_call): Invoke GEN_CALL(), not gen_call().
1197
1198         * nextstep.c: Include system.h and toplev.h.
1199         (get_directive_line): Don't prototype.
1200         (handle_pragma): Mark parameters with ATTRIBUTE_UNUSED and constify.
1201
1202         * nextstep.h (handle_pragma): Prototype.
1203         (SECTION_FUNCTION): Prototype FUNCTION().  Move prototype of
1204         objc_section_init ...
1205         (EXTRA_SECTION_FUNCTIONS): ... here.
1206
1207 Tue Jun  6 08:17:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1208
1209         * sdbout.c (struct sdb_file): NAME now const.
1210         (sdbout_init): input_file_name now const.
1211         (sdbout_start_new_source_file): FILENAME now const.
1212         * sdbout.c (sdbout_init, sdbout_start_new_source_file): Reflect above.
1213
1214 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
1215
1216         * c-typeck.c (build_conditional_expr): Handle complex data types.
1217
1218 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
1219
1220         * explow.c (maybe_set_unchanging): New function, broken out from...
1221         (set_mem_attributes): Here.
1222         * expr.h: Declare it.
1223         * stmt.c (expand_decl): Call it.
1224
1225 2000-06-05  Richard Henderson  <rth@cygnus.com>
1226
1227         * reload1.c (choose_reload_regs): Mind CLASS_CANNOT_CHANGE_SIZE
1228         while looking for a register to inherit from.
1229
1230 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
1231
1232         * Makefile.in (libgcc.ready): Lose.
1233         (libgcc.mk): Just use mv, not move-if-change.
1234         (LIBGCC_DEPS): New macro.
1235         (libgcc.a): Use it.
1236         (stmp-multilib): Likewise.
1237         * mklibgcc.in (stmp-dirs): New target.  Make everything depend on
1238         it rather than the directories themselves.
1239         (LIB2ADD): Depend on the list file rather than 'force'.
1240
1241         * fold-const.c (fold, case COND_EXPR): Elide conversion between
1242         cv-qualified versions of types.
1243
1244 Mon Jun  5 14:06:18 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1245
1246         * config/sparc/sparc.c (short_branch): Correct error in range
1247         computation.
1248
1249 2000-06-05  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
1250
1251         * fixinc/inclhack.def: New include hacks for ultrix.
1252         * (nested_ultrix): Replaced by ultrix_nested_svc.
1253         * (ultrix_atof_param): test_text string added.
1254         * (ultrix_ifdef): Modified select string.
1255
1256 2000-06-05  Zack Weinberg  <zack@wolery.cumb.org>
1257
1258         * objc/objc-act.c (generate_method_descriptors): Register
1259         objc_method_prototype_template as a GC root.
1260         (comp_method_with_proto): Register function_type as a GC root.
1261         (comp_proto_with_proto): Replace function_type1 and
1262         function_type2 with a two-element array; register it as a GC root.
1263
1264         (generate_protocols, build_protocol_initializer,
1265         generate_protocol_list, build_category_initializer,
1266         build_shared_structure_initializer): Do not cache cast_type
1267         and/or cast_type2.
1268
1269 2000-06-05  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
1270
1271         * function.c (assign_parms): Add missing argument to set_mem_attributes
1272         call.
1273
1274 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
1275
1276         * tree.h (VOID_TYPE_P): New macro.
1277         (COMPLETE_OR_VOID_TYPE_P): Use VOID_TYPE_P.
1278         * c-decl.c (grokdeclarator): Use VOID_TYPE_P.
1279         (get_parm_info): Likewise.
1280         (store_parm_decls): Likewise.
1281         (combine_parm_decls): Likewise.
1282         (finish_function): Likewise.
1283         * c-typeck.c (build_function_call): Likewise.
1284         (build_binary_op): Likewise.
1285         (build_conditional_expr): Likewise.
1286         (internal_build_compound_expr): Likewise.
1287         (convert_for_assignment): Likewise.
1288         * stmt.c (expend_expr_stmt): Likewise.
1289         (warn_if_unused_value): Likewise.
1290         (expand_return): Likewise.
1291         * c-parse.in (primary): Likewise.
1292         * c-parse.y, c-parse.c, c-parse.h: Regenerate.
1293         * objc/objc-parse.y, objc/objc-parse.c: Regenerate.
1294
1295 Mon Jun  5 06:46:28 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1296
1297         * alias.c (get_alias_set): If compnent is addressable, use alias
1298         set of component.
1299         * c-decl.c (init_decl_processing): Don't call record_component_aliases.
1300         (grokdeclarator): Likewise.
1301         * c-typeck.c (common_type): Likewise.
1302
1303 2000-06-04  Alex Samuel  <samuel@codesourcery.com>
1304
1305         * Makefile.in (OBJS): Remove dyn_string.o
1306         (dyn-string.o): Delete rule.
1307         * dyn-string.c: Delete file
1308         * dyn-string.h: Likewise.
1309
1310 2000-06-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1311
1312         * Makefile.in (intl.*): Honor non-zero exit codes in the intl
1313         subdir.
1314
1315 2000-06-03  Geoff Keating  <geoffk@cygnus.com>
1316
1317         * alias.c (record_component_aliases): Don't inspect
1318         DECL_NONADDRESSABLE_P of non-FIELD_DECL components of structures.
1319
1320 Sat Jun  3 19:05:30 2000  Michael Meissner  <meissner@redhat.com>
1321
1322         * ifcvt.c (process_insns): If IFCVT_MODIFY_INSN is defined, call
1323         it with the pattern to do machine dependent work.
1324         (cond_exec_process_if_block): If IFCVT_MODIFY_TESTS is defined,
1325         use it to modify the true/false tests used in conditional
1326         execution.  If IFCVT_MODIFY_FINAL and IFCVT_MODIFY_CANCEL are
1327         defined, invoke them if the conversion to conditional execution
1328         was successful or not.
1329
1330         * tm.texi (IFCVT_MODIFY_TESTS): Document.
1331         (IFCVT_MODIFY_INSN): Ditto.
1332         (IFCVT_MODIFY_FINAL): Ditto.
1333         (IFCVT_MODIFY_CANCEL): Ditto.
1334
1335 Sat Jun  3 15:26:13 2000  Matt Kraai <kraai@alumni.carnegiemellon.edu>
1336
1337         * toplev.c (main): Fix misspellings of possibility and language.
1338
1339 2000-06-03  Richard Henderson  <rth@cygnus.com>
1340
1341         * alias.c (record_alias_subset): Initialize has_zero_child in the
1342         superset.
1343
1344 2000-06-03  Richard Earnshaw (rearnsha@arm.com)
1345
1346         * arm.md (untyped_call): Use GEN_CALL macro.
1347
1348 2000-06-02  Pekka Nikander  <pnr@teldanex.tcm.hut.fi>
1349
1350         * Makefile.in: Use $(MAKE) not "make"
1351
1352 Fri Jun  2 19:31:03 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1353
1354         * alias.c (struct alias_set_entry): New field has_zero_child.
1355         (mem_in_disjoint_alias_sets_p): Return 0 if set in either ase.
1356         (get_alias_set): If language-dependent routine set TYPE_ALIAS_SET,
1357         do nothing.
1358         Call record_component_aliases for aggregate types.
1359         (record_alias_subset): Set has_zero_child.
1360         (record_component_aliases, case ARRAY_TYPE): Do nothing if
1361         TYPE_NONALIASES_COMPONENT.
1362         (record_component_aliases, case RECORD_TYPE): Test
1363         DECL_NONADDRESSABLE_P.
1364         * c-decl.c (grokdeclarator): Set DECL_NONADDRESSABLE_P instead
1365         of TREE_ADDRESSABLE.
1366         * calls.c (initialize_argument_information): Only test
1367         TYPE_TRANSPARENT_UNION for UNION_TYPE.
1368         * function.c (assign_parms): Likewise.
1369         * integrate.c (function_cannot_inline_p): Likewise.
1370         * stor-layout.c (finish_record_layout): Don't call
1371         record_component_aliases.
1372         * tree.h (struct tree_int_cst): Use struct tree_common.
1373         (struct tree_real_cst, struct tree_string): Likewise.
1374         (struct tree_complex, struct tree_identifier): Likewise.
1375         (struct tree_list, struct tree_vec, struct tree_exp): Likewise.
1376         (struct tree_block, struct tree_type, struct tree_decl): Likewise.
1377         (TYPE_TRANSPARENT_UNION): Use UNION_TYPE_CHECK.
1378         (TYPE_NONALIASES_COMPONENT): New macro.
1379         (TYPE_AMBIENT_BOUNDEDNESS): Use FUNCTION_TYPE_CHECK.
1380         (DECL_NONADDRESSABLE_P): New macro.
1381         (struct tree_decl): Reorder bits for clarity of how many left;
1382         add non_adressable.
1383
1384 2000-06-02  Jason Merrill  <jason@casey.soma.redhat.com>
1385
1386         * Makefile.in (libgcc.a): Also depend on $(LIB2ADD).
1387         * mklibgcc.in (force): New target.
1388         Make LIB2ADD stuff depend on it.
1389
1390 2000-06-02  Richard Henderson  <rth@cygnus.com>
1391
1392         * alias.c (lang_get_alias_set): Remove.
1393         (get_alias_set): Call it directly, not indirectly.
1394         * c-common.c (lang_get_alias_set): Rename from c_get_alias_set.
1395         * c-common.h (c_get_alias_set): Don't declare.
1396         * c-decl.c (init_decl_processing): Don't set lang_get_alias_set.
1397         * expr.h (lang_get_alias_set): Declare as function, not pointer.
1398
1399 2000-06-02  Bruce Korb  <bkorb@gnu.org>
1400
1401         * fixinc/server.c(sig_handler):  resume closing server on SIGPIPE
1402         (server_setup):  define the server's master pid
1403         (close_server):  actually do the deed IFF we are the server's master
1404
1405 2000-06-02  Jakub Jelinek  <jakub@redhat.com>
1406
1407         * c-common.c (c_get_alias_set): Check whether signed_type did not
1408         return its argument before calling get_alias_set on the result.
1409
1410 2000-06-02  Andrew MacLeod  <amacleod@cygnus.com>
1411
1412         * expr.c (emit_group_load): Fix typo, GET_MODE not GET_CODE.
1413
1414 Fri Jun  2 00:22:52 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
1415
1416         * sh.h (CPP_SPEC): Add -D__NOMACSAVE__ for -mnomacsave.
1417         (CONDITIONAL_REGISTER_USAGE): Mac registers are call used
1418         for TARGET_NOMACSAVE.
1419         (NOMACSAVE_BIT): Define.
1420         (TARGET_NOMACSAVE): Define.
1421         (TARGET_SWITCHES): Add "nomacsave".
1422
1423 2000-06-02  Toshiyasu Morita  <toshi.morita@sega.com>
1424
1425         * sh.md (untyped_call): Remove excess parameters
1426
1427 2000-06-01  Loren J. Rittle  <ljrittle@acm.org>
1428
1429         * fixinc/inclhack.def (osf_namespace_a): Relax expression to
1430         match that used before the conversion to c_fix style.
1431         * fixinc/fixincl.x: regenerate
1432
1433 2000-06-01  Stan Cox  <scox@cygnus.com>
1434
1435         * varray.h (VARRAY_PUSH_GENERIC_PTR, VARRAY_PUSH_CHAR_PTR): Fix
1436         macro argument typo.
1437
1438 2000-06-01  Zack Weinberg  <zack@wolery.cumb.org>
1439
1440         * cpplex.c (maybe_macroexpand): Use CPP_WTRADITIONAL.  Improve
1441         error message.
1442         * cpplib.c (parse_include): Remove support for VAX-C
1443         "#include starlet" misfeature.
1444
1445 2000-05-31 Laurynas Biveinis <lauras@softhome.net>
1446
1447         * cppfiles.c: conditionally define O_BINARY.
1448         (open_include_file): pass O_BINARY to open().
1449
1450 2000-06-01  Richard Henderson  <rth@cygnus.com>
1451
1452         * i960.c (i960_br_predict_opcode): Remove.
1453         (i960_print_operand) [+]: Emit branch prediction hints.
1454         (i960_function_arg): Return early for VOIDmode.
1455         (i960_round_align): Return early for incomplete types.
1456         * i960.h (PRINT_OPERAND_PUNCT_VALID_P): New.
1457         * i960.md (all conditional branches): Add "%+".
1458
1459 Thu Jun  1 12:24:21 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1460
1461         * alias.c (get_alias_set): Don't call language-specific routine more
1462         than is needed and clean up code a bit.
1463         * c-common.c (c_get_alias_set): All references whose type
1464         is char get alias set 0, but character types need not.
1465         * varasm.c (make_function_rtl): Don't call set_mem_attributes.
1466         (make_decl_rtl): Don't call it for FUNCTION_DECL.
1467
1468 2000-06-01  Bruce Korb  <bkorb@gnu.org>
1469
1470         * fixinc/tests/base/...: new base result files
1471
1472 Thu Jun  1 09:37:35 2000  Clinton Popetz  <cpopetz@cygnus.com>
1473
1474         * config/i386/i386.c (ix86_use_fcomi_compare): Make global.
1475         * config/i386/i386-protos.h (ix86_use_fcomi_compare): Declare.
1476         * config/i386/i386.md (*fp_jcc_3, *fp_jcc_4): Disable if we
1477         will use FCOMI.
1478
1479 2000-06-01  Richard Henderson  <rth@cygnus.com>
1480
1481         * Makefile.in (c-decl.o): Depend on $(EXPR_H), not expr.h.
1482
1483         * c-decl.c (init_decl_processing): Set lang_get_alias_set first thing.
1484
1485 2000-05-31  Richard Henderson  <rth@cygnus.com>
1486
1487         * config/ia64/ia64.c (sdata_symbolic_operand): Consider small
1488         CONSTANT_POOL_ADDRESS_P addresses for .sdata.
1489         * config/ia64/sysv4.h (SELECT_RTX_SECTION): New.
1490
1491 2000-05-31  Richard Henderson  <rth@cygnus.com>
1492
1493         * config/ia64/ia64-protos.h (ia64_expand_prediction): Remove.
1494         * config/ia64/ia64.c (ia64_expand_prediction): Move code ...
1495         (ia64_print_operand) [+]: ... here.  Use current_output_insn.
1496         * config/ia64/ia64.h (PRINT_OPERAND_PUNCT_VALID_P): New.
1497         * config/ia64/ia64.md (all branch/call patterns): Use %+.
1498
1499 2000-05-31  Richard Henderson  <rth@cygnus.com>
1500
1501         * ifcvt.c (cond_exec_process_insns): Don't ever ignore clobbers.
1502
1503 2000-05-31  Richard Henderson  <rth@cygnus.com>
1504
1505         * ifcvt.c (merge_if_block): Be prepared for JOIN to have no
1506         remaining edges.
1507         (find_if_block): Allow THEN with no outgoing edges.
1508         * flow.c (merge_blocks_nomove): Remove a barrier not following
1509         a jump as well.
1510
1511 2000-05-31  Richard Henderson  <rth@cygnus.com>
1512
1513         * flow.c (propagate_block): Move initialization of mem_set_list ...
1514         (init_propagate_block_info): ... here.  Also track blocks with
1515         no successors; don't scan insns if ! PROP_SCAN_DEAD_CODE.
1516
1517 2000-05-31  Richard Henderson  <rth@cygnus.com>
1518
1519         * jump.c (jump_optimize_1): Revert 05-18 change.
1520
1521 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
1522
1523         * invoke.texi: Remove documentation for -fguiding-decls.
1524
1525 2000-05-31  Richard Henderson  <rth@cygnus.com>
1526
1527         * configure.in: Fix typo last change.
1528
1529 2000-05-31  Philipp Thomas  <pthomas@suse.de>
1530
1531         * configure.in (enable-nls): Enable if build == host, i.e. when
1532         not building a canadian cross compiler.
1533         (enable-maintainer-mode): Added for use with i18n.
1534         * aclocal.m4 (AM_GNU_GETTEXT): Only build catalogs that are a
1535         cross section of ALL_LINGUAS and LINGUAS.
1536         * configure: Rebuild.
1537
1538 2000-05-31  Bruce Korb  <bkorb@gnu.org>
1539
1540         * fixinc/check.tpl: rework to use test result tree
1541         * fixinc/Makefile.in: change invocation of check script
1542         * fixinc/check.diff: No longer needed
1543         * fixinc/fixincl.x: regenerate
1544         * fixinc/inclhack.def:  add new tests
1545         * fixinc/tests/base/arch/i960/archI960.h:  New test result
1546         * fixinc/tests/base/curses.h: modified test result
1547         * fixinc/tests/base/stdio.h: ditto
1548         * fixinc/tests/base/time.h: ditto
1549         * fixinc/tests/base/sys/asm.h: ditto
1550         * fixinc/tests/base/sys/stat.h: ditto
1551         * fixinc/tests/base/sys/wait.h: ditto
1552
1553 Wed May 31 13:17:20 2000  Philippe De Muyter  <phdm@macqel.be>
1554
1555         * except.c (clear_function_eh_region): Do not free NULL.
1556
1557 Wed May 31 08:07:52 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1558
1559         * Makefile.in (c-decl.o): Depend on rtl.h and expr.h.
1560         * alias.c (struct alias_entry): alias_set is HOST_WIDE_INT.
1561         (REG_BASE_VALUE): Remove unneeded cast to unsigned.
1562         (get_alias_set_entry): ALIAS_SET arg is HOST_WIDE_INT.
1563         (find_base_decl): New function, from c_find_base_decl in c-common.c.
1564         (new_alias_set): Moved from tree.c; return is HOST_WIDE_INT.
1565         (get_alias_set): Likewise.
1566         Major rework to do more things and allow language-specific code
1567         to just handle special-cases.
1568         (record_alias_subset): Args are HOST_WIDE_INT.
1569         (record_component_alias): Local vars are HOST_WIDE_INT.
1570         Don't handle COMPLEX_EXPR.
1571         (get_varargs_alias_set): Moved from builtins.c.
1572         (get_frame_alias_set): New function.
1573         * builtins.c (expand_builtin_return_address): Use frame alias set.
1574         (expand_builtin_setjmp, expand_builtin_longjmp): Use alias set
1575         for setjmp buffer.
1576         (get_memory_rtx): Rework to use set_mem_attributes.
1577         (get_varargs_alias_set): Deleted from here.
1578         * c-common.c (c_apply_type_quals_to_decl): Alias sets now HOST_WIDE_INT.
1579         (c_find_base_decl): Deleted from here.
1580         (c_get_alias_set): Remove many cases and rework to just handle
1581         C-specific cases.
1582         * c-common.h (c_get_alias_set): Returns HOST_WIDE_INT.
1583         * c-decl.c (rtl.h, expr.h): Now included.
1584         (init_decl_processing): Call record_component_aliases on array types.
1585         (grokdeclarator): Likewise.
1586         Set TREE_ADDRESSABLE for all fields that are not bitfields.
1587         * c-typeck.c (common_type): Call record_component_aliases for array.
1588         * caller-save.c (setup_save_areas): Rework register loop for unsigned.
1589         Set all save areas to the frame alias set.
1590         * calls.c (initialie_argument_information): Call set_mem_attributes.
1591         (compute_argument_addresses, expand_call): Likewise.
1592         * explow.c (set_mem_attributes): New function.
1593         (stabilize): Use MEM_COPY_ATTRIBUTES and force_reg.
1594         * expr.c (struct move_by_pieces): Remove {to,from}_{struct,readonly}.
1595         LEN and OFFSET now HOST_WIDE_INT.
1596         (clear_by_pieces): Similar changes.
1597         (move_by_pieces): LEN now HOST_WIDE_INT; don't set deleted fields.
1598         (move_by_pieces_ninsns): Now returns unsigned HOST_WIDE_INT.
1599         (move_by_pieces_1): Don't use deleted fields, use MEM_COPY_ATTRIBUTES.
1600         (clear_by_pieces_1): Likewise.
1601         (emit_push_insn): Call set_mem_attributes.
1602         (expand_expr, case INDIRECT_REF): Likewise.
1603         (expand_expr, case VAR_DECL): Call change_address.
1604         * expr.h (ADD_PARM_SIZE, SUB_PARM_SIZE): Use host_integerp and
1605         tree_low_cst.
1606         (get_varargs_alias_set, get_frame_alias_set): New decls.
1607         (record_base_value, record_alias_subset, lang_get_alias_set): Likewise.
1608         (new_alias_set, set_mem_attributes): Likewse.
1609         * function.c (struct temp_slot): ALIAS_SET is HOST_WIDE_INT.
1610         (assign_stack_temp_for_type): Likewise.
1611         Can split slot even if alias set since can copy.
1612         Set MEM_ALIAS_SET and MEM_SET_IN_STRUCT_P.
1613         (assign_temp): Use host_integerp and tree_low_cst.
1614         (put_var_into_stack): Properly handle SAVE_EXPR.
1615         (put_addressof_into_stack): Likewise.
1616         (assign_parms): Call set_mem_attributes.
1617         Delete #if 0 code.
1618         (fix_lexical_address): Put reference to chain into frame alias set.
1619         (expand_function_start): Call set_mem_attributes.
1620         * integrate.c (expand_inline_function): Likewise.
1621         * recog.c (adj_offsettable_operand): Use MEM_COPY_ATTRIBUTES.
1622         * regmove.c (try_apply_stack_adjustment): Likewise.
1623         * reload.c (push_reload, make_memloc): Likewise.
1624         * reload1.c (alter_reg): Make alias sets for spilled pseudos.
1625         * rtl.def (MEM): Update comment.
1626         * rtl.h (MEM_ALIAS_SET): Now uses XCWINT.
1627         (move_by_pieces): Change length to HOST_WIDE_INT.
1628         (record_base_value, record_alias_subset): Delete from here.
1629         * stmt.c (expand_decl): Call set_mem_attributes.
1630         * stor-layout.c (finish_record_layout): Call record_component_aliases.i
1631         * toplev.c (compile_file): Call init_alias_once earlier.
1632         * tree.c (lang_get_alias_set, get_alias_set, new_alias_set): Deleted
1633         from here: now in alias.c.
1634         * tree.h (struct tree_type): alias_set is HOST_WIDE_INT.
1635         (struct tree_decl): Likewise.
1636         (get_alias_set, new_alias_set, lang_get_alias_set): Deleted from here.
1637         * varasm.c (make_function_rtl, make_decl_rtl): Call set_mem_attributes.
1638         (output_constant_def, force_const_mem): Likewise.
1639
1640         * flow.c (propagate_block): If block has no successors, stores to
1641         frame are dead if not used.
1642
1643 2000-05-31  Nathan Sidwell  <nathan@codesourcery.com>
1644
1645         * stmt (expand_end_case): Reorder conversion sequence for jump
1646         table to avoid extra truncations.
1647
1648 Wed May 31 01:31:42 2000  Jeffrey A Law  (law@cygnus.com)
1649
1650         * ifcvt.c (cond_exec_process_if_block): Do nothing if the last insn
1651         in the block is more than just a simple conditional branch.
1652         (noce_process_if_block): Similarly.
1653
1654 Tue May 30 22:25:57 2000  Alexandre Oliva  <aoliva@cygnus.com>
1655
1656         * optabs.c (prepare_float_lib_cmp): Protect *px and *py from
1657         queue.
1658
1659 2000-05-30  Michael Meissner  <meissner@redhat.com>
1660
1661         * dwarf2out.c (dwarf2out_frame_debug_expr): Ignore HIGH
1662         instructions.  Treat LO_SUM operations as loading the full integer
1663         constant.
1664
1665 2000-05-30  Richard Henderson  <rth@cygnus.com>
1666
1667         * combine.c (get_pos_from_mask): Test exact_log2 result as signed.
1668
1669 2000-05-30  Richard Henderson  <rth@cygnus.com>
1670
1671         * bb-reorder.c (emit_jump_to_block_after): Protect use of HAVE_return.
1672
1673 2000-05-30  Bruce Korb  <bkorb@gnu.org>
1674
1675         * fixinc/tests/*:  Added expected result files for fixinc's make check
1676         * fixinc/fixfixes(char_macro_*_fix): Restore original algorithm
1677
1678 2000-05-30  Richard Henderson  <rth@cygnus.com>
1679
1680         * config/alpha/alpha.md (*setne_internal): Use match_operator
1681         instead of working down from insn.
1682
1683 2000-05-30  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1684
1685         * invoke.texi (-Wtraditional): Update WRT function macros.
1686
1687 Tue May 30 09:57:32 2000  Philippe De Muyter  <phdm@macqel.be>
1688
1689         * except.c (free_exception_table): Do not free NULL.
1690
1691 2000-05-29  Zack Weinberg  <zack@wolery.cumb.org>
1692
1693         * cpplib.c (do_if): Don't save and restore only_seen_white here.
1694         * cppexp.c (_cpp_parse_expr): Save and restore only_seen_white
1695         and skipping here.
1696
1697 2000-05-29  Richard Earnshaw (rearnsha@arm.com)
1698
1699         * flow.c (mark_used_reg): If a register is unconditionally live,
1700         remove any conditional death information.
1701
1702 2000-05-29  Richard Henderson  <rth@cygnus.com>
1703
1704         * final.c (current_output_insn): New.
1705         (final_scan_insn): Set it.
1706         * output.h: Declare it.
1707
1708 2000-05-29  Richard Henderson  <rth@cygnus.com>
1709
1710         * stor-layout.c (finalize_record_size): Fix typo.
1711
1712         * jump.c (redirect_jump): Don't emit NOTE_INSN_FUNCTION_END
1713         if nlabel is null.
1714
1715 2000-05-29  Zack Weinberg  <zack@wolery.cumb.org>
1716
1717         * cpplib.h (cpp_reader): Remove if_stack.  Change
1718         potential_control_macro to a cpp_hashnode *.  Add skipping flag.
1719         * cpphash.h (struct ihash): Change control_macro to a
1720         cpp_hashnode * and shorten name to cmacro.
1721         Add NEVER_REINCLUDE constant.
1722
1723         * cppfiles.c (redundant_include_p): Drop cpp_reader argument.
1724         Examine the cmacro node directly, no need to call cpp_defined.
1725         (_cpp_execute_include, read_include_file): Set cmacro to
1726         NEVER_REINCLUDE, not U"".
1727         * cpplex.c (cpp_push_buffer): Don't set new->if_stack.
1728         (cpp_get_token): If pfile->skipping is true, discard text and
1729         keep scanning until we hit a directive; don't expand macros.
1730
1731         * cpplib.c (struct if_stack): Remove if_succeeded, add
1732         was_skipping. Change control_macro to a cpp_hashnode * and
1733         shorten name to cmacro.  Remove typedef IF_STACK.
1734         (parse_ifdef), detect_if_not_defined): Return a cpp_hashnode *.
1735         (conditional_skip, skip_if_group,
1736         consider_directive_while_skipping): Delete.
1737         (push_conditional): New.
1738         (_cpp_handle_directive): Don't process directives other than
1739         conditionals if we are skipping.
1740
1741         (do_ifdef, do_ifndef, do_if, do_else, do_elif, do_endif):
1742         Update to new scheme.
1743         (validate_else): Skip rest of line here, unconditionally.
1744         (_cpp_unwind_if_stack): The stack is per-buffer.  Force
1745         pfile->skipping off.
1746
1747         (all): Remove `scare quotes' from error messages.
1748
1749 2000-05-29  Richard Henderson  <rth@cygnus.com>
1750
1751         * function.c (emit_return_into_block): New line_note arg; emit it.
1752         (thread_prologue_and_epilogue_insns): Attempt to locate a line note
1753         for the close brace to accompany HAVE_return.  Move all line notes
1754         following the epilogue to before the NOTE_INSN_EPILOGUE_BEG.
1755
1756 2000-05-29  Richard Henderson  <rth@cygnus.com>
1757
1758         * longlong.h [__alpha] (count_leading_zeros): New.
1759         (count_trailing_zeros): New.
1760         (COUNT_LEADING_ZEROS_0): New.
1761
1762         * config/alpha/alpha.c (alpha_zero_comparison_operator): New.
1763         (alpha_split_conditional_move): New.
1764         * config/alpha/alpha-protos.h: Prototype them.
1765         * config/alpha/alpha.h (PREDICATE_CODES): Update.
1766         (CPP_CPU_DEFAULT_SPEC): Fix typo for EV67.
1767         * config/alpha/alpha.md: Update ffs cix commentary.
1768         (*ze_and_ne): New.
1769         (*nabssf2, *nabsdf2): New.
1770         (*mov[qhsd]icc_internal): Use add_operand.
1771         (if_then_else constant splitters): New.
1772         (*cmp_sadd_di, *cmp_sadd_si, *cmp_sadd_sidi): New.
1773         (*cmp_ssub_di, *cmp_ssub_si, *cmp_ssub_sidi): New.
1774
1775 2000-05-29  Richard Henderson  <rth@cygnus.com>
1776
1777         * combine.c (force_to_mode) [MINUS]: Convert subtraction from
1778         a constant to NEG or NOT when conditions allow.
1779
1780         * combine.c (combine_simplify_rtx): Don't create an if_then_else
1781         unless both args are general_operand.  Don't canonicalize plus
1782         to ior unless it helps.
1783
1784         * toplev.c (rest_of_compilation): Set no_new_pseudos after flow1;
1785         instead track register_life_up_to_date.  Toggle no_new_pseudos
1786         around if_convert.
1787
1788 2000-05-28  Geoff Keating  <geoffk@cygnus.com>
1789
1790         * config/rs6000/rs6000.c (output_cbranch): Escape '%' characters
1791         so output_operand doesn't see them.
1792
1793 Sun May 28 18:37:07 2000  Clinton Popetz  <cpopetz@cygnus.com>
1794
1795         * lcm.c (make_preds_opaque): Fix comment.
1796         (optimize_mode_switching): Use NORMAL_MODE instead of
1797         MODE_USES_IN_EXIT_BLOCK.  Change leftover instance of
1798         FP_MODE_NONE to no_mode.  Rename MODE_AT_ENTRY to NORMAL_MODE.
1799         Handle insertions before an existing NOTE_INSN_BASIC_BLOCK.
1800         * tm.texi (OPTIMIZE_MODE_SWITCHING): Refer to NORMAL_MODE.
1801         (MODE_USES_IN_EXIT_BLOCK): Delete.
1802         (MODE_AT_ENTRY) Rename to NORMAL_MODE.
1803         * sh.h (MODE_USES_IN_EXIT_BLOCK): Delete.
1804         (MODE_AT_ENTRY): Rename to NORMAL_MODE.
1805         (MODE_NEEDED): Don't look for USE.
1806         (EPILOGUE_USES): Define.
1807
1808 Sun May 28 23:26:59 2000  Philippe De Muyter <phdm@macqel.be>
1809
1810         * mklibgcc.in (all): Variable initialised to `libgcc'.
1811
1812 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
1813
1814         * toplev.h (skip_leading_substring): New macro.
1815         * toplev.c (decode_f_option): Use skip_leading_substring instead
1816         of strncmp.
1817         (decode_W_option): Likewise.
1818
1819 2000-05-28  Nick Clifton  <nickc@cygnus.com>
1820
1821         * tm.texi (CONDITIONAL_REGISTER_USAGE): Document that it can
1822         modify reg_names.
1823
1824 2000-05-28  Richard Henderson  <rth@cygnus.com>
1825
1826         * regclass.c (record_operand_costs): Protect reg_changes_size
1827         with CLASS_CANNOT_CHANGE_SIZE.
1828
1829         * loop.c (instrument_loop_bct): Set JUMP_LABEL on the new insn.
1830
1831 2000-05-28  Richard Henderson  <rth@cygnus.com>
1832
1833         * function.c (diddle_return_value): A pcc-style struct return
1834         returns a pointer.
1835
1836 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
1837
1838         * cppfiles.c: Read files in, using mmap if possible, then
1839         prescan them separately.
1840         (read_file, read_with_read): New functions.
1841         * cpplex.c: Don't define UCHAR_MAX.
1842         (_cpp_read_and_prescan): Rename to _cpp_prescan.  Don't read
1843         the file here.
1844
1845         * cppinit.c (handle_option): Automatically define __cplusplus,
1846         __OBJC__, __ASEEMBLER__, _LANGUAGE_FORTRAN here when we see
1847         the respective -lang switch.
1848
1849         * cpphash.h (enum node_type, struct hashnode, _cpp_lookup
1850         prototype): Move to...
1851         * cpplib.h: ... here.  Rename struct hashnode to struct
1852         cpp_hashnode and give it a typedef.  Rename _cpp_lookup to
1853         cpp_lookup.  Add 'fe_value' slot, a union tree_node *.
1854
1855 2000-05-27  Geoffrey Keating  <geoffk@cygnus.com>
1856
1857         * config/rs6000/rs6000.md (movsi): Constify 'name'.
1858
1859         * regclass.c [CLASS_CANNOT_CHANGE_SIZE]
1860         (class_can_change_size): New variable.
1861         (reg_changes_size): New variable.
1862         (init_reg_sets_1): Initialise class_can_change_size.
1863         (record_operand_costs): Remove subreg_changes_size.
1864         Don't pass it around.  Instead update reg_changes_size.
1865         (regclass): Initialise and free reg_changes_size.  If a register
1866         changes size, don't preference it to a class that contains
1867         registers that can't change size.
1868         (record_reg_classes): Don't look at subreg_changes_size.
1869
1870 2000-05-27  Richard Henderson  <rth@cygnus.com>
1871
1872         * print-rtl.c (reg_names): Remove const.
1873         * regclass.c (reg_names): Likewise.
1874         * regs.h (reg_names): Likewise.
1875         * hard-reg-set.h (reg_names): Likewise.
1876
1877 2000-05-27  Richard Henderson  <rth@cygnus.com>
1878
1879         * config/rs6000/rs6000.md (untyped_call): Use GEN_CALL.
1880
1881 2000-05-27  Richard Henderson  <rth@cygnus.com>
1882
1883         * config/alpha/alpha.c (alpha_does_function_need_gp): Test
1884         TARGET_PROFILING_NEEDS_GP in the if, instead of with an ifdef.
1885         (alpha_expand_prologue): Emit prologue_mcount if needed.
1886         * config/alpha/alpha.h (TARGET_PROFILING_NEEDS_GP): Default to 0.
1887         * config/alpha/alpha.md (prologue_mcount): New.
1888         * config/alpha/linux.h (FUNCTION_PROFILER): Remove.
1889         (TARGET_PROFILING_NEEDS_GP): Undef before redefining.
1890         * config/alpha/netbsd.h: Likewise.
1891
1892 2000-05-27  Richard Henderson  <rth@cygnus.com>
1893
1894         * config/alpha/elf.h (SELECT_SECTION): Mirror Kenner's May 19
1895         change to config/elfos.h.
1896
1897 2000-05-27  Richard Henderson  <rth@cygnus.com>
1898
1899         * Makefile.in (resource.o): Depend on except.h.
1900         * except.h (output_exception_table_data): Prototype.
1901         * genconfig.c (gen_peephole2): Prototype.
1902         * genemit.c (main): Include ggc.h.
1903         * genoutput.c: Revert parts of last change: include errors.h
1904         (main): Set progname.
1905         * recog.c: Include hard-reg-set.h before recog.h.
1906         * resource.c: Include except.h.
1907
1908         * config/alpha/alpha-protos.h (alpha_arg_info_reg_val): Protect
1909         with RTX_CODE.
1910         (alpha_write_linkage): Protect with BUFSIZ.
1911         (alpha_need_linkage): Update prototype.
1912         * config/alpha/alpha.c (function_arg): Move VMS code here.
1913         (alpha_links_base): Remove.
1914         (alpha_links): New.
1915         (mark_alpha_links_node, mark_alpha_links): New.
1916         (alpha_write_one_linkage): New.
1917         (alpha_need_linkage): Use a splay tree.  Build the linkage symbol.
1918         (alpha_write_linkage): Use splay_tree_foreach.
1919         * config/alpha/alpha.md (call_vms): Use alpha_need_linkage
1920         to get the linkage symbol.
1921         (call_value_vms): Likewise.
1922         * config/alpha/elf.h (output_file_directive): Remove decl.
1923         (ctors_section, dtors_section): Prototype.
1924         (sbss_section, sdata_section): Prototype.
1925         * config/alpha/vms.h (FUNCTION_ARG): Remove.
1926         (readonly_section, link_section, literals_section): Prototype.
1927         (ctors_section, dtors_section): Prototype.
1928         (vms_valid_decl_attribute_p): Remove decl.
1929         (alpha_arg_type, alpha_arg_info_reg_val): Likewise.
1930
1931 2000-05-27  Geoff Keating  <geoffk@cygnus.com>
1932
1933         * reload.c (get_secondary_mem): Don't widen floating-point modes.
1934
1935         * combine.c (subst): Honour CLASS_CANNOT_CHANGE_SIZE when
1936         substituting the REG in a (subreg:X (reg:Y ...)).
1937
1938 2000-05-28  Neil Booth  <NeilB@earthling.net>
1939
1940         * cpplex.c (_cpp_lex_line): Merge vertical space.  Flag
1941         first token of a line BOL.  Update EOF code for this.
1942         Remove illegal directive check - it appears in the (not
1943         yet committed) caller.
1944         * cpplib.h (BOL): New flag.
1945
1946 2000-05-28  Neil Booth  <NeilB@earthling.net>
1947
1948         * cpplex.c (_cpp_init_toklist): No comment space to initialise.
1949         (_cpp_free_toklist): No comment space to free.
1950         (expand_comment_space): Remove.
1951         (save_comment_space): Place the comment in the current token and
1952         not in a separate comment space.
1953         (_cpp_lex_line): Save comments during plain code and #define
1954         directives only.
1955         * cpplib.h (struct _cpp_toklist): Remove comment space.
1956
1957 2000-05-28  Neil Booth  <NeilB@earthling.net>
1958
1959         * cppexp.c (parse_assertion): Supply extra argument to
1960         _cpp_init_toklist.
1961         * cpplib.c (do_assert, do_unassert): Similarly.
1962         * cpphash.h (_cpp_init_toklist) Update.
1963         (_cpp_expand_token_space): New.
1964         (DUMMY_TOKEN, NO_DUMMY_TOKEN): New.
1965         * cpplex.c (_cpp_init_toklist): New argument.
1966         (parse_string2): New argument multiline_ok.
1967         (spell_token): Take a const cpp_token *.
1968         (INIT_NAME): Replace with INIT_TOKEN_NAME.  Update tokens_used.
1969         (SPELL_ macros): Replace with enum.
1970         (expand_token_space): Replace with _cpp_expand_token_space.
1971         Take COUNT argument.
1972         (IS_DIRECTIVE): Update.
1973         (_cpp_lex_line): Update token structure before parsing number.
1974         Don't assume start at beginning of token list.
1975         (save_comment): Use INIT_TOKEN_NAME.
1976
1977 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
1978
1979         * configure.in (stage1_warn_cflags): Add -Wstrict-prototypes
1980         -Wmissing-prototypes.
1981         * configure: Regenerate.
1982         * gcc.texi: Remove explanation of MD_CALL_PROTOTYPES.
1983
1984         * builtins.c, calls.c: Change all instances of gen_call_* or
1985         gen_sibcall_* to GEN_CALL_* and GEN_SIBCALL_*.
1986         * calls.c (struct_value_size_rtx): Separate definition from
1987         initialization to avoid unused variable warning.
1988
1989         * genflags.c (gen_macro): New function.
1990         (gen_proto): Call it for gen_call_* and gen_sibcall_*.
1991         (gen_nonproto): Delete.
1992         (gen_insn): Put all insns on the same obstack.
1993         (main): Generate prototypes for everything unconditionally.
1994
1995         * configure.in: Add AC_CHECK_TYPE(ssize_t).  Remove commented
1996         out check for wchar_t.
1997         * acconfig.h: Add template for ssize_t.  Remove @TOP@.
1998         * system.h: Add infrastructure for defining missing
1999         TYPE_MAX/TYPE_MIN macros.  Use it to provide fallback
2000         definitions of UCHAR_MAX and SSIZE_MAX.
2001         * configure: Regenerate.
2002         * config.in: Regenerate.
2003
2004         * Makefile.in (libgcc2.ready): Rename to libgcc.ready.
2005         Depend on $(LANGUAGES) as well as $(GCC_PATCHES) and fixed
2006         headers.
2007         (clean): No need to delete libgcc1.a, libgcc1-asm.a,
2008         libgcc2.a, or libgcc1.null.
2009
2010 2000-05-27  Richard Henderson  <rth@cygnus.com>
2011
2012         * Makefile.in (recog.o): Don't depend on resource.h.
2013         * recog.c: Don't include resource.h.
2014         (recog_last_allowed_insn): Remove.
2015         (recog_next_insn): Remove.
2016         (struct peep2_insn_data): New.
2017         (peep2_insn_data, peep2_current): New.
2018         (peep2_next_insn): New.
2019         (peep2_regno_dead_p, peep2_reg_dead_p): New.
2020         (peep2_find_free_register): New.
2021         (peephole2_optimize): Track life information by insn as we go.
2022         * recog.h: Update declarations.
2023         * resource.c (find_free_register, reg_dead_p): Remove.
2024         * resource.h: Remove their declarations.
2025         * toplev.c: Include hard-reg-set.h before recog.h.
2026
2027         * genconfig.c (max_insns_per_peep2): New.
2028         (gen_peephole2): New.
2029         (main): Call it.
2030         * genemit.c (output_peephole2_scratches): Generate calls to
2031         peep2_find_free_register; adjust surrounding code.
2032         (main): Have insn-emit.c include hard-reg-set.h before recog.h.
2033         * genrecog.c (change_state): Don't track last_insn.
2034         (write_action): Write into *_pmatch_len before accepting.
2035         (write_tree): Adjust peephole2_insns and subroutines to match.
2036
2037         * config/i386/i386.md (all peepholes): Use peep2_regno_dead_p.
2038
2039         * config/alpha/alpha.c (hard_fp_register_operand): Mind the mode.
2040         (hard_int_register_operand): New.
2041         * config/alpha/alpha-protos.h: Declare it.
2042         * config/alpha/alpha.h (PREDICATE_CODES): Update.
2043         * config/alpha/alpha.md (peep2 patterns): Use hard_int_register_operand
2044         as needed; use peep2_reg_dead_p instead of dead_or_set_p.
2045
2046 2000-05-27  Richard Henderson  <rth@cygnus.com>
2047
2048         * function.c (thread_prologue_epilogue_insns): Don't move the
2049         line note at the head of the chain.  Only force a lineno note
2050         before the end of block 0.
2051
2052 2000-05-27  Richard Henderson  <rth@cygnus.com>
2053
2054         * gensupport.c (collect_insn_data): Record the maximum number
2055         of alternatives, not the last seen.
2056
2057         * genoutput.c: Don't include errors.h.
2058         (struct data): Add lineno member.
2059         (have_error): New.
2060         (scan_operands): Use message_with_line instead of error.
2061         (validate_insn_alternatives): Likewise.
2062         (gen_insn): Accept and store the pattern's line number.
2063         (gen_peephole, gen_expand, gen_split): Likewise.
2064         (main): Don't set progname.  Pass line_no to gen_foo.
2065
2066 2000-05-27  Richard Henderson  <rth@cygnus.com>
2067
2068         * config/d30v/d30v.c (d30v_print_operand): Handle ':'.
2069         * config/d30v/d30v.h (PRINT_OPERAND_PUNCT_VALID_P): Accept ':'.
2070         * config/d30v/d30v.md (attr predicable): New.
2071         (all insn patterns): Mark non-predicable patterns; use %: on the rest.
2072         (andsi3*): Unify into one pattern.
2073         (iorsi3*, xorsi3*): Likewise.
2074         (peephole2 patterns): Use peep2_reg_dead_p; verify not a
2075         conditional return.
2076         (old cond_exec patterns): Remove.
2077         (define_cond_exec): New.
2078
2079 Sat May 27 11:01:27 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2080
2081         * tree.h (TREE_CODE_LENGTH): New macro.
2082         * c-common.c (c_find_base_decl): Use it.
2083         * expr.c (safe_from_p): Likewise.
2084         * print-tree.c (print_node): Likewise.
2085         * tree.c (make_node, copy_node, get_identifier): Likewie.
2086         (first_rtl_op, contains_placeholder_p, substitute_in_expr): Likewise.
2087         (build, build_nt, build_parse_node, simple_cst_equal): Likewise.
2088         * fold-const.c (make_range): Likewise.
2089         (fold): Likewise; also use first_rtl_op.
2090         * c-iterate.c (collect_iterators): Use first_rtl_op.
2091         * calls.c (calls_function_1): Likewise; also rename TYPE to CLASS.
2092         Use IS_EXPR_CODE_CLASS.
2093         (preexpand_calls): Likewise.
2094         * ggc-common.c (ggc_mark_trees): Rework to use first_rtl_op
2095         and TREE_CODE_LENGTH.
2096         * stmt.c (warn_if_unused_value): If no operands, no unused value.
2097
2098 2000-05-26  Geoffrey Keating  <geoffk@cygnus.com>
2099
2100         * config/rs6000/rs6000.md (movsi_internal1): Use '%a1' rather
2101         than '%1(%*)'.
2102         (movdi_internal64): Likewise.
2103
2104         * config/rs6000/rs6000.md: Correct order of operands for DImode
2105         boolean patterns.
2106
2107         * config/rs6000/rs6000.c (boolean_or_operator): New function.
2108         * config/rs6000/rs6000-protos.h (boolean_or_operator): Prototype it.
2109         * config/rs6000/rs6000.h (PREDICATE_CODES): Add boolean_or_operator.
2110         * config/rs6000/rs6000.md: Use boolean_or_operator instead of
2111         boolean_operator for the boolean patterns without NOTs.
2112
2113         * config/rs6000/rs6000.c (reg_or_logical_cint_operand): Rename
2114         from reg_or_u_cint_operand.  Change comment and behaviour.
2115         (logical_operand): Clean up, add assertion.
2116         (non_logical_cint_operand): Also check for
2117         reg_or_logical_cint_operand.
2118         * config/rs6000/rs6000.h (PREDICATE_CODES): Update.
2119         * config/rs6000/rs6000.md (iorsi3): Use reg_or_logical_cint_operand
2120         in the expander.
2121         (xorsi3): Likewise.
2122         (iordi3): Likewise.
2123         (xordi3): Likewise.
2124
2125 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
2126
2127         * tree.h (struct record_layout_info): Rename to (struct
2128         record_layout_info_s).
2129         * stor-layout.c (start_record_layout): Replace
2130         `record_layout_info' with `record_layout_info_s'.
2131
2132 2000-05-26  Richard Earnshaw  <rearnsha@arm.com>
2133
2134         * flow.c (find_label_refs): New function.
2135         (find_basic_blocks_1): Call it for each alternative of a call
2136         placeholder.
2137
2138 2000-05-26  Richard Earnshaw  <rearnsha@arm.com>
2139
2140         * ifcvt.c (cond_exec_get_condition): Set test_if to the SET_SRC
2141         of get_pc.
2142
2143 2000-05-25  Richard Henderson  <rth@cygnus.com>
2144
2145         * config/alpha/alpha.c (alpha_comparison_operator): Don't be
2146         so strict about DImode.
2147         (alpha_swapped_comparison_operator): Likewise.
2148         * config/alpha/alpha.md (*setne_internal): Name it.  Allow
2149         any integer output mode.
2150         (*setcc_internal): Likewise.
2151         (*setcc_swapped_internal): Likewise.
2152         (*movdicc_internal, *movdicc_lbc, *movdicc_lbs): Name them.
2153         (*mov[qhs]icc_internal): New.
2154         (*mov[qhs]icc_lbc, *mov[qhs]icc_lbs): New.
2155
2156 2000-05-25  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2157
2158         * vax.h (CPP_SPEC): Define __GFLOAT and GFLOAT when -mg is specified.
2159
2160 2000-05-25  Richard Henderson  <rth@cygnus.com>
2161
2162         * bb-reorder.c (reorder_block_def): Reorder elements for size.
2163         Remove add_jump; add next; replace flags with visited.
2164         (rbd_init): Remove.
2165         (REORDER_BLOCK_HEAD, REORDER_BLOCK_VISITED): Remove.
2166         (REORDER_BLOCK_FLAGS, REORDER_BLOCK_INDEX): Remove.
2167         (REORDER_BLOCK_ADD_JUMP, REORDER_BLOCK_EFF_HEAD): Remove.
2168         (REORDER_BLOCK_EFF_END, REORDER_BLOCK_SCOPE): Remove.
2169         (RBI): New.
2170         (reorder_index, reorder_last_visited): Remove.
2171         (skip_insns_after_block): Rewrite to use a switch.
2172         (get_common_dest): Remove.
2173         (chain_reorder_blocks): Remove.
2174         (record_effective_endpoints): Split out from reorder_basic_blocks.
2175         (make_reorder_chain): Likewise.  Loop until all blocks are placed.
2176         (make_reorder_chain_1): Renamed from old make_reorder_chain.
2177         Only construct the reorder chain, do not move insns.  Try harder
2178         to tail recurse.
2179         (label_for_bb, emit_jump_to_block_after): New.
2180         (fixup_reorder_chain): Use them.  Do bulk block movement.  Examine
2181         and adjust the jump insns appropriately.  Fixup basic_block_info.
2182         (verify_insn_chain): Always define.
2183         (relate_bbs_with_scopes): Call xmalloc, not xcalloc.  Fix thinko
2184         in allocation size.
2185         (make_new_scope): Don't write zeros to calloc'd space.
2186         (build_scope_forest): Rely on xrealloc to DTRT.
2187         (reorder_basic_blocks): Don't build loop nest.  Don't fail if
2188         profile_arc_flag.  Streamline EH test.
2189
2190         * flow.c (redirect_edge_succ, redirect_edge_pred): New.
2191         * basic-block.h: Declare them.
2192
2193 2000-05-25  Alexandre Oliva  <aoliva@cygnus.com>
2194
2195         * emit-rtl.c (reset_used_decls): New function.
2196         (unshare_all_rtl_again): Call it.
2197
2198 2000-05-25  Zack Weinberg  <zack@wolery.cumb.org>
2199
2200         * cpplex.c (maybe_macroexpand): Warn about function-like
2201         macros used in non-function context, if -Wtraditional.
2202
2203 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
2204
2205         * recog.c (peephole2_optimize): Use INSN_P.
2206
2207 2000-05-25  Richard Henderson  <rth@cygnus.com>
2208
2209         * ifcvt.c (seq_contains_jump): New.
2210         (noce_try_store_flag_constants): Use it to fail conversion.
2211         (noce_try_store_flag_inc, noce_try_store_flag_mask): Likewise.
2212
2213 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
2214
2215         * except.h (can_throw): Declare it.
2216         * except.c (can_throw): Give it external linkage.
2217         * resource.c (find_dead_or_set_registers): Use can_throw.
2218
2219 2000-05-25  Richard Henderson  <rth@cygnus.com>
2220
2221         * flow.c (mark_set_1): Don't record conditionally dead memory.
2222
2223 2000-05-25  Jan Hubicka  <jh@suse.cz>
2224
2225         * combine.c (try_combine): Use any_condjump_p, any_uncondjump_p
2226         and pc_set at the place of simplejump_p and condjump_p.
2227         * cse.c (record_jump_equiv): Likewise.
2228         * emit-rtl.c (emit): Likewise.
2229         * explow.c (find_next_ref): Likewise.
2230         * flow.c (tidy_fallthru_edge): Likewise.
2231         (init_propagate_block_info): Likewise.
2232         * gcse.c (delete_null_pointer_checks): Likewise.
2233         * ifcvt.c (cond_exec_get_condition, noce_get_condition,
2234         dead_or_predicable): Likewise.
2235         * integrate.c (copy_insn_list): Likewise.
2236         * loop.c (scan_loop, verify_dominator, find_and_verify_loops,
2237         for_each_insn_in_loop, check_dbra_loop, get_condition,
2238         insert_bct, load_mems): Likewise.
2239         * resource.c (find_dead_or_set_registers): Likewise.
2240         * sibcalls.c (simplejump_p): Likewise.
2241         * unroll.c (copy_loop_body, reg_dead_after_loop): Likewise.
2242
2243 2000-05-25  David Edelsohn  <edelsohn@gnu.org>
2244
2245         * rs6000.c (expand_block_move): Add 64-bit PowerPC doubleword move
2246         to STRING case.  Use doubleword STRING move for TARGET_POWERPC64
2247         when unaligned.
2248         * rs6000.h (CONST_OK_FOR_LETTER_P, 'J'): unsigned HOST_WIDE_INT.
2249         (RETURN_ADDR_RTX): Use COUNT and FRAME, not count and frame.
2250         (LEGITIMIZE_RELOAD_ADDRESS): unsigned HOST_WIDE_INT high.
2251         * rs6000.md: Name various internal patterns.
2252
2253 2000-05-25  Jan Hubicka  <jh@suse.cz>
2254
2255         * jump.c (invert_exp_1): Remove first argument, use pc_set
2256         to get the expression.
2257         (redirect_exp): Make static; redirect only the pc_set expression,
2258         remove first argument.
2259         (invert_exp): Remove first argument, make static.
2260         (jump_optimize): Use any_condjump_p, any_uncondjump_p and
2261         any_onlyjump at most places where we originaly did condjump_p
2262         and simplejump_p.
2263         (jump_back_p, follow_jumps, thread_jumps): Likewise.
2264         (delete_barrier_succesors): Use pc_set.
2265         (invert_jump_1, invert_jump, redirect_jump_1, redirect_jump): Update
2266         calls of invert_exp and redirect_exp.
2267         * rtl.h (redirect_exp, invert_exp): Remove.
2268         * unroll.c (copy_loop_body): Use invert_jump and redirect_jump.
2269
2270 2000-05-25  Richard Henderson  <rth@cygnus.com>
2271
2272         * stmt.c (expand_end_bindings): Fix thinko last change.
2273
2274 2000-05-25  Andrew MacLeod  <amacleod@cygnus.com>
2275             Andrew Haley  <aph@cygnus.com>
2276
2277         * except.c  (func_eh_entry): Add emitted field.
2278         (new_eh_region_entry): Set emitted field to 0;
2279         (output_exception_table_entry): Only emit previously un-emitted data,
2280         and send it to the eh_data section.
2281         (output_exception_table): Break out common parts. Output
2282         exception table for entire compilation unit to eh_data section.
2283         (output_exception_table_data): Common parts of output_exception_table.
2284         Send output to eh_data section.
2285         (output_function_exception_table): Output exception table data for
2286         a single function to eh_data section.
2287         (free_exception_table): New external to free the table.
2288         * except.h (free_exception_table): Add prototype.
2289         (output_function_exception_table): Add prototype.
2290         * final.c (final_end_function): Output function exception table
2291         for IA64_UNWIND_INFO.
2292         (final_scan_insn): Emit any unwind directives for an insn.
2293
2294         * frame-dwarf2.c: New file containing all DWARF 2 specific code
2295         from frame.c.
2296         * frame.c: Remove all DWARF 2 specific code.
2297         * config/ia64/frame-ia64.c: New file.
2298         (gthread_stuff): Make all gthread available with
2299         IA64_UNWIND_INFO.
2300         (dwarf_fde): Define an IA64 struct for dwarf_fde.
2301         (__register_frame_info, __register_frame): Move to common area of file.
2302         (__register_frame_info_table, __register_frame_table): Move to common i
2303         area.
2304         (__deregister_frame_info, __deregister_frame): Move to common area.
2305         (__frame_init, find_fde): New versions for IA64_UNWIND_INFO.
2306         (read_uleb128): New version for ia64.
2307         (get_unwind_record): Read the next IA-64 unwind record.
2308         (read_R_record): Read a region header record.
2309         (process_a_b_reg_code): X record helper.
2310         (read_X_record): Read an X format record.
2311         (read_B_record): Read a B format record.
2312         (P3_record_types): List of record types matching the P3 format.
2313         (P7_record_types): List of record types matching the P7 format.
2314         (P8_record_types): List of record types matching the P8 format.
2315         (read_P_record): Read a P format record.
2316         (init_ia64_reg_loc): Set default fields for a register.
2317         (init_ia64_unwind_frame): Set defaults for all register records.
2318         (execute_one_ia64_descriptor): Execute one descriptor record.
2319         (rse_address_add): Calculate the position of a local reg in memory.
2320         (normalize_reg_loc): Turn a location descriptor into a memory address.
2321         (maybe_normalize_reg_loc): Only normalize a descriptor if it falls
2322         within a specified PC offset range.
2323         (get_real_reg_value): Given a register location, retrieve its value.
2324         (set_real_reg_value): Change the value of a register location.
2325         (copy_reg_value): Copy reg values, if needed.
2326         (copy_saved_reg_state): Copy all registers that need to be copied.
2327         (process_state_between): Normalize all frame register records that
2328         fall within the specified PC range.
2329         (frame_translate): Take a processed frame description, and turn
2330         everything into addresses.
2331         (build_ia64_frame_state ): Find and create frame state record for a PC.
2332         (get_personality): Get the personality routine for a given frame.
2333         (get_except_table): Get the exception table for a given frame.
2334         (record_name): Unwind record names for debugging.
2335         (print_record): Print and unwind record.
2336         (print_all_records): Print an entire unwind image.
2337         (__ia64_backtrace): Print a backtrace.
2338         (ia64_backtrace_helper): New function.
2339         (__register_frame_info_aux): New function.
2340         * config/ia64/crtend.asm (__do_frame_setup_aux): New function.
2341
2342         * frame.h (enum unw_record_type): New unwind record types.
2343         (struct unw_p_record, unw_b_record, unw_x_record) : New unwind records.
2344         (struct unw_r_record, unwind_record): New unwind record structs.
2345         (struct unwind_info_ptr): Unwind information layout.
2346         (IA64_UNW_LOC_TYPE_*): Macros for different types for location
2347         descriptors.
2348         (struct ia64_reg_loc): Register location description.
2349         (struct ia64_frame_state): Location of all registers in a frame.
2350         (struct object): Add pc_base and fde_end for IA64_UNWIND_INFO.
2351         * libgcc2.c (__ia64_personality_v1): Personality routine.
2352         (__calc_caller_bsp): Calculate the bsp register for the caller's
2353         frame.
2354         (ia64_throw_helper): Figure out who to return to and set up the
2355         registers.
2356         (__throw): Throw routine.
2357
2358         * output.h (assemble_eh_align, assemble_eh_label): New functions
2359         to generate EH info where we want it.
2360         (assemble_eh_integer): New function.
2361         * toplev.c (compile_file): Output module level exception table for
2362         non-ia64 targets.
2363         (main): Set exceptions_via_longjump and flag_new_exceptions based
2364         on IA64_UNWIND_INFO too.
2365
2366         * varasm.c (assemble_eh_label): Generate a label via
2367         ASM_OUTPUT_EH_LABEL if it has been specified.
2368         (assemble_eh_align): Generate an alignment directive via
2369         ASM_OUTPUT_EH_ALIGN if it has been specified.
2370         (assemble_eh_label): Generate an integer value via
2371         ASM_OUTPUT_EH_type if they have been specified.
2372         * config/ia64/ia64.c (rtx_needs_barrier): Add flushrs.
2373         (ia64_init_builtins): Add __builtin_ia64_bsp
2374         and __builtin_ia64_flushrs.
2375         (ia64_expand_builtin): Add IA64_BUILTIN_BSP and
2376         IA64_BUILTIN_FLUSHRS.
2377         * config/ia64/ia64.h (ia64_builtins): Add IA64_BUILTIN_BSP and
2378         IA64_BUILTIN_FLUSHRS.
2379
2380         * config/ia64/ia64.md (flushrs): New insn to flush the register
2381         stack.  Add to unspec list.
2382
2383         * config/ia64/crtbegin.asm (frame_object): Change size.
2384         (__do_frame_setup_aux): New function.
2385         * config/ia64/crtend.asm: call __do_frame_setup_aux.
2386         * config/ia64/t-ia64 (LIB2ADDEH): Add.
2387         * Makefile.in (LIB2ADDEH): Add.
2388         (LIB2ADD): Use LIB2ADDEH.
2389
2390 2000-05-24  Richard Henderson  <rth@cygnus.com>
2391
2392         * recog.c (offsettable_address_p): If mode size is zero, assume
2393         BIGGEST_ALIGNMENT.
2394
2395 2000-05-24  J. David Anglin  <dave@hiauly.hia.nrc.ca>
2396
2397         * configure.in: Check for -Wno-long-long option support and improve
2398         handling of warning CFLAGS for stages 1 and 2.
2399         * Makefile.in (WARN_CFLAGS): Move definition to configure.in.
2400         * configure: Regenerate.
2401
2402 Wed May 24 19:37:53 2000  Jeffrey A Law  (law@cygnus.com)
2403
2404         * gcc.texi: Remove contributor list.  Instead include contrib.texi.
2405         * contrib.texi: New file.
2406
2407 Thu May 25 02:27:22 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
2408
2409         * loop.c (basic_induction_var): Avoid double recording of an increment.
2410
2411 Thu May 25 02:19:27 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
2412
2413         * Back out this patch:
2414         Tue Dec  7 19:22:06 1999  Richard Henderson  <rth@cygnus.com>
2415           * loop.h (struct induction): Add multi_insn_incr.
2416           * loop.c (basic_induction_var): New multi_insn_incr argument.
2417           Set it if we search back through previous insns for the biv.
2418           (record_biv): New multi_insn_incr argument; fill in struct induction.
2419           (strength_reduce): Discard an iv with multiple bivs, any of
2420           which require multiple insns to increment.
2421
2422         * loop.c (check_insn_for_bivs): Remove bits copied from above patch.
2423
2424 Thu May 25 02:09:10 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
2425
2426         * rtl.h (loc_mentioned_in_p): Declare.
2427         * reload.c (loc_mentioned_in_p): Moved from here...
2428         * rtlanal.c (loc_mentioned_in_p): to here.  No longer static.
2429         Fix loop increment for 'E' handling.
2430         * loop.c (strength_reduce): When doing biv->giv conversion,
2431         take multi-insn biv increments into account.
2432
2433 2000-05-24  Jason Merrill  <jason@casey.soma.redhat.com>
2434
2435         * stmt.c (expand_end_bindings): Look through NOTEs to find a
2436         BARRIER.
2437
2438 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
2439
2440         * calls.c (expand_call): Handle cleanups in tail-recursion
2441         arguments analagously to cleanups in sibling calls.
2442
2443 2000-05-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2444
2445         * simplify-rtx.c: Rename macro SIGN_EXTEND to HWI_SIGN_EXTEND.
2446         All callers changed.
2447
2448 2000-05-24  Alexandre Oliva  <aoliva@cygnus.com>
2449
2450         * expr.c (expand_assignment, store_expr, expand_expr,
2451         expand_expr_unaligned): Set in_check_memory_usage while emitting
2452         chkr_check_addr libcall.
2453
2454 2000-05-24  Nick Clifton  <nickc@cygnus.com>
2455
2456         * fold-const.c (extract_muldiv): When constructing a
2457         multiplier/divisor, do not expect const_binop to correctly
2458         determine if overflow has occured, so check explicitly.
2459
2460 2000-05-24  Alexandre Oliva  <aoliva@cygnus.com>
2461
2462         * c-decl.c (build_enumerator): Don't modify the value's type,
2463         convert it.
2464
2465 2000-05-24  Andreas Jaeger  <aj@suse.de>
2466
2467         * mips.h (LINKER_ENDIAN_SPEC): Pass -EL to linker by default.
2468
2469 2000-05-24  Eric Christopher <echristo@cygnus.com>
2470
2471         * configure.in: Redefine inhibit_libc conditions.
2472         * libgcc2.c: Remove inhibit_libc conditional define.
2473         * configure: Regenerate.
2474
2475 2000-05-24  Phil Edwards  <pme@sourceware.cygnus.com>
2476
2477         * configure.in:  For --enable-languages=LIST, check for empty LIST.
2478         * configure:  Regenerate.
2479
2480 2000-05-24  Lars Brinkhoff  <lars@nocrew.org>
2481
2482         * pdp11.h (STACK_BOUNDARY): Define.
2483
2484 2000-05-24  Jakub Jelinek  <jakub@redhat.com>
2485
2486         * ifcvt.c (if_convert): Update life info globally.
2487
2488 2000-05-24  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
2489
2490         * emit-rtl.c (unshare_all_decls): New function.
2491         (unshare_all_rtl): Call it.
2492
2493 2000-05-23  Nick Clifton  <nickc@cygnus.com>
2494
2495         * configure.in: Treat 'strongarm' as if it were 'arm' when
2496         determining cpu type.
2497
2498         * configure: Regenerate.
2499
2500         * config/arm/arm.c: Change 'char *' to 'const char *' for cases
2501         where constant strings are involved.
2502
2503         * config/arm/arm.h (arm_condition_codes): Change type to 'const
2504         char *'.
2505
2506         * config/arm/arm-protos.h: Change 'char *' to 'const char *' for
2507         cases where constant strings are involved.
2508
2509 Tue May 23 15:08:31 2000  Clinton Popetz  <cpopetz@cygnus.com>
2510
2511         * config/sh/sh.c (gen_far_branch, split_branches): Update
2512         to reflect new prototypes for redirect_jump and invert_jump.
2513         (sh_insn_length_adjustment): Get rid of const warnings.
2514
2515 2000-05-23  Kazu Hirata  <kazu@hxi.com>
2516
2517         * invoke.texi (Options for Debugging Your Program or GCC): Update
2518         the names of dump files.
2519
2520 Tue May 23 13:58:52 2000  Philippe De Muyter  <phdm@macqel.be>
2521
2522         * configure.in (NO_MINUS_C_MINUS_O): Fix thinko in previous fix.
2523         * configure: Regenerated.
2524
2525 2000-05-23  Zack Weinberg  <zack@wolery.cumb.org>
2526
2527         * simplify-rtx.c (SIGN_EXTEND): New macro.
2528         (simplify_unary_operation, simplify_binary_operation,
2529         simplify_relational_operation): Use SIGN_EXTEND.  Make low
2530         halves of (low, high) pairs unsigned if they weren't already.
2531         (simplify_ternary_operation): Cast INTVAL to unsigned before
2532         comparing to a MODE_BITSIZE.
2533
2534 2000-05-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2535
2536         * aclocal.m4 (gcc_AC_CHECK_DECL, gcc_AC_CHECK_DECLS): New macros
2537         rewritten from the internals of gcc_AC_NEED_DECLARATION{S}.
2538
2539         * configure.in (gcc_AC_CHECK_DECLS): Call this instead of
2540         gcc_AC_NEED_DECLARATIONS.
2541
2542         * dwarfout.c: Don't prototype time().
2543
2544         * gcc.c: Check HAVE_DECL_* instead of NEED_DECLARATION_*.
2545
2546         * system.h: Likewise.
2547
2548         * toplev.c: Likewise.
2549
2550 2000-05-23  Zack Weinberg  <zack@wolery.cumb.org>
2551
2552         * c-decl.c (pushdecl): Invert sense of test for non-global types.
2553
2554 Tue May 23 18:11:42 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
2555
2556         * reload1.c (reload_cse_move2add): Honor TRULY_NOOP_TRUNCATION.
2557
2558 2000-05-23  Jonathan Larmour  <jlarmour@redhat.co.uk>
2559
2560         * config/mips/elf64.h (CTOR_LISTS_DEFINED_EXTERNALLY): Define
2561
2562 Tue May 23 06:50:29 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2563
2564         * config/alpha/alpha.c: Remove #ifdef HAIFA since now only scheduler.
2565         (alpha_start_function): Never write ..ng label if VMS or NT.
2566         (alpha_align_insns): Remove GP_IN_USE arg.
2567         Alignment now unsigned.
2568         (alpha_reorg): Don't pass GP_IN_USE arg to alpha_align_insns.
2569         * config/alpha/alpha.md (prologue_ldgp): Split into one define_expand
2570         and two define_insn's.
2571
2572 2000-05-22  Richard Henderson  <rth@cygnus.com>
2573
2574         * combine.c (simplify_comparison): Use trunc_int_for_mode.
2575
2576 2000-05-22  Richard Henderson  <rth@cygnus.com>
2577
2578         * stor-layout.c (place_field): Change rli->size to rli->offset.
2579
2580 2000-05-22  Richard Henderson  <rth@cygnus.com>
2581
2582         * function.c (thread_prologue_and_epilogue_insns): Make sure
2583         existing line number notes appear after the prologue.
2584
2585 Mon May 22 21:49:00 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2586
2587         * config/alpha/alpha.c (alpha_fnname): New static variable.
2588         (print_operand, case '~'): New case.
2589         (alpha_expand_prologue): Emit prologue_ldgp insn if needed.
2590         (alpha_start_function): Set alpha_fnname.
2591         Write "ng" label if no ldgp; don't write ldgp insn.
2592         * config/alpha/alpha.h (PRINT_OPERAND_PUNCT_VALID_P): New case '~'.
2593         * config/alpha/alpha.md (prologue_ldgp): New define_insn.
2594
2595 Mon May 22 11:30:48 2000  Clinton Popetz  <cpopetz@cygnus.com>
2596
2597         * jump.c (jump_optimize_1): Don't increment LABEL_NUSES
2598         on deleted labels.
2599
2600 2000-05-22  Zack Weinberg  <zack@wolery.cumb.org>
2601
2602         * varasm.c (eh_frame_section): Revert change to argument list.
2603
2604 Mon May 22 13:14:03 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2605
2606         * optabs.c (can_extend_p): Allow unsignedp to have any nonzero value.
2607         (gen_extend_insn, can_fix_p, can_float_p): Likewise.
2608
2609         * final.c (final_scan_insn, case NOTE_INSN_FUNCTION_BEG): Remove
2610         dangling "else" that causes "break" to be conditional.
2611         Also remove unneeded code at start.
2612
2613 Mon May 22 17:31:35 2000  Philippe De Muyter  <phdm@macqel.be>
2614
2615         * m68k/m68k.h (STORE_FLAG_VALUE): Macro set to (-1), not -1.
2616         * fx80/fx80.h, i370/i370.h, m88k/m88k.h (STORE_FLAG_VALUE): Ditto.
2617         * gmicro/gmicro.h, we32k/we32k.h (STORE_FLAG_VALUE): Ditto.
2618
2619 2000-05-22  Jakub Jelinek  <jakub@redhat.com>
2620
2621         * config/sparc/sparc.md (movdf_insn_v9only_vis): fzero has
2622         just one argument.
2623
2624 Mon May 22 06:57:49 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2625
2626         * alias.c (record_component_aliases): New function.
2627         * tree.h: Clean up some declarations and comments.
2628         (record_component_aliases): New declaration.
2629         * tree.c (get_alias_set): If type and has alias set, use it.
2630
2631 2000-05-22  Richard Henderson  <rth@cygnus.com>
2632
2633         * simplify-rtx.c (simplify_ternary_operation): Try to simplify
2634         IF_THEN_ELSE to a setcc form.
2635         * jump.c (can_reverse_comparison_p): Be prepared for insn null.
2636
2637 2000-05-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2638
2639         * fixinc/inclhack.def (sun_malloc): Handle `calloc'.
2640         (sun_malloc, sysz_stdtypes_for_sun): Add test_text.
2641
2642 Sun May 21 16:42:31 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2643
2644         * combine.c (try_combine): Handle i3_subst_into_i2 case when I2 is
2645         not a PARALLEL.
2646
2647 2000-05-20  Alexandre Oliva  <aoliva@cygnus.com>
2648
2649         * config/mn10300/mn10300.md (movdi, movdf): 64-bit clean-up.
2650         * config/mn10300/mn10300.c (print_operand): Likewise.
2651
2652         * final.c (split_double): Right shift of negative values is not
2653         portable.
2654
2655         * ifcvt.c (if_convert): Scan and kill dead code.
2656
2657         * emit-rtl.c (unshare_all_rtl): Store the copied rtx.
2658
2659 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
2660
2661         * diagnostic.c: Eliminate implicit int.
2662         * except.c, gcc.c: Add static prototypes.
2663         * final.c (final_end_function): Mark file arg ATTRIBUTE_UNUSED.
2664         * gensupport.c (process_rtx): Use XVEC to initialize vector
2665         slot of 'split'.
2666
2667         * print-rtl.c: If DEBUG_REGISTER_NAMES, define static
2668         debug_reg_names instead of static reg_names.  If not, define
2669         global reg_names.
2670         * regclass.c: Don't define global reg_names unless
2671         DEBUG_REGISTER_NAMES is defined.
2672
2673         * reload1.c (order_regs_for_reload): Remove unused variable.
2674         * varasm.c: Include output.h after defaults.h.  Define
2675         eh_frame_section as function of no args, not of unspecified args.
2676
2677         * gcc.c: Constify argbuf; arguments to store_arg,
2678         process_command, main; elements of struct command and struct
2679         switchstr; local variables in execute, process_command, main.
2680
2681 2000-05-20  Bruce Korb  <bkorb@gnu.org>
2682
2683         * fixinc/inclhack.def:  many applications of c_fix=format + tests
2684         * fixinc/check.diff:  regenerated
2685         * fixinc/fixincl.x:  regenerated
2686
2687 Sat May 20 09:30:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2688
2689         * alias.c: Clarify some comments.
2690         (record_base_value): REGNO is unsigned.
2691         * rtl.h (record_base_value): Likewise.
2692
2693         * alias.c (aliases_everything_p): Don't special-case QImode here.
2694         * c-common.c (c_get_alias_set): Do it here.
2695         Handle BIT_FIELD_REF by getting alias info for arg.
2696         Use POINTER_TYPE_P.
2697
2698 2000-05-20  Alexandre Oliva  <aoliva@cygnus.com>
2699
2700         * mklibgcc.in: Restore rule to create ${dir}.
2701
2702 Sat May 20 08:45:41 2000  H.J. Lu  <hjl@gnu.org>
2703
2704         * Makefile.in (libgcc.mk): Depend on xgcc$(exeext) for
2705         GCC_FOR_TARGET used by MULTILIBS.
2706         * mklibgcc.in: Make sure each .o file depends on the
2707         directory it will be in.
2708         Make the multilib directory depends libgcc.
2709
2710 Sat May 20 08:29:28 2000  H.J. Lu  <hjl@gnu.org>
2711
2712         * Makefile.in (bootstrap): Unset LANG_LIB2FUNCS for stage 1.
2713
2714 Sat May 20 07:27:35 2000  Alexandre Oliva  <aoliva@cygnus.com>
2715
2716         * fold-const.c (make_range): Handle degenerated intervals.
2717         Fixes c-torture/execute/991221-1.c
2718
2719 Fri May 19 18:16:31 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2720
2721         * cse.c (cse_basic_block): Only call find_reg_note if REG_NOTES not 0.
2722         * reload.c (find_equiv_reg): Likewise.
2723         * alias.c (init_alias_analysis): Likewise.
2724         Only call prologue_epilogue_contains on insns.
2725         * basic-block.h (REG_SET_TO_HARD_REG_SET): Call new function.
2726         * bb-reorder.c (hard-reg-set.h): Include earlier.
2727         * haifa-sched.c (hard-reg-set.h): Likewise.
2728         * ifcvt.c (hard-reg-set.h): Likewise.
2729         * local-alloc.c (hard-reg-set.h): Likewise.
2730         * loop.c (hard-reg-set.h): Likewise.
2731         * predict.c (hard-reg-set.h): Likewise.
2732         * regrename.c (hard-reg-set.h): Likewise.
2733         * flow.c (hard-reg-set.h): Likewise.
2734         (reg_set_to_hard_reg_set): New function.
2735         * bitmap.c (regs.h, basic-block.h): No longer include.
2736         (bitmap.h): Now include.
2737         * conflict.c (hard-reg-set.h): Include.
2738         * profile.c (hard-reg-set.h): Likewise.
2739         * print-rtl.c (hard-reg-set.h): Likewise.
2740         * sbitmap.c (hard-reg-set.h): Likewise.
2741         * toplev.c (hard-reg-set.h): Likewise.
2742         * unroll.c (hard-reg-set.h, basic-block.h): Likewise.
2743         * hard-reg-set.h (reg_names): Now constant.
2744         * regs.h (reg_names): Likewise.
2745         * regclass.c (reg_names): Likewise.
2746         * loop.h (basic-block.h): No longer include.
2747         (bitmap.h): Now include.
2748         * reload1.c (order_regs_for_reload): Avoid loop over reg sets.
2749         * Makefile.in (LOOP_H, sbitmap.o, profile.o): Reflect above changes.
2750         (toplev.o, print-rtl.o, conflict.o, unroll.o, bitmap.o): Likewise.
2751
2752 2000-05-19  Jan Hubicka  <jh@suse.cz>
2753             Richard Henderson  <rth@cygnus.com>
2754
2755         * basic-block.h (struct edge_def): New field "count".
2756         (struct basic_block_def): Likewise.
2757         * flow.c (entry_exit_blocks): Add count fileds.
2758         (split_edge): Keep count information up-to-date.
2759         (dump_edge_info, dump_flow_info): Dump count fields.
2760
2761         * final.c (count_instrumented_edges): Rename to edge from arc.
2762         (end_final): Update users.
2763         * profile.c: Include expr.h, basic-block.h.
2764         (struct adj_list, ARC_TARGET, ARC_SOURCE, ARC_COUNT): Kill.
2765         (struct bb_info, label_to_bb, label_to_bb_size, bb_graph): Kill.
2766         (ignore_next_note, return_label_execution_count): Kill.
2767         (bbg_file_name, da_file_name): Kill.
2768         (edge_info, bb_info): New structures.
2769         (EDGE_INFO, BB_INFO, GCOV_INDEX_TO_BB, BB_TO_GCOV_INDEX): New macros.
2770         (count_instrumented_edges, total_num_edges): Rename to edge from arc.
2771         (total_num_edges_instrumented): Likewise.
2772         (init_arc, expand_spanning_tree): Kill.
2773         (fill_spanning_tree, tablejump_entry_p): Kill.
2774         (instrument_edges):  Rewrite from instrument_arcs to use
2775         commit_edge_insertions infrastructure.
2776         (compute_branch_probabilities): Remove arguments; rewrite for
2777         CFG infrastructure; use rtl_dump_file directly.
2778         (branch_prob, find_spanning_tree): Likewise.
2779         (union_groups, find_group): New.
2780         (init_branch_prob): Make bbg_file_name and da_file_name local.
2781         (end_branch_prob): Use rtl_dump_file directly.
2782         (init_edge_profiler): Rename to edge from arc.
2783         (output_arc_profiler): Kill.
2784         (gen_edge_profiler): New.
2785         (output_func_start_profiler): Turn off profiling.  Make the
2786         constructor static when we can.
2787         * rtl.h (branch_prob, end_branch_prob): Update prototypes.
2788
2789         * toplev.c (DFI_flow): Remove.
2790         (DFI_cfg, DFI_life): New.
2791         (dump_file): Update accordingly.
2792         (compile_file): Call end_branch_prob if profile_arc_flag too.
2793         (rest_of_compilation): Move flow1 cfg creation to DFI_cfg.  Do edge
2794         profiling after the CFG is built.  Move flow1 life analysis to
2795         DFI_life.  Always estimate remaining probabilities.
2796
2797 2000-05-19  Richard Henderson  <rth@cygnus.com>
2798
2799         * ifcvt.c (find_if_case_2): Don't allow THEN to be EXIT.
2800
2801         * flow.c (make_edges): The sibling call edge to exit is abnormal.
2802
2803 2000-05-19  Richard Henderson  <rth@cygnus.com>
2804
2805         * jump.c (redirect_jump): Add delete_unused argument.  Don't
2806         remove labels and code following when LABEL_NUSES goes to zero.
2807         (invert_jump): Likewise.
2808         (jump_optimize_1): Fix redirect/invert arguments.
2809         (do_cross_jump, thread_jumps): Likewise.
2810         * flow.c (split_edge): Likewise.
2811         * reorg.c (optimize_skip): Likewise.
2812         (reorg_redirect_jump, relax_delay_slots, dbr_schedule): Likewise.
2813         * profile.c (instrument_arcs): Likewise.
2814         * loop.c (find_and_verify_loops): Likewise.  Fix indentation.
2815         * rtl.h: Update prototypes.
2816
2817 Fri May 19 12:05:13 2000  Clinton Popetz  <cpopetz@cygnus.com>
2818
2819         * ssa.c (convert_from_ssa): Tell life_analysis we need death
2820         notes.
2821         (make_regs_equivalent_over_bad_edges): Only look at abnormal
2822         critical edges.
2823
2824 2000-05-19  Zack Weinberg  <zack@wolery.cumb.org>
2825
2826         * cpphash.c (funlike_macroexpand): Make sure not to walk p1
2827         past l1 when deleting whitespace and markers.
2828
2829         * cpplex.c (_cpp_scan_until): Clear AUX field of tokens.
2830         * cpplib.c (do_unassert): Put the list to compare against on
2831         the stack.
2832
2833 2000-05-19  Bruce Korb  <bkorb@gnu.org>
2834
2835         * fixinc/README:  cleaned up old documentation
2836         * fixinc/check.diff: regenerated & verified on OSR5 on ix86
2837         * fixinc/check.tpl: compute the list of needed directories
2838         emit "#if defined(name)" because of conflict
2839         omit machine name differences from output differences
2840         * fixinc/inclhack.def( m88k_multi_incl ):  Use `wrap' function
2841         (machine_name): change test text to use `sed' markers
2842         * fixinc/fixincl.x: regen
2843
2844 Fri May 19 06:49:35 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2845
2846         * config/elfos.h (SELECT_SECTION): Don't access DECL_INITIAL of
2847         a CONSTRUCTOR.
2848
2849 2000-05-18  Chris Demetriou  <cgd@sibyte.com>
2850
2851         * gcc.texi (MULTILIB_EXCEPTIONS): Correct example and update
2852         it to match the current practice.
2853
2854 2000-05-18  Mark Mitchell  <mark@codesourcery.com>
2855
2856         * Makefile.in (STAGESTUFF): Fix typo in spelling of s-under.
2857
2858 2000-05-18  Richard Henderson  <rth@cygnus.com>
2859
2860         * rtlanal.c (insn_dependant_p, insn_dependant_p_1): New.
2861         * rtl.h (insn_dependant_p): Declare it.
2862         * loop.c (strength_reduce): Use it.
2863
2864 2000-05-18  Alexandre Oliva  <aoliva@cygnus.com>
2865
2866         * config/mn10300/mn10300.c (expand_prologue, expand_epilogue):
2867         16-bit and 64-bit clean-up.
2868
2869 2000-05-18 Mark Elbrecht <snowball3@bigfoot.com>
2870
2871         * configure.in (*-pc-msdosdjgpp): Set float_format to none.
2872         * configure: Rebuilt.
2873
2874 2000-05-18  Zack Weinberg  <zack@wolery.cumb.org>
2875
2876         * genopinit.c: Use $ for escape sequences in optab patterns.
2877         Remove backslashes from optab patterns.  Change $A, $B, $C to
2878         expand to (int) whatever instead of just whatever; remove
2879         explicit (int) from all optab patterns.
2880
2881         * gensupport.c (xmalloc, xrealloc, xstrdup): Provide.
2882         * genattr.c, genattrtab.c, gencodes.c, genconfig.c, genemit.c,
2883         genextract.c, genflags.c, genopinit.c, genoutput.c, genpeep.c,
2884         genrecog.c: Remove private copies of xmalloc, xrealloc, and
2885         xstrdup.
2886
2887 2000-05-18  Richard Henderson  <rth@cygnus.com>
2888
2889         * jump.c (jump_optimize_1): Base minimum insn count during
2890         find_cross_jump on BRANCH_COST.
2891
2892 2000-05-18  Jakub Jelinek  <jakub@redhat.com>
2893
2894         * print-rtl.c (print_rtx): Only print note line number as string
2895         if between NOTE_INSN_BIAS and NOTE_INSN_MAX.
2896         * final.c (final_scan_insn): Do nothing for note line number 0.
2897
2898 2000-05-18  Jakub Jelinek  <jakub@redhat.com>
2899
2900         * gcc-common.c (ggc_mark_rtx_children): Mark NOTE_EXPECTED_VALUE
2901         from NOTE_INSN_EXPECTED_VALUE notes and NOTE_SOURCE_FILE from
2902         NOTE_INSN_DELETED_LABEL.
2903
2904 2000-05-18  Nick Clifton  <nickc@cygnus.com>
2905
2906         * config/arm/unknown-elf.h (UNIQUE_SECTION): Place constant,
2907         uninitialised data in .rodata not .bss, and do not interpret an
2908         error in the initialisation value as meaning that the variable
2909         should be placed in the .bss section.
2910
2911 Thu May 18 12:10:18 2000  Philippe De Muyter  <phdm@macqel.be>
2912
2913         * configure.in (NO_MINUS_C_MINUS_O): Test `$ac_cv_prog_cc_${ac_cc}_c_o',
2914         not `$ac_cv_prog_cc_cc_c_o'.
2915         * configure: Regenerated.
2916
2917 2000-05-18  Chris Demetriou  <cgd@sibyte.com>
2918             Richard Henderson  <rth@cygnus.com>
2919
2920         * c-common.h (enum c_tree_index): Add g77 type entries.
2921         (g77_integer_type_node, g77_uinteger_type_node): New.
2922         (g77_longint_type_node, g77_ulongint_type_node): New.
2923         * c-decl.c (init_decl_processing): Initialize them.
2924
2925 2000-05-18  Richard Henderson  <rth@cygnus.com>
2926
2927         * config/h8300/h8300.md (subs patterns): Use %G to negate.
2928
2929         * config/h8300/h8300.c (ok_for_bclr): Take a HOST_WIDE_INT.
2930         (small_power_of_two): Likewise; use exact_log2.
2931         (adds_subs_operand, one_insn_adds_subs_operand): Remove.
2932         (output_adds_subs): Remove.
2933         (two_insn_adds_subs_operand): New.
2934         (split_adds_subs): New.
2935         * config/h8300/h8300-protos.h: Update.
2936         * config/h8300/h8300.h (CONST_OK_FOR_J): Cast to uns HOST_WIDE_INT.
2937         (CONST_OK_FOR_L): Match strict adds operands.
2938         (CONST_OK_FOR_N): Match struct subs operands.
2939         * config/h8300/h8300.md (adds_subs insns): Remove.
2940         (addhi patterns): Output adds/subs directly.
2941         (addsi_h8300h): Likewise.
2942         (addhi/addsi splitters): New.  Decompose two_insn_adds_subs_operand.
2943
2944 2000-05-18  Zack Weinberg  <zack@wolery.cumb.org>
2945
2946         * cppexp.c (parse_assertion): New.
2947         (lex): Call it for CPP_HASH.  Remove CPP_ASSERTION case.
2948         (_cpp_parse_expr): Remove case '#'.  Don't set
2949         parsing_if_directive.
2950         * cpphash.c (collect_objlike_expansion,
2951         collect_funlike_expansion, collect_params,
2952         _cpp_create_definition): The list no longer has a trailing
2953         VSPACE token.
2954         * cpphash.h (enum node_type): Add T_ASSERTION.
2955         (struct hashnode): Remove aschain, add pred.
2956         (struct predicate): New.
2957         Update prototypes.
2958
2959         * cpplex.c (expand_token_space): Handle both offset and
2960         nonoffset lists.
2961         (init_token_list, _cpp_free_token_list, _cpp_parse_assertion): Delete.
2962         (_cpp_init_toklist, _cpp_clear_toklist, _cpp_free_toklist,
2963         _cpp_slice_toklist, _cpp_squeeze_toklist, _cpp_equiv_tokens,
2964         _cpp_equiv_toklists): New.
2965         (_cpp_scan_line): Rename to _cpp_scan_until; add ability to
2966         stop at any single-character token, not just newline.
2967         (_cpp_lex_token): Remove special cases for #define and #if.
2968         (cpp_get_token): Expect # as a separate token type.  Remove
2969         DIRECTIVE case.
2970         (_cpp_get_directive_token): Remove DIRECTIVE case.
2971         (_cpp_lex_line, _cpp_lex_file, _cpp_init_input_buffer): Update.
2972
2973         * cpplib.c (_cpp_check_directive): Set dirno and
2974         SYNTAX_INCLUDE bit of flags, not dir_handler and dir_flags.
2975         (_cpp_handle_directive): Run # <number> through the same logic
2976         as normal directives.
2977         (do_define): Don't set parsing_define_directive.  Use
2978         _cpp_scan_until.  The list does not have a VSPACE at the end.
2979         (do_if): Save, clear, and restore only_seen_white around
2980         _cpp_parse_expr.
2981         (skip_if_group): s/CPP_DIRECTIVE/CPP_HASH/
2982         (do_assert, do_unassert): Rewrite.
2983
2984         * cpplib.h (TTYPE_TABLE): Remove CPP_ASSERTION.
2985         (LIST_OFFSET): New flag.
2986         (struct cpp_toklist): Replace dir_handler and dir_flags with
2987         dirno and flags.
2988         (struct cpp_reader): Remove parsing_if_directive and
2989         parsing_define_directive.
2990
2991 2000-05-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2992
2993         * fixinc/inclhack.def (broken_cabs): Update fix to handle comments
2994         following the cabs decl which terminate on the following line.
2995         Add the corresponding test_text case.
2996
2997 2000-05-18  Neil Booth  <NeilB@earthling.net>
2998
2999         * cppinit.c (cpp_reader_init): Initialise col_adjust and
3000         default tab stop size.
3001         (no_num, OPT_ftabstop): New.
3002         (handle_option): Handle "ftabstop=" command-line option.
3003         (print_help): Document it.
3004         * cpplex.c (COLUMN): Remove.
3005         (handle_newline): Reset col_adjust.
3006         (skip_whitespace): Update col_adjust as tabs encountered.
3007         (_cpp_lex_line): Update to use col_adjust.  Call
3008         skip_whitespace for all whitespace.
3009         * cpplib.h (struct cpp_options): New member tabstop.
3010         (struct cpp_reader): New member col_adjust.
3011         (CPP_BUF_COL): Update.
3012         (CPP_BUF_COLUMN): New.
3013         * cpp.texi: Document "-ftabstop=" command line option.
3014
3015 Wed May 17 18:19:41 2000  Philippe De Muyter  <phdm@macqel.be>
3016
3017         * configure.in (NO_MINUS_C_MINUS_O): Macro made availabe for AC_OUTPUT
3018         files.
3019         * configure: Rebuilt.
3020
3021 Wed May 17 18:06:12 2000  John David Anglin <dave@hiauly1.hia.nrc.ca>
3022
3023         * mklibgcc.in Add missing -DL$name when compiling modules in libgcc1.c.
3024
3025         * tree.c (build_common_tree_nodes): Do not build TI nodes unless
3026         HOST_BITS_PER_WIDE_INT is >= 64.
3027
3028 2000-05-17  Richard Henderson  <rth@cygnus.com>
3029
3030         * jump.c (jump_optimize_1): Remove inactive but real insns
3031         in jump-to-next-insn optimization.
3032
3033 2000-05-17  Richard Henderson  <rth@cygnus.com>
3034
3035         * toplev.c (rest_of_compilation): Don't call optimize_mode_switching
3036         unless OPTIMIZE_MODE_SWITCHING.  Conditionally set no_new_pseudos.
3037         Don't call recompute_reg_usage if no_new_pseudos is true.
3038         * lcm.c (optimize_mode_switching): Move ifdefs outside function.
3039         Return true if we did work; update global life information.
3040         * basic-block.h (optimize_mode_switching): Update decl.
3041
3042 2000-05-17  Neil Booth  <neilb@earthling.net>
3043
3044         * cpplex.c (expand_name_space): Don't use ptrdiff_t.
3045
3046 2000-05-17  Zack Weinberg  <zack@wolery.cumb.org>
3047
3048         * cpplib.c: New feature, #pragma system_header.
3049         * cpp.texi: Document special treatment of system headers, and
3050         the various mechanisms to get a header that special treatment.
3051
3052 2000-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3053
3054         * system.h (offsetof): Define at the very end, to ensure we prefer
3055         the platform's definition if available.
3056
3057 2000-05-16  Bruce Korb  <bkorb@gnu.org>
3058
3059         * fixinc/fixincl.c: improve the debug displays, ignore SIGPIPE
3060         * fixinc/server.c: likewise
3061         * fixinc/fixfixes.c( char_macro_def_fix ): fix regex
3062         + #ifdef debugging code + use #def constant for
3063         sub-pattern count
3064         * fixinc/inclhack.def( hpux11_fabsf ): Keep HP-UX 11 from stomping
3065         on C++ math namespace
3066
3067 2000-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3068
3069         * fixinc/fixfixes.c (char_macro_use_fix, char_macro_def_fix):
3070         Don't check the return value of sprintf.  Use asprintf to avoid
3071         buffer overflows.
3072
3073 Wed May 17 17:27:44 2000  Andrew Cagney  <cagney@b1.cygnus.com>
3074
3075         * flags.h (warn_unused_function, warn_unused_label,
3076         warn_unused_parameter, warn_unused_variable, warn_unused_value):
3077         Replace ``warn_unused''.
3078         (set_Wunused): Add declaration.
3079         * toplev.c (set_Wunused): New function.
3080         (warn_unused_function, warn_unused_label, warn_unused_parameter,
3081         warn_unused_variable, warn_unused_value): New variables.
3082         (W_options): Add -Wunused-function, -Wunused-function,
3083         -Wunused-label, -Wunused-parameter, -Wunused-variable and
3084         -Wunused-value.  Delete -Wunused.  Handled in decode_W_option.
3085
3086         * toplev.c (decode_W_option): Update -Wunused flags by calling
3087         set_Wunused.
3088         * c-decl.c (c_decode_option): Ditto for -Wall.
3089
3090         * stmt.c (expand_expr_stmt, expand_expr_stmt,
3091         warn_about_unused_variables): Replace warn_unused with more
3092         explicit warn_unused_value et.al.
3093         * function.c (expand_function_end): Ditto.
3094         * c-typeck.c (internal_build_compound_expr,
3095         internal_build_compound_expr): Ditto.
3096         * c-decl.c (poplevel, pop_label_level): Ditto.
3097         * toplev.c (check_global_declarations): Replace warn_unused with
3098         check for either warn_unused_function or warn_unused_variable.
3099
3100         * gcc.1, invoke.texi (Warning Options): Document
3101         -Wunused-function, -Wunused-function, -Wunused-label,
3102         -Wunused-parameter, -Wunused-variable and -Wunused-value options.
3103
3104 Wed May 17 10:28:12 2000  Philippe De Muyter  <phdm@macqel.be>
3105
3106         * mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Find libgcc1.c in
3107         $(srcdir), not in the current directory.
3108
3109 2000-05-16  Richard Henderson  <rth@cygnus.com>
3110
3111         * config/ia64/crtbegin.asm (__dso_handle): Mark hidden if the
3112         assembler supports it.
3113         (.fini, .init): Use a gp-relative indirect call.
3114         (__do_global_dtors_aux): Preserve the gp; rebundle.
3115         (__do_frame_setup): Likewise.
3116         * config/ia64/crtend.asm (.IA_64.unwind): Don't terminate with -1.
3117         (.init): Use a gp-relative indirect call.
3118         (__do_global_ctors_aux): Preserve the gp.
3119
3120 2000-05-16  Richard Henderson  <rth@cygnus.com>
3121
3122         * flow.c (commit_one_edge_insertion): Be prepared for a return
3123         insn to be inserted on the edge with a normal jump.
3124         * jump.c (jump_optimize_1): Don't look to create return isns.
3125
3126         * flow.c (flow_delete_insn): Don't adjust reference count of notes.
3127         * jump.c (jump_optimize_1): Likewise.
3128         (returnjump_p): Verify the argument is a JUMP_INSN.
3129         * rtl.def (NOTE): Add 5th element for NOTE_INSN_DELETED_LABEL.
3130
3131 2000-05-16  Nick Clifton  <nickc@cygnus.com>
3132
3133         * config/m32r/m32r.c (small_insn_p): Use INSN_P() to replace
3134         GET_RTX_CLASS (GET_CODE ()) == 'i'.
3135         (large_insn_p): Ditto.
3136         (m32r_is_insn): New function: Return true if the insn contains
3137         an executable instruction.
3138         (m32r_adjust_insn): Use m32r_is_insn.
3139         (m32r_sched_reorder): Use m32r_is_insn.
3140         (m32r_sched_variable_issue): Use m32r_is_insn.
3141
3142 2000-05-16  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
3143
3144         * rs6000/rs6000.c (rs6000_select_section): Treat CONSTRUCTOR like
3145         VAR_DECL.
3146
3147         * rs6000/sysv4.h (ASM_OUTPUT_DWARF_ADDR): Delete unused variable.
3148
3149         * rs6000/sysv4.h (CPP_OS_LINUX_SPEC): Define __unix and __linux
3150         according to given options.
3151
3152 Tue May 16 12:17:31 2000  Jeffrey A Law  (law@cygnus.com)
3153
3154         * mn10200.h (PREFERRED_RELOAD_CLASS): Do not prefer DATA_REGS
3155         if X has VOIDmode either.
3156         (LIMIT_RELOAD_CLASS): Similarly.
3157
3158         * mn10200.md (indirect_jump, tablejump): Use "register_operand",
3159         not "general_operand" to match the processor's capabilities.
3160
3161 2000-05-16  Bruce Korb  <bkorb@gnu.org>
3162
3163         * fixinc/README:  corrected return address
3164         * fixinc/check.diff:  regenerate, now that test works
3165         * fixinc/fixfixes.c(format_fix,format_write): reformatted
3166         (char_macro_def_fix,char_macro_use_fix): corrected and
3167         rewrote to use regex to parse the text
3168         * fixinc/inclhack.def: more testing
3169         * fixinc/fixincl.x:  regenerated
3170
3171         * fixinc/inclhack.def: added several "test_text" attributes
3172         changed several fixes to use `c_fix = format'
3173         re-alphabetized the fixes
3174
3175         * fixinc/check.diff: regenerate
3176         * fixinc/fixincl.x: regenerate
3177         * fixinc/check.tpl: added `sparc' and `netinet' to the list
3178         of created dirs
3179
3180
3181 2000-05-16  Alexandre Oliva  <aoliva@cygnus.com>
3182
3183         * config/mn10300/mn10300.h (ASM_OUTPUT_DWARF2_ADDR_CONST): Remove.
3184
3185 2000-05-15  Richard Henderson  <rth@cygnus.com>
3186
3187         * toplev.c (rest_of_compilation): Run full jump pass before
3188         find_basic_blocks of flow2.
3189
3190 2000-05-15  Richard Henderson  <rth@cygnus.com>
3191
3192         * jump.c: Fix typos and clarify commentary from last change.
3193         (any_condjump_p): Verify SET_SRC is an IF_THEN_ELSE.
3194         (safe_to_remove_jump_p): Remove.
3195         (condjump_label): Use pc_set.
3196
3197 2000-05-15  Richard Henderson  <rth@cygnus.com>
3198
3199         * ifcvt.c (cond_exec_process_insns): Drop USE and CLOBBER insns
3200         that get in the way after reload.
3201         (cond_exec_process_if_block): Skip a label heading THEN block.
3202
3203 2000-05-15  Richard Henderson  <rth@cygnus.com>
3204
3205         * varasm.c (output_constant_pool): Abort instead of converting
3206         (improperly) deleted labels to zero.
3207
3208 2000-05-16  Neil Booth  <NeilB@earthling.net>
3209
3210         * cpplex.c (parse_string2): Update comment.
3211         (cpp_lex_line): No special assertion treatment for '('.
3212         * cpplib.c (DIRECTIVE_TABLE): Remove SYNTAX_ASSERT.
3213         * cpplib.h (SYNTAX_ASSERT): Remove.
3214
3215 Mon May 15 21:45:36 MET DST 2000  Jan Hubicka  <jh@suse.cz>
3216
3217         * jump.c (condjump_p):  Mark as depreached.
3218         (any_condump_p): New.
3219         (any_uncondump_p): New.
3220         (pc_set): New.
3221         (safe_to_remove_jump_p): New.
3222         * rtl.h (any_condump_p, any_uncondjump_p, pc_set
3223         safe_to_remove_jump_p): Declare.
3224
3225 Mon May 15 21:07:20 MET DST 2000  Jan Hubicka  <jh@suse.cz>
3226
3227         * calls.c: Re-install both patches reverted by last patch.
3228         (struct arg_data): New field tail_call_reg.
3229         (initialize_argument_information): Initialize tail_call_reg
3230         (load_register_parameters): New argument flags, use
3231         tail_call_reg when emiting tail call sequence.
3232         (expand_call): Update call of load_register_parameters;
3233         copy unadjusted_args_size to adjusted_args_size.
3234
3235 Mon May 15 19:01:42 MET DST 2000  Jan Hubicka  <jh@suse.cz>
3236
3237         * loop.c (scan_loop, strength_reduce, loop_optimize): Change unroll_p
3238         and bct_p parameters to flags.
3239         * loop.h (LOOP_UNROLL, LOOP_BCT): New constants.
3240         * rtl.h (loop_optimize): Update prototype.
3241         * toplev.c (rest_of_compilation): Update call of loop_optimize.
3242
3243 2000-05-15  Jakub Jelinek  <jakub@redhat.com>
3244
3245         * calls.c (expand_call): Move expand_start_target_temps call after
3246         start_sequence().
3247
3248 2000-05-15  Neil Booth  <NeilB@earthling.net>
3249
3250         * cpphash.c (trad_stringify, warn_trad_stringify,
3251         collect_params): Make some pointers pointers to const.
3252         * cpplex.c (auto_expand_name_space) Guaranteed to always
3253         expand by at least one character.
3254         (SPELL_CHAR, SPELL_NONE): Temporarily reverse order.
3255         (struct token_spelling): Use const U_CHAR * rather than PTR.
3256         (expand_name_space): Fix up token pointers if name space
3257         is moved when expanding.
3258         (INIT_NAME, cpp_scan_line, parse_name, parse_number,
3259         parse_string2, save_comment, spell_token, cpp_output_list):
3260         Update so the routines handle tokens with a direct pointer to
3261         their text, rather than an offset into the token's list's namebuf.
3262         (_cpp_lex_line): Rearrange for clarity.
3263
3264         * cpplib.c (_cpp_check_directive): Similarly.
3265         (do_define): Make SYM a pointer to const.
3266         * cpplib.h (struct cpp_name): Replace offset with direct pointer.
3267         (CPP_INT, CPP_FLOAT): Spelling type should be SPELL_IDENT.
3268         (TOK_OFFSET): Delete.
3269         (TOK_NAME): Update.
3270
3271 2000-05-14  Geoffrey Keating  <geoffk@cygnus.com>
3272
3273         * config/rs6000/rs6000.h (RETURN_ADDRESS_OFFSET): Correct for
3274         64-bit ABI.
3275
3276         * config/rs6000/rs6000.c (logical_operand): Rewrite to take MODE
3277         into account.
3278         (logical_u_operand): Delete.
3279         (non_logical_cint_operand): Rewrite to take MODE into account.
3280         (non_logical_u_cint_operand): Delete.
3281         (boolean_operator): New function.
3282         (print_operand): Add new %q operand.
3283         * config/rs6000/rs6000.h (PREDICATE_CODES): Add boolean_operator,
3284         remove logical_u_operand and non_logical_u_cint_operand,
3285         update logical_operand and non_logical_cint_operand.
3286         * config/rs6000/rs6000.md: Rewrite the patterns for performing
3287         logical operations to use %q.
3288
3289         * config/rs6000/rs6000.md (movsi): Don't modify RTL in-place.
3290         (movdi): Make similar to movsi.
3291         * config/rs6000/rs6000.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): There
3292         is no such thing as a DImode CONST_DOUBLE.
3293         * config/rs6000/rs6000.c (output_toc): Likewise.
3294
3295         * config/rs6000/rs6000.c (output_cbranch): Don't output prediction
3296         codes when old mnemonics are in use.  Print register names
3297         for cc registers when requested.
3298
3299         * optabs.c (expand_float): Don't allow mode widening that causes
3300         double rounding.
3301
3302         * invoke.texi (RS/6000 and PowerPC Options): Update -m64/-m32
3303         flags to their current names -maix64 and -maix32.
3304
3305 2000-05-14  Bruce Korb  <bkorb@gnu.org>
3306
3307         * fixinc/fixfixes.c(wrap_fix): new fix - inserts text before
3308         and/or after current text of file
3309         * fixinc/fixlib.c(must_malloc):
3310         * fixinc/fixlib.h(must_malloc): + reformatting
3311         * fixinc/inclhack.def: replace the "1i" and "$a" sed commands
3312         with usages of ``c_fix = wrap;''
3313         Add several tests and use the ``c_fix = format'' fixer more.
3314         * fixinc/fixincl.x: regen
3315         * fixinc/check.diff: regen
3316         * fixinc/check.tpl: emit the associated header with the missing
3317         test message
3318
3319 Sun May 14 17:58:59 2000  Hans-Peter Nilsson  <hp@axis.com>
3320
3321         * mklibgcc.in (building libgcc1) [Xlibgcc1.a]: Do not use unset
3322         variables $src and $dst.
3323
3324 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
3325
3326         * diagnostic.h (DIAGNOSTICS_SHOW_PREFIX_ONCE): New macro.
3327         (DIAGNOSTICS_SHOW_PREFIX_NEVER): Likewise.
3328         (DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE): Likewise.
3329         (struct output_buffer: emitted_prefix_p, prefixing_rule): New
3330         fields.
3331         (set_message_prefixing_rule): Declare.
3332
3333         * diagnostic.c: (current_prefixing_rule): New variable.
3334         (set_message_prefixing_rule): Define.
3335         (output_set_prefix): Adjust buffer->emitted_prefix_p.
3336         (init_output_buffer): Adjust Initialization.
3337         (output_emit_prefix): Rewrite.  Take prefixing rules into account.
3338
3339 Sat May 13 11:05:47 2000  Philippe De Muyter  <phdm@macqel.be>
3340
3341         * ifcvt.c (if_convert): Do not free NULL.
3342
3343 2000-05-12  Nick Clifton  <nickc@cygnus.com>
3344
3345         * config/fr30/fr30.c (fr30_move_double): New function:  Emit code
3346         to move a double word value.
3347         (di_operand): New function: Return true if the operand is suitbale
3348         for a double word move operation.
3349         (nonimmediate_di_operand): New function: Return true if the
3350         operand is a DImode register or MEM.
3351
3352         * config/fr30/fr30.h (PREDICATE_CODES): Add di_operand and
3353         nonimmediate_di_operand.
3354
3355         * config/fr30/fr30-protos.h Add fr30_move_double, di_operand, and
3356         nonimmediate_di_operand.
3357
3358         * config/fr30/fr30.md (movdi): New pattern.  Required because
3359         other patterns generate DImode results.
3360         (movdi_insn): New pattern.
3361
3362 2000-05-12  Richard Henderson  <rth@cygnus.com>
3363
3364         * config/alpha/alpha.c (struct shadow_summary): Define
3365         bitfields as type unsigned int.
3366
3367 Sat May 13 00:09:59 2000  Denis Chertykov  <denisc@overta.ru>
3368
3369         * config/avr/t-avr: Added definition of FLOAT while generates
3370         fp-bit.c
3371
3372         * config/avr/avr.md: `NEXT_INSN (insn)' substituted to `insn' in
3373         peepholes for tst+jump = sbrs/sbrc optimization.
3374
3375 Fry May 12 20:03:00 CEST 2000  Jan Hubicka  <jh@suse.cz>
3376
3377         * expr.c (emit_push_insn): Do not adjust stack pointer when
3378         preallocating.
3379
3380 Fri May 12 19:03:58 2000  Philippe De Muyter  <phdm@macqel.be>
3381
3382         * ggc-simple.c (offsetof): Macro fallback definition moved from here ..
3383         * system.h (offsetof): ... to here.
3384
3385 2000-05-12  Richard Henderson  <rth@cygnus.com>
3386
3387         * Makefile.in (final.o): Depend on BASIC_BLOCK_H.
3388         * final.c (final_end_function): Use app_disable.  Rearrange note
3389         handling into a switch.  Emit deleted labels.
3390         (output_asm_label): Generate label strings for deleted labels.
3391         * flow.c (tail_recursion_label_list): New.
3392         (find_basic_blocks_1): Set label_value_list directly.  Collect list
3393         of tail recursion labels from call_placeholders.  Don't add deleted
3394         labels to the label value list.
3395         (cleanup_cfg): Use free_EXPR_LIST_list.
3396         (flow_delete_insn_chain): Turn non-removable labels into notes.
3397         (flow_delete_block): Don't disable deleting the block because of
3398         a non-removable label.
3399         (tail_recursion_label_p): New.
3400         (merge_blocks_move_predecessor_nojumps): Don't disable the merge
3401         because of a label.
3402         (merge_blocks_move_successor_nojumps): Likewise.  Also move a
3403         jump table.
3404         (merge_blocks): Disable a merge because of tail recursion labels.
3405         * ifcvt.c (merge_if_block): Don't disable a merge because of a label.
3406         Use a more accurate measure of not merging the join block.
3407         (find_if_block): Don't disable conversion because of a label.
3408         (find_if_case_1, find_if_case_2): Likewise.
3409         * jump.c (duplicate_loop_exit_test): Preserve the kind of list
3410         element when copying.
3411         (squeeze_notes): Also leave EH notes.
3412         (mark_jump_label): Ignore deleted labels.  Use an INSN_LIST for
3413         REG_LABEL notes.
3414         (delete_insn): Preserve LABEL_NAME in NOTE_SOURCE_FILE when
3415         deleting a label.
3416         * print-rtl.c (print_rtx): Print NOTE_SOURCE_FILE for
3417         NOTE_INSN_DELETED_LABEL.  Print `[# deleted]' for a label_ref
3418         referring to a deleted label.  Convert tail handling to a switch.
3419         * rtl.def (CODE_LABEL): Rearrange elements to be compatible with NOTE
3420         for NOTE_INSN_DELETED_LABEL.
3421         (NOTE): Fix commentary.
3422         * rtl.h (REG_LABEL): Update commentary wrt INSN_LIST.
3423         (REG_CC_SETTER, REG_CC_USER, REG_LIBCALL): Likewise.
3424         (CODE_LABEL_NUMBER, LABEL_NAME): Update index.
3425         (LABEL_NUSES, LABEL_REFS): Likewise.
3426         * unroll.c (copy_loop_body): Don't copy NOTE_INSN_DELETED_LABEL.
3427
3428 2000-05-12  Bruce Korb  <bkorb@gnu.org>
3429
3430         * fixinc/fixfixes.c(format_write): buglet & relaxed rules
3431         * fixinc/check.diff: updated
3432         * fixinc/inclhack.def: corrected & added some test_text-s
3433         * fixinc/genfixes: removed unneeded options to autogen invocation
3434         * fixinc/fixincl.tpl: Specified the output file
3435         * fixinc/fixfixes.c: visual appearance
3436         * fixinc/fixincl.x: regenerate
3437
3438 2000-05-12  Zack Weinberg <zack@wolery.cumb.org>
3439
3440         * fixinc/fixfixes.c (IO_use_fix, IO_defn_fix, CTRL_use_fix,
3441         CTRL_defn_fix): Delete.
3442         (fix_char_macro_defines, fix_char_macro_uses): Rename to
3443         char_macro_def_fix and char_macro_use_fix, respectively.  Put
3444         them into the FIXUP_TABLE.  Get the string to search for from
3445         a c_fix_arg.
3446
3447         (format_write): New function.
3448         (format_fix): Use it.
3449
3450         (FIX_PROC_HEAD): Constify text parameter.
3451         (machine_name_fix): Constify all char *s.
3452         * fixtests.c (skip_quote): Remove double static.
3453
3454         * inclhack.def (io_def_quotes, io_use_quotes, ctrl_def_quotes,
3455         ctrl_use_quotes): Update for new scheme.
3456         * fixincl.x: Regenerate.
3457
3458 2000-05-12  Alexandre Oliva  <aoliva@cygnus.com>
3459
3460         * config/mn10300/mn10300.h (PREFERRED_DEBUGGING_TYPE): Redefine as
3461         DWARF2_DEBUG.
3462         (DWARF2_ASM_LINE_DEBUG_INFO): Define.
3463         (ASM_OUTPUT_DWARF2_ADDR_CONST): Define.
3464
3465 2000-05-11  Robert Lipe <robertlipe@usa.net>
3466
3467         * fixinc/inclhack.def (hpux8_bogus_inlines): Delete bypass for SCO.
3468         * fixincl.x: Regenerate.
3469
3470 2000-05-11  Richard Henderson  <rth@cygnus.com>
3471
3472         * calls.c: Revert both 05-09 patches.
3473
3474 2000-05-11  Alexandre Oliva  <aoliva@cygnus.com>
3475
3476         * config/mn10300/mn10300.c (print_operand): Print FP constants in
3477         hexadecimal.
3478         * config/mn10300/mn10300.md (movsf, movdf): Use the `F' constraint
3479         for FP values.
3480
3481         * mklibgcc.in (EQ): Define it to an equal sign in the Makefile,
3482         and replace any occurrences of `=' in multilib dirs with `$(EQ)'.
3483
3484 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
3485
3486         * fixinc/fixincl.c (run_compiles): Don't crash on null pz_machine.
3487
3488 2000-05-11  Zack Weinberg  <zack@wolery.cumb.org>
3489
3490         * fixinc/fixfixes.c, fixinc/fixtests.c: Update commentary.
3491
3492 Thu May 11 22:28:05 2000  Denis Chertykov  <denisc@overta.ru>
3493
3494         * config/avr/avr-protos.c (jump_over_one_insn_p): New declaration.
3495         * config/avr/avr.c (jump_over_one_insn_p): New function.
3496         * config/avr/avr.md: New peepholes added. Output test and
3497         conditional jump to "sbrc" or "sbrs" command.
3498
3499 2000-05-11  Mark Elbrecht  <snowball3@bigfoot.com>
3500
3501         * cppmain.c (main): Use IS_DIR_SEPARATOR.
3502
3503 2000-05-11  Jakub Jelinek  <jakub@redhat.com>
3504
3505         * except.c (find_exception_handler_labels_1): New function.
3506         (find_exception_handler_labels): Split into two functions, dive
3507         into CALL_PLACEHOLDERs when looking for exception handler labels.
3508
3509 2000-05-11 Stan Cox <scox@cygnus.com>
3510
3511         * regrename.c (replace_reg_in_block): Improve REG_DEAD handling.
3512         * timevar.def (TV_RENAME_REGISTERS): Move before TV_SCHED2.
3513         * toplev.c (rest_of_compilation): Call regrename_optimize before sched2.
3514
3515 2000-05-11  Bruce Korb  <bkorb@gnu.org>
3516
3517         * fixinc/fixfixes.c (double_slash_fix):  obsolete
3518         (else_endif_label_fix): obsolete
3519         (format_fix):  new, unused as yet
3520         (main): obsolete
3521         * fixinc/fixlib.h: added fix description struct for use by format_fix
3522         * fixinc/fixincl.c: removed the struct & test for SIGIOT befure using
3523         * fixinc/Makefile.in:  compile fixfixes.c and fixtests.c as separate
3524         modules.  Removed the vestiges of the script version.
3525         Added support for "make check".
3526         * fixinc/check.diff: base diff file (needs work!!)
3527         * fixinc/check.tpl: quiet the fixup output
3528         * fixinc/fixtests.c (main): obsolete
3529         * fixinc/fixincl.sh:  don't bother copying fixincl to ..
3530         * fixinc/fixincl.tpl:  provide for arguments to c_fix routines
3531
3532 Thu May 11 11:57:02 MET DST 2000  Jan Hubicka <jh@suse.cz>
3533
3534         * toplev.c (rest_of_compilation): Remove dead code after
3535         combine.
3536
3537 2000-05-11  Zack Weinberg  <zack@wolery.cumb.org>
3538
3539         * cpphash.c (collect_funlike_expansion): Make "# is not
3540         followed by a macro argument name" a pedwarn, not an error.
3541         Preserve the # in the output.  Suppress the warning if lang_asm.
3542
3543 Thu May 11 01:19:31 2000  Jeffrey A Law  (law@cygnus.com)
3544
3545         * configure.in (hppa*64*-*-hpux11*): New target for PA64 support.
3546         * configure: Rebuilt.
3547
3548 2000-05-10 Laurynas Biveinis <lauras@softhome.net>
3549
3550         * i386/xm-djgpp.h (XREF_FILE_NAME): Add mising brace.
3551
3552 2000-05-10  Kazu Hirata  <kazu@hxi.com>
3553
3554         * combine.c (try_combine): Fix a typo.
3555
3556 Wed May 10 21:31:44 2000  Jim Wilson  <wilson@cygnus.com>
3557
3558         * config/ia64/ia64.md (insv): Add comment.
3559
3560 2000-05-10  Richard Henderson  <rth@cygnus.com>
3561
3562         * Makefile.in (libgcc.a, stmp-multilib): Depend on FPBIT and DPBIT.
3563         * mklibgcc.in: Rewrite to not use functions.  Don't shortcut
3564         dependancies on FPBIT and DPBIT.
3565
3566 2000-05-10  Nick Clifton  <nickc@redhat.com>
3567
3568         * flow.c (find_auto_inc): Do not bias REG_N_REFS by loop_depth
3569         when optimising for size.
3570         (mark_used_regs:) Ditto.
3571         (try_pre_increment_1): Ditto.
3572
3573 2000-05-10  Zack Weinberg  <zack@wolery.cumb.org>
3574
3575         * cppexp.c (lex): Use %.*s to print non-NUL-terminated string.
3576         Make error message friendlier.
3577
3578         * cpphash.h (struct hashnode): Use struct hack for name
3579         member.
3580         * cpphash.c (struct hashdummy): New.
3581         (eq_HASHNODE): Second argument is a hashdummy, not a HASHNODE.
3582         (make_HASHNODE): No need to set ->name pointer.  Correct
3583         setting of p.
3584         (cpp_lookup): Make 'dummy' a struct hashdummy.  Tidy up a bit.
3585
3586 2000-05-10  Richard Henderson  <rth@cygnus.com>
3587
3588         * flow.c (find_basic_blocks_1): Remove any spare bb_note
3589         after completion.
3590
3591 2000-05-10  Bruce Korb  <bkorb@gnu.org>
3592
3593         * fixinc/gnu-regex.c:  reg_syntax_t re_syntax_options must be static
3594
3595 2000-05-10  Eric Schweitz  <schweitz@nortelnetworks.com>
3596
3597         * dwarfout.c (dwarfout_finish): Call retry_incomplete_types
3598         after we enter .debug.
3599
3600 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
3601
3602         * dwarf2out.c (gen_subprogram_die): Fixup die_parent for the
3603         abstract instance of a nested inline function.
3604
3605         * stor-layout.c (finish_record_layout): finalize_type_size
3606         before laying out the pending_statics.
3607
3608 Wed 10 May 09:36:47 2000  Neil Booth  <NeilB@earthling.net>
3609
3610         * cpplex.c (spell_token): New function.
3611         (spell_string, spell_comment, spell_name): fold into
3612         spell_token.
3613         (I, S): Add macros.
3614         (E, H): Remove macros.
3615         (save_comment): Save comment opening characters too.
3616         (_cpp_lex_file): Update to use spell_token.  Tidy up comment
3617         handling.
3618         * cpplib.h (I, S): Add macros.
3619         (E, H): Remove macros.
3620         (TTYPE_TABLE): Update entries for new speller.
3621         (SYNTAX_ASSERT): Remove.
3622
3623 Wed 10 May 09:08:30 2000  Neil Booth  <NeilB@earthling.net>
3624
3625         * cpplex.c (_cpp_lex_line): Maintain PREV_WHITESPACE flag
3626         when removing escaped newlines.  Reverse sense of test for
3627         escaped newline.
3628
3629 2000-05-09  Richard Henderson  <rth@cygnus.com>
3630
3631         * flow.c (find_basic_blocks_1): Do not delete the first
3632         bb_note we run across.
3633         (create_basic_block): Use reorder_insns to move an existing
3634         bb_note to the correct place.
3635
3636 2000-05-09  Richard Henderson  <rth@cygnus.com>
3637
3638         * calls.c (expand_call): Increment currently_expanding_call
3639         before calling optimize_tail_recursion.
3640
3641 Tue May  9 18:54:16 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3642
3643         * reload1.c (reload_combine): Fix errors in last change.
3644
3645 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
3646
3647         * gcc.c (used_arg): Skip over a semicolon at the end of the
3648         split-up loop; don't break out of it.
3649
3650         * Makefile.in (WARN_CFLAGS): Add -Wwrite-strings.
3651         (tree.o): Depend on output.h.
3652
3653         * c-decl.c (pending_invalid_xref_file,
3654         current_function_prototype_file): Constify.
3655         (pushdecl): Constify a local char *.
3656         (define_label): Constify filename parameter.
3657         * c-lex.c (init_parse): Constify parameter and return value.
3658         * c-typeck.c (c_expand_asm_operands): Constify filename parameter.
3659         * c-tree.h: Update prototypes.
3660         * c-parse.in: Constify filename member of %union, and if_stmt_file.
3661         * c-parse.y, c-parse.c, c-parse.h, objc/objc-parse.y,
3662         objc/objc-parse.c: Regenerate.
3663
3664         * dwarfout.c (dwarfout_init): Constify main_input_filename parameter.
3665         * dwarfout.h: Update prototypes.
3666         * expr.c (expand_expr): Constify a local char *.
3667         * flags.h: Constify main_input_filename.
3668         * function.c (expand_function_end): Constify filename parameter.
3669         * genrecog.c (make_insn_sequence): Use a character array for
3670         c_test_pos.
3671         (main): Remove unused variables.
3672         * input.h: Constify input_filename, main_input_filename, and
3673         file_stack.name.  Update prototypes.
3674         * output.h: Declare first_global_object_name and
3675         weak_global_object_name here, as const char *.
3676         * stmt.c (expand_asm_operands): Constify filename parameter.
3677         * toplev.c (compile_file, push_srcloc, debug_start_source_file):
3678         Constify filename parameter.
3679         (input_filename, main_input_filename): Constify.
3680         * toplev.h: Update prototypes.
3681         * tree.c: Include output.h.  Don't declare
3682         first_global_object_name or weak_global_object_name.  Clean up string
3683         bashing in get_file_function_name_long.
3684         * tree.h (struct tree_decl): Constify filename member.
3685         (input_filename): Constify.
3686         Update prototypes.
3687         * varasm.c (first_global_object_name, weak_global_object_name):
3688         Constify.
3689         (assemble_start_function, assemble_variable): Clean up string bashing.
3690
3691         * gcc.c: Constify all spec-related strings initialized,
3692         transitively, from string constants.  Constify all strings
3693         and string variables related to multilibs.
3694         (set_spec, read_specs): Cast argument to free to PTR.
3695         (used_arg): Do not modify multilib_matches.  Use strncmp plus
3696         length comparison to compare multilib switches.
3697         * genmultilib: Constify everything declared in multilib.h.
3698
3699 Tue May  9 22:28:03 2000  Denis Chertykov  <denisc@overta.ru>
3700
3701         * flow.c (flow_delete_insn): Use INSN_DELETED_P for marking insn
3702         as deleted.
3703
3704 Tue May  9 20:52:43 2000  Denis Chertykov  <denisc@overta.ru>
3705
3706         * config/avr/avr-protos.h (extra_constraint): change a type of
3707         second argument from char to int to avoid warnings.
3708         (asm_output_byte): Likewise.
3709
3710         * config/avr/avr.c (MAX_LD_OFFSET) New macro.
3711         (initial_elimination_offset): Handle elimination from
3712         FRAME_POINTER_REGNUM to STACK_POINTER_REGNUM.
3713         (legitimate_address_p): Use MAX_LD_OFFSET.
3714         (legitimize_address): Likewise.
3715         (out_movqi_r_mr): Likewise.
3716         (out_movhi_r_mr): Likewise, use `fatal_insn' instead of `fatal'.
3717         (out_movsi_r_mr): Use MAX_LD_OFFSET.
3718         (out_movsi_mr_r): Likewise.
3719         (out_movqi_mr_r): Likewise.
3720         (out_movhi_mr_r): Likewise.
3721         (notice_update_cc): Correct CC for the ashrqi3 with the shift
3722         count as CONST_INT != 6.
3723         (ashlqi3_out): Coding style modifications. Run `fatal_insn' if
3724         shift count is a CONSTANT_P, but not a CONST_INT.
3725         (ashlhi3_out): Coding style modifications.
3726         (ashlsi3_out): Likewise.
3727         (ashrhi3_out): Likewise.
3728         (ashrsi3_out): Likewise.
3729         (lshrhi3_out): Likewise.
3730         (lshrsi3_out): Likewise.
3731         (ashrqi3_out): Generate shift for any known constant count without
3732         scratch register. Run `fatal_insn' if shift count is a CONSTANT_P,
3733         but not a CONST_INT.
3734         (lshrqi3_out): Coding style modifications. Run `fatal_insn' if
3735         shift count is a CONSTANT_P, but not a CONST_INT.
3736         (extra_constraint): change a type of
3737         second argument from char to int to avoid warnings.
3738         (asm_output_byte): Likewise.
3739         (asm_file_end): Output size generated commands count as a hex
3740         number too.
3741
3742         * config/avr/avr.h (RETURN_ADDR_RTX): New macro.
3743
3744         * config/avr/avr.md (addhi3): Fragment commented by &&0 is
3745         removed.
3746         (ashlqi3): Values of "length" attribute changed. Shift count
3747         uses constraints 'n' instead of 'i'.
3748         (ashrqi3): Likewise. Values of "cc" attribute changed. Generate
3749         shifts without clobber register.
3750         (lshrqi3): Shift count uses constraints 'n' instead of 'i'.
3751         (call_insn): Correct test for which_alternative == 1 (was 0).
3752         (call_value_insn): Likewise.
3753
3754         * config/avr/t-avr: Remove definition of FLOAT while generates
3755         fp-bit.c
3756
3757 2000-05-09  Bruce Korb  <bkorb@gnu.org>
3758
3759         * fixinc/check.tpl:  Template for checking fixes
3760         * fixinc/inclhack.def:  Added 'test_text' for many fixes
3761         disable hpux8_bogus_inlines on SCO
3762         * fixinc/fixinc.sco:  Oh, yes, we don't need this any more.
3763
3764 Tue May  9 16:30:27 MET DST 2000  Jan Hubicka  <jh@suse.cz>
3765
3766         * calls.c (expand_call): Reorganize somewhat in order
3767         to avoid unnecesary recalculation inside loop and make
3768         tail call failure code cleaner.
3769
3770 Tue May  9 06:30:20 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3771
3772         * alias.c (nonlocal_reference_p): Minor reformatting.
3773         * reload.c (find_equiv_reg): Simplify logic for
3774         CALL_INSN_FUNCTION_USAGE since can't have SUBREG or pseudos and
3775         some some reformatting.
3776         * reload1.c (reload_combine): Don't assume everything in
3777         CALL_INSN_FUNCTION_USAGE is a REG and clean up code a bit.
3778
3779 2000-05-08  Richard Henderson  <rth@cygnus.com>
3780
3781         * final.c (current_insn_predicate): New.
3782         (final_scan_insn): Set it.
3783         * output.h (current_insn_predicate): Declare.
3784
3785         * ifcvt.c (cond_exec_process_insns): New argument prob_val.
3786         Attach it to call insns.
3787         (cond_exec_process_if_block): Track probability for true and
3788         false branches.
3789         (dead_or_predicable): Likewise.
3790
3791         * predict.c (PROB_NEVER, PROB_VERY_UNLIKELY): New.
3792         (PROB_UNLIKELY, PROB_EVEN, PROB_LIKELY): New.
3793         (PROB_VERY_LIKELY, PROB_ALWAYS): New.
3794         (estimate_probability, expected_value_to_br_prob): Use them.
3795
3796         * config/ia64/ia64-protos.h (ia64_expand_prediction): Declare.
3797         * config/ia64/ia64.c (ia64_print_operand_address): Handle 'j'.
3798         (ia64_expand_prediction): New.
3799         (emit_insn_group_barriers): Don't look at notes.  Emit barriers
3800         as needed after calls.
3801         (ia64_epilogue_uses): Mark b0 used.
3802         * config/ia64/ia64.md (beq_true, beq_false): Remove.
3803         (bne_true, bne_false): Remove.
3804         (eq_return, eq_not_return, ne_return, ne_not_return): Remove.
3805         (br_true, br_false): New.  Use predicate_operator and
3806         ia64_expand_prediction.
3807         (return_true, return_false): Likewise.
3808         (call_internal): Use ia64_expand_prediction.  Don't emit stop bit.
3809         (call_internal1, call_value_internal): Likewise.
3810         (call_value_internal1, call_multiple_values_internal1): Likewise.
3811
3812         * config/ia64/ia64.c (ia64_direct_return): Require frame size zero.
3813
3814         * config/ia64/ia64.md (extendsfdf2): Split only after reload.
3815
3816 2000-05-08  Richard Henderson  <rth@cygnus.com>
3817
3818         * rtlanal.c (may_trap_p): Consider old-style and volatile
3819         asms to trap.
3820
3821 Mon May  8 17:16:48 2000  Jim Wilson  <wilson@cygnus.com>
3822
3823         * config/ia64/ia64.h (RETURN_ADDR_RTX): Use COUNT not count.
3824
3825 2000-05-08  Richard Henderson  <rth@cygnus.com>
3826
3827         * config/ia64/ia64.h (predicate_operator): Declare.
3828
3829         * config/ia64/ia64.md (extendsfdf2): Split the nop case out
3830         of existance.
3831
3832         * gensupport.c (process_rtx): Copy and post-process each member
3833         of the define_insn rtvec individually.
3834
3835 Mon  8 May 22:17:35 2000  Neil Booth  <NeilB@earthling.net>
3836
3837         * cpplex.c (spell_token): New function.
3838         (TOKEN_LEN): Add 1 for whitespace.
3839         (_cpp_lex_file): Update to use spell_token.
3840         * cpplib.h (E): Remove.
3841         (TTYPE_TABLE): Update CPP_VSPACE entry.
3842
3843 2000-05-08  Richard Henderson  <rth@cygnus.com>
3844
3845         * flow.c (init_propagate_block_info): Watch out for conditional
3846         branch to next instruction, and thus one outgoing edge.
3847
3848         * config/ia64/ia64.c (ia64_encode_section_info): Exit early
3849         for global register variables; don't special case __[CD]TOR_LIST__;
3850         mind ggc_p for string allocation.
3851
3852 2000-05-08  Nick Clifton  <nickc@cygnus.com>
3853
3854         * config/i386/i386.h (ELIMINABLE_REGS): Fix comment.
3855
3856 2000-05-08  Bruce Korb  <bkorb@gnu.org>
3857
3858         * fixinc/mkfixinc.sh:  fixinc.sco is no longer used
3859         i?86-*-msdosdjgpp* no longer uses fixincludes
3860         * fixinc/genfixes:  inclhack.sh and fixincl.sh are no longer generated
3861         * fixinc/inclhack.sh:  deleted
3862         * fixinc/hackshell.tpl:  deleted
3863         * fixinc/inclhack.tpl:  deleted
3864         * fixinc/Makefile.in:  Remove dependencies on above
3865         * fixinc/fixincl.sh:  "DO NOT EDIT" text modified
3866
3867 2000-05-08  Andreas Jaeger  <aj@suse.de>
3868
3869         * config/mips/linux.h: Remove undefines which disabled .ctor/.dtor
3870         support.
3871
3872 2000-05-07  Zack Weinberg  <zack@wolery.cumb.org>
3873
3874         * Makefile.in (LOOSE_CFLAGS): Add /g modifiers to both sed
3875         substitutions.
3876
3877 Sun  7 May 08:43:53 2000  Neil Booth  <NeilB@earthling.net>
3878
3879         * cpplex.c: Move new lexer definitions and prototypes
3880         to top.  Conditional include these and the code if
3881         NEW_LEXER is defined.  Rename functions whose names
3882         clash if this code included.
3883
3884 Sun May  7 00:54:57 EDT 2000  John Wehle  (john@feith.com)
3885
3886         * rtl.def (COND_EXEC): Clarify.
3887
3888         * i386.md (extendsidi2): Clobber (reg:CC 17) in the
3889         same fashion as zero_extendsidi2.
3890
3891 2000-05-06  Richard Henderson  <rth@cygnus.com>
3892
3893         * config/ia64/ia64.c (predicate_operator): New.
3894         (ia64_print_operand): Handle 'J'.
3895         (rtx_needs_barrier): Handle COND_EXEC.
3896         * config/ia64/ia64.h (BRANCH_COST): Define.
3897         (PREDICATE_CODES): Update.
3898         * config/ia64/ia64.md: Docuement used unspec values.
3899         (attr predicable): New.
3900         (movxf, movxf_internal): New.
3901         (extendsfdf2): Don't comment out nop.
3902         (floatdidf2): Remove.
3903         (truncxfsf2, truncxfdf2, floatdixf2): New.
3904         (abssi2, absdi2): Put the neg in the "true" slot.
3905         (conditional branch instructions): Mark not predicable.
3906         (cmov*_internal): Use predicate_operator.  Split to cond_exec.
3907         (abs*_internal): Likewise.
3908         (alloc, set_bsp): Mark not predicable.
3909         (barrier, insn_group_barrier, flush_cache): Likewise.
3910         (define_cond_exec): New.
3911
3912 2000-05-06  Richard Henderson  <rth@cygnus.com>
3913
3914         * c-decl.c: Include "tm_p.h".
3915
3916         * config/ia64/ia64-protos.h: Rearrange decls to reduce ifdef madness.
3917         (fetchadd_operand, ia64_expand_fetch_and_op): Declare.
3918         (ia64_expand_op_and_fetch): Declare.
3919         * config/ia64/ia64.c: Include "toplev.h".  Kill trailing whitespace.
3920         (setjmp_operand): Constify variables for XSTR.
3921         (ia64_encode_section_info): Likewise.
3922         (ia64_print_operand): Use %d for exact_log2; cast 32-bit printed
3923         values to int.
3924         (ia64_asm_output_external): Constify name.
3925         (process_set): Use HOST_WIDE_INT_PRINT_DEC for frame size.
3926         (process_for_unwind_directive): Provide switch default.
3927         (ia64_expand_compare_and_swap): Remove unused variables.
3928         (ia64_expand_builtin): Likewise.
3929         * config/ia64/ia64.h (ASM_OUTPUT_BYTE): Mask and cast value to int
3930         for printing.
3931
3932         * config/ia64/ia64.c (sdata_symbolic_operand): Mark unused args.
3933         (symbolic_operand, function_operand, setjmp_operand): Likewise.
3934         (shift_count_operand, shift_32bit_count_operand): Likewise.
3935         (shladd_operand, fetchadd_operand, ia64_function_prologue): Likewise.
3936         (ia64_function_epilogue, ia64_setup_incoming_varargs): Likewise.
3937         (ia64_function_arg_partial_nregs, ia64_function_value): Likewise.
3938         (ia64_print_operand_address, ia64_secondary_reload_class): Likewise.
3939         (ia64_expand_builtin): Likewise.
3940         (call_multiple_values_operation): Make dest_regno unsigned.
3941
3942 2000-05-06  Richard Henderson  <rth@cygnus.com>
3943
3944         * rtl.def (DEFINE_COND_EXEC): New.
3945         * md.texi: Document it.
3946
3947         * gensupport.c (input_file): Remove.
3948         (struct queue_elem): Add lineno.
3949         (rtx_ready_queue): Remove.
3950         (errors): New.
3951         (predicable_default): New.
3952         (predicable_true, predicable_false): New.
3953         (define_attr_queue, define_attr_tail): New.
3954         (define_insn_queue, define_insn_tail): New.
3955         (define_cond_exec_queue, define_cond_exec_tail): New.
3956         (other_queue, other_tail): New.
3957         (queue_pattern): New.
3958         (process_rtx): Add patterns to the appropriate queues.
3959         (is_predicable, identify_predicable_attribute): New.
3960         (n_alternatives, collect_insn_data): New.
3961         (alter_predicate_for_insn, alter_test_for_insn): New.
3962         (shift_output_template, alter_output_for_insn): New.
3963         (process_one_cond_exec, process_define_cond_exec): New.
3964         (init_md_reader): Read the entire file.  Process define_cond_exec.
3965         (read_md_rtx): Return elements from the queues.
3966
3967 2000-05-06  Richard Henderson  <rth@cygnus.com>
3968
3969         * flow.c (mark_set_1): Don't update conditional life info
3970         if the register is not_dead.
3971
3972 2000-05-06  Zack Weinberg  <zack@wolery.cumb.org>
3973
3974         * Makefile.in (STAGESTUFF): Add genrtl.c and genrtl.h.
3975         (mostlyclean): Also delete fixincl, fixinc.sh, and
3976         specs.ready, and make clean in the fixinc subdir.
3977
3978 2000-05-06  Richard Henderson  <rth@cygnus.com>
3979
3980         * Makefile.in (gensupport.o): Compile for the host.
3981         (host-prefix gensuuprt.o): Remove.
3982         (genflags.o): Depend on gensupport.h and OBSTACK_H.
3983         (genattrtab.o): Likewise.
3984         (gencodes.o): Depend on gensupport.h.
3985         (genemit.o, genopinit.o, genrecog.o, genextract.o): Likewise.
3986         (genpeep.o, genattr.o, genoutput.o): Likewise.
3987
3988         * gensupport.c (obstack, rtl_obstack): New.
3989         (init_md_reader): Initialize rtl_obstack.
3990         * gensupport.h (rtl_obstack): Declare.
3991         (message_with_line): Declare.
3992
3993         * genattr.c: Remove all traces of obstack manipulation.
3994         * gencodes.c, genconfig.c, genemit.c, genextract.c: Likewise.
3995         * genopinit.c, genoutput.c, genpeep.c, genrecog.c: Likewise.
3996
3997         * genattrtab.c (obstack, rtl_obstack): Remove.
3998         (main): Don't init rtl_obstack.
3999         * genflags.c: Likewise.
4000
4001         * genrecog.c (message_with_line): Move ...
4002         * gensupport.c: ... here.
4003
4004 2000-05-06  Richard Henderson  <rth@cygnus.com>
4005
4006         * c-typeck.c (build_c_cast): Remove dead code.
4007
4008 2000-05-06  Richard Henderson  <rth@cygnus.com>
4009
4010         * flow.c (split_edge): Don't allocate global_live_at_start for
4011         the new block unless the old blocks had them as well.
4012
4013         * flow.c (mark_set_1): Respect not_dead when updating reg_live.
4014
4015         * ifcvt.c (noce_process_if_block): Don't use an insn_b from
4016         test_bb if a or b uses x.
4017
4018 2000-05-06  Zack Weinberg  <zack@wolery.cumb.org>
4019
4020         * cpphash.h: Remove conditional #define of __extension__.
4021         * rtl.h: Add __extension__ to RTL_CHECK1, RTL_CHECK2,
4022         RTL_CHECKC1, RTL_CHECKC2, and RTVEC_ELT macros
4023         (ENABLE_RTL_CHECKING only).
4024         * tree.h: Add __extension__ to TREE_CHECK, TREE_CLASS_CHECK,
4025         CST_OR_CONSTRUCTOR_CHECK, and EXPR_CHECK macros
4026         (ENABLE_TREE_CHECKING only).
4027         * varray.h: Add __extension__ to VARRAY_CHECK macro
4028         (ENABLE_CHECKING only).
4029
4030 2000-05-06  Richard Earnshaw (reanrsha@arm.com)
4031
4032         Use new tail-calling mechanism on ARM.
4033         * arm.md (sibcall, sibcall_value): New expands.
4034         (sibcall_insn, sibcall_value_insn, sibcall_epilogue): New insns.
4035         (tailcalling peepholes): Delete.
4036         (push_multi): Simplify.
4037         * arm.c (lr_save_eliminated): Delete definition.
4038         (pattern_really_clobbers_lr, function_really_clobbers_lr): Delete.
4039         (output_return_instruction): Remove checks on lr_save_eliminated.
4040         (output_arm_prologue): Remove old tail-calling code.
4041         (arm_output_epilogue): New parameter, really_return.  All callers
4042         changed.  Handle tail-calling epilogues.
4043         * arm.h (lr_save_eliminated): Delete declaration.
4044         (frame_pointer_needed): Delete declaration.
4045         * arm-protos.h (arm_output_epilogue): Adjust prototype.
4046
4047         * arm.md (is_thumb): Examine symbol thumb_code, not expression
4048         TARGET_ARM.
4049         * arm.c (thumb_code): Define it.
4050         (arm_override_options): Set it.
4051         * arm.h (thumb_code): Declare it.
4052
4053 2000-05-06  Richard Earnshaw (reanrsha@arm.com)
4054
4055         * arm-protos.h (arm_dllexport_name_p, arm_dllimport_name_p): Constify.
4056
4057 2000-05-06  Richard Earnshaw (reanrsha@arm.com)
4058
4059         * arm.c (arm_gen_load_multiple, arm_gen_store_mulitple): Don't add
4060         bogus clobber to insns.
4061         (load_multiple_operation, store_mulitple_operation): Don't check
4062         for it.
4063         * arm.md (ldmsi_postinc, stmsi_postinc): Adjust accordingly.
4064
4065         * arm.md (and_scc, ior_scc): Add missing mode.
4066
4067         * arm.md (call_value_symbol): Remove predicate from op2.
4068
4069         * arm.h (SPECIAL_MODE_PREDICATES): Define.
4070
4071 Sat May  6 06:25:56 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4072
4073         * expr.c (get_subtarget): New function.
4074         (force_operand, expand_expr, do_store_flag): Use it.
4075
4076         * toplev.c (compile_file): Don't take strlen of NAME if null.
4077
4078 2000-05-06  David Edelsohn  <edelsohn@gnu.org>
4079
4080         * xcoffout.c (xcoff_current_include_file,
4081         xcoff_current_function_file, xcoff_lastfile): Constify char *.
4082         (xcoffout_source_file, xcoffout_source_line): Make filename 'const
4083         char *'.
4084         (xcoffout_declare_function): Make name 'const char *'.
4085         (xcoffout_end_epilogue): Make fname 'const char *'
4086         * xcoffout.h (xcoff_current_include_file, xcoff_lastfile,
4087         xcoffout_declare_function, xcoffout_source_line): Match above.
4088
4089         * aix43.h (SUBTARGET_OVERRIDE_OPTIONS): -mpowerpc64 without
4090         -maix64 is error.
4091         * rs6000.c (print_operand): Fix lossage typo.
4092         (output_cbranch): Remove "cr" decoration for now.
4093         * rs6000.h (ASM_OUTPUT_DEF_FROM_DECLS): Make alias 'const char *'.
4094
4095 Sat May  6 06:55:32 2000  Denis Chertykov  <denisc@overta.ru>
4096
4097         * config/avr/avr.c (out_shift_with_cnt): Bugfix for shift by
4098         constant count.
4099
4100 2000-05-05  Bruce Korb  <bkorb@gnu.org>
4101
4102         * fixinc/genfixes: Improve the matching for make target names
4103
4104 2000-05-05  Catherine Moore  <clm@cygnus.com>
4105
4106         * c-common.c (decl_attributes):  For TYPE_DECLs attach the
4107         attribute to the decl.
4108         * c-decl.c (pushdecl): Propagate the USED attribute to the
4109         type copy.
4110
4111 2000-05-05  Richard Henderson  <rth@cygnus.com>
4112
4113         * rtlanal.c (reg_overlap_mentioned_p): Treat parallels in the
4114         same way emit_group_load does.
4115
4116 2000-05-05 Mark Elbrecht <snowball3@bigfoot.com>
4117
4118         * gcc.c (set_input) [HAVE_DOS_STYLE_FILE_SYSTEM]: Skip drive name.
4119
4120         * toplev.c (output_file_directive): Use IS_DIR_SEPARATOR.
4121         (main): Likewise.
4122
4123 2000-05-05 Rodney Brown <RodneyBrown@mynd.com>
4124
4125         * pa.h (FUNCTION_ARG_ADVANCE): Warning removal.
4126
4127 Fri May  5 10:29:21 2000  Marc Espie <espie@cvs.openbsd.org>
4128
4129         * config/openbsd.h (LINK_SPEC): pass correct flags to ld
4130         to support -shared, on platforms with dynamic libraries.
4131
4132 Fri May  5 10:27:06 2000  Philippe De Muyter  <phdm@macqel.be>
4133
4134         * system.h (S_ISBLK): Provide fallback definition.
4135
4136 2000-05-05  Geoff Berry  <geoffb@bops.com>
4137
4138         * extend.texi (Extended Asm): Document inability to give asm
4139         statements access to condition codes.
4140
4141 2000-05-05  Marek Michalkiewicz  <marekm@linux.org.pl>
4142
4143         * varasm.c (asm_emit_uninitialised): Use 0, not NULL
4144         as arg 2 of UNIQUE_SECTION.
4145
4146 Fri May  5 10:11:41 2000  Jeffrey A Law  (law@cygnus.com)
4147
4148         * predict.c: Remove May 4 change.
4149         * bb-reorder.c (make_reorder_chain): Do not perform block movement
4150         if we have predicted the branch at 50-50 probability.
4151
4152 2000-05-05  Richard Henderson  <rth@cygnus.com>
4153
4154         * flow.c (init_propagate_block_info): Fix merge error
4155         in HAVE_conditional_execution code.
4156
4157 Fri May  5 07:43:50 2000  Denis Chertykov  <denisc@overta.ru>
4158
4159         * config/avr/avr.c (out_shift_with_cnt): Genetare a more optimal
4160         shift cycle for unknown shift count. Also generates dec + brpl.
4161         (ashlqi3_out): Don't generate dec + brpl which now generates by
4162         `out_shift_with_cnt'.
4163         (ashlhi3_out): Likewise.
4164         (ashlsi3_out): Likewise.
4165         (ashrqi3_out): Likewise.
4166         (ashrhi3_out): Likewise.
4167         (ashrsi3_out): Likewise.
4168         (lshrqi3_out): Likewise.
4169         (lshrhi3_out): Likewise.
4170         (lshrsi3_out): Likewise.
4171
4172 2000-05-04 Mark Elbrecht <snowball3@bigfoot.com>
4173
4174         * gcc.c (free_split_directories): Correct typo in explanation
4175         of make_relative_prefix.
4176
4177 2000-05-04  Geoff Keating  <geoffk@cygnus.com>
4178
4179         * config/rs6000/rs6000.h (PREDICATE_CODES): Add floating-point
4180         comparison codes to branch_comparison_operator.
4181
4182 2000-05-04  Richard Henderson  <rth@cygnus.com>
4183
4184         * ifcvt.c (noce_process_if_block): Always reset X in the A == B case.
4185
4186 2000-05-04  Richard Henderson  <rth@cygnus.com>
4187
4188         * Makefile.in (FPBIT_FUNCS): Remove _df_to_usi.
4189         (DPBIT_FUNCS): Remove _sf_to_usi.
4190         (stmp-multilib): Pass LIB1ASMSRC to libgcc.mk.
4191
4192         * ifcvt.c (noce_process_if_block): Fail if A or B modified
4193         between condition and jump.
4194
4195         * libgcc2.c (near eh_context_specific): Comment #endif string.
4196         * longlong.h: Don't use strings with embedded newlines.
4197
4198 2000-05-04  Geoff Keating  <geoffk@cygnus.com>
4199
4200         * config/rs6000/rs6000-protos.h: Add output_cbranch.
4201         * config/rs6000/rs6000.c (ccr_bit_negated_p): Delete.
4202         (print_operand): Delete %t and %T codes.
4203         (output_cbranch): New function.  Support branch prediction.
4204         * config/rs6000/rs6000.md: Use output_cbranch for
4205         conditional branches and returns.
4206
4207 2000-05-04  Jason Merrill  <jason@casey.cygnus.com>
4208
4209         * simplify-rtx.c (simplify_ternary_operation): Cast to unsigned.
4210         * stor-layout.c (place_field): Likewise.
4211         * integrate.h (struct inline_remap): Make regno_pointer_align unsigned.
4212         * expr.c (store_expr): Make align unsigned.
4213         * explow.c (plus_constant_wide): Make low words unsigned.
4214         * expmed.c (choose_multiplier): Likewise.
4215         * fold-const.c (fold):  Likewise.
4216         * tree.h (build_int_2): Likewise.
4217         * tree.c (build_int_2_wide, tree_int_cst_msb): Likewise.
4218         * emit-rtl.c (gen_reg_rtx): Add cast to unsigned char*.
4219         (init_emit): Change cast to unsigned char*.
4220         * varasm.c (compare_constant_1): Add cast to char*.
4221         * gcse.c (delete_null_pointer_checks): Change cast to unsigned int*.
4222         * reload1.c (reload): Likewise.
4223
4224         * rtl.h (MEM_SET_IN_STRUCT_P): Use do { } while (0).
4225
4226 Thu May  4 14:37:23 2000  Jeffrey A Law  (law@cygnus.com)
4227
4228         * predict.c (estimate_probability): If no prediction was found, then
4229         predict the successor that is the next physical block (if such a
4230         successor exists).
4231
4232 2000-05-04  Richard Henderson  <rth@cygnus.com>
4233
4234         * config/alpha/t-alpha (LIB2FUNCS_EXTRA): Use qrrnd.asm in place.
4235
4236 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4237
4238         * system.h: Don't wrap <sys/types.h> with HAVE_SYS_TYPES_H.
4239
4240 2000-05-04  Mumit Khan  <khan@xraylith.wisc.edu>
4241
4242         * i386/cygwin.h (CPP_PREDEFINES): Don't define __STDC__. Move
4243         attribute macros from here ...
4244         (CPP_SPEC): to here.
4245         * i386/mingw32.h (CPP_PREDEFINES): Likewise.
4246         (CPP_SPEC): Likewise.
4247         * i386/crtdll.h (CPP_PREDEFINES): Delete attribute macros.
4248
4249         * Makefile.in ($(HOST_PREFIX_1)gensupport.o): Add build rule.
4250         (libgcc.a): Pass LIB1ASMSRC to libgcc.mk.
4251
4252 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4253
4254         * bb-reorder.c (get_next_bb_note, get_prev_bb_note): Prototype.
4255
4256         * diagnostic (vbuild_message_string, build_message_string,
4257         build_location_prefix, output_get_prefix, init_output_buffer,
4258         output_notice, vline_wrapper_message_with_location,
4259         v_message_with_decl, default_print_error_function): De-constify.
4260         (set_real_maximum_length): Prototype.
4261
4262         * diagnostic.h (struct output_buffer, init_output_buffer,
4263         output_get_prefix, output_set_prefix): De-constify.
4264
4265         * function.c (init_function_start): Constify.
4266
4267         * gensupport.c (remove_constraints, process_rtx): Prototype.
4268
4269         * gthr-posix.h: Indent uses of #pragma.
4270
4271         * objc/objc-act.c (ggc_mark_imp_list, ggc_mark_hash_table):
4272         Prototype.
4273
4274         * predict.c (find_expected_value): Delete prototype.
4275         (expected_value_to_br_prob): Initialize variable `ev_reg'.
4276
4277         * sbitmap.h (debug_sbitmap): Prototype.
4278
4279         * ssa.c (compute_coalesced_reg_partition): Prototype.
4280
4281         * stor-layout.c (debug_rli): Prototype.
4282
4283         * tree.h (round_down): Prototype.
4284         (init_function_start): Constify.
4285
4286 2000-05-04  Zack Weinberg  <zack@wolery.cumb.org>
4287
4288         * cpphash.h: #define __extension__ away if GCC_VERSION < 2095
4289         (overly conservative).  Change extern inline wrappers to
4290         static inline, define them always, use PARAMS properly.
4291         * cpplex.c (_cpp_get_directive_token): Don't issue pedantic
4292         whitespace warnings for \f and \v at the beginning of a line.
4293
4294 Thu May  4 10:03:50 2000  Jeffrey A Law  (law@cygnus.com)
4295
4296         * haifa-sched.c (schedule_insns): Free the flow edge list when it
4297         is no longer needed
4298
4299 2000-05-04  Bruce Korb  <bkorb@gnu.org>
4300
4301         * fixincl/inclhack.def: added broken_cabs -
4302         Remove `extern double cabs' declarations from math.h
4303         * fixincl/inclhack.sh: regen
4304         * fixincl/fixincl.x: regen
4305         * fixincl/fixincl.c: Remove BOGOSITY code
4306         * fixincl/mkfixinc.sh: Remove code for installing "shell" version
4307
4308 Thu May  4 09:45:12 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4309
4310         * rtl.h (MEM_COPY_ATTRIBUTES): Also copy RTX_UNCHANGING_P and
4311         MEM_ALIAS_SET.
4312         * alias.c (canon_rtx): Don't copy RTX_UNCHANGING_P or MEM_ALIAS_SET
4313         when calling MEM_COPY_ATTRIBUTES.
4314         * emit-rtl.c (operand_subword, change_address): Likewise.
4315         * explow.c (stabilize): Likewise.
4316         * expr.c (protect_from_queue, emit_move_insn_1): Likewise.
4317         * integrate.c (copy_rtx_and_substitute): Likewise.
4318         * combine.c (combine_simplify_rtx): Don't copy RTX_UNCHANGING_P
4319         when calling MEM_COPY_ATTRIBUTES.
4320         (make_extraction, simplify_shift_const, gen_lowpart_for_combine):
4321         Likewise.
4322         * cse.c (gen_lowpart_if_possible): Likewise.
4323         * function.c (fixup_var_refs_1, purge_addressof_1): Likewise.
4324         * optabs.c (gen_move_insn): Likewise.
4325         * recog.c (validate_replace_rtx_1): Likewise.
4326         * simplify-rtx.c (add_mem_for_addr): Likewise.
4327         * stmt.c (expand_anon_union_decl): Likewise.
4328         * config/arm/arm.md: Likewise.
4329         * config/h8300/h7300.c (fix_bit_operand): Likewise.
4330         * config/m88k/m88k.c (legitimize_address, block_move_loop): Likewise.
4331         (block_move_no_loop, block_move_sequence): Likewise.
4332         * config/rs6000/rs6000.c (expand_block_move_mem): Likewise.
4333         * config/alpha/alpha.c (get_aligned_mem): Likewise.
4334         Clear MEM_ALIAS_SET.
4335         * final.c (alter_subreg): Don't copy MEM_ALIAS_SET when calling
4336         MEM_COPY_ATTRIBUTES.
4337
4338 2000-05-03  Robert Lipe <robertlipe@usa.net>
4339
4340         * configure.in (i[34567]86-*-isc*) [tmake_file]: Add t-i386bare
4341         to suppress libgcc1.
4342         (i[34567]86-*-sco3.2v5*) Likewise.
4343         (i[34567]86-*-sco3.2v4*) Likewise.
4344         (i[34567]86-*-sco) Likewise.
4345         (i[34567]86-*-solaris2) Likewise.
4346         (i[34567]86-*-sysv5*) Likewise.
4347         (i[34567]86-*-sysv4*) Likewise.
4348         (i[34567]86-*-udk*) Likewise.
4349         (i[34567]86-*-sysv*) Likewise.
4350
4351 2000-05-03  Zack Weinberg  <zack@wolery.cumb.org>
4352
4353         * cpphash.h (U): New define, to correct type of string constants.
4354         (ustrcmp, ustrncmp, ustrlen, uxstrdup, ustrchr): New wrapper
4355         routines, to do casts when passing unsigned strings to libc.
4356         * cppexp.c, cppfiles.c, cpphash.c, cppinit.c, cpplib.c: Use them.
4357
4358         * cppfiles.c (_cpp_execute_include): Make filename an U_CHAR *.
4359         * cpphash.c (_cpp_quote_string): Make string an U_CHAR *.
4360         * cppinit.c (dump_special_to_buffer): Make macro name an U_CHAR *.
4361         * cpplex.c (parse_ifdef, parse_include, validate_else): Make
4362         second argument an U_CHAR *.
4363
4364         * cppinit.c (builtin_array): Make name and value U_CHAR *, add
4365         length field, clean up initializer.
4366         (ISTABLE): Add __extension__ to designated-
4367         initializers version.
4368         * cpplex.c (CHARTAB): Likewise.
4369
4370         * mbchar.c: Add dummy external declaration to the !MULTIBYTE_CHARS
4371         case so the file won't be empty.
4372
4373 Wed May  3 21:01:46 2000  Jason Eckhardt  <jle@cygnus.com>
4374
4375         * bb-reorder.c (struct reorder_block_def): Member succ removed.
4376         (REORDER_BLOCK_SUCC): Removed.
4377         (enum reorder_skip_type): Removed.
4378         (skip_insns_between_block): Renamed to skip_insns_after_block.
4379         Removed second argument. Removed dead code and cleaned up.
4380         (make_reorder_chain): Removed use of REORDER_BLOCK_SUCC.
4381         (reorder_basic_blocks): Remove use of REORDER_SKIP_AFTER. Removed
4382         second parameter to skip_insns_after_block.
4383
4384 Wed May  3 13:29:54 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4385
4386         * tree.c (staticp, case LABEL_DECL): New case.
4387
4388 2000-05-03  Richard Henderson  <rth@cygnus.com>
4389
4390         * Makefile.in (start.encap): Do not depend on LIBGCC1.
4391
4392         * mklibgcc1.in: Fix typo last change.
4393
4394 2000-05-03  Jason Merrill  <jason@casey.cygnus.com>
4395
4396         * Makefile.in (WARN_CFLAGS): Add -pedantic -Wno-long-long.
4397         (LOOSE_CFLAGS): New: CFLAGS without -pedantic and -Wtraditional.
4398         (GCC_CFLAGS): Use it.
4399         (LANG_FLAGS_TO_PASS): New: SUBDIR_FLAGS_TO_PASS with LOOSE_CFLAGS.
4400         * cp/Make-lang.in, java/Make-lang.in, f/Make-lang.in, ch/Make-lang.in,
4401         objc/Make-lang.in: Use it.
4402
4403 2000-05-03  Jason R Thorpe  <thorpej@zembu.com>
4404
4405         * config/i386/i386.md (lshrqi2_cmpno): Use q not r in constraint.
4406
4407 2000-05-03  Richard Henderson  <rth@cygnus.com>
4408
4409         * mklibgcc.in: Restrict OLDCC=GCC test to native.  Equate
4410         LIBGCC1 empty with libgcc1.null.
4411
4412 Wed May  3 12:55:46 2000  Jim Wilson  <wilson@cygnus.com>
4413
4414         * fold-const.c (extract_muldiv, case MAX_EXPR): Don't allow signedness
4415         change.
4416
4417 2000-05-03  Greg McGary  <gkm@gnu.org>
4418
4419         * tree.h (tree_common): Add bounded_flag member.  Remove
4420         inaccurate comment about number of remaining bits.
4421         (BOUNDED_INDIRECT_TYPE_P, BOUNDED_POINTER_TYPE_P,
4422         BOUNDED_REFERENCE_TYPE_P, MAYBE_BOUNDED_INDIRECT_TYPE_P,
4423         MAYBE_BOUNDED_POINTER_TYPE_P, MAYBE_BOUNDED_REFERENCE_TYPE_P,
4424         TREE_BOUNDED, TYPE_MAIN_VARIANTS_PHYSICALLY_EQUAL_P,
4425         TYPE_MAIN_PHYSICAL_VARIANT, TYPE_BOUNDED): New macros.
4426         (TYPE_QUAL_BOUNDED): New constant.
4427         (TYPE_QUALS): Handle bounded qualifier.
4428         (TREE_EXPR_QUALS, TREE_FUNC_QUALS): New macros.
4429         (TYPE_BOUNDED_VALUE, TYPE_BOUNDED_BASE, TYPE_BOUNDED_EXTENT,
4430         TYPE_BOUNDED_SUBTYPE, TYPE_UNBOUNDED_VARIANT, TYPE_POINTER_DEPTH,
4431         TYPE_AMBIENT_BOUNDEDNESS): New macros.
4432         (MAX_POINTER_DEPTH, VA_LIST_POINTER_DEPTH): New constants.
4433         (tree_type): Add pointer_depth member.  Remove
4434         inaccurate comment about number of remaining bits.
4435         (DECL_POINTER_DEPTH): Add macro.
4436         (tree_decl): Add pointer_depth member.
4437
4438 Wed May  3 22:52:53 2000  Denis Chertykov  <denisc@overta.ru>
4439
4440         * config/avr/avr-protos.h (test_hard_reg_class): Declared.
4441         * config/avr/avr.c (ashrhi3_out): optimized shift by 15.
4442         (lshrhi3_out): Likewise.
4443         (ashrsi3_out): bugfix in shift by 8.
4444         (test_hard_reg_class): New function.
4445         * config/avr/avr.md: Bugfix inside conditions in peepholes.
4446         (ashlhi3): removed define_expand of this pattern.
4447         (*ashlhi3_insn): renamed to ashlhi3.
4448         (ashlsi3): removed define_expand of this pattern.
4449         (*ashlsi3_insn): renamed to ashlsi3.
4450         (ashrqi3): removed define_expand of this pattern.
4451         (*ashrqi3_insn): renamed to ashrqi3.
4452         (ashrhi3): removed define_expand of this pattern.
4453         (*ashrhi3_insn): renamed to ashrhi3.
4454         (ashrsi3): removed define_expand of this pattern.
4455         (*ashrsi3_insn): renamed to ashrsi3.
4456         (lshrhi3): removed define_expand of this pattern.
4457         (*lshrhi3_insn): renamed to lshrhi3.
4458         (lshrsi3): removed define_expand of this pattern.
4459         (*lshrsi3_insn): renamed to lshrsi3.
4460
4461 2000-05-03  Rodney Brown  <RodneyBrown@pmsc.com>
4462
4463         * config/mcore/mcore.c: Replacing inclusion of "stdio,h" with
4464         inclusion of "system.h".
4465
4466 Wed May  3 11:43:53 2000  Jim Wilson  <wilson@cygnus.com>
4467
4468         * config/ia64/ia64.c (ia64_encode_section_info): Add check for
4469         TREE_ASM_WRITTEN.
4470
4471 2000-05-03  David Mosberger  <davidm@hpl.hp.com>
4472
4473         * config/ia64/ia64.c (ia64_override_options): Force -mconstant-gp
4474         if -mauto-pic is on.
4475         (ia64_epilogue_uses): Mark "gp" (r1) as used by the epilogue if
4476         -mconstant-gp is in effect and function-descriptors are being used
4477         to make indirect calls.
4478         * config/ia64/ia64.h (MASK_CONST_GP): New macro.
4479         (MASK_AUTO_PIC): Ditto.
4480         (TARGET_CONST_GP): Ditto.
4481         (TARGET_AUTO_PIC): Ditto.
4482         (TARGET_SWITCHES): Add -mconstant-gp and -mauto-pic options.
4483         (ASM_OUTPUT_DOUBLE_INT): Don't generate @fptr() if -mauto-pic or
4484         -mno-pic is in effect.
4485         (ASM_OUTPUT_XDATA_DOUBLE_INT): Ditto.
4486         * config/ia64/ia64.md (movdi): Use gen_load_gprel64() if
4487         -mauto-pic is in effect.
4488         (gprel64_offset): New pattern.
4489         (load_gprel64): Ditto.
4490         (call): Handle -mauto-pic like -mno-pic (don't use fptr).  If
4491         -mconstant-gp is in effect, no need to preserve gp around direct
4492         calls.
4493         (call_value): Ditto.
4494         * config/ia64/linux.h (PROFILE_BEFORE_PROLOGUE): Define.
4495         (FUNCTION_PROFILER): Define.
4496         * config/ia64/sysv4.h (ASM_OUTPUT_CONSTRUCTOR): Don't generate
4497         @fptr() directive when -mno-pic or -mauto-pic is in effect.
4498         (ASM_OUTPUT_DESTRUCTOR): Ditto.
4499
4500 2000-05-03  Richard Henderson  <rth@cygnus.com>
4501
4502         * Makefile.in (STAGESTUFF): Add libgcc libgcc.mk.
4503         (libgcc1.null, libgcc1.cross, libgcc1.a): Remove targets.
4504         (libgcc1-asm.a, libgcc1.S, libgcc2.a): Remove targets.
4505         (mklibgcc, libgcc.mk): New targets.
4506         (libgcc.a): Use libgcc.mk.
4507         (stmp-multilib): Likewise.
4508         (stmp-multilib-sub): Remove.
4509         (mostlyclean): Don't delete libgcc2 temp files.
4510         * configure.in (AC_PROG_CC_C_O): Add.
4511         (NO_MINUS_C_MINUS_O): Substitute it.
4512         (all_outputs): Add mklibgcc.
4513         * mklibgcc.in: New file.
4514
4515 2000-05-03  Jason Merrill  <jason@casey.cygnus.com>
4516
4517         * cppexp.c (op_t): Make an int.
4518
4519         * rtlanal.c (dead_or_set_regno_p): Remove unused variable.
4520
4521         * varasm.c (initializer_constant_valid_p): Fix parenthesis.
4522
4523         * gensupport.c (process_rtx): Fix macros used.
4524
4525 2000-05-03  Richard Henderson  <rth@cygnus.com>
4526
4527         * flow.c (propagate_one_insn): Also don't PROP_REG_INFO for
4528         call-clobbered registers of a call.
4529
4530 Wed May  3 12:40:53 2000  Clinton Popetz  <cpopetz@cygnus.com>
4531
4532         * gensupport.c: New file.
4533         * gensupport.h: New file.
4534         * Makefile.in (HOST_RTL): Depend on gensupport.
4535         (gensupport.o) New rule.
4536         * genattr.c: Use gensupport for reading .md files.
4537         * genattrtab.c: Ditto.
4538         * gencodes.c: Ditto.
4539         * genconfig.c: Ditto.
4540         * genemit.c: Ditto.
4541         * genextract.c: Ditto.
4542         * genflags.c: Ditto.
4543         * genopinit.c: Ditto.
4544         * genoutput.c: Ditto.
4545         * genpeep.c: Ditto.
4546         * genrecog.c: Ditto.
4547         * rtl.def (define_insn_and_split): New DEF_RTL_EXPR.
4548         * md.texi (Insn Splitting): Document define_insn_and_split.
4549
4550 Tue May  2 00:20:30 2000  Jason Eckhardt  <jle@cygnus.com>
4551
4552         * flow.c (verify_flow_info): Added two more sanity checks. The
4553         first checks that the blocks are numbered consecutively. The second
4554         checks that n_basic_blocks is actually equal to the number of
4555         basic blocks in the insn chain.
4556
4557 2000-05-03  Zack Weinberg  <zack@wolery.cumb.org>
4558
4559         * cpplib.h: Add accessor macros for token lists.
4560         * cpplib.c, cpphash.c, cpplex.c: Use them.
4561
4562 Wed May  3 09:29:17 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4563
4564         * expr.c (expand_expr, case COMPONENT_REF): Don't check for checking
4565         memory usage if not in a function.
4566         * varasm.c (initializer_constant_valid_p, case ADDR_EXPR): Only
4567         return address if static.
4568
4569 Wed May  3 13:14:49 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4570
4571         * ifcvt.c (noce_try_cmove_arith):  Use may_trap_p to thest
4572         whether address may trap.
4573
4574 Tue May  2 23:38:37 2000  Jason Eckhardt  <jle@cygnus.com>
4575
4576         * bb-reorder (chain_reorder_blocks): Changed code to test for
4577         EDGE_FALLTHRU rather than making erroneous assumption that the
4578         first outgoing edge is the fall-through edge.
4579
4580 Tue May  2 18:20:31 2000  Donald Lindsay  <dlindsay@hound.cygnus.com>
4581
4582         * config/mips/mips.c (mips_build_va_list,mips_va_start,mips_va_arg): new
4583         ABI for varargs, across all MIPS. This is incompatible because the
4584         va_list (__builtin_va_list) structure is different, so a compilation
4585         unit passing a va_list and a compilation unit being passed one, should
4586         both be compiled with the same ABI. (The old structure had two
4587         pointers, now it has three.)
4588
4589 Tue May  2 19:18:43 2000  Jason Eckhardt  <jle@cygnus.com>
4590
4591         * bb-reorder.c (struct reorder_block_def): Remove members end,
4592         block_begin, and block_end.
4593         (REORDER_BLOCK_OLD_END): Delete.
4594         (REORDER_BLOCK_BEGIN): Delete.
4595         (REORDER_BLOCK_END): Delete.
4596         (chain_reorder_blocks): Remove dead code.
4597
4598 Tue May  2 17:06:53 2000  Jason Eckhardt  <jle@cygnus.com>
4599
4600         * bb-reorder.c (remove_scope_notes): Check for both types of scope
4601         notes as the end of a basic block before deleting.
4602
4603 2000-05-02  Mumit Khan  <khan@xraylith.wisc.edu>
4604
4605         * final.c (final_start_function): Fix spelling of "necessary".
4606
4607 2000-05-02  Jason Merrill  <jason@casey.cygnus.com>
4608
4609         * toplev.c (debug_ignore_block): Return int.
4610         * dwarf2out.c (dwarf2out_ignore_block): Likewise.
4611         * toplev.h, dwarf2out.h: Adjust.
4612         * emit-rtl.c (remove_unnecessary_notes): Test return value.
4613
4614         * emit-rtl.c (remove_unnecessary_notes): Fix spelling of "necessary".
4615         * toplev.c, final.c, rtl.h: Adjust.
4616
4617 2000-05-02  Zack Weinberg  <zack@wolery.cumb.org>
4618
4619         * aclocal.m4 (gcc_AC_CHECK_PROG_VER): New macro.
4620         * configure.in: Look for makeinfo in the unified tree, then
4621         for a system makeinfo which is sufficiently new.
4622         * Makefile.in: If configure says makeinfo is too old, don't
4623         build or install Info documentation.
4624
4625 2000-05-02  Zack Weinberg  <zack@wolery.cumb.org>
4626
4627         * cpphash.c (collect_params): Fix off-by-one error.
4628         (dump_hash_helper): Dump all four macro nodetypes.
4629
4630 2000-05-02  Jakub Jelinek  <jakub@redhat.com>
4631
4632         * cpphash.c (trad_stringify): Adjust p after stringification as
4633         well.
4634
4635 2000-05-02  Zack Weinberg  <zack@wolery.cumb.org>
4636
4637         * cpplib.h (CPP_POP, parse_cleanup_t): Delete.
4638         (cpp_buffer): Remove cleanup, seen_eof, manual_pop members.
4639
4640         * cppfiles.c (file_cleanup): Delete.
4641         * cpphash.c (macro_cleanup): Delete.
4642         (collect_objlike_expansion, collect_funlike_expansion,
4643         macarg, scan_arguments): Remove CPP_POP case.
4644
4645         * cpplex.c (null_cleanup): Delete.
4646         (cpp_pop_buffer): Do the work that was done in the cleanups
4647         here.  Call _cpp_unwind_if_stack from here.
4648         (_cpp_expand_to_buffer, cpp_scan_buffer_nooutput,
4649         cpp_scan_buffer): Run until we see CPP_EOF and the top of
4650         stack is the buffer _below_ the one we stacked.
4651         (cpp_get_token): Always pop an exhausted buffer.  Return
4652         CPP_EOF unless it's a macro buffer.  Don't call _cpp_handle_eof.
4653         * cpplib.c (skip_if_group): Don't call cpp_get_token to
4654         increment the line number.
4655         (_cpp_handle_eof): Rename to _cpp_unwind_if_stack.
4656
4657         * fix-header.c (read_scan_file) [parsing getchar()]: Run until
4658         we see CPP_EOF and the top of stack is the buffer _below_ the
4659         one we stacked.
4660         * scan-decls.c: Likewise.
4661
4662 2000-05-02  Andrew Haley  <aph@cygnus.com>
4663
4664         * config/ia64/ia64.c (ia64_encode_section_info): Handle the case
4665         where this function is called for the second time on a decl that
4666         has had its section info changed in such a way as to move it out
4667         of small data/bss.
4668         * config/ia64/ia64.h (REDO_SECTION_INFO_P): New definition.
4669
4670 2000-05-01  Richard Henderson  <rth@cygnus.com>
4671
4672         * ifcvt.c (dead_or_predicable): Set merge_bb->end to the insn before
4673         the sequence we're moving, not to merge_bb->head.
4674
4675 2000-05-01  Richard Henderson  <rth@cygnus.com>
4676
4677         * configure.in (alpha*-*-linux-gnulibc1*) [tmake_file]: Remove
4678         reference to alpha/t-linux.
4679         (alpha*-*-linux-gnu*): Likewise.
4680         * configure: Rebuild.
4681
4682         * calls.c (expand_call): Don't emit reg notes for a sibcall.
4683
4684         * flow.c (calculate_global_regs_live): Skip for_each_successor_phi
4685         if not in SSA form.
4686
4687         * ifcvt.c (if_convert): Only verify_flow_info if ENABLE_CHECKING.
4688
4689 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
4690
4691         * integrate.c (copy_decl_for_inlining): Copy TREE_READONLY and
4692         TREE_THIS_VOLATILE.
4693
4694 2000-05-01  Richard Henderson  <rth@cygnus.com>
4695
4696         * ifcvt.c (noce_emit_cmove): Conditionally compile call to
4697         emit_conditional_move.
4698
4699 2000-05-01  Jakub Jelinek  <jakub@redhat.com>
4700
4701         * config/ia64/linux.h (LINK_SPEC): Use /lib/ld-linux-ia64.so.1
4702         as the dynamic linker.
4703
4704 2000-05-01  Zack Weinberg  <zack@wolery.cumb.org>
4705
4706         * cppfiles.c (open_include_file): Open file in blocking mode.
4707         (read_include_file): Don't fcntl(fd, F_SETFL, 0) anymore.
4708         Only exclude block devices and directories.
4709
4710         * cpphash.c (_cpp_make_hashnode): Rename make_HASHNODE, now
4711         static.  Allocate the hashnode and its string in the same
4712         block of memory.
4713         (del_HASHNODE): Don't free h->name.
4714         (_cpp_lookup): If there is no entry for this string, create
4715         one, of type T_VOID.
4716         (_cpp_lookup_slot): Delete.
4717         * cpphash.h: Update prototypes.
4718
4719         * cpplex.c (maybe_macroexpand): Check for hp->type == T_VOID,
4720         not hp == NULL.
4721         * cpplib.c (do_define, do_undef, do_pragma_poison, do_assert,
4722         do_unassert, cpp_defined): Use _cpp_lookup.  Don't create a
4723         node here, just fill in the value field properly.  "Delete"
4724         entries by setting the value field to T_VOID.  Check for
4725         hp->type == T_VOID, not hp == NULL.
4726
4727         * Makefile.in (cpplib.o): Don't depend on $(HASHTAB_H).
4728         * cpperror.c, cppexp.c, cpplex.c, cpplib.c:  Don't include
4729         hashtab.h.
4730
4731 2000-05-01  Alexandre Oliva  <aoliva@cygnus.com>
4732
4733         * config/mn10300/mn10300.c (print_operand_address): Do not add
4734         zero to SP.
4735
4736         * config/mn10300/mn10300.c (expand_epilogue): If SP is to be
4737         adjusted by less than 256 bytes, use ret regardless of having any
4738         callee-saved register to restore.
4739
4740 2000-05-01 Laurynas Biveinis <lauras@softhome.net>
4741
4742         * tm.texi (TARGET_HAS_F_SETFLKW): Fix typo.
4743
4744 2000-05-01 Mark Elbrecht <snowball3@bigfoot.com>
4745
4746         * config/i386/djgpp.h (INT_ASM_OP): Define.
4747         (CPP_PREDEFINES): Rename MSDOS to __MSDOS__.
4748         (ASM_WEAKEN_LABEL): Define.
4749         (MASK_BNU210): Define.
4750         (SUBTARGET_SWITCHES): Define.
4751         (SUPPORTS_WEAK, SUPPORTS_ONE_ONLY): Define.
4752         (MAKE_DECL_ONE_ONLY): Define.
4753         (UNIQUE_SECTION_P, UNIQUE_SECTION): Define.
4754
4755 2000-05-01  Mumit Khan  <khan@xraylith.wisc.edu>
4756
4757         * i386/cygwin.h (INT_ASM_OP): Define.
4758
4759 Mon May  1 18:20:06 2000  Denis Chertykov  <denisc@overta.ru>
4760
4761         * config/avr/avr.c (address_cost): renamed to avr_address_cost.
4762         * config/avr/avr.h (ADDRESS_COST): use avr_address_cost.
4763
4764 Mon May  1 17:50:44 2000  Denis Chertykov  <denisc@overta.ru>
4765
4766         * config/avr/avr.c (asm_file_start): output 0 as r0 and 1 as r1 in
4767         __tmp_reg__ and __zero_reg__ initialization.
4768
4769 2000-04-30  Richard Henderson  <rth@cygnus.com>
4770
4771         * flow.c (propagate_one_insn): Mark sets even when the insn is dead.
4772
4773         * ifcvt.c (noce_process_if_block): Fail the conversion if X is
4774         referenced bewteen the condition and the jump.  Don't delete
4775         anything but the jump.
4776
4777 Sun Apr 30 22:48:24 2000  Jason Eckhardt  <jle@cygnus.com>
4778
4779         * bb-reorder.c (scope_def): New struct.
4780         (scope_forest_info): New struct.
4781         (struct reorder_block_def): New member "scope".
4782         (REORDER_BLOCK_SCOPE): New macro.
4783         (relate_bbs_with_scopes): New function and prototype.
4784         (make_new_scope): Likewise.
4785         (build_scope_forest): Likewise.
4786         (remove_scope_notes): Likewise.
4787         (insert_intra_1): Likewise.
4788         (insert_intra_bb_scope_notes): Likewise.
4789         (insert_inter_bb_scope_notes): Likewise.
4790         (rebuild_scope_notes): Likewise.
4791         (free_scope_forest_1): Likewise.
4792         (free_scope_forest): Likewise.
4793         (dump_scope_forest): Likewise.
4794         (dump_scope_forest_1): Likewise.
4795         (chain_reorder_blocks): Set REORDER_BLOCK_SCOPE for new block.
4796         Update REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END for new
4797         block.
4798         (reorder_basic_blocks): Added calls to build_scope_scope_forest
4799         and remove_scope_notes before reordering is done. Added calls to
4800         rebuild_scope_notes, free_scope_forest, and reorder_blocks after
4801         after reordering is done.
4802
4803 2000-40-30  Bruce Korb  <bkorb@gnu.org>
4804
4805         * fixinc/inclhack.def:  Added definitions needed by OSR5,
4806         removed two stale entries (defined away with OLD_CPP).
4807         * fixinc/inclhack.sh: regen
4808         * fixinc/fixincl.x: regen
4809
4810 2000-04-30  Richard Henderson  <rth@cygnus.com>
4811
4812         * ifcvt.c (dead_or_predicable): Manually squeeze non-movable notes
4813         from the last insn in the sequence.
4814
4815 2000-04-30  Zack Weinberg  <zack@wolery.cumb.org>
4816
4817         * cpplex.c (cpp_idcmp): New function.
4818         * cpplib.h: Prototype it.
4819         * scan_decls.c (scan_decls): Use it to inspect token names.
4820         * fix-header.c (read_scan_file): Likewise.  Set system_header_p on
4821         the file being run through the preprocessor.
4822         (check_macro_names): Provide length of token to cpp_defined.
4823
4824         * Makefile.in: Remove stale warning message.
4825
4826         * cppfiles.c (redundant_include_p): Provide length of token to
4827         cpp_defined.
4828         * cpphash.c (_cpp_make_hashnode, _cpp_lookup_slot): Hash
4829         values are unsigned int.
4830         (_cpp_lookup, _cpp_lookup_slot): Do not calculate the length.
4831         (_cpp_lookup_slot): Do not calculate the hash, either.
4832         * cpphash.h: Update prototypes.
4833         * cpplib.c (do_define, do_undef, do_pragma_poison, do_assert):
4834         Hashes are unsigned int.  Calculate hash here, pass by value
4835         to _cpp_lookup_slot.
4836
4837 2000-04-30  Bernd Schmidt  <bernds@cygnus.co.uk>
4838
4839         * simplify-rtx.c (check_value_useless): Delete function.
4840         (discard_useless_locs): Don't call it; manage N_USELES_VALUES counter
4841         by hand.
4842         (cselib_invalidate_regno): Likewise.
4843         (cselib_invalidate_mem_1): Likewise.
4844         (references_value_p): Recognize useless values by the fact that they
4845         have no locations.
4846         (discard_useless_values): Likewise.
4847         (cselib_record_set): This may turn a useless value
4848         into a useful one.
4849
4850 2000-04-30  Richard Henderson  <rth@cygnus.com>
4851
4852         * config/d30v: New port.
4853
4854         * configure.in (d30v-*): Set fp format.
4855         * configure: Rebuild.
4856
4857 2000-04-30  Richard Henderson  <rth@cygnus.com>
4858
4859         * ifcvt.c: New file.
4860         * Makefile.in (OBJS): Add it.
4861         (ifcvt.o): New target.
4862         * jump.c (jump_optimize_1): Remove all code related to if-conversion,
4863         and conditional arithmetic.
4864         (find_insert_position): Remove.
4865         * timevar.def (TV_IFCVT, TV_IFCVT2): New.
4866         * toplev.c (DFI_ce, DFI_ce2): New.
4867         (dump_file): Add ce and ce2 dumps.
4868         (rest_of_compilation): Run if_convert a couple o times.  Set
4869         cse_not_expected after cse2.  Don't set no_new_pseudos until
4870         after sched1 or recompute_reg_usage.
4871
4872 2000-04-30  Richard Henderson  <rth@cygnus.com>
4873
4874         * config/alpha/t-crtbe (crtbegin.o): Add "-I.".
4875         (crtend.o, crtbeginS.o, crtendS.o): Likewise.
4876
4877 2000-04-30  Richard Henderson  <rth@cygnus.com>
4878
4879         * flow.c (struct reg_cond_life_info): New.
4880         (struct propagate_block_info): Add reg_cond_dead and reg_cond_reg.
4881         (init_propagate_block_info): Initialize them.
4882         (free_propagate_block_info): Destruct them.
4883         (mark_set_1): Consider conditional life before killing a register.
4884         (mark_regno_cond_dead): New.
4885         (free_reg_cond_life_info): New.
4886         (flush_reg_cond_reg_1, flush_reg_cond_reg): New.
4887         (ior_reg_cond, not_reg_cond, nand_reg_cond): New.
4888         (mark_used_reg): Record conditional life.
4889
4890         * haifa-sched.c (schedule_insns): Disable death counting
4891         sanity check for HAVE_conditional_execution.
4892
4893 2000-04-30  Richard Henderson  <rth@cygnus.com>
4894
4895         * Makefile.in (TIMEVAR_H): New.
4896         (ggc-simple.o, ggc-page.o, toplev.o, timevar.o): Use it.
4897         (timevar.h): Remove rule.
4898
4899 2000-04-29  Richard Henderson  <rth@cygnus.com>
4900
4901         * config/alpha/crtend.asm: Use C comments instead of #.
4902         * config/alpha/crtbegin.asm: Likewise.  Mark __dso_handle hidden.
4903
4904         * config/alpha/elf.h (SELECT_SECTION): Treat CONSTRUCTOR like VAR_DECL.
4905
4906 2000-04-29  Zack Weinberg  <zack@wolery.cumb.org>
4907
4908         * cpphash.h (enum node_type: Take out T_MCONST.
4909         (union hashval): Move into struct hashnode.
4910         (struct hashnode): Pack tighter.  Remove file, line, col
4911         members.
4912         * cpphash.c: Constify most of the macro-definition structures.
4913         (struct definition): Replace by struct object_defn
4914         and struct funct_defn.  Put file, line, column information
4915         here.  All users updated to match.
4916         (_cpp_create_definition, _cpp_macroexpand): Remove special
4917         case for #define WORD OTHERWORD.
4918         * cpplib.c (do_undef): Remove T_MCONST case.
4919
4920         * cpphash.h: Move struct reflist, struct definition, and the
4921         DEFINITION typedef to cpphash.c.  Use 'struct definition *' in
4922         union hashval.  _cpp_free_definition takes a HASHNODE pointer.
4923         * cpphash.c (_cpp_free_definition): Free data pointed to by
4924         MCONST, XCONST, MACRO, and FMACRO nodes properly.
4925         (_cpp_create_definition, del_HASHNODE): Just call
4926         _cpp_free_definition to clear out a hashnode.
4927         * cpplib.c (do_pragma_poison): Likewise.
4928
4929 Sat Apr 29 12:25:17 2000  Alexandre Oliva  <aoliva@cygnus.com>
4930
4931         * config/mn10300/mn10300.h (FIRST_DATA_REGNUM,
4932         LAST_DATA_REGNUM, FIRST_ADDRESS_REGNUM, LAST_ADDRESS_REGNUM,
4933         FIRST_EXTENDED_REGNUM, LAST_EXTENDED_REGNUM): New macros.
4934         (REGNO_SP_P): Redefine in terms of STACK_POINTER_REGNUM.
4935         (REGNO_DATA_P, REGNO_ADDRESS_P, REGNO_EXTENDED_P,
4936         REGNO_AM33_P): Redefine in terms of the new macros.
4937         (CONDITIONAL_REGISTER_USAGE, REGNO_REG_CLASS): Likewise.
4938         (FUNCTION_VALUE, LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P,
4939         STRUCT_VALUE): Likewise.
4940         (STACK_POINTER_REGNUM, FRAME_POINTER_REGNUM,
4941         ARG_POINTER_REGNUM, STATIC_CHAIN_REGNUM): Likewise.  Moved.
4942
4943 Sat Apr 29 01:18:45 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4944
4945         * regmove.c (struct record_stack_memrefs_data): New.
4946         (record_stack_memrefs): New function.
4947         (combine_stack_adjustments_for_block): Use it.
4948
4949 Sat Apr 29 01:15:27 MET DST 2000  Jan Hubicka  <jh@suse.cz>
4950
4951         * calls.c (calls_function_1):  Propertly handle TREE_LIST expressions;
4952         use special_function_p to detect alloca.
4953
4954 Fri Apr 28 16:30:33 2000  Marc Espie <espie@cvs.openbsd.org>
4955
4956         * gcc.texi: Fixes for makeinfo 4.0 --html.
4957
4958 2000-04-28  Zack Weinberg  <zack@wolery.cumb.org>
4959
4960         * pcp.h: Delete file.
4961
4962 2000-04-28  Kazu Hirata  <kazu@hxi.com>
4963
4964         * h8300.c (function_epilogue): Clean up flags when the last insn
4965         in a function is a barrier.
4966
4967 2000-04-28  Chris Demetriou  <cgd@sibyte.com>
4968
4969         * configure.in (sparc-hal-solaris2*): protect [] glob from
4970         my expansion.
4971         (mips*-*-ecoff*, mips*-*-elf*, mips*-*-*): use MASK_ defines
4972         rather than hard-coded constants in target_cpu_default2.
4973         * configure: Regenerate.
4974
4975 2000-04-28  Jason Merrill  <jason@casey.cygnus.com>
4976
4977         * tree.c (get_callee_fndecl): Extract the initial value from
4978         a readonly decl.
4979
4980 2000-04-28  Richard Henderson  <rth@cygnus.com>
4981
4982         * varasm.c (record_constant_1): Record the CODE_LABEL when
4983         taking the address of a LABEL_REF.
4984
4985 2000-04-28  Richard Henderson  <rth@cygnus.com>
4986             Jan Hubicka  <jh@suse.cz>
4987
4988         * calls.c (combine_pending_stack_adjustment_and_call): Return the
4989         adjustment; don't do the stack adjust.
4990         (expand_call): Call compute_argument_block_size right before
4991         allocating the block; update comment; don't do alignment sanity
4992         checking for sibling call; use args_size instead of
4993         unadjusted_args_size before args_size is adjusted.  Use
4994         combine_pending_stack_adjustment_and_call to compute stack adjust
4995         for must_preallocate case.
4996
4997         * expr.c (push_block): Remove shadow `temp' in inner scope.
4998
4999 2000-04-28  Jason Merrill  <jason@casey.cygnus.com>
5000
5001         * toplev.c (rest_of_compilation): Call
5002         note_deferral_of_defined_inline_function even if the function
5003         can't be inlined.
5004
5005 2000-04-28  Scott Bambrough  <scottb@netwinder.org>
5006
5007         * cpplex.c (_cpp_scan_line): Fix buffer overwrite.
5008
5009 2000-04-28  Richard Henderson  <rth@cygnus.com>
5010
5011         * toplev.c (rest_of_type_compilation): Fix sdb TIMEVAR typo.
5012
5013 2000-04-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5014
5015         * timevar.c (init_timevar): DeANSIfy function definition.
5016
5017 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
5018
5019         * Makefile.in (timevar.o): Depend on flags.h.
5020         * timevar.c (unused_stack_instances): New variable.
5021         (timevar_push): Take a timevar_stack_def from
5022         unused_stack_instances if available.
5023         (timevar_pop): Push the popped timevar_stack_def onto
5024         unused_stack_instances.
5025         (TIMEVAR_ENABLE): New macro.
5026         (timevar_def): Make standalone a 1-bit field.  Add field used.
5027         (get_time): Rename parameter to now.  Return after clearing it if
5028         not TIMEVAR_ENABLE.
5029         (init_timevar): Do nothing if not TIMEVAR_ENABLE.
5030         (timevar_pop): Likewise.
5031         (timevar_stop): Likewise.
5032         (timevar_push): Likewise.  Mark the timing variable as used.
5033         (timevar_start): Likewise.
5034         (timevar_print): Do nothing if not TIMEVAR_ENABLE.  Don't print
5035         timevars that were never used.
5036
5037 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
5038
5039         * c-common.c (c_apply_type_quals_to_decl): REFERENCE_TYPES are
5040         always TREE_READONLY.
5041
5042 2000-04-27  Ulrich Drepper  <drepper@cygnus.com>
5043
5044         * i386.h (FUNCTION_BLOCK_PROFILER_EXIT): Generate mem reference
5045         for call instruction with mode QImode.
5046
5047 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
5048
5049         * Makefile.in (OBJS): Add timevar.o.
5050         (toplev.o): Depend on timevar.h.
5051         (ggc-simple.o): Likewise.
5052         (ggc-page.o): Likewise.
5053         (timevar.o): New rule.
5054         (timevar.h): New rule.
5055
5056         * timevar.h: New file.
5057         * timevar.c: Likewise.
5058         * timevar.def: Likewise.
5059
5060         * toplev.h (gc_time, parse_time, varconst_time): Remove.
5061         * toplev.c: Use timevar_push and timevar_pop instead of TIMEVAR
5062         throughout.
5063         (TIMEVAR): Remove macro.
5064         (gc_time, parse_time, varconst_time, integration_time, jump_time,
5065         cse_time, gcse_time, loop_time, cse2_time, branch_prob_time,
5066         flow_time, combine_time, regmove_time, sched_time,
5067         local_alloc_time, global_alloc_time, flow2_time, peephole2_time,
5068         sched2_time, dbr_sched_time, reorder_blocks_time,
5069         rename_registers_time, shorten_branch_time, stack_reg_time,
5070         to_ssa_time, from_ssa_time, final_time, symout_time, dump_time,
5071         all_time): Remove.
5072         (compile_file): Don't initialize time variables.  Call
5073         init_timevar and start TV_TOTAL timer.  Call timevar_print instead
5074         of many calls to print_time.
5075         (rest_of_compilation): Add timing for reload_cse_regs.
5076         (get_run_time): Removed to timevar.c.
5077         (print_time): Likewise.
5078         (get_run_time): Implement using TV_TOTAL time variable.
5079         (print_time): Get total run time from get_run_time.
5080         * ggc-page.c (ggc_collect): Push and pop TV_GC instead of
5081         computing elapsed time explicitly.
5082         * ggc-simple.c (ggc_collect): Likewise.
5083         (gc_time): Remove declaration.
5084
5085 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
5086
5087         * calls.c (combine_pending_stack_adjustment_and_call): New function.
5088         (expand_call): Use it.
5089
5090 2000-04-27  Jan Hubicka  <jh@suse.cz>
5091
5092         * flow.c (mark_set_1):  Handle MEMs in ZERO_EXTRACT/SIGN_EXTRACT
5093         fields.
5094
5095 Thu Apr 27 12:47:00 2000  Alexandre Oliva  <aoliva@cygnus.com>
5096
5097         * config/mn10300/mn10300.md (movhi): Simplify.  Prefer data
5098         registers.
5099
5100 Thu Apr 27 17:33:05 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5101
5102         * function.c (epilogue_done): Pass whole insn to record_insns.
5103
5104 Thu Apr 27 16:55:28 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5105
5106         * cse.c (CSE_ADDRESS_COST): Remove.
5107         (find_best_addr): Add new parameter "MODE", use address_cost instead
5108         of CSE_ADDRESS_COST
5109         (address_cost): New.
5110         (fold_rtx): Update call of find_best_addr.
5111         * rtl.h (address_cost): Declare.
5112         * loop.c (general_induction_var): Add new parameter "MODE", use
5113         address_cost instead of ADDRESS_COST
5114         (init_loop): Use address_cost instead of ADDRESS_COST.
5115         (check_insn_for_givs): Update call of general_induction_var.
5116         (find_mem_givs): Likewise.
5117         (consec_sets_giv): Likewise.
5118         * config/i386/i386.h (ADDRESS_COST): Call ix86_address_cost.
5119         * i386.c (ix86_address_cost): New.
5120         * i386-protos.h (ix86_address_cost): Declare.
5121
5122 Thu Apr 27 11:45:16 2000  Alexandre Oliva  <aoliva@cygnus.com>
5123
5124         * config/mn10300/mn10300.md (movqi): Simplify.  Prefer data
5125         registers.
5126
5127 Thu Apr 27 16:11:00 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5128
5129         * expr.c (store_expr): Use clear_storage instead of direct memset
5130         libcall.
5131
5132 Thu Apr 27 10:36:51 2000  Alexandre Oliva  <aoliva@cygnus.com>
5133
5134         * config/mn10300/mn10300.c (mn10300_address_cost): Test
5135         ASHIFT, AND and LABEL_REF.
5136
5137 Thu Apr 27 15:08:46 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5138
5139         * invoke.texi (-foptimize-sibling-calls): Fix.
5140
5141 Thu Apr 27 14:54:22 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5142
5143         * loop.c (load_mems)  Don't use hard registers for the hoisting.
5144
5145         * unroll.c (unroll_loop): Avoid overflow in the n_iterations
5146         calculation; rename const_equiv array in the preconditioning code
5147         from loop_unroll to loop_unroll_precondition
5148
5149 2000-04-27  Richard Henderson  <rth@cygnus.com>
5150
5151         * flow.c (struct propagate_block_info): Remove new_dead, new_live;
5152         add new_set.
5153         (propagate_one_insn): Clear it.  Don't update reg_live here.
5154         (init_propagate_block_info): Update for pbi member changes.
5155         (free_propagate_block_info): Likewise.
5156         (mark_set_1): Know that zero_extract, sign_extract, and
5157         strict_low_part don't kill their argument.  Alter hard subregs.
5158         Update new_set for non-CLOBBER sets.  Update reg_live.
5159         (find_auto_inc): Update reg_live, not new_dead.
5160         (mark_used_reg): Update reg_live, not new_live.  Examine new_set
5161         to determine if the reg in question was set this insn.  Only update
5162         reg info with PROP_REG_INFO.
5163
5164 2000-04-26  Richard Henderson  <rth@cygnus.com>
5165
5166         * flow.c (allocate_reg_life_data): Set max_regno here ...
5167         (life_analysis): ... not here.
5168
5169         * flow.c (calculate_global_regs_live): Force stack pointer
5170         live at end.
5171
5172 2000-04-26  Richard Henderson  <rth@cygnus.com>
5173
5174         * jump.c (redirect_exp_1): Rework from old redirect_exp.  Never
5175         commit change group changes.
5176         (invert_exp_1): Similarly.
5177         (redirect_exp, invert_exp): Use them.
5178         (redirect_jump_1): New.
5179         (invert_jump_1): New.
5180         (jump_optimize_1): Remove code subsumed by condexec.c.
5181         * rtl.h (invert_jump_1, redirect_jump_1): Declare.
5182
5183 2000-04-26  Richard Henderson  <rth@cygnus.com>
5184
5185         * rtlanal.c (dead_or_set_regno_p): Use find_regno_note.
5186
5187         * genconfig.c (main): Set all HAVE_foo to 1.
5188
5189         * graph.c (node_data): Use GET_NOTE_INSN_NAME instead of local array.
5190
5191 2000-04-26  Alex Samuel  <samuel@codesourcery.com>
5192
5193         * invoke.texi: Document -fssa flag.
5194
5195 2000-04-26  Richard Henderson  <rth@cygnus.com>
5196
5197         * flow.c (count_reg_sets_1): Remove.
5198         (count_reg_sets, count_reg_references): Remove.
5199         (recompute_reg_usage): Implement with update_life_info.
5200         Reallocate life data.
5201
5202 2000-04-26  Richard Henderson  <rth@cygnus.com>
5203
5204         * flow.c (update_life_info): Consider blocks null to mean the
5205         universal set.
5206         (calculate_global_regs_live): Likewise.
5207         (life_analysis): Do that instead of collecting all_blocks.
5208
5209 2000-04-26  Richard Henderson  <rth@cygnus.com>
5210
5211         * flow.c (tidy_fallthru_edge): Don't delete the jump when it's
5212         a still-valid conditional jump.
5213
5214 2000-04-26  Richard Henderson  <rth@cygnus.com>
5215
5216         * jump.c (invert_jump): Always invert REG_BR_PROB.  Do it correctly.
5217
5218         * bb-reorder.c (reorder_basic_blocks): Don't run estimate_probability.
5219         * flow.c (calculate_loop_depth): Remove.
5220         * output.h (calculate_loop_depth): Don't declare.
5221         * toplev.c (rest_of_compilation): Expand calculate_loop_depth
5222         inline; run estimate_probability at the same time.
5223
5224 2000-04-26  Neil Booth  <NeilB@earthling.net>
5225
5226         * cpplib.h: "~=" is not a single pp-token.
5227         * cpplex.c: Correct commentary.
5228
5229 2000-04-26  Richard Henderson  <rth@cygnus.com>
5230
5231         * flow.c (mark_set_1): New arguments code and flags; update all
5232         callers.  Track regno_first and regno_last; do HARD_REGNO_NREGS
5233         test in one place.  Tidy flags tests.  Don't bias REG_N_REFS by
5234         loop_depth when optimizing for size.  Do new_dead update after
5235         emitting REG_UNUSED notes.  Merge mark_set_reg code.
5236         (mark_set_reg): Remove.
5237         (propagate_one_insn): Use mark_set_1 for call-clobbered registers;
5238         arrange to not emit REG_UNUSED notes.
5239
5240 2000-04-26  Richard Henderson  <rth@cygnus.com>
5241
5242         * flow.c (find_auto_inc): Use pbi->bb instead of BLOCK_FOR_INSN.
5243         * ssa.c (convert_from_ssa): Don't run compute_bb_for_insn.
5244
5245 2000-04-26  Richard Henderson  <rth@cygnus.com>
5246
5247         * flow.c (propagate_one_insn): Break out from propagate_block.
5248         (init_propagate_block_info): Likewise.
5249         (free_propagate_block_info): Likewise.
5250         (propagate_block): Use them.  Export.
5251         * basic-block.h: Declare them all.
5252
5253 2000-04-26  Richard Henderson  <rth@cygnus.com>
5254
5255         * basic-block.h (life_analysis): Declare here ...
5256         * output.h: ... not here.
5257         * flow.c (life_analysis): Remove nregs parameter; replace
5258         remove_dead_code with flags.  Remove ssa dead code check.
5259         Only init alias analysis if we'll use it.
5260         * reg-stack.c (reg_to_stack): Update life_analysis arguments.
5261         * ssa.c (convert_to_ssa): Likewise.
5262         (convert_from_ssa): Likewise.
5263         * toplev.c (rest_of_compilation): Likewise.
5264
5265 2000-04-26  Richard Henderson  <rth@cygnus.com>
5266
5267         * flow.c (flow_delete_block): Rename from delete_block.  Export.
5268         * basic-block.h (flow_delete_block): Declare.
5269
5270 2000-04-26  David S. Miller  <davem@redhat.com>
5271
5272         * optabs.c (emit_libcall_block): Verify insns with INSN_P before
5273         taking a PATTERN of it.
5274
5275 2000-04-26  <NeilB@earthling.net>
5276
5277         * cpplex.c (spell_other, spell_char): Remove.
5278         (SPELL_CHAR): New.
5279         (token_spelling, trigraph_map): Use unsigned chars.
5280         (_cpp_lex_line): Tidy up the switch statement.
5281         * cpplib.h: Implement spell_char with spell_string.
5282         (C): New.
5283
5284 2000-04-26  <RodneyBrown@pmsc.com>
5285
5286         * pa/pa32-regs.h (HARD_REGNO_MODE_OK): Warning removal.
5287         * pa/pa64-regs.h (HARD_REGNO_MODE_OK): Warning removal.
5288
5289 2000-04-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5290
5291         * dwarf2out.c (dw_cfi_oprnd_struct, dw_fde_struct, add_fde_cfi,
5292         reg_save, dwarf2out_frame_debug_expr, dwarf2out_def_cfa,
5293         dwarf2out_window_save, dwarf2out_args_size, dwarf2out_reg_save,
5294         dwarf2out_return_save, dwarf2out_return_reg,
5295         dwarf2out_stack_adjust, dwarf2out_frame_debug, primary_filename,
5296         add_AT_lbl_id, add_AT_lbl_offset, type_tag, decl_start_label,
5297         gen_compile_unit_die, dwarf2out_init): Constify a char*.
5298
5299         * dwarf2out.h (dwarf2out_init): Likewise.
5300
5301         * dwarfout.c (filename_entry, primary_filename, last_filename,
5302         type_tag, output_compile_unit_die, dwarfout_init): Likewise.
5303
5304         * tree.h (dwarf2out_def_cfa, dwarf2out_window_save,
5305         dwarf2out_args_size, dwarf2out_reg_save, dwarf2out_return_save,
5306         dwarf2out_return_reg): Likewise.
5307
5308 2000-04-26  Andreas Jaeger  <aj@suse.de>
5309
5310         * extend.texi (Function Attributes): Fix description of pure
5311         attribute.
5312
5313 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
5314
5315         * integrate.c (output_inline_function): Do clear DECL_DEFER_OUTPUT
5316         before calling rest_of_compilation.
5317
5318 2000-04-26  Andreas Jaeger  <aj@suse.de>
5319
5320         * config/mips/linux.h: Remove erroneous commit of #if 0/#endif in
5321         last patch.
5322
5323 2000-04-25  Richard Henderson  <rth@cygnus.com>
5324
5325         * cse.c (cse_insn): Emit barrier after unconditional jump.
5326
5327         * calls.c (expand_call): Disable tail call generation once
5328         rtx_equal_function_value_matters is false.
5329
5330         * reg-stack.c (convert_regs_1): Treat EDGE_ABNORMAL_CALL edges
5331         like EDGE_EH edges.
5332
5333 2000-04-25  Jason Merrill  <jason@casey.cygnus.com>
5334
5335         * dwarf2out.c (add_bound_info): Don't crash on an unexpanded SAVE_EXPR.
5336
5337         * dwarfout.c (output_decl): Ignore NAMESPACE_DECLs.
5338
5339         * dwarf2out.c (gen_subprogram_die): The class-scope declaration DIE
5340         is the primary DIE for a member function.
5341         (gen_decl_die): Call set_decl_origin_self here.
5342         * dwarfout.c (output_decl): And here.
5343         * integrate.c (output_inline_function): Not here.
5344         Don't clear DECL_INLINE until after calling rest_of_compilation.
5345         (set_decl_origin_self): No longer static.
5346         * tree.h: Add prototype.
5347         * toplev.c (note_deferral_of_defined_inline_function): Only write
5348         out abstract instance for actual inlines.
5349
5350 2000-04-25  Alexandre Oliva  <aoliva@cygnus.com>
5351
5352         * config/mn10300/mn10300.h (REG_CLASS_FROM_LETTER): Return
5353         EXTENDED_REGS only if TARGET_AM33.
5354         * config/mn10300/mn10300.md (movsi, addsi): Avoid exposing
5355         SP_REGS to register allocation and reloading unless absolutely
5356         necessary.
5357         (movsi3): Remove special-case of adding non-constants to SP.
5358
5359 2000-04-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5360
5361         * aclocal.m4 (gcc_AC_NEED_DECLARATION): This macro now requires
5362         INCLUDES to search and does not provide any of its own.  Also it
5363         now accepts optional ACTION-IF-NEEDED and ACTION-IF-NOT-NEEDED
5364         parameters.  Also it does not call AC_DEFINE.
5365         (gcc_AC_NEED_DECLARATIONS): Likewise.  Also this macro now calls
5366         AC_DEFINE and provides for automatic entries for autoheader.
5367         (gcc_AC_FUNC_PRINTF_PTR): Cleanup C code in test.
5368
5369         * configure.in (gcc_AC_NEED_DECLARATIONS): Save and restore CFLAGS
5370         so we can pass -I flags and include gansidecl.h/system.h in this
5371         test.
5372
5373         * acconfig.h: Delete all NEED_DECLARATION_* entries.
5374
5375 2000-04-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5376
5377         * acconfig.h (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
5378         ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
5379         ENABLE_GC_ALWAYS_COLLECT): Delete entries.
5380
5381         * configure.in (ENABLE_STD_NAMESPACE, ENABLE_CHECKING,
5382         ENABLE_TREE_CHECKING, ENABLE_RTL_CHECKING, ENABLE_GC_CHECKING,
5383         ENABLE_GC_ALWAYS_COLLECT): Use three argument form of AC_DEFINE
5384         for these macros.  Clean up spacing and linewraps.
5385
5386 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
5387
5388         * calls.c (expand_call): Use get_callee_fndecl.
5389
5390         * print-tree.c (print_node): Print the chain of an _EXPR.
5391
5392 Tue Apr 25 16:16:04 2000  Andrew MacLeod  <amacleod@cygnus.com>
5393                           Jim Wilson  <wilson@cygnus.com>
5394                           Andrew Haley  <aph@cygnus.com>
5395
5396         * config/ia64/crtbegin.asm: Add IA-64 unwind support.  Correct alloc
5397         and gp save/restore problems.
5398         * config/ia64/crtend.asm: Add IA-64 unwind support.
5399         * config/ia64/ia64.c (ia64_compute_frame_size): Don't include pr_size
5400         in fr_pad_size calculation.
5401         (save_restore_insns): Move PR save area.  Correct uses of
5402         RTX_FRAME_RELATED_P.
5403         (ia64_expand_prologue): Mark alloc with RTX_FRAME_RELATED_P.
5404         (ia64_expand_epilogue): Add eh_epilogue support.
5405         (ia64_function_prologue): Emit .prologue directive.
5406         (ia64_init_machine_status, ia64_mark_machine_status): New functions.
5407         (ia64_override_options): Set init_machine_status and
5408         mark_machine_status.
5409         (rtx_needs_barrier): Handle bsp reads and writes.
5410         (spill_offset, sp_offset, spill_offset_emitted, tmp_reg, tmp_saved):
5411         New static variables.
5412         (process_set, process_for_unwind_directive): New functions.
5413         * config/ia64/ia64.h (ASM_OUTPUT_XDATA_CHAR, ASM_OUTPUT_XDATA_SHORT,
5414         ASM_OUTPUT_XDATA_INT, ASM_OUTPUT_XDATA_DOUBLE_INT, ASM_OUTPUT_EH_CHAR,
5415         ASM_OUTPUT_EH_SHORT, ASM_OUTPUT_EH_INT, ASM_OUTPUT_EH_DOUBLE_INT): New
5416         macros.
5417         (EH_FRAME_SECTION_ASM_OP): Define to IA_64.unwind section.
5418         (IA64_UNWIND_INFO, HANDLER_SECTION, IA64_UNWIND_EMIT): Define.
5419         (struct machine_function): Define.
5420         * config/ia64/ia64.md (bsp_value, set_bsp, eh_epilogue): New patterns.
5421
5422 2000-04-25  Bruce Korb  <bkorb@gnu.org>
5423
5424         * fixinc/Makefile.in: make the removal of old programs more
5425         robust
5426         * fixinc/mkfixinc.sh: use the two new targets in the Makefile:
5427         install-bin and install-sh
5428
5429 2000-04-25  Nick Clifton  <nickc@cygnus.com>
5430
5431         * integrate.c (FUNCTION_ATTRIBUTE_INLINABLE_P): If not
5432         defined, define to return zero.
5433         (function_cannot_inline_p): If a function has any target
5434         specific attributes, then use the macro
5435         FUNCTION_ATTRIBUTE_INLINABLE_P to allow the target to decide
5436         whether it can be inlined.  If it cannot, issue a suitable
5437         explanation.
5438
5439         * tm.texi: Add a new node 'Inlining' to document the new macro
5440         FUNCTION_ATTRIBUTE_INLINABLE_P.
5441
5442 2000-04-25  Zack Weinberg  <zack@wolery.cumb.org>
5443
5444         * cpplib.h (struct cpp_buffer): Add 'mapped' flag; fix
5445         commentary.
5446
5447 2000-04-25  Neil Booth  <NeilB@earthling.net>
5448
5449         Restore previous patch, plus the following fixes:
5450
5451         * cpphash.c (_cpp_create_definition): Test PREV_WHITESPACE in
5452         flags, not CPP_OPEN_PAREN.
5453         * cpplex.c (expand_token_space, init_token_list,
5454         cpp_free_token_list): Put the dummy token at list->tokens[-1].
5455         (_cpp_lex_line, _cpp_lex_file): token list is 0-based.
5456
5457 Tue Apr 25 14:06:40 2000  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
5458
5459         * config/i386/freebsd.h (INT_ASM_OP): Define.
5460
5461 Tue Apr 25 14:51:07 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5462
5463         * loop.c (strength_reduce): Fix typo in the last checkin.
5464
5465 Tue Apr 25 07:33:12 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5466
5467         * stor-layout.c (finalize_record_size): Simplify to use existing
5468         functions.
5469         (compute_record_mode): No longer static.
5470         * tree.h (compute_record_mode): New declaration.
5471
5472 2000-04-25  Neil Booth  <NeilB@earthling.net>
5473
5474         * Revert my patch below until cause of build failures
5475         determined.
5476
5477 2000-04-25  Richard Henderson  <rth@cygnus.com>
5478
5479         * combine.c (combine_instructions): Add missing argument
5480         to try_combine.
5481
5482         * toplev.c (rest_of_compilation): Delay sibcall optimization
5483         until after emit_eh_context.
5484
5485 2000-04-24  Nick Clifton  <nickc@redhat.com>
5486
5487         * combine.c (combine_instructions): Do not try to combine a
5488         sequence of insns when the second insn has been replaced by a
5489         note.
5490
5491 Mon Apr 24 17:34:18 2000  Mumit Khan  <khan@xraylith.wisc.edu>
5492
5493         * gcc.c (load_specs): New static function.
5494         (read_specs): Use it.
5495
5496         * gcc.c (lookup_compiler): Make multiple passes for case
5497         insensitive filesystems.
5498
5499 2000-04-24  Neil Booth  <NeilB@earthling.net>
5500
5501         * cpphash.c: replace HSPACE_BEFORE with PREV_WHITESPACE.
5502         * cpphash.h (_cpp_check_directive): new.
5503         * cpplex.c (handle_newline, cpp_free_token_list,
5504         init_trigraph_map, trigraph_ok, trigraph_replace,
5505         backslash_start, skip_block_comment, skip_line_comment,
5506         skip_whitespace, parse_name, parse_number, parse_string,
5507         copy_comment, _cpp_lex_line, spell_char, spell_string,
5508         spell_comment, spell_name, spell_other, _cpp_lex_file,
5509         _cpp_output_list): new.
5510         (expand_name_space): take length argument.
5511         (init_token_list): add comment list initialisation.
5512         (cpp_scan_line): use auto_expand_name_space.  PREV_WHITESPACE
5513         instead of HSPACE_BEFORE.
5514
5515         * cpplib.c (_cpp_check_directive): new
5516         * cpplib.h (cpp_name, PREV_WHITESPACE, PREV_COMMENT,
5517         DIGRAPH, UNSIGNED_INT, TOK_NAME): new.
5518         (HSPACE_BEFORE): delete.
5519         (TTYPE_TABLE): rearrange.
5520         (struct cpp_toklist): update.
5521
5522 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5523
5524         * aclocal.m4 (gcc_AC_HEADER_STRING, gcc_AC_FUNC_PRINTF_PTR,
5525         gcc_AC_C_VOLATILE, gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG): Use the three
5526         argument form of AC_DEFINE.
5527
5528         * configure.in (DEFAULT_LINKER, DEFAULT_ASSEMBLER,
5529         HAVE_INTTYPES_H, PACKAGE, VERSION, ENABLE_WIN32_REGISTRY,
5530         WIN32_REGISTRY_KEY, HAVE_GAS_SUBSECTION_ORDERING, HAVE_GAS_WEAK,
5531         HAVE_GAS_HIDDEN, HAVE_AS_REGISTER_PSEUDO_OP, AS_SPARC64_FLAG,
5532         HAVE_AS_OFFSETABLE_LO10, ENABLE_NEW_GXX_ABI): Likewise.
5533
5534         * acconfig.h: Delete stubs made redundant by 3-arg AC_DEFINE.
5535
5536 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5537
5538         * Makefile.in (GCC_FOR_TARGET, GCC_CFLAGS, LIBGCC2_INCLUDES,
5539         deduced.h): Use -isystem, not -I, for including system headers.
5540
5541 2000-04-24  Nick Clifton  <nickc@cygnus.com>
5542
5543         * config/fr30/fr30.md (addsi3): Do not use small add instruction if
5544         the source register is the frame pointer or arg pointer.
5545         (addsi3_small_int): Disallow if source register is the frame
5546         pointer or arg pointer.
5547
5548 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5549
5550         * configure.in (ENUM_BITFIELDS_ARE_UNSIGNED): Delete redundant
5551         call to AC_MSG_RESULT.
5552
5553 2000-04-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
5554
5555         * invoke.texi: Correct grammatical errors, document
5556         -fno-gnu-keywords as identical to -fno-asm for C++.
5557
5558 2000-04-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5559
5560         * aclocal.m4: (GCC_HEADER_STRING, GCC_NEED_DECLARATION,
5561         GCC_NEED_DECLARATIONS, GCC_FUNC_VFPRINTF_DOPRNT,
5562         GCC_FUNC_PRINTF_PTR, GCC_PROG_LN_S, GCC_PROG_LN, GCC_C_VOLATILE,
5563         AC_GCC_C_LONG_DOUBLE, GCC_FUNC_MKDIR_TAKES_ONE_ARG,
5564         EGCS_PROG_INSTALL): Rename autoconf macros with prefix gcc_AC_.
5565
5566         * configure.in (AC_GCC_C_LONG_DOUBLE, GCC_PROG_LN, GCC_PROG_LN_S,
5567         GCC_C_VOLATILE, EGCS_PROG_INSTALL, GCC_HEADER_STRING,
5568         GCC_FUNC_VFPRINTF_DOPRNT, GCC_FUNC_PRINTF_PTR,
5569         GCC_NEED_DECLARATIONS, GCC_FUNC_MKDIR_TAKES_ONE_ARG): Invoke with
5570         new macros names.
5571
5572 2000-04-24  Mumit Khan  <khan@xraylith.wisc.edu>
5573
5574         * c-pragma.c (push_alignment): Use BITS_PER_UNIT macro.
5575         (pop_alignment): Likewise.
5576         (handle_pragma_token): Likewise.
5577
5578 2000-04-24  Robert Lipe <robertlipe@usa.net>
5579
5580         * tree.h (tree_decl): Member `mode' now ENUM_BITFIELD.
5581
5582 2000-04-24  Hiroyuki Machida <machida@sm.sony.co.jp>
5583
5584         * combine.c (try_combine): Update reg_nonzero_bits of
5585         newi2pat before newpat.
5586
5587 Mon Apr 24 10:19:48 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5588
5589         * loop.c (strength_reduce): Simplify test to INSN_P.
5590         (record_giv): Attempt to simplify the add value, use CONSTANT_P
5591         expressions instead of CONST_INT.
5592         (express_from_1): Likewise.
5593
5594 2000-04-24  Mark Mitchell  <mark@codesourcery.com>
5595
5596         * regs.h (reg_n_max): Don't declare.
5597         * flow.c (reg_n_max): Don't define.
5598         * regclass.c (renumber): Don't initialize to zero.
5599         (regno_allocated): Likewise.
5600         (reg_n_max): Define.
5601         (allocate_reg_info): Don't initialize unnecessarily.
5602
5603 Mon Apr 24 00:21:36 2000  Jeffrey A Law  (law@cygnus.com)
5604
5605         * genattrtab.c (find_attr): Initialize unsigned_p, func_units_p
5606         and blockage_p in the newly allocated attribute.
5607
5608 Sun Apr 23 20:16:49 2000  Alexandre Oliva  <aoliva@cygnus.com>
5609
5610         * config/mn10300/mn10300.md (addsi): `inc4' on address
5611         registers does not modify cc, but `inc' on an extended
5612         register does.
5613
5614 Sun Apr 23 16:24:35 2000  Denis Chertykov  <denisc@overta.ru>
5615
5616         * reload.c (find_equiv_reg): Checks all valueno regs
5617         as a reload_reg_p regs.
5618
5619 2000-04-23  Zack Weinberg  <zack@wolery.cumb.org>
5620
5621         * cpphash.c (collect_objlike_expansion): Add sanity check.
5622         (special_symbol): Remove case T_CONST, T_XCONST, T_MCONST.  If
5623         the buffer is the empty string, return.  Mark __DATE__ and
5624         __TIME__ as XCONST nodes, not MCONST.
5625         (_cpp_macroexpand): Avoid pushing an empty buffer.
5626         (funlike_macroexpand): Don't pop token_buffer here.
5627
5628 Sun Apr 23 18:37:53 2000  Alexandre Oliva  <aoliva@cygnus.com>
5629
5630         * config/mn10300/mn10300.h (REGNO_IN_RANGE_P): New macro.
5631         (REGNO_DATA_P, REGNO_ADDRESS_P, REGNO_SP_P): New macros.
5632         (REGNO_EXTENDED_P, REGNO_AM33_P): New macros.
5633         (REGNO_OK_FOR_BASE_P): Define in terms of them.
5634         (REGNO_OK_FOR_BIT_BASE_P, REGNO_OK_FOR_INDEX_P): Likewise.
5635         (REG_OK_FOR_BASE_P): Define in terms of the REGNO macro.
5636         (REG_OK_FOR_BIT_BASE_P, REG_OK_FOR_INDEX_P): Likewise.
5637
5638 Sun Apr 23 22:23:08 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5639
5640         * loop.c (simplify_giv_expr):  Be more agressive on simplifying
5641         constant MULT givs.
5642
5643 2000-04-23  Zack Weinberg  <zack@wolery.cumb.org>
5644
5645         * cpphash.h (struct definition): Move file, line, col members...
5646         (struct hashnode): ... here.  Also add 'disabled' flag.
5647         (enum node_type): Add T_VOID, T_XCONST, T_FMACRO, and
5648         T_IDENTITY.  Remove T_DISABLED.
5649         Update prototypes.
5650
5651         * cpphash.c (_cpp_dump_definition): Split out dump_DEFINITION.
5652         (collect_expansion): Split into collect_objlike_expansion and
5653         collect_funlike_expansion.
5654         (_cpp_macroexpand): Split out scan_arguments, stringify, and
5655         funlike_macroexpand.
5656         (_cpp_compare_defs): Rename compare_defs, make static.
5657         (_cpp_make_hashnode): Initialize hp->disabled.
5658         (macro_cleanup): Adjust for new token types.  Clear
5659         m->disabled.
5660         (_cpp_create_definition): Move code here to determine what
5661         sort of macro it is, and code to check for redefinitions, from
5662         do_define.  Implement a few simple cases without creating a
5663         full DEFINITION.
5664         (_cpp_macroexpand, special_symbol, _cpp_dump_definition):
5665         Handle the simple cases.
5666         (push_macro_expansion): Set buf->has_escapes and hp->disabled
5667         here.
5668
5669         * cppinit.c (builtin_array): Change MCONST to XCONST
5670         everywhere.
5671         * cpplex.c (maybe_macroexpand): Handle IDENTITY macros here;
5672         fix check for disabled and function-like macros.
5673         * cpplib.c (do_define): Move most logic to
5674         _cpp_create_definition.
5675         (do_undef): Handle new special token types.
5676
5677 Sun Apr 23 14:27:44 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5678
5679         * loop.c (maybe_eliminate_biv_1): Use GET_CODE (x) == CONST_INT instead
5680         of CONSTANT_P for mult_val; always use validate_change to update insn.
5681
5682 2000-04-22  Zack Weinberg  <zack@wolery.cumb.org>
5683
5684         * cpphash.c (trad_stringify, add_pat): New functions.
5685         (collect_expansion): Restore support for -traditional syntax.
5686         Use trad_stringify and add_pat.
5687         (_cpp_macroexpand): Restore support for -traditional semantics.
5688         * cpplex.c (_cpp_scan_line): Don't change space_before if we
5689         get a COMMENT token.
5690         (_cpp_lex_token): Provide COMMENT tokens to caller if
5691         traditional and parsing_define_directive.
5692         (skip_comment): Warn about // comments if -Wtraditional.
5693         * cpplib.c (do_define): Fix typo.  Create EMPTY nodes with
5694         proper node type.
5695         (do_undef): Don't warn about undefining EMPTY nodes.
5696
5697 Sat Apr 22 22:35:38 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5698
5699         * loop.c (strength_reduce): Fix biv removal code.
5700
5701 2000-04-22  Richard Henderson  <rth@cygnus.com>
5702
5703         * predict.c (estimate_probability): Examine both sides of
5704         a branch for no exits.  Use 90% not 50% for predict taken.
5705         Reorg for one copy of note generation code.
5706
5707 2000-04-22  Richard Henderson  <rth@cygnus.com>
5708
5709         * flow.c (mark_used_reg): Hack around rs6000 eliminable pic reg.
5710
5711 2000-04-22  Richard Henderson  <rth@cygnus.com>
5712
5713         * diagnostic.c (init_output_buffer): Don't initialize format_args.
5714         (output_clear): Likewise.
5715         (output_printf): Use va_copy.
5716         (vline_wrapper_message_with_location): Likewise.
5717         (v_message_with_decl): Likewise.
5718         (line_wrapper_printf): VA_START infor buffer.format_args directly.
5719         * system.h (va_copy): Provide default implementation.
5720
5721 2000-04-22  Richard Henderson  <rth@cygnus.com>
5722
5723         * predict.c (expected_value_to_br_prob): Don't bomb if op1 of
5724         the collected condition is not a constant.
5725
5726 2000-04-22  Gabriel Dos Reis  <gdr@codesourcery.com>
5727
5728         * diagnostic.h: New file.
5729
5730         * Makefile.in (diagnostic.o): Depends on diagnostic.h
5731
5732         * diagnostic.c: Tweak.  Rationalize the output logic.  Adjust
5733         various function prototypes.
5734         (diagnostic.h): #include.
5735         (struct output_buffer): Move into diagnostic.h.
5736         (get_output_prefix): Rename to output_get_prefix.  Export.
5737         (init_output_buffer): Export. Break out.  Ajust intialization.
5738         (output_space_left, output_append): Export.
5739         (output_newline): Rename to output_add_newline.  Export.
5740         (output_clear): Nullify additional output_buffer fields.
5741         (output_puts): Rename to output_add_string.  Export.
5742         (dump_output): Rename to output_flush_on.  Export.
5743         (build_location_prefix): Constify return-type.
5744         (emit_output_prefix): Rename to output_emit_prefix. Export.
5745         (set_real_maximum_length): New function.
5746         (output_set_maximum_length): Ditto
5747         (output_clear): Ditto.
5748         (output_add_character): Ditto.
5749         (output_add_integer): Ditto.
5750         (output_add_space): Ditto.
5751         (output_format): Ditto.
5752         (output_printf): Adjust buffer initialization.
5753         (vline_wrapper_message_with_location): Ditto.
5754         (v_message_with_decl): Ditto.  Adjust call to output_puts
5755         and get_output_prefix.
5756         (default_print_error_function): Adjust buffer intialization.
5757
5758 Sat Apr 22 06:45:04 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5759
5760         * expr.c (preexpand_calls, case CALL_EXPR): Don't look at TYPE_SIZE
5761         of VOID_TYPE.
5762
5763 Fri Apr 21 18:33:09 2000  Alexandre Oliva  <aoliva@cygnus.com>
5764
5765         * config/mn10300/mn10300.h (REGNO_REG_CLASS): Use NO_REGS instead
5766         of explicit 0.
5767
5768 Fri Apr 21 18:30:00 2000  Alexandre Oliva  <aoliva@cygnus.com>
5769
5770         * config/mn10300/mn10300.h (REGISTER_MOVE_COST): Provide more
5771         accurate data about SP moves.
5772
5773 Fri Apr 21 18:28:28 2000  Alexandre Oliva  <aoliva@cygnus.com>
5774
5775         * config/mn10300/mn10300.h (ADDITIONAL_REGISTER_NAMES): Added
5776         aliases to AM33 registers.
5777
5778 Fri Apr 21 18:26:17 2000  Alexandre Oliva  <aoliva@cygnus.com>
5779
5780         * config/mn10300/mn10300.h (REG_CLASS_CONTENTS): Added register 16
5781         to all EXTENDED bitmaps.
5782
5783 Fri Apr 21 18:17:12 2000  Alexandre Oliva  <aoliva@cygnus.com>
5784
5785         * config/mn10300/mn10300-protos.h (mn10300_address_cost): Declare.
5786         * config/mn10300/mn10300.h (ADDRESS_COST): New macro.
5787         * config/mn10300/mn10300.c (mn10300_address_cost): New function.
5788
5789 Fri Apr 21 18:11:56 2000  Alexandre Oliva  <aoliva@cygnus.com>
5790
5791         * config/mn10300/mn10300.md (movdi, movdf): Do not use `movu' when
5792         the operand is not constant.
5793
5794 Fri Apr 21 14:58:29 2000  Denis Chertykov  <denisc@overta.ru>
5795
5796         * reload.c (find_equiv_reg): Checks all valueno and regno regs
5797         as a call-clobbered regs.
5798
5799 Fri Apr 21 13:30:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5800
5801         * rtl.c: Use NOTE_INSN_REPEATED_LINE_NUMBER and NOTE_INSN_RANGE_BEG.
5802         * rtl.h: Likewise.
5803         * rtl.def: Update comment.
5804         * function.c (expand_function): Use NOTE_INSN_REPEATED_LINE_NUMBER.
5805         * integrate.c (expand_inline_function): Likewise.
5806         * profile.c (branch_prob): Likewise.
5807         * ggc-common.c (ggc_mark_rtx_children): Use NOTE_INSN_RANGE_BEG.
5808         * print-rtl.c (print_rtx): Likewise.
5809         * haifa-sched.c (sched_analyze, unlink_other_notes): Likewise.
5810         (reemit_notes): Likewise; also use enum insn_note.
5811
5812         * stor-layout.c (layout_decl): Only set DECL_MODE if not already set.
5813         (place_field): Properly compute know and actual alignment.
5814
5815         * gengenrtl.c (gencode): Write obstack_alloc_rtx function start
5816         in proper format.
5817
5818         * cse.c (cse_insn): In (set REG0 REG1) case, remove a REG_EQUAL
5819         note for REG1.
5820
5821 2000-04-21  Zack Weinberg  <zack@wolery.cumb.org>
5822
5823         * cpphash.c (struct arg, struct arglist): Const-ify strings.
5824         (warn_trad_stringify, duplicate_arg_p): New helper functions.
5825         (collect_expansion): Rewrite to scan over a token list.
5826         Remove -traditional support.
5827         (collect_formal_parameters): Rename to collect_params; rewrite
5828         to scan over a token list.
5829         (_cpp_create_definition): Adjust to scan a token list.
5830         (_cpp_macroexpand): Remove -traditional support.
5831         (_cpp_compare_defs): Whitespace is now canonicalized.
5832         (comp_def_part): Delete function.
5833
5834         * cpphash.h: Update prototypes.
5835         * cpplex.c (init_token_list): Don't set lineno if there is no
5836         buffer.
5837         (pedantic_whitespace): New function.
5838         (_cpp_scan_line): Mark tokens that had hspace before.  Don't
5839         consume a newline.  Use pedantic_whitespace.
5840         (_cpp_lex_token): Remove support for -traditional macros.
5841         (_cpp_get_define_token): Delete.
5842         (_cpp_get_directive_token): Do the real work here.  Use
5843         pedantic_whitespace.
5844         (_cpp_init_input_buffer): Initialize pfile->directbuf.
5845
5846         * cpplib.c (get_macro_name): Delete.
5847         (do_define): Read the entire line into pfile->directbuf, then
5848         feed the token list to _cpp_create_definition.
5849         * cpplib.h (HSPACE_BEFORE): new define.
5850         (struct cpp_reader): Add a toklist member, "directbuf".
5851
5852         * predict.c (estimate_probability): New heuristic: if a jump
5853         branches around a block with no successors, predict it taken.
5854         Disentangle control flow.
5855
5856 2000-04-20  Richard Henderson  <rth@cygnus.com>
5857
5858         * loop.c (emit_iv_add_mult): Revert last change.
5859
5860 2000-04-20  Zack Weinberg  <zack@wolery.cumb.org>
5861
5862         * cpplib.h (enum cpp_ttype): Add token types for all
5863         punctuators.  Distinguish pp-numbers from valid C numbers.
5864         Give some tokens better names.  Initialize from macro.
5865         (struct cpp_name, cpp_token, cpp_toklist): New data
5866         structures.
5867         Update prototypes.
5868         * cpplex.c (bump_column, expand_name_space,
5869         expand_token_space, init_token_list, cpp_output_list,
5870         _cpp_scan_line):  New functions.
5871         (output_line_command): Add third argument, new line number.
5872         * cpphash.h: Update prototypes.
5873         * cppexp.c, cpphash.c, cpplib.c, scan-decls.c: Update for new
5874         token names.
5875
5876 2000-04-20  Richard Henderson  <rth@cygnus.com>
5877
5878         * config/alpha/alpha.c (alpha_emit_floatuns): Emit missing barrier.
5879
5880 2000-04-20  Zack Weinberg  <zack@wolery.cumb.org>
5881
5882         * c-common.c (decl_attributes) [A_ALIAS]: Set TREE_USED on the
5883         object pointed to.
5884
5885 Thu Apr 20 14:19:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5886
5887         * loop.c (emit_iv_add_mult):  Simplify it's input and emit
5888         REG_EQUAL note explaining the calculated value.
5889
5890         * calls.c (expand_call): Avoid unnecesary precalculation
5891         and outgoing parameters space guarding for sibling calls.
5892         (store_one_arg): Likewise.
5893
5894 Thu Apr 20 08:01:07 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5895
5896         * toplev.c (enum dump_file_index, dump_file): Add DFI_sibling.
5897         (rest_of_compilation): Write sibling dump file and account
5898         for time as jump time.
5899         * invoke.texi: Update documentation on dump flags.
5900
5901 2000-04-19  Marek Michalkiewicz  <marekm@linux.org.pl>
5902
5903         * avr.c: #include "system.h" instead of <stdio.h> and <stdlib.h>.
5904
5905 2000-04-19  Zack Weinberg  <zack@wolery.cumb.org>
5906
5907         * cpphash.c (special_symbol): Represent an empty macro with
5908         "\r \r " not just "\r ".
5909         (_cpp_macroexpand): Correct condition for the foo ( ) special
5910         case.
5911         (unsafe_chars): Handle EOF as second argument.
5912         (push_macro_expansion): Simplify test for removing escape at
5913         end.  Do not trim both escapes if there is no text in between.
5914
5915 2000-04-19  Jim Blandy  <jimb@redhat.com>
5916
5917         * dwarf2out.c (DWARF2_ADDR_SIZE): New macro.  Use it instead
5918         of PTR_SIZE, when appropriate.
5919
5920 2000-04-19  Mark Mitchell  <mark@codesourcery.com>
5921
5922         * system.h (ONLY_INT_FIELDS): Make sure it is defined.
5923         (USE_ENUM_BITFIELDS): Fix typo.
5924
5925 Wed Apr 19 12:14:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5926
5927         * stor-layout.c (place_field): Set rli->offset_align properly.
5928
5929 2000-04-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5930
5931         * mips.h (BITS_PER_WORD, UNITS_PER_WORD, UNITS_PER_FPREG,
5932         INT_TYPE_SIZE, LONG_TYPE_SIZE, POINTER_SIZE, POINTER_BOUNDARY,
5933         PARM_BOUNDARY): Remove unnecessary casts.
5934
5935 Wed Apr 19 12:02:37 MET DST 2000  Jan Hubicka  <jh@suse.cz>
5936
5937         * calls.c (precompute_arguments): Remove must_preallocate and
5938         args_size calls.
5939         (expand_call): Update call of precompute_arguments.
5940
5941         * loop.c (check_insn_for_bivs, for_every_insn_in_loop,
5942         check_insn_for_givs): Break out from ...
5943         (strength_reduce) ... here; use for_every_insn_in_loop to call
5944         check_insn_for_givs.
5945         * loop.h (for_every_insn_in_loop): Declare.
5946         (loop_insn_callback): New type.
5947
5948 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
5949
5950         * cpplib.c (do_pragma_poison):  Strings in the token buffer are
5951         not nul-terminated.
5952
5953 Tue Apr 18 16:04:12 2000  Jim Wilson  <wilson@cygnus.com>
5954
5955         * config/ia64/sysv4.h (SELECT_SECTION): Use data_section if
5956         flag_pic and RELOC.
5957
5958 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
5959
5960         * cccp.c, cexp.y, cexp.c, cccp.1: Removed.
5961
5962         * configure.in: Delete --disable-cpplib option and all
5963         references to cpp_main.
5964         * configure: Regenerate.
5965         * Makefile.in: Remove all references to CCCP, CCCP_OBJS,
5966         @cpp_main@, cccp.c, cexp.c, cexp.y, cexp.output, cexp.o,
5967         cccp.o, cccp, or cppmain.  Link cppmain.o straight to
5968         cpp$(exeext).  Add --no-headers to makeinfo command line when
5969         generating INSTALL.  Install and uninstall cpp.1 manpage, not
5970         cccp.1.
5971         * install.texi: Delete all references to cexp.y/cexp.c.
5972         Delete ancient instructions for compiling GCC on 3b1.
5973         * INSTALL: Regenerate.
5974
5975         * cppfiles.c, cpplib.h, jump.c, protoize.c, c-lex.c, mips/t-ecoff,
5976         mips/t-elf, mips/t-r3900: Remove references to cccp.c.
5977         * convex.h, fx80.h, m68k.h, pdp11.h: Remove references to
5978         cexp.c/cexp.y.
5979         * xm-linux.h, xm-os2.h, romp.h: Remove definition of BSTRING,
5980         which is no longer tested anywhere.
5981
5982         * cppinit.c (handle_option): Don't run error message through
5983         gettext twice.
5984
5985 Tue Apr 18 14:16:47 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5986
5987         * conflict.c (conflict_graph_add): Pass enum type to htab_find_slot.
5988         * cpperror.c (hashtab.h): Now include.
5989         * cppexp.c (hashtab.h): Likewise.
5990         * cpplex.c (hashtab.h): Likewise.
5991         * cppfiles.c (hashtab.h): Likewise.
5992         (find_include_file, _cpp_calc_hash, cpp_read_file): Pass enum type
5993         to htab_find_slot_with_hash.
5994         * cpphash.c (hashtab.h): Now include.
5995         (_cpp_lookup_slot): INSERT is now enum insert_option.
5996         * cpphash.h (_cpp_lookup_slot): Likewise.
5997         * cppinit.c (hashtab.h): Include earlier.
5998         (initialize_builtins): Pass enum to htab_find_slot.
5999         * cpplib.c (hashtab.h): Now include.
6000         (do_define, do_undef): Pass enum type to _cpp_lookup_slot.
6001         (do_pragma_poison, do_assert): Likewise.
6002         * emit-rtl.c (gen_rtx_CONST_INT): Pass enum to
6003         htab_find_slot_with_hash.
6004         * simplify-rtx.c (cselib_lookup_mem, cselib_lookup): Likewise.
6005         * tree.c (type_hash_add): Likewise.
6006         (build1): Minor cleanup.
6007
6008         * ggc-common.c: Add missing blanks.
6009         * print-tree.c (print_node): Print DECL_OFFSET_ALIGN.
6010         * tree.h (DECL_OFFSET_ALIGN): Fix typo in comment.
6011
6012         * stmt.c (mark_case_node): New function.
6013         (mark_case_nesting): Call it.
6014
6015         * expmed.c (emit_store_flag): If comparing two-word integer
6016         with zero, can optimize NE, EQ, GE, and LT.
6017
6018         * c-decl.c (mark_binding_level): Use 'for' instead of `while'.
6019         * conflict.c: Minor cleanups.
6020         * optabs.c: Add blank line
6021         * simplify-rtx.c: Minor cleanups.
6022
6023 2000-04-18  Stan Cox  <scox@cygnus.com>
6024
6025         * gengenrtl.c (genlegend): Fix misspelling.
6026
6027 2000-04-18  Robert Lipe  <robertlipe@usa.net>
6028
6029         * configure.in (ENUM_BITFIELDS_ARE_UNSIGNED): Added.  Check that
6030         bitfields of the host compiler are not signed quantities.
6031         * config.in: Regenerate.
6032         * configure: Regenerate.
6033         * system.h (USE_ENUM_BITFIELDS): Added.
6034         (ENUM_BITFIELDS): Added.
6035         * rtl.h (rtx_def): Members `code', `mode', now ENUM_BITFIELD.
6036         (SHORT_ENUM_BUG): Deleted.
6037         * tree.h (tree_common): Members `code', `mode', `built_in_class',
6038         now ENUM_BITFIELD.
6039         * config/i386/xm-sco.h (ONLY_INT_FIELDS): Deleted.
6040         (CODE_FIELD_BUG): Likewise.
6041         * config/m68k/x-apollo68 (CC): Deleted SHORT_ENUM_BUG.
6042         (OLD_CC): Likewise.
6043         * config/m68k/x-ccur (X_CFLAGS): Likewise.
6044
6045 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
6046
6047         * cpplex.c (_cpp_lex_token): Don't call CPP_BUMP_LINE when the
6048         mark is active.
6049
6050 2000-04-17  Zack Weinberg  <zack@wolery.cumb.org>
6051
6052         * cppexp.c (lex): Don't assume tokens are NUL terminated.
6053         * cpplib.c (do_include, do_import, do_include_next,
6054         read_line_number, detect_if_not_defined): Likewise.
6055         * cpphash.c (collect_expansion): Likewise.
6056         (special_symbol, _cpp_macroexpand): Check return from
6057         cpp_file_buffer.
6058         * cpphash.h (CPP_NUL_TERMINATE, CPP_NUL_TERMINATE_Q): Delete
6059         macros.  Delete all uses.
6060
6061         * gcc.dg/cpp-mi.c: Add two more test cases.
6062         * gcc.dg/cpp-mind.h, gcc.dg/cpp-mindp.h: New files.
6063
6064 2000-04-17  Richard Henderson  <rth@cygnus.com>
6065
6066         * bb-reorder.c (fixup_reorder_chain): Don't look up new block again.
6067         (reorder_basic_blocks): If no epilogue in rtl, force last block last.
6068
6069 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
6070
6071         * function.c (expand_function_start): Use hard_function_value to
6072         compute the RTL to use for DECL_RESULT.
6073
6074 Mon Apr 17 23:35:29 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6075
6076         * i386.c (athlon_cost): Fix lea, divide and XFmode move costs.
6077         (x86_integer_DFmode_moves, x86_partial_reg_dependency,
6078          x86_memory_mismatch_stall): New global variables.
6079         (ix86_adjust_cost): Handle MEMORY_BOTH on places MEMORY_STORE was only
6080         alloved; fix load penalties for Athlon.
6081         * i386.h (x86_integer_DFmode_moves, x86_partial_reg_dependency,
6082         x86_memory_mismatch_stall): Declare.
6083         (TARGET_INTEGER_DFMODE_MOVES, TARGET_PARTIAL_REG_DEPENDENCY,
6084          TARGET_MEMORY_MISMATCH_STALL): New.
6085         * i386.md (athlon scheduling parameters): Fix latencies according to
6086         Athlon Optimization Manual.
6087         (sahf, xchg, fldcw, leave instruction patterns): Set athlon_decode to
6088         vector.
6089         (fsqrt instruction patterns): Set athlon_decode to direct.
6090         (movhi_1): Promote for TARGET_PARTIAL_REG_DEPENDENCY and for
6091         PARTIAL_REGISTER_STALL with !TARGET_HIMODE_MATH machines.
6092         (movqi_1): Handle promoting correctly for TARGET_PARTIAL_REG_DEPENDENCY
6093         and TARGET_PARTIAL_REGISTER_STALL machines.
6094         (pushdf_nointeger): New pattern.
6095         (pushdf_integer): Rename from pushdf.
6096         (movdf_nointger): Enable for !TARGET_INTEGER_DFMODE_MOVES machines.
6097         (movdf_intger): Disable for !TARGET_INTEGER_DFMODE_MOVES machines.
6098
6099 2000-04-17  Richard Henderson  <rth@cygnus.com>
6100
6101         * loop.c (canonicalize_condition): Add WANT_REG argument.
6102         Stop the search if we match it.
6103         * expr.h (canonicalize_condition): Update decl.
6104         * predict.c (expected_value_to_br_prob): Use it.  Track last
6105         expected value note.
6106         (find_expected_value): Remove.
6107
6108         * reorg.c (mostly_true_jump): Always use BR_PROB if present.
6109
6110 2000-04-17  Zack Weinberg  <zack@wolery.cumb.org>
6111
6112         * aclocal.m4 (AM_GNU_GETTEXT): Don't AC_REQUIRE([AC_FUNC_MMAP]).
6113         (AC_FUNC_MMAP_FILE): New macro, tests read-only private map of
6114         a plain file.
6115         * configure.in: Call AC_FUNC_MMAP_FILE.
6116         * configure: Regenerate.
6117         * config.in: Regenerate.
6118
6119         * intl/loadmsgcat.c: Test HAVE_MMAP_FILE not HAVE_MMAP.
6120         * fixinc/fixincl.c: Likewise.
6121
6122 2000-04-17  Richard Henderson  <rth@cygnus.com>
6123
6124         * builtins.c (expand_builtin_expect): New.
6125         (expand_builtin): Call it.
6126         * builtins.def (BUILT_IN_EXPECT): New.
6127         * c-common.c (c_common_nodes_and_builtins): Declare __builtin_expect.
6128         * extend.texi: Document it.
6129
6130         * predict.c (expected_value_to_br_prob): New.
6131         (find_expected_value): New.
6132         * basic-block.h (expected_value_to_br_prob): Declare.
6133         * toplev.c (rest_of_compilation): Invoke it.
6134
6135         * rtl.h (NOTE_EXPECTED_VALUE): New.
6136         (NOTE_INSN_EXPECTED_VALUE): New.
6137         * rtl.c (note_insn_name): Update.
6138         * print-rtl.c (print_rtx): Reorg NOTE_LINE_NUMBER special
6139         cases; handle NOTE_INSN_EXPECTED_VALUE.
6140
6141 2000-04-17  Jakub Jelinek  <jakub@redhat.com>
6142
6143         * config/sparc/sparc.c (eligible_for_sibcall_delay): Cannot use
6144         leaf sibcall delay slot if flag_pic.
6145         (output_sibcall): Always emit call for leaf sibcall if flag_pic.
6146
6147 2000-04-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6148
6149         * Makefile.in (stmp-fixproto): Acknowledge errors in fixproto.
6150
6151         * fixproto: If fix-header fails, exit with an error.
6152
6153 Mon Apr 17 14:59:36 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6154
6155         * cse.c (struct check_depdendence_data): New.
6156         (check_dependence): New function.
6157         (invalidate): Use check_depdenence.
6158
6159 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
6160
6161         * dwarf2out.c (DWARF_CIE_DATA_ALIGNMENT): Adjust, now that
6162         UNITS_PER_WORD is unsigned.
6163
6164         * tree.h (struct tree_common): Remove misleading comment.
6165
6166 2000-04-16  Dave Pitts  <dpitts@cozx.com>
6167
6168         * Makefile.in ($(srcdir)/c-parse.y: c-parse.in): Enclose the whole
6169         message in quotes. Otherwise, IBM's make program treats the '#' as the
6170         start of a comment and ignores the remainder of the line.
6171
6172         * c-lex.c (yylex): Change for EBCDIC, lower case characters preceed
6173         upper case.
6174         * cccp.c (initialize_char_syntax): Allow for holes in EBCDIC.
6175         * cexp.y (initialize_random_junk): Likewise.
6176         * cppfiles.c (find_include_file): Cast alloca return value.
6177         * cppinit.c (initialize_standard_includes): Likewise.
6178         * cpplib.c (cpp_define, cpp_undef): Likewise.
6179         * defaults.h (ASM_OUTPUT_ASCII): Use ISPRINT.
6180         * final.c (output_asm_insn): Allow for holes in EBCDIC.
6181         * fold-const.c (CHARMASK): New.
6182         (real_hex_to_f): Use it.
6183         * real.c (CHARMASK): New.
6184         (etoasc, asctoeg): Use it.
6185         (asctoeg): EBCDIC lower case characters preceed upper case.
6186
6187         * i370.c (mvs_add_label): Change spacing for coding conventions.
6188         * i370.h (ASM_OUTPUT_CASE_LABEL): Change to the data CSECT for the
6189         outputing case vectors.
6190         (ASM_OUTPUT_CASE_END): New, put assembler back into code CSECT.
6191         (ASM_OUTPUT_ADDR_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Remove page check,
6192         since vector in in the data CSECT.
6193         (ASM_OUTPUT_REG_POP, ASM_OUTPUT_REG_PUSH): Restore to correct operation.
6194         * i370.md (Many patterns): Put the length in the XL directives.
6195         (movdi): Put back STM and MVC in definition.
6196         (floatsidf2): Correct TARGET_ELF_ABI pattern and add back the LE370
6197         pattern using the TCA.
6198         * oe.h (CPP_SPEC): Added to allow trigraphs.
6199         * xm-oe.h (HOST_BITS_PER_LONGLONG): Change to 32. IBM's compiler does
6200         not support the "long long" type.
6201
6202 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
6203
6204         * config/mips/mips-protos.h (mips_legitimate_address_p): New
6205         function.
6206         (mips_reg_mode_ok_for_base_p): Likewise.
6207         * config/mips/mips.h (REG_OK_STRICT_P): Don't define.
6208         (REG_OK_FOR_INDEX_P): Define unconditionally.
6209         (REG_MODE_OK_FOR_BASE_P): Use mips_reg_mode_ok_for_base_p.
6210         (GO_IF_LEGITIMATE_ADDRESS): Use mips_legitimate_address_p.
6211         * config/mips/mips.c (mips16_simple_memory_operand): Adjust now
6212         that GET_MODE_SIZE is unsigned.
6213         (mips_reg_mode_ok_for_base_p): Define.
6214         (mips_legitimate_address_p): Likewise.  Adjust now
6215         that GET_MODE_SIZE is unsigned.
6216         (block_move_loop): Make the number of bytes unsigned.
6217         (expand_block_move): Likewise.
6218         (function_arg): Make the loop counter unsigned to match the
6219         boundary condition.
6220
6221 2000-04-16  Richard Henderson  <rth@cygnus.com>
6222
6223         * rtl.h (enum insn_note): New enumeration.  Subsume
6224         NOTE_INSN_DELETED and friends.
6225         (GET_NOTE_INSN_NAME): Adjust index by NOTE_INSN_BIAS.
6226         * rtl.c (note_insn_name): Tweak string order.
6227
6228 2000-04-15  Zack Weinberg  <zack@wolery.cumb.org>
6229
6230         * cpplex.c (_cpp_read_and_prescan): Enlarge len by setting it
6231         to offset * 2.
6232
6233         * cpplex.c (output_line_command): Remove debugging prints.
6234         (cpp_output_tokens): Don't write out a zero-length buffer or
6235         try to see if it has a newline in it.
6236         (_cpp_expand_to_buffer): Copy the source buffer before pushing.
6237         (_cpp_read_and_prescan): Move shift-down of pushback bytes to
6238         the end of the loop.  Use memmove.  Don't read past the end of
6239         the buffer.  Remove trailing newlines from error messages.
6240
6241 2004-04-16  Neil Booth  <NeilB@earthling.net>
6242
6243         * cpphash.h (SYNTAX_INCLUDE, SYNTAX_ASSERT, directive_handler): new.
6244         * cpplib.c: Add new syntax flags to directive table, and
6245         supporting macros.
6246
6247 2000-04-15  Ulrich Drepper  <drepper@redhat.com>
6248
6249         * i386.c (ix86_expand_epilogue): Yes, the x86 can pop 64k at once
6250         using ret $N.
6251
6252 2000-04-15  David Edelsohn  <edelsohn@gnu.org>
6253
6254         * toplev.c (display_help): Prefix "f" to "sched-verbose=".
6255         * haifa-sched.c: Update -fsched-verbose comments to use "=".
6256
6257 Sat Apr 15 10:59:19 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6258
6259         * Makefile.in (ggc-page.o): Now includes toplev.h.
6260         * ggc-page.c (toplev.h): Now included.
6261         (gc_time): Remove declaration.
6262         (ggc_collect): TIME now long.
6263         * toplev.c (parse_time, varasm_time, gc_time): Still global; all
6264         others static.
6265         * toplev.h (gc_time, parse_time, gc_time): New declarations.
6266
6267         * toplev.c: Make *_time variable long to reduce chance of overflow.
6268         (TIMEVAR): Likewise for `otime'.
6269         (print_time): Arg is now long; compute percentage in FP and round.
6270         * toplev.h (print_time): Arg is long.
6271
6272         * tree.c: Minor whitespace changes.
6273
6274         * configure.in (alpha*-*-*): Add config/alpha/t-alpha.
6275         * configure: Rebuilt.
6276         * libgcc2.c (__fixunstfDI): Renamed from __fixunstfdi.
6277         (__fixunsxfDI): Renamed from __fixunsxfdi.
6278         (__fixunsdfDI): Renamed from __fixunsdfdi.
6279         (__fixunssfDI): Renamed from __fixunssfdi.
6280         (__floatdisf): Use proper type in REP_BIT macro.
6281         (__fixunsxfSI): Renamed from __fixunsxfsi.
6282         (__fixunsdfSI): Renamed from __fixunsdfsi.
6283         (__fixunssfSI): Renamed from __fixunssfsi.
6284         * libgcc2.h: Add cases for MIN_UNITS_PER_WORD > 4.
6285         Change location of macros and upper-case some names as above.
6286         * longlong.h ([alpha]): Use PARAMS, not __P in decl of __udiv__qrnnd.
6287         * config/alpha/t-alpha, config/alpha/qrnnd.asm: New files.
6288
6289         * varasm.c (assemble_variable): Add cast to remove warning.
6290         (immed_real_const_1): Only use CONST[01]_RTX if not in nested function.
6291
6292         * flow.c (count_basic_blocks, find_basic_blocks_1): Remove last change.
6293         * optabs.c (emit_libcall_block): If have REG_EH_REGION, update
6294         region number to -1.
6295
6296 2000-04-15  Richard Earnshaw (rearnsah@arm.com)
6297
6298         * emit-rtl.c (unshare_all_rtl_again): Unmark everything, then
6299         call unshare_all_rtl.
6300
6301         * arm.md (movhi): REGNO_POINTER_ALIGN is now bits.
6302
6303 Fri Apr 14 16:58:45 2000  Jim Wilson  <wilson@cygnus.com>
6304
6305         * config/ia64/lib1funcs.asm (__divdi3, __moddi3, __udivdi3, __umoddi3):
6306         Use .s1 not .s0 for all FP instructions.
6307
6308 2000-04-14  Zack Weinberg  <zack@wolery.cumb.org>
6309
6310         * cpplex.c (cpp_output_tokens, cpp_scan_buffer_nooutput): New public
6311         interfaces.
6312         (safe_fwrite, output_line_command): New static functions.
6313         (cpp_expand_to_buffer): Now private to cpplib.
6314         (cpp_scan_buffer): Take a printer.
6315
6316         * cpphash.h: Update prototypes.
6317         * cpplib.h: Update prototypes.
6318         (cpp_printer): New.
6319         (cpp_buffer): Remove last_nominal_fname.
6320         (cpp_reader): Remove lineno.
6321
6322         * cppmain.c: Use a cpp_printer.
6323         * fix-header.c: No need to inhibit line commands.  Call
6324         cpp_start_read with no printer.
6325
6326         * cpperror.c (cpp_notice_from_errno): Provide default name.
6327         * cppfiles.c (make_IHASH, _cpp_fake_ihash): New functions.
6328         (find_include_file, cpp_read_file): Use make_IHASH.
6329         (file_cleanup): Set control_macro and clear
6330         input_stack_listing_current here.
6331         (_cpp_execute_include): Don't output entering-file marker.
6332         * cpphash.c (special_symbol): Look for the line number in the
6333         buffer, not the reader.
6334         (_cpp_macroexpand): No need to disable line commands.
6335         (_cpp_dump_definition): No need to generate line commands.
6336         (dump_hash_helper): Remove excess newline from output.
6337         * cppinit.c (dump_special_to_buffer): No need to generate line
6338         commands.
6339         (cpp_printer_init): New.
6340         (cpp_start_read): Take a printer, and start it up if it's not
6341         NULL.  No need to generate line commands.
6342         (cpp_finish): Expect no buffers stacked at all.  Take a
6343         printer argument, and flush the output buffer if it's not
6344         NULL.
6345         * cpplex.c (_cpp_lex_token): Return EOF if there's no buffer.
6346         Don't put two hashes at the beginning of an assertion.
6347         (cpp_get_token): Don't increment pfile->lineno or emit line
6348         commands here.  Return EOF if there's no buffer when we get
6349         EOF.
6350         * cpplib.c (do_define, skip_if_group):
6351         No need to disable line commands.
6352         (_cpp_output_line_command): Delete function.
6353         (do_line): Don't emit line commands here, but set things up so
6354         they will be emitted if necessary.  Use _cpp_fake_ihash to
6355         make unique nominal_fnames if necessary.
6356         (do_elif, do_else, _cpp_handle_eof): Call cpp_error_with_line
6357         with 0 for column, not -1.
6358         (_cpp_handle_eof): Don't set the control macro here.  Don't
6359         clear input_stack_listing_current here.  Don't emit line
6360         commands.
6361
6362 2000-04-14  Geoff Keating  <geoffk@cygnus.com>
6363
6364         * config/rs6000/sysv4.h (LINK_START_SOLARIS_SPEC): Define to empty
6365         always, use the default SVR4 start address.
6366
6367         * config/rs6000/linux.h (LINK_SPEC): Don't define.
6368         (LINK_SHLIB_SPEC): Define.
6369         (LINK_START_DEFAULT_SPEC): Define.
6370         (LINK_OS_DEFAULT_SPEC): Define.
6371
6372         * config/rs6000/sysv4.h (ENDFILE_SPEC): Use the %(endfile_*) macros.
6373
6374         * config/rs6000/eabi.asm (__eabi): Call __init rather than
6375         __do_global_ctors to handle constructors.
6376         * config/rs6000/sysv4.h (STARTFILE_ADS_SPEC): Use crtbegin.
6377         (STARTFILE_YELLOWKNIFE_SPEC): Likewise.
6378         (STARTFILE_MVME_SPEC): Likewise.
6379         (STARTFILE_SIM_SPEC): Likewise.
6380         (ENDFILE_ADS_SPEC): Use crtend.
6381         (ENDFILE_YELLOWKNIFE_SPEC): Likewise.
6382         (ENDFILE_MVME_SPEC): Likewise.
6383         (ENDFILE_SIM_SPEC): Likewise.
6384         (STARTFILE_SOLARIS_SPEC): Use crtbegin/crtbeginS.
6385         (ENDFILE_SOLARIS_SPEC): Use crtend/crtendS.
6386         (STARTFILE_LINUX_SPEC): Use crtbeginS for shared objects.
6387         (ENDFILE_LINUX_SPEC): Use crtendS for shared objects.
6388         * config/rs6000/t-ppccomm (LIB2FUNCS_EXTRA): Don't build eabi-ctors.o.
6389         (EXTRA_MULTILIB_PARTS): Build crtbeginS/crtendS.
6390         (CRTSTUFF_T_CFLAGS_S): Define.
6391         * config/rs6000/eabi-ctors.c: Delete.
6392
6393         * config/rs6000/eabi-ci.asm (__init): Align stack to 16-byte
6394         boundary.
6395         (__fini): Likewise.
6396         * config/rs6000/eabi-cn.asm (__init): Allow for 16-byte stack frame.
6397         boundary.
6398         (__fini): Likewise.
6399
6400 Fri Apr 14 16:09:02 2000  Jim Wilson  <wilson@cygnus.com>
6401
6402         * combine.c (force_to_mode, case LSHIFTRT): Check that shift shift
6403         plus mask size is smaller or equal to the mode size.
6404
6405 Fri Apr 14 18:07:30 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6406
6407         * print-rtl.c (print_rtx, case NOTE): Don't blow up if NOTE_BASIC_BLOCK
6408         not yet set.
6409
6410         * expr.c (reload.h): Now included.
6411         (emit_block_move): Set volatile_ok when checking for movstr.
6412         (emit_move_1): Check for replacements in addresses in multi-word case.
6413         * Makefile.in (expr.o): Now includes reload.h.
6414
6415         * flow.c (count_basic_blocks): Remove unused var PREV_CALL.
6416         Never have a LIBCALL end a basic block.
6417         (find_basic_blocks_1): Likewise.
6418         Reorganize CALL_INSN cases.
6419
6420         * sbitmap.h (EXECUTE_IF_SET_IN_SBITMAP): Revert last change.
6421
6422 Fri Apr 14 10:54:22 2000  Jim Wilson  <wilson@cygnus.com>
6423
6424         * config/ia64/lib1funcs.asm (__ia64_nonlocal_goto): Drop obsolete
6425         completers from mov.ret instruction.
6426
6427 2000-04-14  Richard Henderson  <rth@cygnus.com>
6428
6429         * fold-const.c (extract_muldiv): Don't distribute and widen
6430         multiply across plus for non-sizetype unsigned types.
6431
6432 2000-04-14  Richard Henderson  <rth@cygnus.com>
6433
6434         * flow.c (find_auto_inc): Don't autoinc eliminable registers.
6435         If the original source is dead in the incr insn, it's dead now.
6436
6437 Fri Apr 14 07:40:32 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6438
6439         * stor-layout.c (layout_decl): Properly compare KNOWN_ALIGN to
6440         see if DECL_BIT_FIELD needs to still be set.
6441
6442         * tree.h (struct tree_type): Make PRECISION 9 bits and MODE 7.
6443
6444         * dbxout.c (dbxout_type, case INTEGER_TYPE): Don't call
6445         print_int_cst_octal with something that's not an INTEGER_CST.
6446
6447         * config/alpha/alpha.c (alpha_emit_floatuns): Ensure we pass a REG
6448         and not a SUBREG to a FLOAT rtl.
6449
6450 Thu Apr 13 19:39:56 2000  Clinton Popetz  <cpopetz@cygnus.com>
6451
6452         * emit-rtl.c (try_split): Avoid infinite loop if the split
6453         results in a sequence that contains the original insn.
6454
6455 2000-04-13  Andreas Jaeger  <aj@suse.de>
6456
6457         * config/mips/mips.c (expand_block_move): Pass alignment
6458         argument to move_by_pieces in bits, not bytes.
6459
6460         * config/mips/linux.h (CPP_PREDEFINES): Also define __PIC__ and
6461         __pic__ for little endian.
6462
6463 2000-04-13  Andreas Jaeger  <aj@suse.de>
6464
6465         * config/i386/i386-protos.h: Add prototype for
6466         uno_comparison_operator.
6467
6468 Thu Apr 13 15:55:08 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6469
6470         * alias.c (nonlocal_reference_p): Take care of CALL_INSNS's fusage.
6471         * calls.c (ECF_PURE): New flag.
6472         (emit_call_1): Handle ECF_PURE calls.
6473         (initialize_argument_information): Unset ECF_PURE flag too.
6474         (precompute_arguments): Precompute for ECF_PURE too.
6475         (expand_call): Handle ECF_PURE calls too.
6476         (emit_library_call_value_1): Rename no_queue argument to fn_type,
6477         accept value of 2 as pure function.
6478         (emit_library_call_value, emit_library_call): Rename no_queue argument
6479         to fn_type.
6480         * optabs.c (prepare_cmp_insn): Pass fn_type 2 to memcmp call.
6481
6482         * tree.h (DECL_IS_PURE): New macro.
6483         (struct tree_decl): Add pure_flag.
6484         * c-common.c (enum attrs): Add attribute "pure".
6485         (init_attributes): Initialize attribute "pure"
6486         (decl_attributes): Handle attribute "pure".
6487         * extend.texi (Attribute "pure"): Document.
6488         * calls.c (expand_call): Add (mem:BLK (scratch)) to "equal from"
6489         in pure function.
6490         (flags_from_decl_or_type): Support attribute "pure".
6491
6492 2000-04-13  Jason Merrill  <jason@casey.cygnus.com>
6493
6494         * cpplex.c (_cpp_lex_token): Handle digraphs.  Don't null-terminate
6495         the token except for numbers and identifiers.
6496
6497 Thu Apr 13 00:09:16 EDT 2000  John Wehle  (john@feith.com)
6498
6499         * i386.c (ix86_expand_binary_operator,
6500         ix86_expand_unary_operator): Check no_new_pseudos
6501         instead of reload_in_progress and reload_completed.
6502         (ix86_split_ashldi, ix86_split_ashrdi,
6503         ix86_split_lshrdi): Check no_new_pseudos instead
6504         of reload_completed.
6505
6506 2000-04-12  Jeffrey A Law  (law@cygnus.com)
6507
6508         * function.c (purge_addressof): Unshare any shared rtl created by
6509         purge_addressof and its children.
6510
6511 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
6512
6513         * function.c (aggregate_value_p): VOID_TYPE nodes are never
6514         aggregates.
6515
6516 2000-04-05  Andreas Jaeger  <aj@suse.de>
6517
6518         * config/mips/linux.h (SUBTARGET_ASM_SPEC): Use proper flags if
6519         not compiling PIC code, add flags for mabi=64.
6520         (SUBTARGET_CPP_SIZE_SPEC): New.
6521         (SUBTARGET_CPP_SPEC): New.
6522         (CPP_PREDEFINES): Define __PIC__ and __pic__.  PIC code is default
6523         for MIPS/Linux and lots of code needs these defines.
6524
6525 Wed Apr 12 22:44:11 2000  Hans-Peter Nilsson  <hp@axis.com>
6526
6527         * reorg.c (fill_slots_from_thread): Check side_effects_p when
6528         trying the "opposite arithmetic" approach.
6529
6530 Wed Apr 12 20:51:20 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
6531
6532         * sh.h (STRUCT_VALUE): Just 0 for TARGET_HITACHI.
6533         (struct sh_args): Add new field force_mem.
6534         (INIT_CUMULATIVE_ARGS): Initialize it.
6535         (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Act on it.
6536
6537 Wed Apr 12 17:20:41 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6538
6539         * calls.c (expand_call): Do not reverse args in "equal from" field.
6540         (emit_library_call_value_1): Emit_libcall_block for const and pure
6541         function.
6542
6543 Wed Apr 12 16:00:25 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
6544
6545         * reload1.c (reload_combine): Don't enable optimization for fixed
6546         registers when encountering a BARRIER.
6547
6548 Wed Apr 12 15:54:11 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6549
6550         * builtins.c (expand_builtin_memcmp): Do expansion even with
6551         !HAVE_cmpstrsi, do libcall when gen_strcmpsi fails.
6552
6553         * calls.c (expand_call): Do NO_DEFER_POP unconditionally once
6554         stack is propertly aligned; add sanity checking for aligned
6555         stack pointer.
6556         (expand_library_call_value_1): Add sanity checking for aligned
6557         stack pointer.
6558
6559 Wed Apr 12 07:51:54 2000  Catherine Moore  <clm@cygnus.com>
6560
6561         * calls.c (emit_library_call_value_1): Change 3rd arg to
6562         locate_and_pad_parm to disregard the setting of partial.
6563
6564 Wed Apr 12 08:47:38 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6565
6566         * tree.c (unsave_expr_now_r, unsafe_for_reeval): Properly do TREE_LIST.
6567
6568         * print-rtl.c (print_rtx): For CALL_PLACEHOLDER, output the
6569         CALL_INSN from the normal case.
6570
6571 Fri Apr  7 12:23:04 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6572
6573         * i386.c (x86_sub_esp_4, x86_sub_esp_8, x86_add_esp_4, x86_add_esp_8):
6574         New global variables.
6575         (ix86_emit_epilogue_adjustment): Do not attempt to use pop for the
6576         adjustment.
6577         * i386.h (x86_sub_esp_4, x86_sub_esp_8, x86_add_esp_4, x86_add_esp_8):
6578         Declare,
6579         (TARGET_SUB_ESP_4, TARGET_SUB_ESP_8, TARGET_ADD_ESP_4,
6580          TARGET_ADD_ESP_8): New macros.
6581         * i386.md: Add peep2s to convert esp adjustments to push and pop
6582         instructions.
6583         (pushsi_prologue, popsi_epilogue): New patterns.
6584
6585 2000-04-12  Jakub Jelinek  <jakub@redhat.com>
6586
6587         * real.c (toe64): Remove stale #endif from the last change.
6588
6589 2000-04-12  Stephen L Moshier  <moshier@mediaone.net>
6590
6591         * real.h (MAX_LONG_DOUBLE_TYPE_SIZE): Comment.
6592         * real.c (toe64): Revert previous change.
6593
6594 2000-04-12  Jakub Jelinek  <jakub@redhat.com>
6595
6596         * objc/objc-act.c: Include ggc.h.
6597         (objc_tree_index, objc_global_trees): Convert most of the
6598         static tree variables into a static array with previous names
6599         as defines.
6600         (objc_ellipsis_node): New variable.
6601         (lang_init): Call objc_act_parse_init and c_parse_init.
6602         Create objc_ellipsis_node.
6603         (build_selector_translation_table): Use objc_ellipsis_node instead
6604         of (tree)1.
6605         (hack_method_prototype): Likewise.
6606         (get_arg_type_list): Likewise.
6607         (start_method_def): Likewise.
6608         (continue_method_def): Likewise.
6609         (gen_method_decl): Likewise.
6610         (ggc_mark_imp_list): New function.
6611         (ggc_mark_hash_table): New function.
6612         (objc_act_parse_init): New function.
6613         * objc/objc-act.h (objc_ellipsis_node): Add extern variable.
6614         * c-parse.in (c_parse_init): For objc add roots of objc specific
6615         local tree variables.
6616         * objc/objc-parse.y: Rebuilt.
6617         * objc/objc-parse.c: Rebuilt.
6618         (opt_parm_list): Use objc_ellipsis_node instead of (tree)1.
6619
6620 Wed Apr 12 01:00:44 EDT 2000  John Wehle  (john@feith.com)
6621
6622         * cse.c (delete_trivially_dead_insns): Also delete insns
6623         that copy a register to itself where the destination is
6624         a strict_low_part.
6625
6626 2000-04-11  Richard Henderson  <rth@cygnus.com>
6627
6628         * flow.c (struct propagate_block_info): Add new_dead, new_live.
6629         (propagate_block): Initialize them.  Use them in parallel instead
6630         of one tmp variable, ie revert much of the 0408 and 0407 functional
6631         changes, but keep the structural changes.
6632         (mark_set_regs): Take new_dead from propagate_block_info instead.
6633         (mark_set_1, mark_set_reg): Likewise.
6634         (mark_used_regs): Likewise with new_live.
6635         (mark_used_reg): Likewise.  Revert 0408 change.
6636
6637 2000-04-11  Nick Clifton  <nickc@cygnus.com>
6638
6639         * config/arm/arm.h: (INCOMING_RETURN_ADDR_RTX): Remove Dwarf2
6640         restriction.
6641         (DWARF_FRAME_RETURN_COLUMN): Remove Dwarf2 restriction.
6642
6643 2000-04-11  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
6644
6645         * config/elfos.h (SELECT_SECTION): Decide whether to use a data or
6646         const section to output a CONSTRUCTOR based on the same conditions
6647         used for VAR_DECLs.
6648
6649 Tue Apr 11 09:55:59 2000  Jeffrey A Law  (law@cygnus.com)
6650
6651         * pa/long-double.h (FIX_TRUNCTFSI2_LIBCALL): Tweak for PA64.
6652         * pa/pa-protos.h (output_call): Add additional argument indicating
6653         if the call is a sibling/tail call.
6654         (compute_zdepdi_operands, output_64bit_and): Prototype new functions.
6655         (compute_64bit_ior, cmpib_comparison_operator): Likewise.
6656         (function_arg, function_arg_partial_nregs): Likewise
6657         * pa/pa.c (override_options): Always set flag_pic for TARGET_64BIT.
6658         (emit_move_sequence): Zero extend certain constants as needed
6659         for TARGET_64BIT.
6660         (compute_zdepdi_operands, output_64bit_and): New functions.
6661         (output_64bit_ior, function_arg): Likewise.
6662         (cmpib_comparison_operator, function_arg_partial_nregs): Likewise.
6663         (compute_frame_size, hppa_expand_prologue): Handle TARGET_64BIT.
6664         (hppa_expand_epilogue, return_addr_rtx, hppa_va_arg): Likewise.
6665         (hppa_builtin_saveregs, output_cbranch, output_bb): Likewise.
6666         (output_bvb): Likewise.
6667         (output_millicode_call): Return pointer is in %r2 for TARGET_64BIT.
6668         (output_call): New argument 'sibcall'.  Generate sibcall sequences
6669         as needed.
6670         (print_operand); Handle cases 'Q', 'p', and 'z' for TARGET_64BIT.  For
6671         (ouput_arg_descriptor): Do not emit argument descriptors for
6672         TARGET_64BIT.
6673         * pa/pa.h (TARGET_PA_11, TARGET_PA_20): Only define if not already
6674         defined.
6675         (TARGET_64BIT, PROMOTE_FUNCTION_RETURN): Define.
6676         (FUNCTION_OK_FOR_SIBALL): Define.
6677         (CPP_PA10_SPEC, CPP_PA11_SPEC, CPP_PA20_SPEC): Define.
6678         (CPP_CPU_DEFAULT_SPEC, SUBTARGET_EXTRA_SPECS, EXTRA_SPECS): Likewise.
6679         (CPP_SPEC): Use new spec infrastructure.
6680         (BITS_PER_WORD, UNITS_PER_WORD): Handle TARGET_64BIT.
6681         (STACK_BOUNDARY, FUNCTION_BOUNDARY, PIC_OFFSET_TABLE_REGNUM): Likewise.
6682         (RETURN_IN_MEMORY, EXTRA_CONSTRAINT, FIRST_PARM_OFFSET): Likewise.
6683         (REG_PARM_STACK_SPACE, STACK_POINTER_OFFSET): Likewise.
6684         (STACK_DYNAMIC_OFFSET, FUNCTION_VALUE): Likewise.
6685         (FUNCTION_ARG_PASS_BY_REFERENCE, FUNCTION_ARG_CALLEE_COPIES): Likewise.
6686         (TRAMPOLINE_TEMPLATE, TRAMPOLINE_SIZE): Likewise.
6687         (INITIALIZE_TRAMPOLINE, LEGITIMATE_CONSTANT_P): Likewise.
6688         (CONST_OK_FOR_LETTER_P, MOVE_RATIO): Likewise.
6689         (FUNCTION_ARG); Call out to C code.
6690         (FUNCTION_ARG_PARTIAL_NREGS): Likewise.
6691         (MAX_BITS_PER_WORD, MAX_LONG_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): Define.
6692         (MIN_UNITS_PER_WORD): Likewise.
6693         * pa/pa.md (cmpdi): New expander.
6694         (scc patterns, movstrsi): Not available for TARGET_64BIT.
6695         (64bit conditional arithmetic): New patterns.
6696         (absdi2, smindi3, umindi3, smaxdi3, umaxdi3): New patterns.
6697         (movsicc): Not available if modes on all the operands to not match.
6698         (movdicc): New expander and associated patterns.
6699         (64bit branches): New patterns.
6700         (pre_load, post_store): Generate appropriate code for TARGET_64BIT.
6701         (pre_ldd, post_std): New patterns.
6702         (64bit addil, load low part): New patterns.
6703         (special movsf constant): Not available for TARGET_64BIT.
6704         (movsf, movdf expanders): Force constants into memory.
6705         (32bit movdf/movdi patterns): Disable for TARGET_64BIT.
6706         (64bit movdf/movdi patterns): New patterns.
6707         (zero_extendqidi2, zero_extendhidi2, zero_extendsidi2): New patterns
6708         for TARGET_64BIT.
6709         (extendqidi2, extendhidi2, extendsidi2): Similarly.
6710         (adddi3 expander): Allow "arith_operand" for second input.
6711         (32bit adddi3, subdi3, uaddcm): Disable for TARGET_64BIT.
6712         (64bit adddi3, subsi3, uaddcm): New patterns for TARGET_64BIT.
6713         (mulsi3 expander): Revamp slightly so it supports TARGET_64BIT too.
6714         (muldi3): New expander for TARGET_64BIT.
6715         (divsi3, udivsi3, modsi3, umodsi3): Fourth operand must be (reg:SI 2)
6716         for TARGET_64BIT.
6717         (32bit anddi3, iordi3, xordi3, andcm, negdi2, uaddcm): Disable
6718         patterns for TARGET_64BIT.
6719         (64bit anddi3, iordi3, xordi3, andcm, negdi2, uaddcm, shadd): New
6720         patterns for TARGET_64BIT.
6721         (64bit bit insertion/extractions): New patterns for TARGET_64BIT.
6722         (64bit shifts/rotates): New patterns/expanders for TARGET_64BIT.
6723         (sibcall_epilogue): New expander.
6724         (casesi): Tweak for TARGET_64BIT.
6725         (call expanders): Set & use the outgoing argument pointer.  Use the
6726         64bit call patterns as needed. Add additional arg to output_call.
6727         (call_internal_reg_64bit, call_value_internal_reg_64bit): New pattern.
6728         (sibcall, sibcall_internal_symref): New expanders.
6729         (sibcall_value, sibcall_value_internal_symref
6730         (interspace_jump): Turn into an expander + matching patterns.
6731         (canonicalize_funcptr_for_compare): Not needed for TARGET_64BIT.
6732         * pa/pa64-regs.h: Eliminate trigraph sequences.
6733         * pa/pa64-start.h (TARGET_PA_20): Fix typo.
6734
6735 2000-04-11  Zack Weinberg  <zack@wolery.cumb.org>
6736
6737         * cppexp.c, cpphash.c, cpphash.h, cpplex.c, cpplib.c,
6738         cpplib.h, cppmain.c, fix-header.c, scan-decls.c: Replace
6739         cpp_token with cpp_ttype everywhere.
6740         * cpperror.c, cpphash.c, cpplex.c, cpplib.c, scan-decls.c:
6741         Replace cpp_buf_line_and_col with CPP_BUF_LINE and/or
6742         CPP_BUF_COL.  Line and column numbers are unsigned int, not
6743         long.
6744         * cpplex.c (cpp_buf_line_and_col): Delete.
6745         * cpplib.h (struct cpp_buffer, struct cpp_reader): Change
6746         'long lineno' to 'unsigned int lineno'.
6747         (CPP_BUF_LINE, CPP_BUF_COL): New macros.
6748
6749 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
6750
6751         * extend.texi: ISO C99 is not a draft anymore.
6752         * invoke.texi: ISO C++ is not a draft anymore.
6753         * cpp.texi: __cplusplus is required by the ISO standard.
6754
6755         * extend.texi (-fthis-is-variable): Undocument.
6756         * flags.h (warn_template_debugging): Remove declaration.
6757         * gcc.1 (-fall-virtual, -fenum-int-equiv, -fthis-is-variable,
6758         -Wenum-clash, -Wtemplate-debugging): Undocument.
6759
6760 2000-04-10  Nick Clifton  <nickc@cygnus.com>
6761
6762         * config/arm/arm.h (HOST_INT): New macro: Declare a HOST_WIDE_INT
6763         integer.
6764         (HOST_UINT): New macro: Declare an unsigned HOST_WIDE_INT
6765         integer.
6766         (ARM_SIGN_EXTEND): Use HOST_UINT.
6767         (STRIP_NAME_ENCODING): Prevent warnings about redefinitions.
6768         (ASM_OUTPUT_LABELREF): Prevent warnings about redefinitions.
6769         (INCOMING_RETURN_ADDR_RTX): Only define if Dwarf2 is supported.
6770         (DWARF_FRAME_RETURN_COLUMN): Only define if Dwarf2 is supported.
6771
6772         * config/arm/arm.c: (const_ok_for_arm): Use HOST_UINT.
6773         (arm_gen_constant): Use HOST_UINT.
6774         (arm_canonicalize_constant): Use HOST_UINT.
6775         (arm_reload_in_hi): Use HOST_UINT.
6776         (arm_reload_out_hi): Use HOST_UINT.
6777         (output_multi_immediate): Use HOST_UINT.
6778         (int_log2): Use HOST_UINT.
6779         (arm_poke_function_name): Use HOST_UINT.
6780         (arm_output_epilogue): Use arm_volatile_func().
6781         (output_thumb_prologue): Use arm_strip_name_encoding().
6782
6783 Mon Apr 10 15:40:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6784
6785         * sbitmap.c (sbitmap_a_subset_b_p): Rework loop to avoid potential
6786         of sequence point problems.
6787
6788 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
6789
6790         * rtl.def (ASHIFT, ROTATE, ASHIFTRT, LSHIFTRT, ROTATERT):
6791         Recomment.
6792         * tree.def (LSHIFT_EXPR, RSHIFT_EXPR): Recomment.
6793
6794 Mon Apr 10 07:21:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6795
6796         * sbitmap.h: Whitespace changes and use upper-case macro args.
6797         (struct simple_bitmap_def): All sizes now unsigned.
6798         (EXECUTE_IF_SET_IN_SBITMAP): Internal vars now _X instead of X_.
6799         * sbitmap.c (sbitmap_alloc): N_ELMS now unsigned; also local vars.
6800         (sbitmap_vector_alloc): Parms and local vars now unsigned.
6801         (sbitmap_zero): Cast bzero arg to PTR.
6802         (sbitmap_vector_zero, sbitmap_vector_one): Parm and Local var unsigned.
6803         (sbitmap_union_of_diffs): Change loop index to unsigned and rework
6804         loop to make structure clearer.
6805         (sbitmap_not, sbitmap_difference, sbitmap_a_and_b): Likewise.
6806         (sbitmap_a_or_b, sbitmap_a_subset_b_p, sbitmap_a_or_b_and_c): Likewise.
6807         (sbitmap_a_and_b_or_c): Likewise.
6808         (sbitmap_intersection_of_succs): Minor cleanups.
6809         (sbitmap_intersection_of_preds, sbitmap_union_of_succs): Likewise.
6810         (sbitmap_union_of_preds): Likewise.
6811         (sbitmap_first_set_bit, dump_sbitmap): Local variables now unsigned.
6812         (debug_sbitmap): New function.
6813
6814         * c-convert.c (convert): Handle REFERENCE_TYPE like POINTER_TYPE.
6815         * c-typeck.c (convert_for_assignment): Likewise.
6816
6817         * expmed.c (init_expmed): Don't free objects we make.
6818         * emit-rtl.c (gen_rtx_CONST_INT, init_emit_once): Minor cleanups.
6819
6820         * expr.c (get_inner_reference): Correct some WITH_RECORD_EXPR cases.
6821         (expand_expr, case CONVERT_EXPR): Pass proper alignment to store_field.
6822
6823         * gcse.c (expr_hash_table_size): Now unsigned.
6824         (compute_ae_gen): Local variable `i' now unsigned.
6825         (compute_ae_kill, pre_insert_copies, pre_delete, pre_gcse): Likewise.
6826         (compute_transout, hoist_code): Likewise.
6827         (compute_local_properties): Likewise, also hash_table_size.
6828         (alloc_expr_hash_table): N_INSNS now unsigned.
6829         (delete_null_pointer_checks): Mark arg F as unused.
6830
6831         * regrename.c: Minor cleanups, including chang some variables
6832         to unsigned int.
6833
6834 2000-04-10  Neil Booth  <NeilB@earthling.net>
6835
6836         * cpplex.c (skip_block_comment): Use pointer arithmetic rather
6837         than GETC ().
6838         * cpphash.h: (CPP_BUMP_BUFFER_LINE_CUR, CPP_BUMP_LINE_CUR): New.
6839
6840 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
6841
6842         * invoke.texi (-fno-gnu-keywords): Remove classof, headof,
6843         __classof__, and __headof__ from the list of gnu keywords.
6844         (-ansi): Remove -foperator-names from list of implied options.
6845         Do not call it ANSI C++.
6846         (-foperator-names): Document as -fno-operator-names.
6847
6848 2000-04-09  Zack Weinberg  <zack@wolery.cumb.org>
6849
6850         * cpphash.c (timestamp): Delete.
6851         (del_HASHNODE): If type is T_MCONST, free value.cpval.
6852         (special_symbol): Remove unnecessary braces.  Remove
6853         T_VERSION.  Treat T_STDC like T_CONST unless
6854         STDC_0_IN_SYSTEM_HEADERS.  Render both __DATE__ and __TIME__
6855         when one is encountered, then convert them into T_MCONST
6856         nodes.
6857         * cppinit.c (builtin_array): version_string is T_MCONST.
6858         __STDC__ has a "1" in its cpval.  Don't have a terminator
6859         entry.  Clean up which entries are dumped.
6860         (initialize_builtins): Only __STDC__ gets the special
6861         -traditional treatment.  Count the length of builtin_array.
6862         Render version_string here.
6863         * cpphash.h: Remove T_VERSION.  Add T_MCONST.
6864         * cpplib.h (struct cpp_reader): Remove timebuf.
6865
6866 2000-04-09  Richard Henderson  <rth@cygnus.com>
6867
6868         * genrecog.c (pred): Update comparison_operator for the unordered
6869         operators.
6870
6871         * config/i386/i386.c (no_comparison_operator): Disallow unordered
6872         operators.
6873         (fcmov_comparison_operator): Allow UNORDERED/ORDERED.
6874         (uno_comparison_operator): New.
6875         (put_condition_code): Handle UNORDERED/ORDERED.
6876         (unsigned_comparison): Likewise.
6877         (ix86_fp_compare_mode): Broken out of ix86_expand_fp_compare.
6878         (ix86_use_fcomi_compare, ix86_prepare_fp_compare_args): Likewise.
6879         (ix86_expand_fp_compare): Use them.  Take scratch as argument,
6880         update all callers.  Handle all 8 unordered operators.
6881         (ix86_expand_setcc): Lose the unordered argument, update all callers.
6882         (ix86_expand_branch): Likewise.  Don't fully expand fp branches.
6883         * config/i386/i386.h (PREDICATE_CODES): Update.
6884         * config/i386/i386-protos.h (ix86_expand_fp_compare): Declare.
6885         (ix86_expand_branch, ix86_expand_setcc): Update.
6886         * config/i386/i386.md (sunordered, sordered): New.
6887         (suneq, sunge, sungt, sunle, sunlt, sltgt): New.
6888         (bunordered, bordered): New.
6889         (buneq, bunge, bungt, bunle, bunlt, bltgt): New.
6890         (*fp_jcc_1, *fp_jcc_2, *fp_jcc_3, *fp_jcc_4): New.
6891         (*fp_jcc_5, *fp_jcc_6, and splitters): New.
6892
6893 2000-04-09  Philip Blundell  <philb@gnu.org>
6894
6895         * config/arm/arm.h (ARM_NAME_ENCODING_LENGTHS): Strip `*' too.
6896
6897 Sun Apr  9 15:16:14 EDT 2000  John Wehle  (john@feith.com)
6898
6899         * i386.md (fix_truncsfhi2, fix_truncdfhi2,
6900         fix_truncxfhi2): New patterns.
6901         * i386.c (output_fix_trunc): Handle converting to HImode.
6902
6903 2000-04-08  Alex Samuel  <samuel@codesourcery.com>
6904
6905         * ssa.c (convert_to_ssa): Eliminate dead code when calling
6906         life_analysis.
6907         (convert_from_ssa): Call compute_bb_for_insn before life_analysis.
6908         (for_each_successor_phi): Change parameter to basic_block.
6909         (coalesce_regs_in_successor_phi_nodes): Likewise.
6910         (coalesce_regs_in_copies): Likewise.
6911         (compute_coalesced_reg_partition): Use basic_block instead of index.
6912         * rtl.h (convert_to_ssa): Delete.
6913         (convert_from_ssa): Likewise.
6914         (successor_phi_fn): Likewise.
6915         (for_each_successor_phi): Likewise.
6916         (in_ssa_form): Likewise.
6917         * basic-block.h (convert_to_ssa): Moved from rtl.h.
6918         (convert_from_ssa): Likewise.
6919         (successor_phi_fn): Likewise.
6920         (in_ssa_form): Likewise.
6921         (for_each_successor_phi): Likewise.  Change parameter to basic_block.
6922         * flow.c (calculate_global_regs_live): Pass a basic_block to
6923         for_each_successor_phi.
6924
6925 2000-04-08  Richard Henderson  <rth@cygnus.com>
6926
6927         * flow.c (mark_used_reg): Use reg_set_p to determine if a register
6928         was modified in the current insn.
6929
6930 2000-04-08  Richard Earnshaw (rearnsha@arm.com)
6931
6932         * arm/thumb.md: Delete.
6933         * arm/thumb-protos.h: Delete.
6934
6935 2000-04-08  Richard Earnshaw (rearnsha@arm.com)
6936
6937         Merge changes from merged-arm-thumb-backend-branch onto trunk.
6938
6939         2000-04-08  Richard Earnshaw (rearnsha@arm.com)
6940
6941         * Merge trunk code from tag merged-arm-thumb-backend-merge_20000408
6942         into branch.
6943
6944         * arm.md (nop): Use the standard RTL expression.  Don't code as a
6945         define_expand.
6946         (*arm_nop, *thumb_nop): Delete.
6947
6948         * arm.c (const_ok_for_arm): Don't use ANSI extensions for defining
6949         constants.  Use casts instead.
6950         (arm_gen_constant, arm_rtx_costs, arm_reload_in_hi, arm_reload_out_hi,
6951         output_multi_immediate, arm_poke_function_name): Likewise.
6952         * arm.h (ARM_LEGITIIMIZE_RELOAD_ADDRESS, ARM_SIGN_EXTEND,
6953         MASK_RETURN_ADDDR): Likewise.
6954
6955         2000-03-31  Richard Earnshaw (rearnsha@arm.com)
6956
6957         * Merge trunk code from tag merged-arm-thumb-backend-merge_20000325
6958         into branch.
6959
6960         * arm.md (eh_epilogue): New function.
6961         * arm.h (struct machine_function): Move to here ...
6962         * arm.c: ... from here.
6963         (arm_output_epilogue): Support epilogues for __builtin_eh_return.
6964         (thumb_exit): Extra parameter eh_ofs.  All callers changed.
6965         Handle epilogues for __builtin_eh_return.  Make bit-fields unsigned.
6966
6967         2000-03-30  Nick Clifton  <nickc@cygnus.com>
6968
6969         * config/arm/semi.h (ASM_SPEC): Restore definition.
6970         (SUBTARGET_EXTRA_ASM_SPEC): Define if not already defined.
6971
6972         * config/arm/elf.h (ASM_SPEC): Restore definition.
6973         (SUBTARGET_EXTRA_ASM_SPEC): Define if not already defined.
6974
6975         * config/arm/arm.h (ASM_SPEC): Remove definition.
6976         (SUBTARGET_EXTRA_ASM_SPEC): Remove definition.
6977
6978         2000-03-26  Bernd Schmidt <bernds@cygnus.co.uk>
6979
6980         * config/arm/arm.c: Disable -fschedule-insns for Thumb.
6981
6982         2000-03-24  Nick Clifton  <nickc@cygnus.com>
6983
6984         Various formating tidyups, elimination of compile time
6985         warnings and synchronisation with internal sources:
6986
6987         * config/arm/arm-protos.h (assemble_align): Add prototype.
6988         (gen_rotated_half_load): Rename to arm_gen_rotated_half_load.
6989         (gen_comapre_reg): Rename to arm_gen_compare_reg.
6990         (arm_return_addr_rtx): Rename to arm_return_addr.
6991
6992         * config/arm/arm.c: Include except.h.
6993         Define shorter typenames for strict minipool_node and struct
6994         minipool_fix.
6995         (arm_return_in_memory): For WinCE return all structures <= 32 bits
6996         in memory.
6997         (gen_rotated_half_load): Rename to arm_gen_rotated_half_load.
6998         (gen_comapre_reg): Rename to arm_gen_compare_reg.
6999
7000         * config/arm/arm.h (SUBTARGET_EXTRA_ASM_SPEC): Define if not
7001         already defined.
7002         (ASM_SPEC): Define if not already defined.
7003         (ASM_OUTPUT_DEF_FROM_DECLS): Define.
7004
7005         * config/arm/arm.md: Rename references to gen_rotated_half_load to
7006         arm_gen_rotated_half_load, and references to gen_comapre_reg to
7007         arm_gen_compare_reg.
7008         (indirect_jump):  Only accept register operands.
7009         (load_indirect_jump): Keep this pattern since combine can generate
7010         it.
7011
7012         * config/arm/coff.h: Include aout.h.
7013         (MULTILIB_DEFAULTS): Only define if not already defined.
7014
7015         * config/arm/elf.h (ASM_OUTPUT_DEF_FROM_DECLS): Move definition
7016         into arm.h (so that COFF ports can support thumb based aliases).
7017         (ASM_SPEC): Move definition into arm.h
7018
7019         * config/arm/linux-elf.h (SUBTARGET_EXTRA_ASM_SPEC): Remove
7020         redundant apcs spec.
7021         (ASM_SPEC): Move definition to arm.h
7022
7023         * config/arm/semi.h (ASM_SPEC): Move definition to arm.h
7024
7025         * config/arm/unknown-elf.h (ASM_OUTPUT_SECTION_NAME): Add support
7026         for entries in the .bss section
7027
7028         2000-03-23  Nick Clifton  <nickc@cygnus.com>
7029
7030         * config/arm/arm.h (THUMB_INITIAL_ELIMINATION_OFFSET): Pass 0
7031         to thumb_far_jump_used_p.
7032
7033         * config/arm/arm-protos.h (thumb_far_jump_used_p): Take a
7034         single integer parameter.
7035
7036         * config/arm/arm.c (struct machine_function): Add two new
7037         fields, 'far_jump_used' and 'arg_pointer_live'.
7038         (thumb_far_jump_used_p): Once the decision has been made that
7039         far jumps might be used, always return true.
7040         If being called from the initial elimination offset macro then
7041         do not bother to perform the test if the arg pointer is not
7042         being used.
7043         (thumb_unexpand_epilogue): Pass 1 to thumb_far_jump_used_p().
7044         (output_thumb_prologue): Pass 1 to thumb_far_jump_used_p().
7045
7046         2000-03-23  Richard Earnshaw (rearnsha@arm.com)
7047
7048         * arm.c (output_return_instruction): Handle more cases where we can
7049         return from a function with an ldr instruction.
7050         (arm_output_epilogue): Likewise.
7051
7052         * arm.c (thumb_expand_prologue): Don't clobber the frame pointer
7053         if we need to push a large stack frame and there are no callee-saved
7054         registers.
7055
7056         * arm.c (arm_debugger_arg_offset): An offset of 0 is also valid
7057         in ARM code if the frame pointer has been eliminated.
7058
7059         * arm.md (epilogue, *epilogue_insns, consttable_*, align_4): Renumber
7060         unspec_volatile arguments to avoid duplicates.
7061         (consttable_1, consttable_2): Fixes for big-endian mode.
7062
7063         * arm.md (all ARM-mode load insns): Add neg_pool_range attribute
7064         as appropriate.
7065
7066         Re-write constant pool code.
7067         * arm.c (minipool_node, minipool_fix): New types.
7068         (minifix): Delete type.
7069         (arm_add_minipool_constant): Delete.
7070         (arm_compute_minipool_offsets, arm_find_barrier,
7071         arm_find_minipool_constant, fixup_compare, sort_fixups): Likewise.
7072         (get_jump_table_size): Now returns HOST_WIDE_INT.
7073         (move_minipool_fix_forward_ref, add_minipool_forward_ref): New
7074         functions.
7075         (move_minipool_fix_backward_ref, add_minipool_backward_ref): Likewise.
7076         (assign_minipool_offsets, arm_print_value): Likewise.
7077         (dump_minipool): Rewrite.
7078         (arm_barrier_cost): New function.
7079         (create_fix_barrier): New function.
7080         (push_minipool_barrier): New function.
7081         (push_minipool_fix): Record additional information about the fixup
7082         required.
7083         (note_invalid_constants): Remove push for (UNSPEC 3).  Don't
7084         check the mode of what needs fixing.
7085         (arm_reorg): Rewrite.
7086
7087         2000-03-08  Nick Clifton  <nickc@cygnus.com>
7088
7089         * config/arm/arm.md (indirect_jump): Force constant addresses into
7090         a register.
7091
7092         2000-03-01  Bernd Schmidt <bernds@cygnus.co.uk>
7093
7094         * config/arm/arm.md: Add splitter to turn SF moves into SI moves.
7095
7096         2000-02-24  Nick Clifton  <nickc@cygnus.com>
7097
7098         * config/arm/arm.c (thumb_expand_prologue): Make sure that stack
7099         adjust is word aligned.
7100         (thumb_expand_epilogue): Make sure that stack adjust is word
7101         aligned.
7102
7103         * config/arm/elf.h (ASM_FILE_START): Fix type of version string.
7104
7105         2000-02-24  Bernd Schmidt <bernds@cygnus.com>
7106
7107         * config/arm/arm.h (THUMB_GO_IF_LEGITIMATE_ADDRESS): Allow frame
7108         pointer relative addresses.
7109
7110         2000-02-10  Richard Earnshaw  <rearnsha@arm.com>
7111
7112         * arm.c (find_barrier): Find the last barrier within the allowed
7113         range.
7114
7115         2000-02-09  Nick Clifton  <nickc@cygnus.com>
7116
7117         * config/arm/arm-protos.h: Replace PROTO with PARAMS.
7118
7119         2000-02-09  Nick Clifton  <nickc@cygnus.com>
7120
7121         * config/arm/linux-elf.h (FUNCTION_PROFILER): Rename to
7122         ARM_FUNCTION_PROFILER.
7123
7124         * config/arm/netbsd.h (FUNCTION_PROFILER): Rename to
7125         ARM_FUNCTION_PROFILER.
7126
7127         * config/arm/linux-oldld.h: Imported from mainline sources.
7128
7129         2000-02-07  Nick Clifton  <nickc@cygnus.com>
7130
7131         * config/arm/lib1funcs.asm: Merge in thumb functions from
7132         lib1thumb.asm.
7133
7134         * config/arm/lib1thumb.asm: Delete.
7135
7136         2000-02-04  Nick Clifton  <nickc@cygnus.com>
7137
7138         * config/arm/arm.c: Sychronised with current Red hat local
7139         sources.
7140         * config/arm/arm.h: Ditto.
7141         * config/arm/arm-protos.h: Ditto.
7142
7143         2000-02-02  Bernd Schmidt  <bernds@cygnus.co.uk>
7144
7145         * arm.c (soft_df_operand): Reject SUBREGs containing a constant.
7146
7147         * arm.c (arm_gen_movstrqi): Generate halfword stores rather than two
7148         byte stores.
7149
7150         2000-02-02  Nick Clifton  <nickc@cygnus.com>
7151
7152         * config/arm/thumb.c (thumb_exit): Additional fix for same bug.
7153
7154         * config/arm/arm.md (epilogue): Fix rtl checking abort because
7155         (return) was emited using an emit_insn() call.
7156
7157         2000-01-31  Nick Clifton  <nickc@cygnus.com>
7158
7159         * config/arm/arm.c (output_thumb_prologue): Fix bug generating
7160         thumb stack frame.
7161         (thumb_exit): Move frame pointer back into hard frame pointer
7162         register if backtracing is being used.
7163
7164         2000-01-13  Richard Earnshaw (rearnsha@arm.com)
7165
7166         * Merge trunk code from tag merged-arm-thumb-backend-merge_20000113
7167         into branch.
7168
7169         1999-12-15  Bernd Schmidt  <bernds@cygnus.co.uk>
7170
7171         * config/arm/arm.md (neg_pool_offset): Provide default for new
7172         attribute.
7173         (arm_movsi_insn): Add neg_pool_offset attribute.
7174         * config/arm/arm.c (arm_find_barrier): Replace arg FIX with an
7175         rtx for the insn that starts the scan and an unsigned long for its
7176         address.  Add MIN_OFFSET and PINSERTED args.  All callers changed.
7177         Change scan to ignore insns before MIN_OFFSET.  Store size of inserted
7178         instructions in *PINSERTED.
7179         (struct minipool_fixup): Add MIN_ADDRESS elt.
7180         (sort_fixups): Compute it.
7181         (arm_reorg): Changes to support inserting pools before the insn to be
7182         fixed up.
7183
7184         1999-12-08  Bernd Schmidt  <bernds@cygnus.co.uk>
7185
7186         * config/arm/elf.h (MULTILIB_DEFAULTS): Add "marm".
7187         * config/arm/linux-elf.h (MULTILIB_DEFAULTS): Add "marm".
7188         * config/arm/coff.h (MULTILIB_DEFAULTS): Add "marm".
7189
7190         Wed Nov  3 10:04:07 1999  Nick Clifton  <nickc@cygnus.com>
7191
7192         * config/arm/semi.h (TARGET_VERSION): Do not define if already
7193         defined.
7194         (TARGET_DEFAULT): Do not define if already defined.
7195
7196         Tue Nov  2 10:37:25 1999  Nick Clifton  <nickc@cygnus.com>
7197
7198         * config/arm/arm.md (anddi3): Allow disjoint source operands.
7199         (iordi3): Allow disjoint source operands.
7200         (xordi3): Allow disjoint source operands.
7201         (negdi2): Permit construction for ARM and Thumb.
7202         (arm_negdi2): Renamed version of old negdi2 pattern.
7203         (thumb_negdi2): New pattern: Only permit non-overlapping
7204         source and destination.
7205
7206         Fri Oct 29 18:52:38 1999  Nick Clifton  <nickc@cygnus.com>
7207
7208         * config/arm/arm.c (thumb_expand_prologue): Emit a USE of the
7209         scratch low register so that it will not be deleted.
7210
7211         Fri Oct 29 15:23:48 1999  Nick Clifton  <nickc@cygnus.com>
7212
7213         * config/arm/pe.h (ARM_PE): Define.
7214
7215         * config/arm/arm.c (arm_valid_machine_decl_attribute): Allow
7216         interfacearm attribute if this is a PE toolchain.
7217         (output_return_instruction): Do not emit anything if the function
7218         has the naked attribute set.
7219         (is_called_in_ARM_mode): If the function has the interfacearm
7220         attribute then return true.
7221         (thumb_expand_prologue): Do not generate a prologue for naked
7222         functions.
7223         (thumb_expand_epilogue): Do not generate an epilogie for a naked
7224         function.
7225         (output_thumb_prologue): Do not bother if the function is naked.
7226         Strip PE encoding from function name before emitting.
7227
7228         Thu Oct 28 11:05:13 1999  Richard Earnshaw <rearnsha@arm.com>
7229
7230         * arm.md (pic_load_addr): Fix constraints.
7231
7232         * arm.md (casesi_insn): Fix mis-applied patch.
7233
7234         * arm.md ("core" function unit): Add rules for single- and
7235         multi-cycle insns.
7236         (All TARGET_THUMB patterns): Add "type" attribute information
7237         where needed.
7238         * arm.c (arm_adjust_cost): Reduce the cost of a data dependency if
7239         the following insn is a CALL.
7240
7241         * arm.c (thumb_expand_epilogue): Add a use of the adjusted stack
7242         pointer.
7243         * arm.h (CONDITIONAL_REGISTER_USAGE): Nail down the
7244         ARM_HARD_FRAME_POINTER_REGNUM when TARGET_APCS_FRAME.
7245         (FRAME_POINTER_REQUIRED): Only check TARGET_APCS_FRAME if TARGET_ARM.
7246
7247         Wed Oct 27 14:40:48 1999  Nick Clifton  <nickc@cygnus.com>
7248
7249         * config/arm/linux-gas.h: oops - this file was missed out when the
7250         branch was created...
7251
7252         Tue Oct 26 17:07:38 1999  Richard Earnshaw <rearnsha@arm.com>
7253
7254         * thumb.c: Deleted.  Move contents to ...
7255         * arm.c: ... here.
7256         * t-arm-aout, t-arm-coff, t-arm-elf, t-linux, t-netbsd, t-semi: Remove
7257         rule for thumb.o
7258         * configure.in (arm*-*-*): Remove thumb.o from extra_objs list.
7259         * configure: Regen.
7260
7261         * arm-protos.h: Use RTX_CODE and tidy up long lines.  Don't
7262         declare a prototype for asm_output_align();
7263
7264         * arm.c (thumb_condition_code): Delete.
7265         (arm_print_operand): Always use arm_condition_code array.
7266
7267         * arm.c (thumb_return_addr_rtx): Delete.
7268         (arm_save_machine_status, arm_restore_machine_status): Delete.
7269         (arm_init_machine_status, arm_mark_machine_status): New functions.
7270         (arm_init_expanders): Update accordingly.
7271         (arm_return_addr): Renamed from arm_return_addr_rtx.  Rewrite.
7272         (thumb_expand_prologue): Delete code referencing thumb_return_addr_rtx.
7273         * arm.h (RETURN_ADDR_RTX): Call arm_return_addr().
7274
7275         Tue Oct 26 13:24:16 1999  Nick Clifton  <nickc@cygnus.com>
7276
7277         * configure.in : Fix arm-*-aout target to use new t-arm-aout
7278         script.
7279         * config/arm/t-arm-aout: New file: Makefile script for arm-*-aout
7280         targets.
7281
7282         Tue Oct 26 11:27:12 1999  Nick Clifton  <nickc@cygnus.com>
7283
7284         * config/arm/thumb.c (output_thumb_prologue): Fix bug creating
7285         stack backtrace structure.
7286
7287         * config/arm/arm-protos.h: Add prototypes for functions defined in
7288         arm/pe.h.
7289
7290         * config/arm/arm.c (arm_override_options): Fix selection of
7291         attributes of default processor.
7292
7293         * config/arm/coff.h: Delete needless #include.
7294
7295         * config/arm/pe.c: Delete unused code.
7296
7297         * config/arm/pe.h (CPP_DEFINES): Delete
7298         (SUBTARGET_CPP_SPEC): Define.
7299         (ASM_DECLARE_FUNCTION_NAME): Use ARM_DECLARE_FUNCTION_NAME.
7300
7301         * config/arm/t-pe: Add -DInhibit_libc to allof libgcc.a to build.
7302
7303         Mon Oct 25 15:42:09 1999  Richard Earnshaw (rearnsha@arm.com)
7304
7305         * arm.h (TARGET_APCS_FRAME): Renamed from TARGET_APCS -- all uses
7306         updated.
7307         (CAN_DEBUG_WITHOUT_FP): Define.
7308         (FIXED_REGISTERS): Make r11 call-saved.
7309         (CALL_USED_REGISTERS): Likewise.
7310         (CONDITIONAL_REGISTER_USAGE): Fix r11 if TARGET_APCS_FRAME.
7311         (FRAME_POINTER_REQUIRED): Correct logic for determining when a
7312         frame-pointer is required.
7313         (TARGET_DEFAULT): Make default setting include ARM_FLAG_APCS_FRAME.
7314         * arm.c (arm_override_options): Warn about -mno-apcs-frame and -g
7315         if the target normally needs a stack frame in non-leaf functions.
7316         (use_return_insn): Correct logic for determining when a return
7317         instruction can be used.
7318         (output_return_instruction): Handle the frame-pointer register as
7319         a normal register when not TARGET_APCS_FRAME.
7320         (arm_output_prologue): Likewise.
7321         (arm_output_epilogue): Likewise.
7322         (output_func_epilogue): Likewise.
7323         (arm_expand_prologue): Likewise.
7324         * netbsd.h semi.h (TARGET_DEFAULT): Add ARM_FLAG_APCS_FRAME.
7325
7326         * arm.c (use_return_insn): No need to check floating point regs if
7327         TARGET_SOFT_FLOAT.
7328         (arm_find_minipool_constant): Correct typo; use GET_CODE to get
7329         the code of value stored in the minipool array.
7330         (arm_add_minipool_constant): Likewise.
7331
7332 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7333
7334         * basic-block.h (conflict_graph_enum_fn): K&R fix.
7335
7336 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7337
7338         * tree.c (tree_expr_nonnegative_p): New function.
7339
7340         * tree.h (tree_expr_nonnegative_p): Declare.
7341
7342         * c-typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to
7343         elide some sign_compare warnings.
7344         (build_conditional_expr): Likewise.
7345
7346 Sat Apr  8 00:21:51 EDT 2000  John Wehle  (john@feith.com)
7347
7348         * i386.md (ashrsi3, ashrhi3, ashrqi3): Fix typo.
7349
7350         * i386.md (floathisf2, floathidf2, floathixf2): New patterns.
7351         * i386.c (print_operand): Use the proper suffix for a 387 HImode
7352         operand.  Abort if a 387 operand has an unsupported size.
7353
7354 2000-04-08  Neil Booth  <NeilB@earthling.net>
7355
7356         * cppexp.c (parse_charconst): Null does not end character
7357         constants.
7358         * cppinit.c (ISTABLE): Null character handled as whitespace.
7359         * cpplex.c (null_warning):  new function.
7360         (skip_string): Emit warning if nulls encountered.
7361         (_cpp_skip_hspace): Emit warning if nulls encountered.
7362         (_cpp_lex_token): Emit warning if nulls encountered.  Drop
7363         them.
7364         * cpp.texi: Update.
7365
7366 2000-04-07  Richard Henderson  <rth@cygnus.com>
7367
7368         * flow.c (loop_depth): Remove.
7369         (reg_next_use, cc0_live, mem_set_list): Replace with ...
7370         (struct propagate_block_info): New.
7371         (life_analysis): Don't allocate reg_next_use.
7372         (propagate_block_delete_insn): Break out of propagate_block.
7373         Use flow_delete_insn to unlink rather than use NOTE_INSN_DELETED.
7374         (propagate_block_delete_libcall): Likewise.
7375         (propagate_block): Create a propagate_block_info struct to pass
7376         to subroutines.  Allocate one not two temporary regsets.  Don't
7377         clobber memory for const calls.  Look for clobbers in
7378         CALL_INSN_FUNCTION_USAGE.
7379         (mark_set_regs): Recognize COND_EXEC.
7380         (mark_set_reg): Break out of mark_set_1.
7381         (mark_used_reg): Break out of mark_used_regs.
7382         (mark_used_regs): Recognize COND_EXEC.
7383         (insn_dead_p): Use propagate_block_info struct.
7384         (libcall_dead_p, invalidate_mems_from_autoinc): Likewise.
7385         (find_auto_inc, try_pre_increment_1): Likewise.
7386         (print_rtl_with_bb): Dump regs live at end too.
7387         (count_reg_sets_1): Pass in loop_depth.
7388         (count_reg_sets, count_reg_references): Likewise.
7389         (recompute_reg_usage): Provide it.
7390
7391 2000-04-07  Richard Henderson  <rth@cygnus.com>
7392
7393         * Makefile.in (conflict.o): Depend on $(RTL_H) and $(BASIC_BLOCK_H)
7394         not the raw files.
7395
7396 2000-04-07  Zack Weinberg  <zack@wolery.cumb.org>
7397
7398         * cpplib.c (do_elif): Skip the rest of the line if we're
7399         not going to bother evaluating it.
7400         (skip_if_group): Clear pfile->only_seen_white.  Reorder loop
7401         to avoid pointless calls to the lexer.
7402
7403 Fri Apr  7 11:50:54 2000  Jim Wilson  <wilson@cygnus.com>
7404
7405         * config/ia64/ia64.c: Delete stdio.h and ctype.h includes.
7406
7407 2000-04-07  Jason Merrill  <jason@casey.cygnus.com>
7408
7409         * calls.c (expand_call): emit_queue if we're trying a sibcall.
7410
7411 2000-04-07  Jakub Jelinek  <jakub@redhat.com>
7412
7413         * config/sparc/t-linux64 (tcrtbeginS.o, tcrtendS.o): Remove.
7414
7415 2000-04-06  Geoff Keating  <geoffk@cygnus.com>
7416
7417         * Makefile.in: Build crtbeginS and crtendS like crtbegin and
7418         crtend so they can be multilibbed.
7419         (STAGESTUFF): Remove s-crt and s-crtS.
7420
7421 2000-04-07  Richard Henderson  <rth@cygnus.com>
7422
7423         * config/alpha/alpha.c (alpha_emit_conditional_move): Fail
7424         if we discover we need a pseudo and no_new_pseudos is true.
7425         * config/alpha/alpha.md (ne:DI insn): New.
7426         (trunctfsf2, sne): Emit NE instead of non-canonical LTU.
7427
7428 2000-04-07  Richard Henderson  <rth@cygnus.com>
7429
7430         * rtl.def (COND_EXEC): New.
7431         * rtl.h (COND_EXEC_TEST, COND_EXEC_CODE): New.
7432         * tm.texi (MAX_CONDITIONAL_EXECUTE): Document.
7433
7434         * genconfig.c (have_cond_arith_flag): Remove.
7435         (have_cond_exec_flag): New.
7436         (walk_insn_part): Detect COND_EXEC, not arithmetic in IF_THEN_ELSE.
7437         (main): Print HAVE_conditional_execution.
7438
7439         * haifa-sched.c (haifa_classify_insn): Recognize COND_EXEC.
7440         (sched_analyze_insn, print_pattern): Likewise.
7441         * reload.c (find_equiv_reg): Likewise.
7442         * rtlanal.c (reg_referenced_p): Likewise.
7443         (note_stores, dead_or_set_regno_p): Likewise.
7444         (reg_overlap_mentioned_p): Rewrite to use a switch.
7445
7446         * ggc.h (struct rtx_def): Forward declare.
7447
7448         * print-rtl.c (debug_rtx_range): New.
7449         * rtl.h (debug_rtx_range): Declare.
7450
7451         * varray.h (VARRAY_ACTIVE_SIZE, VARRAY_POP_ALL): New.
7452
7453         * gcse.c (gcse_main): Don't rebuild the CFG here.
7454         (delete_null_pointer_checks): Likewise.
7455         * ssa.c (convert_to_ssa): Likewise.
7456         * toplev.c (rest_of_compilation): Do it here instead.  Combine
7457         sequential calls to TIMEVAR.  Consistently use `insns' instead of
7458         `get_insns()'.  Always split insns after reload when optimizing.
7459
7460         * basic-block.h (merge_blocks_nomove): Declare.
7461         (tidy_fallthru_edge): Declare.
7462         * flow.c (merge_blocks_nomove): Document as merging into previous
7463         blocks.  Remove cruft from between blocks; remove all edges out of A.
7464         (tidy_fallthru_edge): Export.
7465
7466 2000-04-06  Alex Samuel  <samuel@codesourcery.com>
7467
7468         * ssa.c (compute_conservative_reg_partition): Declare with
7469         void arguments.
7470         * toplev.c (clean_dump_file): Remove previously-deleted function
7471         inadvertantly merged back in.
7472         * conflict.c (conflict_graph_add): Use a single call to
7473         htab_find_slot to look up and insert.
7474
7475 2000-04-06  Richard Henderson  <rth@cygnus.com>
7476
7477         * genrecog.c (*): Rename _last_insn to last_insn.
7478         (make_insn_sequence): Set the position of the peephole2 C test
7479         to be at the last insn.
7480
7481 2000-04-06  Richard Henderson  <rth@cygnus.com>
7482
7483         * flow.c (compute_flow_dominators): Free worklist.
7484
7485 2000-04-06  Michael Matz  <matzmich@cs.tu-berlin.de>
7486
7487         * flow.c (compute_flow_dominators): Process blocks FIFO not LIFO.
7488
7489 2000-04-06  Alex Samuel  <samuel@codesourcery.com>
7490
7491         * rtl.h (INSN_P): New macro.
7492         (successor_phi_fn): New typedef.
7493         (for_each_successor_phi): New prototype.
7494         (in_ssa_form): New variable.
7495         (PHI_NODE_P): Likewise.
7496         * flow.c (calculate_global_regs_live): Add to new_live_at_end from
7497         phi nodes in successors.
7498         (mark_used_regs): Add PHI case.
7499         (set_phi_alternative_reg): New function.
7500         (life_analysis): Assert that dead code elimination is not selected
7501         when in SSA form.
7502         * toplev.c (to_ssa_time): New variable.
7503         (from_ssa_time): Likewise.
7504         (compile_file): Zero to_ssa_time and from_ssa_time.
7505         Print time to convert to and from SSA.
7506         (rest_of_compilation): Time convert_to_ssa and convert_from_ssa.
7507         (print_time): Compute percent fraction as integer.
7508         * ssa.c (PHI_NODE_P): Moved to rtl.h.
7509         (convert_to_ssa): Check if we're already in SSA.
7510         Don't eliminate dead code in life_analysis.
7511         Rerun flow and life analysis at bottom.
7512         (eliminate_phi): Use canonical regnos when adding nodes.
7513         (mark_reg_in_phi): New function.
7514         (mark_phi_and_copy_regs): Likewise.
7515         (convert_from_ssa): Rerun life analysis at top.
7516         Use coalesced partition.
7517         Check for removing a phi node at the end of the block.
7518         (compute_coalesced_reg_partition): New function.
7519         (coalesce_regs_in_copies): Likewise.
7520         (coalesce_reg_in_phi): Likewise.
7521         (coalesce_regs_in_sucessor_phi_nodes): Likewise.
7522         (for_each_successor_phi): Likewise.
7523         (rename_context): New struct.
7524         (rename_block): Use a rename_context with rename_insn_1.  When
7525         renaming sets of a subreg, emit a copy of the entire reg first.
7526         (rename_insn_1): Treat data as a rename_context *.  Save current
7527         insn in set_data.
7528         (rename_set_data): Add field set_insn.
7529         * Makefile.in (HASHTAB_H): Move up in file.
7530         (OBSTACK_H): New macro.
7531         (collect2.o): Use OBSTACK_H in dependencies.
7532         (sdbout.o): Likewise.
7533         (emit-rtl.o): Likewise.
7534         (simplify-rtx.o): Likewise.
7535         (fix-header.o): Likewise.
7536         (OBJS): Add conflict.o.
7537         (conflict.o): New rule.
7538         * basic-block.h: Include partition.h.
7539         (conflict_graph): New typedef.
7540         (conflict_graph_enum_fn): Likewise.
7541         (conflict_graph_new): New prototype.
7542         (conflict_graph_delete): Likewise.
7543         (conflict_graph_add): Likewise.
7544         (conflict_graph_conflict_p): Likewise.
7545         (conflict_graph_enum): Likewise.
7546         (conflict_graph_merge_regs): Likewise.
7547         (conflict_graph_print): Likewise.
7548         (conflict_graph_compute): Likewise.
7549         * conflict.c: New file.
7550
7551 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
7552
7553         * tlink.c (read_repo_files): Don't look for .rpo info for
7554         linker flags.
7555
7556 Thu Apr  6 20:39:26 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
7557
7558         * sh.h (STRUCT_VALUE, RETURN_IN_MEMORY): Define.
7559
7560 Thu Apr  6 19:34:08 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
7561
7562         * config/sh/lib1funcs.asm (___udivsi3_i4):
7563         ( __SH4_SINGLE__ / __SH4_SINGLE_ONLY__ variant): value for fpscr
7564         only depends on FMOVD_WORKS.
7565
7566 Thu Apr  6 19:11:47 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
7567
7568         * config/sh/lib1funcs.asm (___udivsi3_i4): When using fmovd,
7569         make double constant 8-byte aligned.
7570
7571 2000-04-06  Jakub Jelinek  <jakub@redhat.com>
7572
7573         * config/sparc/sparc.md (movtf_insn_sp32, movtf_insn_vis_sp32,
7574         movtf_no_e_insn_sp32, movtf_insn_hq_sp64, movtf_insn_hq_vis_sp64,
7575         movtf_no_e_insn_sp64): Accept loading 0.0 into GENERAL_REGS.
7576         (movtf_insn_sp64, movtf_insn_vis_sp64): Likewise.
7577         Accept storing GENERAL_REGS into offsetable memory.
7578         * config/sparc/sparc.h (PREFERRED_RELOAD_CLASS): Don't allow
7579         building a TFmode constant other than 0.0L into GENERAL_REGS.
7580
7581 2000-04-06  Clinton Popetz  <cpopetz@cygnus.com>
7582
7583         * regrename.c (regrename_optimize): Handle no REG_ALLOC_ORDER.
7584
7585 2000-04-06  Zack Weinberg  <zack@wolery.cumb.org>
7586
7587         * cpphash.c (CPP_IS_MACRO_BUFFER, FORWARD, PEEKC): Delete.
7588         (macro_cleanup): No need to cast pbuf->macro.
7589         (collect_expansion): Use _cpp_get_define_token.  Goto done if
7590         it returns VSPACE.  Remove check for trailing space after
7591         CPP_COMMENT.
7592         (_cpp_create_definition): Don't diddle flags here.  Return
7593         directly on error.
7594         (unsafe_chars): Handle c1 being EOF.
7595         (push_macro_expansion): Use unsafe_chars for both accidental-paste
7596         checks.  Don't push the buffer till after we're done with
7597         them.
7598         * cpplex.c (PEEKBUF, GETBUF, FORWARDBUF): New.
7599         (PEEKN, FORWARD, GETC, PEEKC): Use them.
7600         (cpp_push_buffer): Don't set new->alimit.  Set new->mark
7601         appropriately.
7602         (_cpp_parse_assertion): Don't NUL terminate.
7603         (_cpp_lex_token): Fix -traditional macro handling.  Don't skip
7604         hspace before calling _cpp_parse_assertion.  Remove all sets
7605         of only_seen_white. Treat '\f' as hspace.  Don't do anything
7606         special with '\n' here.
7607         (maybe_macroexpand): Handle T_EMPTY hash entries without
7608         pushing a buffer at all.
7609         (cpp_get_token): Handle clearing only_seen_white here.  Handle
7610         incrementing the line number here.  Clear
7611         potential_control_macro as well as only_seen_white, if
7612         appropriate.
7613         (cpp_get_non_space_token): Don't eat CPP_POP tokens.
7614         (_cpp_get_define_token): New function, basically like
7615         _cpp_get_directive_token was but doesn't eat horizontal space.
7616         Don't do anything with only_seen_white here.
7617         (_cpp_get_directive_token): Just call _cpp_get_define_token
7618         repeatedly till it returns non-hspace.
7619
7620         * cpplib.c (PEEKN, FORWARD, GETC, PEEKC): Delete.
7621         (conditional_skip, skip_if_group): Return int.
7622         (DIRECTIVE_TABLE): Change origin of all conditional directives
7623         to "COND".
7624         (TRAD_DIRECT_P): New macro.
7625         (_cpp_handle_directive): Use _cpp_get_directive_token.  Issue
7626         an error for a bogus directive, unless -lang-asm.  Use
7627         TRAD_DIRECT_P. Loop calling handler functions till one returns
7628         zero.
7629         (get_macro_name): Don't diddle flags here.
7630         (do_define): Diddle flags here.  Use _cpp_get_directive_token.
7631         Create T_EMPTY nodes for #define macro /* nothing */.
7632         (do_undef): Don't copy the name.  Use _cpp_get_directive_token.
7633         Use hp->name when calling pass_thru_directive.
7634         (do_if, do_else, do_elif, do_ifdef, do_ifndef, conditional_skip):
7635         Return the result of conditional_skip and/or skip_if_group.
7636         Don't call _cpp_output_line_command.
7637         (consider_directive_while_skipping): Use _cpp_get_directive_token.
7638         Issue -Wtraditional warnings as appropriate.  Don't complain
7639         about unrecognized directives.  If we are to stop skipping,
7640         return the number of the directive that ended the skip.
7641         (skip_if_group): Use _cpp_get_directive_token.  Turn off macro
7642         expansion and line commands while skipping.  Return the result
7643         of consider_directive_while_skipping, if nonzero.
7644         (do_endif): Just set potential_control_macro here.
7645         (validate_else): Use _cpp_get_directive_token.
7646         (do_assert, do_unassert): Don't save pointers into the
7647         token_buffer across calls to the lexer.  Use
7648         _cpp_get_directive_token.
7649
7650         * cpplib.h (cpp_buffer): Remove alimit and colno.  Make mark a
7651         pointer, not an offset.  Replace 'data', which was a generic
7652         pointer, with 'macro', which points to a struct hashnode.
7653         (cpp_reader): Add 'potential_control_macro' pointer.
7654         * cpphash.h (T_UNUSED): Replace with T_EMPTY.
7655         (CPP_BUF_GET, CPP_FORWARD): Delete.
7656         (CPP_IN_COLUMN_1, ADJACENT_TO_MARK): New macros.
7657         (CPP_IS_MACRO_BUFFER, CPP_SET_BUF_MARK, CPP_GOTO_BUF_MARK,
7658         ACTIVE_MARK_P): Update.
7659         (_cpp_get_define_token): New internal function.
7660         * cppfiles.c (read_include_file): Don't set fp->alimit or fp->colno.
7661
7662 2000-04-05   Benjamin Kosnik  <bkoz@cygnus.com>
7663
7664         * configure.in: And here.
7665         * configure: Regenerate.
7666         * acconfig.h: Add ENABLE_STD_NAMESPACE to set flag_honor_std if
7667         --enable-libstdcxx-v3 is passed at configure time.
7668         * config.h.in: Regenerate.
7669
7670 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
7671
7672         * final.c (final): Use xcalloc to allocate line_note_exists.
7673         * function.c (free_after_compilation): Free the temp_slots.
7674         (assign_stack_temp_for_type): Use xmalloc to allocate temp_slots.
7675         (combine_temp_slot): Free temp_slots when they get combined.
7676         (purge_addressof): Fix typo in comment.
7677         * stmt.c (mark_goto_fixup): Mark the fixup itself.
7678         (expand_fixup): Allocate the fixup with ggc_alloc_obj.
7679
7680         * ggc.h: Include varray.h.
7681         (ggc_pending_trees): Declare.
7682         (ggc_mark_tree_children): Remove declaration.
7683         (ggc_mark_tree): Just push unmarked trees on ggc_pending_trees.
7684         * ggc-common.c (ggc_pending_trees): New variable.
7685         (ggc_mark_roots): Call ggc_mark_trees.
7686         (ggc_mark_tree_children): Rename to ggc_mark_trees.  Process all
7687         the ggc_pending_trees.
7688         * Makefile.in (GGC_H): New variable.  Use it throughout in place
7689         of ggc.h.
7690
7691 Thu Apr  6 00:30:50 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
7692
7693         * sh.h (FUNCTION_ARG_PARTIAL_NREGS): Accomodate an unsigned
7694         GET_MODE_SIZE.
7695
7696 Wed Apr  5 23:17:10 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
7697
7698         * sh.c (sh_insn_length_adjustment): New function.
7699         * sh-protos.h (sh_insn_length_adjustment): Declare.
7700         * sh.h (ADJUST_INSN_LENGTH): Use it.
7701
7702 Wed Apr  5 12:35:18 2000  Hans-Peter Nilsson  <hp@axis.com>
7703
7704         * optabs.c (emit_libcall_block): Remove spurious REG_EQUAL notes
7705         from the insn where REG_RETVAL is added.
7706         (emit_no_conflict_block): Ditto.
7707
7708         * md.texi (Standard Names): Clarify when movX is needed.
7709
7710         * combine.c (simplify_comparison) [MINUS]: Do not replace
7711         all (op (minus A B) 0) with (op A B).
7712
7713 Wed Apr  5 18:03:31 2000  Toshiyasu Morita  (toshi.morita@sega.com)
7714                           J"orn Rennecke <amylaar@cygnus.co.uk>
7715
7716         * sh.md (block_lump_real_i4): Add missing clobber of T_REG
7717         (block_lump_real): Likewise.
7718
7719 2000-04-05  Chris Demetriou  <cgd@netbsd.org>
7720
7721         * mips.h (MASK_DEBUG_A, MASK_DEBUG_B, MASK_DEBUG_C): Zero the
7722         remaining non-zero debugging masks.
7723
7724 Wed Apr  5 09:44:07 2000  Jeffrey A Law  (law@cygnus.com)
7725
7726         * basic-block.h (verify_flow_info): Declare.
7727         (flow_loop_outside_edge_p): Declare.
7728         * flow.c (verify_flow_info): Remove declaration.
7729         (clear_log_links, flow_loop_outside_edge_p): Likewise.
7730
7731 Wed Apr  5 09:34:26 2000  Philippe De Muyter <phdm@macqel.be>
7732
7733         * m68k/m68k-protos.h (finalize_pic): Turn prototype off using `#if 0',
7734         not C++ comments.
7735
7736 2000-04-05  Jakub Jelinek  <jakub@redhat.com>
7737
7738         * config/sparc/sparc.md (snedi_zero+1, neg_snedi_zero+1,
7739         snedi_zero_trunc+1, seqdi_zero+1, neg_seqdi_zero+1,
7740         seqdi_zero_trunc+1): Allow splits only if registers are
7741         different.
7742
7743 2000-04-04  Ulrich Drepper  <drepper@cygnus.com>
7744
7745         * acconfig.h: Add HAVE_GAS_HIDDEN.
7746         * config.in: Regenerated.
7747         * configure.in: Add test for .hidden pseudo-op in gas.
7748         * configure: Regenerated.
7749         * crtstuff.c: Include auto-host.h.
7750         Emit additional .hidden pseudo-op for __dso_handle if the
7751         assembler knows about it.
7752
7753 2000-04-04  Philippe De Muyter  <phdm@macqel.be>
7754
7755         * cpphash.c (_cpp_free_definition): Test argnames, not nargs >= 0,
7756         before freeing argnames.
7757         * cpplib.c (do_ifndef): Cast return value of xstrdup.
7758
7759 2000-04-05  Michael Meissner  <meissner@redhat.com>
7760
7761         * config/rs6000/rs6000.c (print_operand): Patch from Jonathan
7762         Walton <jonboy@gordian.com> to make memory references with update
7763         work wtih -mregnames.
7764
7765 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7766
7767         * regrename.c (regno_first_use_in): Wrap prototype in PARAMS.
7768         (regrename_optimize): Rename variables `def_uses' and
7769         `ext_basic_blocks' to avoid conflicts with similarly named
7770         typedefs in traditional C.
7771
7772         * calls.c (initialize_argument_information): Fix typo in previous
7773         change.
7774
7775 2000-04-04  Richard Henderson  <rth@cygnus.com>
7776
7777         * regrename.c (consider_available): Test fixed_regs not
7778         PIC_OFFSET_TABLE_REGNUM.
7779
7780 2000-04-04  Geoff Keating  <geoffk@cygnus.com>
7781
7782         * config/rs6000/t-ppccomm (EXTRA_MULTILIB_PARTS): Add crtbegin,
7783         crtend.
7784         (CRTSTUFF_T_CFLAGS_S): Delete definition.
7785         * config/rs6000/sysv4.h (STARTFILE_LINUX_SPEC): Always use crtbegin.
7786         (ENDFILE_LINUX_SPEC): Always use crtend.
7787         * configure.in (powerpc-*-linux-gnulibc1): Don't define extra_parts.
7788         (powerpc-*-linux-gnu): Likewise.
7789         * configure: Regenerate.
7790
7791         * config/rs6000/eabi.h: Don't include sysv4.h.
7792         (MULTILIB_DEFAULTS): Don't define.
7793         * config/rs6000/eabiaix.h: Don't include eabi.h.
7794         * config/rs6000/eabile.h: Delete.
7795         * config/rs6000/eabilesim.h: Delete.
7796         * config/rs6000/eabisim.h: Don't include eabi.h.
7797         * config/rs6000/linux.h: Don't include sysv4.h.
7798         (JUMP_TABLES_IN_TEXT_SECTION): Don't redefine.
7799         (MULTILIB_DEFAULTS): Don't redefine.
7800         * config/rs6000/rtems.h: Don't include eabi.h.
7801         * config/rs6000/sol2.h: Don't include sysv4le.h.
7802         * config/rs6000/sysv4le.h: Don't include sysv4.h.
7803         * config/rs6000/t-ppc: Delete.
7804         * config/rs6000/t-ppcgas: Correct comment.
7805         * config/rs6000/t-ppcos: Correct comment.  Don't build
7806         multilibs for -fPIC, rather use -fPIC -mstrict-align
7807         as default.
7808         * config/rs6000/t-ppc: Delete.
7809         * config/rs6000/vxppc.h: Don't include sysv4.h.
7810         * config/rs6000/vxppcle.h: Delete.
7811         * configure.in: Use multiple header files for p2pc ELF targets
7812         powerpc-eabiaix, powerpc-eabisim, powerpc-rtems, powerpcle-eabi,
7813         powerpcle-eabisim, powerpc-elf, powerpcle-elf, powerpc-linux-gnu,
7814         powerpc-linux-gnulibc1, powerpc-sysv, powerpcle-sysv,
7815         powerpc-vxworks, powerpcle-vxworks.  Assume GAS functionality is
7816         always available for these platforms.
7817
7818 2000-04-04  Richard Henderson  <rth@cygnus.com>
7819
7820         * calls.c (try_to_integrate): Initialize reg_parm_stack_space.
7821
7822 2000-04-04  Stan Cox  <scox@cygnus.com>
7823
7824         * Makefile.in: Add rules for regrename.o
7825         * regrename.c: New file.
7826         * rtl.h (regrename_optimize): Add prototype.
7827         * toplev.c (rename_registers_dump, flag_rename_registers): New variables
7828         (compile_file, decode_d_option): Add support for -frename-registers.
7829         (rest_of_compilation): Call regrename_optimize.
7830         * config/ia64/ia64.h (HARD_REGNO_RENAME_OK, RENAME_EXTENDED_BLOCKS):
7831         New macros.
7832
7833 2000-04-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
7834
7835         * Makefile (gccbug): New target.
7836         (doc): Depend on it.
7837         * gcc.texi (Bugs): Link subnodes.
7838         (gccbug): New node.
7839         * gccbug.in (CATEGORIES): Remove gc, host, profiling, libgcc.
7840         Document severities, priorities, and classes in bug form.
7841
7842 2000-04-04  Zack Weinberg  <zack@wolery.cumb.org>
7843
7844         * cpplex.c (trigraph_map, speccase): Combine into single
7845         table, chartab.
7846         (NORMAL, NONTRI): New macros.
7847         (_cpp_read_and_prescan): Change to use unified table.  Use
7848         is_hspace to test for whitespace.
7849
7850         * dbxout.c (CONTIN): If it doesn't have to do anything, give it a
7851         definition that doesn't provoke the "empty body in an
7852         if-statement" warning.
7853
7854 2000-04-04  Clinton Popetz  <cpopetz@cygnus.com>
7855
7856         * builtins.c (expand_builtin_strlen): Force the source to
7857         be a memory address.
7858
7859 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7860
7861         * cpplib.c (D): Adjust to call CONCAT2 macro without whitespace.
7862
7863 Tue Apr  4 19:17:20 MET DST 2000  Jan Hubicka  <jh@suse.cz>
7864
7865         * calls.c (ECF_MALLOC, ECF_MAY_BE_ALLOCA, ECF_RETURNS_TWICE,
7866          ECF_LONGJMP, ECF_FORK_OR_EXEC):  New constants.
7867         (ECF_IS_CONST): Rename to ECF_CONST.
7868         (special_function_p): Make static, change interface.
7869         (flags_from_decl_or_type, try_to_integrate): Break out from ...
7870         (expand_call) ... here; convert number of variables to flags.
7871         (emit_library_call_vlue_1): Likewise.
7872         (setjmp_call_p): New function.
7873         (initialize_argument_information): Accepts flags as argument;
7874         return flags.
7875         (precompute_arguments): Likewise.
7876         * tree.h (special_function_p): Remove.
7877         (setjmp_call_p): Add prototype.
7878
7879 2000-04-04  Jakub Jelinek  <jakub@redhat.com>
7880
7881         * config/sparc/sparc.h (RTX_OK_FOR_OFFSET_P): Leave minor margin
7882         so that addresses are offsetable by up to 16 bytes.
7883         (GO_IF_LEGITIMATE_ADDRESS): Don't allow REG+REG addresses for
7884         non-optimizing TARGET_ARCH32 in DF or DI modes because it is not
7885         offsetable.
7886
7887         * config/sparc/sparc.md (movdi_insn_sp64_novis): New pattern.
7888         (movdi_insn_sp64_vis): Renamed from movdi_insn_sp64.
7889         (movsf): Don't force any constant to memory if target is integer
7890         hard register.
7891         Move fp_zero_operand check below the const0_rtx check.
7892         (movtf): Likewise. Also allow fp_zero_operand for stores into
7893         memory.
7894         (movdf): Likewise. Also allow fp_zero_operand for stores into
7895         memory and into integer hard registers.
7896         (clear_df, clear_dfp, movdf_const_intreg_sp32,
7897         movdf_const_intreg_sp64): Remove.
7898         (movdf_insn_sp32, movdf_no_e_insn_sp32): Redo constraints and
7899         conditions.
7900         (movdf_no_e_insn_v9_sp32): New pattern.
7901         (movdf_insn_v9only): Remove.
7902         (movdf_insn_v9only_novis, movdf_insn_v9only_vis): New patterns.
7903         (movdf_insn_sp64): Remove.
7904         (movdf_insn_sp64_novis, movdf_insn_sp64_vis): New patterns.
7905         (movdf_no_e_insn_sp64): Allow storing 0.0 into memory.
7906         (following splits): Rewrite conditions. Add two new splits
7907         for storing 0.0 into memory and registers.
7908         (clear_tf, clear_tf+1, clear_tfp, clear_tfp+1): Remove.
7909         (movtf_insn_sp32): Redo constraints and conditions.
7910         (movtf_insn_vis_sp32): New pattern.
7911         (movtf_no_e_insn_sp32): Redo constraints and conditions.
7912         (movtf_insn_hq_sp64): Likewise.
7913         (movtf_insn_hq_vis_sp64): New pattern.
7914         (movtf_insn_sp64): Redo constraints and conditions.
7915         (movtf_insn_vis_sp64): New pattern.
7916         (movtf_no_e_insn_sp64): Redo constraints and conditions.
7917         (movtf_no_e_insn_sp64+1): New split for storing 0.0L into registers
7918         or memory.
7919         * config/sparc/sparc.c (sparc_override_options): Assume v9 if either
7920         -mvis or -m64 to take down the number of various reload patterns.
7921
7922 Tue Apr  4 00:41:53 2000  Jeffrey A Law  (law@cygnus.com)
7923
7924         * pa/pa-64.h: New file.
7925         * pa/pa64-regs.h: New file.
7926         * pa/pa64-start.h: New file.
7927         * pa/t-pa64: New file.
7928         * pa/xm-pa64hpux.h: New file.
7929
7930 2000-04-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7931
7932         * sparc.c (output_restore_regs): Prototype.
7933         (sparc_emit_float_lib_cmp): Constification.
7934
7935         * emit-rtl.c (const_int_htab_hash, const_int_htab_eq): Likewise.
7936
7937         * reload1.c (reload_cse_delete_noop_set, reload_cse_simplify):
7938         Prototype.
7939
7940         * simplify-rtx.c (entry_and_rtx_equal_p): Constification.
7941         (get_value_hash, hash_rtx): Likewise.
7942
7943         * ssa.c (compute_conservative_reg_partition): Prototype.
7944
7945         * tree.c (mark_hash_entry): Prototype.
7946
7947 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
7948
7949         * bb-reorder.c (verify_insn_chain): #ifdef out unless ENABLE_CHECKING.
7950         * i386.h (FUNCTION_ARG_REGNO_P): Remove unnecessary test for N >= 0.
7951         * i386.md (call_value, call_value_pop): Remove unused variable 'addr'.
7952
7953         * gcc.c (C specs): Pass -fno-show-column to the preprocessor.
7954         * objc/lang-specs.h: Likewise.
7955
7956 2000-04-03  Neil Booth  <NeilB@earthling.net>
7957
7958         * cppexp.c: wrap long lines.  New macros CPP_ICE, SYNTAX_ERROR
7959         and SYNTAX_ERROR2. Replace `' in messages with ''.
7960         (op_to_str): Make re-entrant.
7961         (_cpp_parse_expr): Implement new error macros. Use | rather
7962         than || to logically or 2 boolean integers.  Simply expression
7963         checking we have a left operand iff needed.
7964
7965 2000-04-03  Nick Clifton  <nickc@cygnus.com>
7966
7967         * Makefile.in (diagnostic.o): Depend upon diagnostic.c
7968
7969 2000-04-03  Philip Blundell  <philb@gnu.org>
7970
7971         * config/arm/linux-elf.h (SUBTARGET_EXTRA_LINK_SPEC): Fix typos.
7972
7973 2000-04-03  Felix Lee  <flee@cygnus.com>
7974
7975         * fixinc/server.c (find_shell): New function.  Avoid $SHELL.
7976         (run_shell): Use it.
7977
7978 2000-04-03  Jonathan Larmour  <jlarmour@redhat.co.uk>
7979
7980         * Makefile.in (stmp-int-hdrs): Make include subdir here...
7981         (stmp-fixproto): ...rather than here.
7982
7983 Mon Apr  3 00:50:06 2000  Jason Eckhardt <jle@cygnus.com>
7984
7985         * pa.c (print_operand): Compute 'base' only inside the code paths
7986         that use it.
7987
7988 2000-04-03  Geoffrey Keating  <geoffk@cygnus.com>
7989
7990         * stor-layout.c (byte_from_pos): Use TRUNC_DIV_EXPR rather than
7991         CEIL_DIV_EXPR.
7992
7993 2000-04-03  Philipp Thomas  <pthomas@suse.de>
7994
7995         * i386.h (TARGET_SWITCHES): Remove bogus empty strings, fix typo.
7996
7997 Mon Apr  3 00:02:59 2000  Brad Lucier <lucier@math.purdue.edu>
7998
7999         * Makefile.in (alias.o): Depend on $(TREE_H).
8000
8001 2000-04-02  Zack Weinberg  <zack@wolery.cumb.org>
8002
8003         * cppinit.c (cpp_start_read): Turn off -Wtraditional if
8004         processing C++.
8005         * cpplib.c (_cpp_handle_directive): Improve warnings for
8006         traditional C and indented directives.
8007
8008         * enquire.c, gsyslimits.h, limity.h, config/convex/fixinc.convex,
8009         fixinc/fixinc.irix, fixinc/fixinc.sco, fixinc/fixinc.wrap,
8010         fixinc/inclhack.def: Indent the # of #include_next one space.
8011         * cp/rtti.c: Un-indent #if and #endif.
8012
8013         * cppexp.c (_cpp_parse_expr): If lex returns '#', it's a
8014         syntax error, but an error has already been printed.
8015         * cpplex.c (_cpp_parse_assertion): Give a more specific error
8016         message when called with nothing remaining on the line.
8017         (_cpp_lex_token): If _cpp_parse_assertion fails, return an
8018         OTHER token, not an ASSERTION.
8019         * cpplib.c (do_assert): When we create a 'base' node, clear
8020         its aschain pointer.
8021
8022 2000-04-02  Neil Booth <NeilB@earthling.net>
8023
8024         * cppexp.c:  New typedef op_t.  struct operation and struct
8025         token updated to use it.
8026         (op_to_str): New function.
8027         (_cpp_parse_expr): Error messages modified to use op_to_str.
8028
8029 2000-04-02  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
8030
8031         * config/c4x/c4x.c (c4x_function_arg): Check for void_type_node
8032         before checking MUST_PASS_IN_STACK.
8033
8034 2000-04-02  Neil Booth <NeilB@earthling.net>
8035
8036         * cppexp.c:  New FINISHED dummy token.  Combine operator initial
8037         flags and initial priority into a single constant.  New
8038         EQUALITY macro.  New operator flag SHORT_CIRCUIT.
8039         (_parse_cpp_expr): Implement new constants.  Take left operand
8040         checks out of reduction loop.  Handle SHORT_CIRCUIT.  End of
8041         parse indicated by reducing FINISHED token.  Remove new lines
8042         from cpp_error messages.
8043
8044 2000-04-01  Mark Mitchell  <mark@codesourcery.com>
8045
8046         * emit-rtl.c (gen_rtx_CONST_INT): Create cached CONST_INTs on the
8047         permanent obstack.
8048
8049 2000-04-01  Zack Weinberg  <zack@wolery.cumb.org>
8050
8051         * cpplib.c: Include symcat.h.  Add 'origin' field to struct
8052         directive.  Add origin values to DIRECTIVE_TABLE.  Generate
8053         the strings and function names on the fly.  Take the #sccs
8054         entry out of the table if SCCS_DIRECTIVE is not defined.
8055         (_cpp_handle_directive): Decide if the # was at the beginning
8056         of the line here.  Issue -pedantic warnings for extended
8057         directives here.  Warn about K+R directives with the #
8058         indented, and C89/extended directives with the # not indented,
8059         here.
8060         (do_import, do_include_next, do_warning, do_ident, do_sccs,
8061         do_assert, do_unassert): Don't issue pedantic warning here.
8062
8063         * cpphash.h: Add CPP_WTRADITIONAL macro.
8064         * cpplib.h (struct cpp_options): Rename warn_stringify to
8065         warn_traditional; update comments.
8066         * cppinit.c (handle_option): Set warn_traditional not
8067         warn_stringify.
8068         * cpphash.c: Replace CPP_OPTION (pfile, warn_stringify) with
8069         CPP_WTRADITIONAL (pfile).
8070         * cpplex.c (_cpp_lex_token): Don't decide if directives should
8071         be ignored in -traditional mode here.
8072
8073         * cpplex.c: Copy ISTABLE macros from cppinit.c, and adapt them
8074         to initialize speccase[] and trigraph_map[].  Delete all
8075         references to pfile->input_speccase.  Always treat '?' as a
8076         special character.  Remove table-initialization code from
8077         _cpp_init_input_buffer.
8078
8079         * cpplib.h (struct cpp_reader): Remove input_speccase field.
8080         * cppinit.c (cpp_cleanup): Don't free input_speccase.
8081
8082 2000-04-01  Richard Henderson  <rth@cygnus.com>
8083
8084         * Makefile.in (STAGESTUFF): Wildcard all debugging dumps at once.
8085         (mostlyclean): Likewise.
8086
8087         * toplev.c (rtl_dump, jump_opt_dump, etc): Remove.
8088         (struct dump_file_info, enum dump_file_index, dump_file): New.
8089         (open_dump_file): Take a dump_file_index not a suffix, and a decl
8090         not a string.  Clean out file if we havn't yet done so.  Do nothing
8091         if the dump isn't enabled.
8092         (close_dump_file): Do nothing if the dump isn't open.  Dump
8093         graph data if requested.
8094         (dump_rtl, clean_dump_file): Remove.
8095         (compile_file): Don't clean the dump files.  Only finalize .bp dump
8096         if flag_test_coverage or flag_branch_probabilities.  Only finalize
8097         .combine dump if optimizing.  Iterate over dump_file to finalize the
8098         graph dumps.
8099         (rest_of_compilation): Update for open_dump_file/close_dump_file.
8100         Convert all uses of dump_rtl.
8101         (decode_d_option): Iterate over dump_file to implement 'a' and to
8102         locate pass-specific dumps.
8103
8104 2000-04-01  Neil Booth <NeilB@earthling.net>
8105
8106         * cppexp.c: Redefine priority constants.
8107         (_cpp_parse_expr): Replace left and right priority scheme with
8108         single priority logic.  Move LOGICAL to same place as COMPARE.
8109         Remove bogus check for multiple unary +/- operators.
8110
8111 2000-04-01  Neil Booth <NeilB@earthling.net>
8112
8113         * cppexp.c: (_cpp_parse_expr): Numerical constants are pushed
8114         within the switch statement.  Binary operations break out of
8115         the switch naturally.  '(' tokens handled by forcing
8116         immediate shift.  ')' handled by forcing immediate reduce to
8117         the previous '('.  New error messages.
8118
8119 2000-03-31  Geoff Keating  <geoffk@cygnus.com>
8120
8121         * config/rs6000/rs6000.c (print_operand): Don't use %l for 'low
8122         part', it's already in use.  Use %K instead.  Add a return at the
8123         end of what is now %K.
8124         * config/rs6000/rs6000.md (elf_low): Use %K instead of %l.
8125
8126 Sat Apr  1 02:05:29 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8127
8128         * builtins.c  (expand_builtin_apply):  Pass proper parameters to
8129         allocate_dynamic_stack_space.
8130         * calls.c (emit_call_1):  Do not adjust stack pointer for SIB,
8131         update stack_pointer_delta; do not update arg_size_so_far.
8132         (compute_argument_block_size): Use stack_delta instead of
8133         stack_pointer_pending and arg_size_so_far.
8134         (expand_call): Add sanity checking for stack_pointer_delta;
8135         save and restore stack_pointer_delta for SIB, use
8136         stack_pointer_delta for alignment; do not update arg_space_so_far.
8137         (emit_library_call_value): Use stack_pointer_delta for alignment.
8138         (store_one_arg): Do not update arg_space_so_far.
8139         * explow.c (adjust_stack, anti_adjust_stack): Update
8140         stack_pointer_delta.
8141         (allocate_dynamic_stack_space): Add sanity checking for
8142         stack_pointer_delta.
8143         * expr.c (init_expr, clear_pending_stack_adjust): Clear
8144         stack_pointer_delta.
8145         (emit_push_insn): Update stack_pointer_delta.
8146         * function.h (struct expr_status): Add x_stack_pointer_delta;
8147         remove x_arg_space_so_far.
8148         (arg_space_so_far): Remove.
8149         (stack_pointer_delta): New macro.
8150
8151 2000-03-31  Zack Weinberg  <zack@wolery.cumb.org>
8152
8153         * cpplib.h: Merge struct cpp_options into struct cpp_reader.
8154         Reorder struct cpp_options and struct cpp_reader for better
8155         packing.  Replace CPP_OPTIONS macro with CPP_OPTION which
8156         takes two args.  Change all 'char' flags to 'unsigned char'.
8157         Move show_column flag into struct cpp_options.  Don't
8158         prototype cpp_options_init.
8159         * cpphash.h, cpperror.c, cppexp.c, cppfiles.c, cpphash.c,
8160         cppinit.c, cpplex.c, cpplib.c:
8161         Replace CPP_OPTIONS (pfile)->whatever with
8162         CPP_OPTION (pfile, whatever), and likewise for
8163         opts = CPP_OPTIONS (pfile); ... opts->whatever;
8164
8165         * cppinit.c (merge_include_chains): Take a cpp_reader *.
8166         Extract CPP_OPTION (pfile, pending) and work with that
8167         directly.
8168         (cpp_options_init): Delete.
8169         (cpp_reader_init): Turn on on-by-default options here.
8170         Allocate the pending structure here.
8171         (cl_options, enum opt_code): Define these from the same table,
8172         kept in a large macro.  Add -fshow-column and -fno-show-column
8173         options.
8174
8175         * cpperror.c (v_message): If show_column is off, don't print
8176         the column number.
8177
8178         * cppmain.c: Update for new interface.
8179         * fix-header.c: Likewise.
8180
8181 2000-03-30  Geoff Keating  <geoffk@cygnus.com>
8182
8183         * config/rs6000/t-aix43 (AR_FLAGS_FOR_TARGET): Adjust for new
8184         definition.
8185         * Makefile.in (AR_FLAGS_FOR_TARGET): Is now the flags that
8186         are passed to any invocation of AR_FOR_TARGET.
8187         (AR_CREATE_FOR_TARGET): New macro.
8188         (AR_EXTRACT_FOR_TARGET): New macro.
8189         (ORDINARY_FLAGS_TO_PASS): Add AR_CREATE_FOR_TARGET,
8190         AR_EXTRACT_FOR_TARGET.
8191         (many places): Use AR_CREATE_FOR_TARGET, AR_EXTRACT_FOR_TARGET
8192         in place of `$(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET)' and
8193         `$(AR_FOR_TARGET) x'.  Pass AR_CREATE_FOR_TARGET and
8194         AR_EXTRACT_FOR_TARGET to sub-makes.
8195
8196 2000-03-31  Neil Booth <NeilB@earthling.net>
8197
8198         * cppexp.c: Delete SKIP_OPERAND.  Correct priority
8199         PAREN_INNER_PRIO.
8200         (_cpp_parse_expr): Check for multiple unary +/- operators.
8201         Correct priorities of ':' and '?'.  Treat ')' as having a
8202         value.  Ensure conditional expression is not void.
8203
8204 2000-03-31  Mark Mitchell  <mark@codesourcery.com>
8205
8206         * alias.c (canon_rtx): Make it global.
8207         (rtx_equal_for_memref_p): CONST_INT equality is now pointer
8208         equality.
8209         * cse.c (struct table_elt): Add canon_exp.
8210         (insert): Clear it.
8211         (invalidate): Canonicalize expressions only once.
8212         * rtl.h (canon_rtx): Declare.
8213
8214 2000-03-30  Mark Mitchell  <mark@codesourcery.com>
8215
8216         * Makefile.in (emit-rtl.o): Depend on HASHTAB_H.
8217         * alias.c (reg_known_value): Add comments.
8218         (init_alias_analysis): Likewise.
8219         * cse.c (exp_equiv_p): CONST_INTs are equal iff they have the same
8220         address.
8221         (cse_basic_block): Fix typo in comment.
8222         * emit-rtl.c: Include hashtab.h.
8223         (const_int_htab): New variable.
8224         (const_int_htab_hash): New function.
8225         (const_int_htab_eq): Likewise.
8226         (rtx_htab_mark_1): Likewise.
8227         (rtx_htab_mark): Likewise.
8228         (gen_rtx_CONST_INT): Cache all CONST_INTs.
8229         (unshare_all_rtx): Fix formatting.
8230         (init_emit_once): Initialize const_int_htab.
8231         * rtl.c (rtx_equal_p): CONST_INTs are equal iff they have the same
8232         address.
8233         * rtl.texi: Document the fact that all CONST_INTs with the same
8234         value are shared.
8235
8236 2000-03-30  Richard Henderson  <rth@cygnus.com>
8237
8238         * alpha.h (FUNCTION_BOUNDARY): Reduce to 128 bits.
8239
8240 2000-03-30  Zack Weinberg  <zack@wolery.cumb.org>
8241
8242         * configure.in: Comment out --enable-c-cpplib stanza.
8243         * configure: Regenerate.
8244
8245 Thu Mar 30 06:32:51 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8246
8247         * expr.c (store_constructor): Properly compute displacement and
8248         alignment when offset is variable.
8249
8250         * expmed.c (store_bit_field, store_fixed_bit_field): Fix more
8251         cases of alignment in bytes.
8252
8253 Thu Mar 30 13:30:40 2000  Jeffrey A Law  (law@cygnus.com)
8254
8255         * c-parse.in (cast_expr): Move change from March 21 into c-parse.in
8256         since it is used to generate c-parse.y.
8257         * objc-parse.c, objc-parse.y: Regenerated.
8258
8259         * function.c (expand_function_end): Pass alignment argument to
8260         emit_block_move in bits, not bytes.
8261
8262 Thu Mar 30 06:32:51 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8263
8264         * expr.c (move_by_pieces_ninsns): Fix one more missing align
8265         correction.
8266
8267         * expmed.c (store_fixed_bit_field): STRUCT_ALIGN is in bits.
8268
8269         * calls.c (expand_call): Pass bit alignment to mark_reg_pointer.
8270         * explow.c (memory_address, allocate_dynamic_stack_space): Likewise.
8271         * function.c (assign_parms): Likewise.
8272         * integrate.c (expand_inline_function): Likewise.
8273         * stmt.c (expand_decl): Likewise.
8274         (copy_rtx_and_substitute): Likewise.
8275         * expr.c (expand_expr, expand_expr_unaligned): Likewise.
8276         (clear_by_pieces): Fix error in last change.
8277         * emit-rtl.c (init_emit): Set known registers alignment in bits.
8278         * function.h (regno_pointer_align): Now unsigned.
8279         * config/arm/arm.c (alignable_memory_operand): REGNO_POINTER_ALIGN
8280         is in bits.
8281         * config/i386/i386.c (aligned_operand): Likewise.
8282         * config/sparc/sparc.c (mem_min_alignment): Likewise.
8283         * config/alpha/alpha.c (aligned_memory_operand): Likewise.
8284         (unaligned_memory_operand): Likewise.
8285         (alpha_expand_block_move, alpha_expand_block_clear): Likewise.
8286         Also make alignments and sizes unsigned and some whitespace cleanup.
8287         (alpha_va_start): Do nothing if VALIST's type is error_mark_node.
8288
8289         * builtins.c (get_pointer_alignment): Use host_integerp & tree_low_cst.
8290         (expand_builtin_apply): Pass alignment to emit_block_move in bits.
8291         (expand_builtin_memcpy, expand_builtin_va_copy): Likewise.
8292         (expand_builtin_memset): Likewise, but to clear_storage.
8293         * calls.c (save_fixed_argument_area): Likewise, to move_by_pieces.
8294         (restore_fixed_argument_area): Likewise.
8295         (store_unaligned_arguments_into_pseudos): Likewise, to store_bit_field.
8296         (load_register_parameters): Likewise, to emit_group_load.
8297         (expand_call): Likewise, to emit_group_store and emit_block_move.
8298         (emit_library_call_value_1): Likewise, to emit_block_move.
8299         (store_one_arg): Likewise, and to emit_push_insn.
8300         * expmed.c (extract_bit_field): Alignment is in bits, not bytes.
8301         (extract_fixed_bit_field, extract_split_bit_field): Likewise.
8302         * expr.c (move_by_pieces, move_by_pieces_ninsns): Likewise.
8303         (emit_block_move, emit_group_load, emit_group_store): Likewise.
8304         (clear_by_pieces, clear_storage, emit_push_insn): Likewise.
8305         (expand_assigment, store_expr, store_constructor_field): Likewise.
8306         (expand_expr_unaligned, do_jump, do_compare_and_jump): Likewise.
8307         (store_constructor, store_field, get_inner_reference): Likewise.
8308         Use host_integerp and tree_low_cst; sizes and positions HOST_WIDE_INT.
8309         (expand_expr, case COMPONENT_REF): Likewise.
8310         (copy_blkmode_from_regs): Use UNSIGNED_HOST_WIDE_INT for sizes
8311         and positions; reindent code.
8312         * expr.h (emit_cmp_insn, emit_cmp_and_jump_insns): Alignment unsigned.
8313         * function.c (purge_addressof_1): Pass bit align to store_bit_field.
8314         (assign_parms): Likewise to emit_group_store.
8315         * optabs.c (prepare_cmp_insn): Alignment is in bits.
8316         (emit_cmp_and_jump_insns, emit_cmp_insn): Likewise, and also unsigned.
8317         * stmt.c (expand_value_return): Pass align in bits to emit_group_load.
8318         (expand_return): Likewise to {extract,store}_bit_field.
8319         * stor-layout.c (get_mode_alignment): Minor cleanup.
8320         * config/rs6000/rs6000.h (SLOW_UNALIGNED_ACCESS): Align is in bits.
8321         * config/sh/sh.h (MOVE_BY_PIECES_P): Likewise.
8322
8323 2000-03-29  Nick Clifton  <nickc@cygnus.com>
8324
8325         * config/arm/arm.h: Undo effects of previous delta:
8326         (ASM_SPEC): Do not define.
8327         (SUBTARGET_EXTRA_ASM_SPEC): Do not define.
8328
8329         * config/arm/linux-elf.h: (SUBTARGET_EXTRA_ASM_SPEC) Fix
8330         typo.
8331
8332 2000-03-29  Zack Weinberg  <zack@wolery.cumb.org>
8333
8334         * cppinit.c (cpp_start_read): Call initialize_dependency_output
8335         only after reading in the primary source file.
8336
8337 2000-03-29  Geoff Keating  <geoffk@cygnus.com>
8338
8339         * c-common.c (c_common_nodes_and_builtins): The first parameter to
8340         __builtin_va_start and __builtin_va_copy is now either a 'va_list'
8341         or a reference to a va_list.
8342         * builtins.c (stabilize_va_list): Simplify now we don't have to
8343         work around C array address decay.
8344         * c-typeck.c (convert_for_assignment): Handle assignment to
8345         a reference parameter by taking the address of the RHS.
8346         * ginclude/stdarg.h (va_start): Don't take address of first parameter.
8347         (va_copy): Likewise.
8348         (__va_copy): Likewise.
8349         * ginclude/varargs.h (va_start): Likewise.
8350         (__va_copy): Likewise.
8351
8352 Wed Mar 29 15:44:53 2000  Jeffrey A Law  (law@cygnus.com)
8353
8354         * i386/djgpp.h: Remove extraneous "+".
8355
8356         * stmt.c (stmt_loop_nest_empty): Fix thinko in last change.
8357
8358         * calls.c (expand_call): Fix typo in last change.
8359
8360 2000-03-29  Jason Merrill  <jason@casey.cygnus.com>
8361
8362         * tree.c (unsave_expr_1): Don't mess with a TARGET_EXPR that hasn't
8363         been expanded.
8364
8365 Wed Mar 29 15:39:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8366
8367         * stor-layout.c (bit_from_pos, byte_from_pos): New functions.
8368         (pos_from_byte, pos_from_bit, normalize_offset): Likewise.
8369         (normalize_rli, rli_size_so_far, rli_size_unit_so_far): Use them.
8370         * tree.c (bit_position, byte_position): Likewise.
8371         * tree.h: Declare new functions.
8372
8373 2000-03-29  Nick Clifton  <nickc@cygnus.com>
8374
8375         * config/arm/arm.c: Minor formatting changes/
8376         * config/arm/arm.h (SUBTARGET_EXTRA_ASM_SPEC): Define if not
8377         already defined.
8378         (ASM_SPEC): Define if not already defined.
8379
8380 2000-03-29  Zack Weinberg  <zack@wolery.cumb.org>
8381
8382         * cppfiles.c (cpp_read_file): Don't pass zero-length string to
8383         _cpp_calc_hash.
8384
8385 2000-03-29  Jakub Jelinek  <jakub@redhat.com>
8386
8387         * dwarf2out.c (gen_enumeration_type_die): If enum has a negative
8388         value, don't output it as unsigned.
8389
8390 Wed Mar 29 10:53:49 2000  Jeffrey A Law  (law@cygnus.com)
8391
8392         * stmt.c (stmt_loop_nest_empty): Allow cfun->stmt to be NULL.
8393
8394 2000-03-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8395
8396         * c-common.c (c_common_nodes_and_builtins): Don't special case
8397         cplus_mode when declaring builtin bzero/bcmp, always avoid
8398         prototype arguments.
8399
8400 2000-03-29  Bruce Korb  <bkorb@gnu.org>
8401
8402         * fixinc/mkfixinc.sh: Initially set the variable "fixincludes"
8403         to a non-file
8404
8405 Wed Mar 29 15:08:01 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8406
8407         Convert ACCUMULATE_OUTGOING_ARGS to an expression.
8408         * calls.c (PUSH_ARGS_REVERSED) Change to expression.
8409         (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): Provide default value.
8410         (struct arg_data): Remove #ifdef ACCUMULATE_OUTGOING_ARGS.
8411         (save_fixed_argument_area, restore_fixed_argument_area):
8412         conditionize by #ifdef REG_PARM_STACK_SPACE only.
8413         (emit_call): Change #ifdefs on ACCUMULATE_OUTGOING_ARGS
8414         to conditions, handle RETURN_POPS_ARGS on ACCUMULATE_OUTGOING_ARGS.
8415         (precompute_register_parameters): Avoid #ifdefs on
8416         ACCUMULATE_OUTGOING_ARGS and PUSH_ARGS_REVERSED.
8417         (stire_one_args): Likewise.
8418         (expand_call): Likewise; conditionize PUSH_ROUNDING code by PUSH_ARGS.
8419         (emit_library_call_value_1): Likewise.
8420         (compute_argument_block_size): Align to STACK_BOUNDARY only for
8421         ACCUMULATE_OUTGOING_ARGS.
8422         * combine.c (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): Provide default
8423         value.
8424         (nonzero_bits): Conditionize PUSH_ROUNDING code by USE_PUSH.
8425         (use_crosses_set_p): Likewise.
8426         * all targets (ACCUMULATE_OUTGOING_ARGS define): Change to
8427         #define ACCUMULATE_OUTGOING_ARGS 1.
8428         * i386.c (ix86_compute_frame_size): Handle ACCUMULATE_OUTGOING_ARGS
8429         frames.
8430         * i386.h (MASK_NO_PUSH_ARGS, MASK_ACCUMULATE_OUTGOING_ARGS): New
8431         constants.
8432         (TARGET_PUSH_ARGS, TARGET_ACCUMULATE_OUTGOING_ARGS): New macros.
8433         (TARGET_SWITCHES): Add push-args, no-push-args,
8434         accumulate-outgoing-args and no-accumulate-outgoing-args.
8435         (ACCUMULATE_OUTGOING_ARGS, PUSH_ARGS): New macro.
8436         * expr.c (ACCUMULATE_OUTGONG_ARGS, PUSH_ARGS): Provide default.
8437         (push_block): Avoid ifdefs on ACCUMULATE_OUTGONG_ARGS
8438         and PUSH_ROUNDING.
8439         (emit_push_insn): Likewise.
8440         * final.c (ACCUMULATE_OUTGOING_ARGS): Provide default.
8441         (final_scan_insn): Avoid ifdefs on ACCUMULATE_OUTGOING_ARGS.
8442         * function.c (ACCUMULATE_OUTGOING_ARGS): Provide default.
8443         (STACK_DYNAMIC_OFFSET): Define correctly for both
8444         ACCUMULATE_OUTGOING_ARGS and normal mode.
8445         * invoke.texi (-mpush_args, -maccumulate-outgoing-args): Document.
8446         * tm.texi (PUSH_ARGS): Document.
8447         (ACCUMULATE_OUTGOING_ARGS, PUSH_ROUNDING): Update documentation.
8448
8449 Wed Mar 29 11:51:13 MET DST 2000  Jan Hubicka  <jh@suse.cz>
8450
8451         * flags.h (flag_optimize_sibling_calls): Declare.
8452         * calls.c (expand_call): Fail sibcall when
8453         !flag_optimize_sibling_calls
8454         * invoke.texi (flag_optimize_sibling_calls): Document.
8455         * toplev.c (flag_optimize_sibling_calls): New global variable.
8456         (f_options): Add flag_optimize_sibling_calls.
8457         (rest_of_compilation): Conditionize
8458         optimize_sibling_and_tail_recursive_calls by
8459         flag_optimize_sibling_calls.
8460         (main): Set flag_optimize_sibling_calls for -O2.
8461         * stmt.c (expand_return): Conditionize tail recursion by
8462         flag_optimize_sibling_calls.
8463
8464 2000-03-29  Richard Henderson  <rth@cygnus.com>
8465
8466         * config/i386/att.h (LOCAL_LABEL_PREFIX): Define.
8467         (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL): Use it.
8468
8469 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
8470
8471         * except.c (add_eh_table_entry): Mark type_info's as referenced.
8472
8473 2000-03-29  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
8474
8475         * config/rs6000/aix41.h (CPP_SPEC): Define _ANSI_C_SOURCE if -ansi
8476         is given.
8477         * config/rs6000/aix43.h (CPP_SPEC): Likewise.
8478         * config/rs6000/rs6000.h (CPP_SPEC): Moved to...
8479         * config/rs6000/aix.h: then modified likewise.
8480
8481 2000-03-28  Richard Henderson  <rth@cygnus.com>
8482
8483         * rtl.h: Redistribute enum reg_note documentation.
8484         Kill trailing whitespace.
8485         * rtl.c (reg_note_name): Adjust to match enum reg_note tweeks.
8486         Kill trailing whitespace.
8487
8488 2000-03-28  Zack Weinberg  <zack@wolery.cumb.org>
8489
8490         * cppfiles.c (hash_IHASH): Just return i->hash.
8491         (cpp_included): Set dummy.hash using _cpp_calc_hash.  Use
8492         htab_find_with_hash.
8493         (cpp_read_file): Likewise.
8494         (find_include_file): Likewise.  Properly initialize
8495         ih->nshort.  Share ih->name and ih->nshort if possible.
8496         * cpphash.c (_cpp_calc_hash): New function.
8497         (hash_HASHNODE): Just return h->hash.
8498         (_cpp_lookup): Set dummy.hash using _cpp_calc_hash.  Use
8499         htab_find_with_hash.
8500         * cpphash.h: Prototype _cpp_calc_hash.
8501         * cppinit.c (initialize_builtins): Provide a valid hash
8502         to _cpp_make_hashnode, using _cpp_calc_hash.
8503
8504         * cpphash.c (collect_expansion): # is not a special character
8505         in object-like macros.  In -traditional mode, /**/ is not
8506         token paste at the beginning or end of the line.
8507         * cpplib.c (do_include, do_import, do_include_next): If
8508         parse_include fails, return immediately.
8509
8510 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
8511
8512         * config/arm/arm.md (return peepholes): Update to reflect the new
8513         call insn patterns.
8514         * config/arm/arm.c (arm_volatile_func): Also check
8515         current_function_nothrow.
8516         (output_return_instruction, output_func_prologue): Use it.
8517         (arm_output_epilogue, arm_expand_prologue): Likewise.
8518
8519 2000-03-27  Tom Tromey  <tromey@cygnus.com>
8520
8521         * gcc.c (handle_braces): In {x*...} case, break out of loop if
8522         switch is found.
8523
8524 Tue Mar 28 11:55:48 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8525
8526         * expr.c (store_constructor): SIZE now signed.
8527         For EXPR_SIZE, don't evaluate size; just needed if constant.
8528         * fold-const.c (fold): Fix a number of cases when folded tree is
8529         wrong type.
8530         * function.c (flush_addressof): Reenable.
8531         * tree.h (flush_addressof): Likewise.
8532         * toplev.c (independent_decode_option): Look at strings_processed.
8533         * config/alpha/alpha.h (MINIMUM_ATOMIC_ALIGNMENT): Cast to unsigned.
8534
8535 Tue Mar 28 08:29:46 2000  Jan Hubicka  <jh@suse.cz>
8536
8537         * sibcall.c (indentify_call_return_value): Find last call in the chain;
8538         Allow stack adjustment after function call.
8539
8540         * regmove.c (struct csa_memlist): Make mem field rtx *.
8541         (record_one_stack_ref): Accept rtx * instead of rtx as parameter.
8542         (try_apply_stack_adjustment): Replace whole MEM rtx.
8543         (combine_stack_adjustments_for_block): Update calls
8544         to record_one_stack_ref.
8545
8546 2000-03-28  Neil Booth  <NeilB@earthling.net>
8547
8548         * cpplex.c (_cpp_read_and_prescan): Mark end of input buffer with
8549         '\\' rather than a null character, so nulls are not special.  Fix
8550         "\\\n" handling in end-of-buffer conditions.  Use trigraph map to
8551         speed trigraph conversion.
8552         (_cpp_init_input_buffer): Initialize trigraph map.
8553
8554 2000-03-27  Alan Modra  <alan@linuxcare.com.au>
8555
8556         * config/i386/i386.c (output_387_binary_op): Correct intel
8557         mode assembly output, and add spaces after commas in AT&T
8558         output.  Correct Unixware assembler comment.  Document input
8559         constraints.  Comment fp operations.  Reduce profligate buffer
8560         size.  Remove extraneous abort.  Localize temp var.
8561         (SYSV386_COMPAT): Define.  Add !SYSV386_COMPAT code.
8562         (output_fix_trunc): Add spaces after commas in assembly output.
8563
8564 2000-03-27  Richard Henderson  <rth@cygnus.com>
8565
8566         * i386-protos.h (ix86_match_ccmode): Declare.
8567         * i386.c (ix86_match_ccmode): New.
8568         (ix86_expand_fp_compare): Update for pattern renames.
8569         (ix86_expand_strlensi_unroll_1): Likewise.
8570         * i386.h (EXTRA_CC_MODES): Add CCZ.
8571         (SELECT_CC_MODE): Use it for EQ/NE zero.
8572         * i386.md (cmpsi_ccz_1): New.
8573         (cmpqi_ccz_1): New.
8574         (*testsi_ccz_1): New.
8575         (testqi_ccz_1): New.
8576         (cmpsi_ccno_1): Rename from cmpsi_0.
8577         (testsi_ccno_1): Rename from testsi_1.
8578         (testqi_ccno_1): Rename from testqi_1.
8579         (*testqi_ext_ccz_0): Rename from testqi_ext_0.
8580         (testqi_ext_ccno_0): Rename from *testqi_ext_1.
8581         (*cmphi_0): Use ix86_match_ccmode.
8582         (*cmpqi_ext_2, *addsi_2, *addhi_2, *addqi_2): Likewise.
8583         (*subsi_2, *subhi_2, *subqi_2, *testhi_1): Likewise.
8584         (*testqi_ext_1, *testqi_ext_2, *testqi_ext_3): Likewise.
8585         (*andsi_2, *andhi_2, *andqi_2, *andqi_ext_0_cc): Likewise.
8586         (*iorsi_2, *iorhi_2, *iorqi_2): Likewise.
8587         (*xorsi_2, *xorhi_2, *xorqi_cc_1): Likewise.
8588         (*one_cmplsi2_2, *one_cmplhi2_2, *one_cmplqi2_2): Likewise.
8589         (*ashlsi3_cmpno, *ashlhi3_cmpno, *ashlqi3_cmpno): Likewise.
8590         (*ashrsi3_cmpno, *ashrhi3_cmpno, *ashrqi3_cmpno): Likewise.
8591         (*lshrsi3_cmpno, *lshrhi3_cmpno, *lshrqi3_cmpno): Likewise.
8592         (appropriate peepholes): Likewise.
8593         (*cmphi_1, *cmpqi_ccno_1, *cmpqi_1): Star out name.
8594         (*subsi_3, *subhi_3, *subqi_3): Remove.
8595         (*negdi2_1+1 splitter): Use CCZ for neg patterns.
8596         (*negsi2_cmp, *neghi2_cmp, *negqi2_cmp): Remove.
8597         (*negsi2_cmpz): Rename from *negsi2_cmpno, use CCZ.
8598         (*neghi2_cmpz, *negqi2_cmpz): Similarly.
8599         (x86_shift_adj_1): Use CCZ.
8600         (*dbra_ge+1, *dbra_ge+2, ffssi2, ffssi_1): Likewise.
8601
8602 2000-03-27  Stan Cox  <scox@cygnus.com>
8603
8604         * resource.h (mark_resource_type): New.
8605         * resource.c (find_dead_or_set_registers, mark_target_live_regs,
8606         find_free_register): Use mark_resource_type.
8607         (mark_set_resources): Change include_delayed_effects
8608         to mark_resource_type.
8609         * reorg.c (steal_delay_list_from_target, try_merge_delay_insns,
8610         redundant_insn, fill_simple_delay_slots, fill_slots_from_thread):
8611         Use mark_resource_type.
8612
8613 2000-03-27  Richard Henderson  <rth@cygnus.com>
8614
8615         * i386.md (call_pop_0, call_value_pop_0): New.
8616         (call_pop_1): Remove constraint from unused arg.  Support sibcalls.
8617         (call_value_pop_1): Likewise.
8618         (call_0, call_value_0): New.
8619         (call_1, call_value_1): Remove constraint from unused arg.
8620
8621 2000-03-27  Nick Clifton  <nickc@cygnus.com>
8622
8623         * invoke.texi (Spec Files): Document new spec % command created by
8624         Tom Tromey's recent patch.
8625
8626 2000-03-27  Jakub Jelinek  <jakub@redhat.com>
8627
8628         * libgcc2.h (MIN_UNITS_PER_WORD): Define to UNITS_PER_WORD
8629         if not defined.
8630
8631 Mon Mar 27 06:04:22 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8632
8633         * expr.c (expand_assignment): Fix typo in last change.
8634
8635         * libgcc2.h: Use MIN_UNITS_PER_WORD, not UNITS_PER_WORD.
8636
8637 Sun Mar 26 20:15:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8638
8639         * c-convert.c (convert): Return if output or input type is ERROR_MARK.
8640         * c-decl.c (duplicate_decls): Only look at DECL_BUILT_IN_NONANSI
8641         and DECL_INLINE if FUNCTION_DECL.
8642         (pushdecl, redeclaration_error_message): Likewise, for DECL_INLINE.
8643         (store_parm_decls): Check for type of PARM_DECL being ERROR_MARK.
8644         Use DECL_WEAK, not DECL_RESULT, to flag for already seen.
8645         (combine_parm_decls): Likewise.
8646         * ggc-common.c (gcc_mark_tree_children, case 'd'): Use DECL_RESULT_FLD.
8647         * print-tree.c (print_node): Likewise.
8648         Only test DECL_PACKED, DECL_INLINE, DECL_BIT_FIELD, and
8649         DECL_TRANSPARENT_UNION on proper decl types.
8650         Properly handly DECL_INCOMING_RTL and DECL_SAVED_INSNS.
8651         * stor-layout.c (layout_decl): Only check DECL_PACKED and
8652         DECL_BIT_FIELD of FIELD_DECL.
8653         * tree.h (DECL_RESULT_FLD): New macro.
8654
8655         * expr.c (expand_assignment): Add code to handle variable-sized
8656         BLKmode case.
8657
8658 2000-03-26  Richard Henderson  <rth@cygnus.com>
8659
8660         * calls.c (expand_call): Pass parms not original exp to
8661         optimize_tail_recursion.  Mind return value instead of looking
8662         for a barrier.
8663         * stmt.c (optimize_tail_recursion): Take parameter list, not entire
8664         call_expr.  Move checks for call_expr and current_function_decl ...
8665         (expand_return): ... here.
8666
8667 2000-03-26  Tom Tromey  <tromey@cygnus.com>
8668
8669         * gcc.c (handle_braces): Recognize `%{<S}' construct.
8670         (SWITCH_OK, SWITCH_FALSE, SWITCH_IGNORE, SWITCH_LIVE): New
8671         defines.
8672         (process_command): Use them.
8673         (check_live_switch): Likewise.
8674         (give_switch): Skip ignored switches.
8675
8676 2000-03-26  Jan Hubicka  <jh@suse.cz>
8677
8678         * jump.c (jump_optimize_1): Fix typo in elide optimizations
8679         for minimal jump pass test.
8680
8681 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
8682
8683         * integrate.c (function_cannot_inline_p): Do inline functions that
8684         return `void'.
8685
8686 Sun Mar 26 11:37:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8687
8688         * stor-layout.c (layout_type, set_sizetype): early_type_list is
8689         now a list of TREE_LIST entries, not types.
8690         * tree.c (build_common_tree_nodes_2): Eliminate dupliate type sets.
8691
8692         * expmed.c (extract_bit_field): Ensure BITS_PER_WORD is signed in MAX.
8693         * config/arm/pe.c (arm_pe_return_in_memory): Use host_integerp and
8694         int_bit_position.
8695         * config/mips/mips.c (function_arg): Likewise; also remove cast
8696         and make variables unsigned or HOST_WIDE_INT and use tree_low_cst.
8697         (mips_function_value): Use int_byte_position and make HOST_WIDE_INT.
8698         * config/mips/abi64.h (SETUP_INCOMING_VARARGS): Offsets are unsigned.
8699         * config/mips/mips.h (BITS_PER_WORD, UNITS_PER_WORD): Cast to unsigned.
8700         (UNITS_PER_FPREG, INT_TYPE_SIZE, LONG_TYPE_SIZE): Likewise.
8701         (POINTER_SIZE, POINTER_BOUNDARY,PARM_BOUNDARY): Likewise.
8702         (GP_REG_P, FP_REG_P, MD_REG_P, ST_REG_P): Ensure subtraction signed.
8703         (struct mips_arg): arg_number, arg_words, fp_arg_words, and
8704         num_adjusts now unsigned.
8705         (FUNCTION_ARG_BOUNDARY): Remove unneeded cast.
8706         * config/sparc/sparc.c (struct function_arg_record_value_parms):
8707         NREGS now unsigned.
8708         (function_arg_record_value_1): STARTBITPOS arg now HOST_WIDE_INT
8709         as is BITPOS variable; use host_integerp and int_bit_position.
8710         (function_arg_record_value_2): Likewise.
8711         (function_arg_record_value_3): Arg BITPOS now HOST_WIDE_INT.
8712         Variable REGNO now unsigned.
8713         (function_arg_record_value): NREGS now unsigned.
8714
8715 2000-03-26  Bernd Schmidt  <bernds@cygnus.co.uk>
8716
8717         * jump.c (mark_all_labels): Handle CALL_PLACEHOLDERs.
8718
8719 Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8720
8721         * Rework fields used to describe positions of bitfields and
8722         modify sizes to be unsigned and use HOST_WIDE_INT.
8723         * alias.c (reg_known_value_size): Now unsigned.
8724         * c-typeck.c (build_unary_op, case ADDR_EXPR): Use byte_position.
8725         (really_start_incremental_init): Use bitsize_zero_node.
8726         (push_init_level, pop_init_level, output_init_element): Likewise.
8727         Use bitsize_unit_node and bitsize_one_node.
8728         (output_pending_init_elements, process_init_element): Likewise.
8729         * combine.c (combine_max_regno, reg_sign_bit_copies): Now unsigned.
8730         (make_extraction): Position and length HOST_WIDE_INT and unsigned
8731         HOST_WIDE_INT, respectively.
8732         (get_pos_from_mask): Passed in value is unsigned HOST_WIDE_INT.
8733         (num_sign_bit_copies): Returns unsigned.
8734         BITWIDTH now unsigned; rework arithmetic.
8735         Remove recursive call from arg to MAX.
8736         (combine_instructions, init_reg_last_arrays): NREGS now unsigned.
8737         (setup_incoming_promotions, can_combine_p, try_combine, simplify_set):
8738         REGNO now unsigned.
8739         (set_nonzero_bit_and_sign_copies): NUM now unsigned.
8740         (find_split_point, expand_compound_operation, make_extraction): LEN
8741         now unsigned HOST_WIDE_INT, POS now HOST_WIDE_INT.
8742         (make_field_assignment): Likewise.
8743         (combine_simplify_rtx): Add cast.
8744         (expand_compound_operation): MODEWIDTH now unsigned; rework arithmetic.
8745         (force_to_mode): WIDTH now unsigned; add cast.
8746         (if_then_else_cond): SIZE now unsigned.
8747         (nonzero_bits): MODE_WIDTH, RESULT_WIDTH, and WIDTH now unsigned.
8748         (extended_count): Now returns unsigned.
8749         (simplify_shift_const): COUNT unsigned; arg is now INPUT_COUNT.
8750         Add SIGNED_COUNT variable; MODE_WORDS and FIRST_COUNT now unsigned.
8751         (simplify_comparison): MODE_WIDTH now unsigned.
8752         (update_table_tick): REGNO and ENDREGNO now unsigned; new var R.
8753         (mark_used_regs_combine): Likewise; rework arithmetic.
8754         (record_value_for_reg): REGNO, ENDREGNO, and I now unsigned.
8755         (record_dead_and_set_regs, reg_dead_at_p, distribute_notes): Likewise.
8756         (record_promoted_value): REGNO now unsigned.
8757         (get_last_value_validate): REGNO, ENDREGNO, and J now unsigned.
8758         (get_last_value): REGNO now unsigned.
8759         (use_crosses_set_p): REGNO and ENDREGNO now unsigned.
8760         (reg_dead_regno, reg_dead_endregno): Now unsigned.
8761         (remove_death): Arg REGNO now unsigned.
8762         (move_deaths):  REGNO, DEADREGNO, DEADEND, OUREND, and I now unsigned.
8763         (reg_bitfield_target_p): REGNO, REGNO, ENDREGNO, and ENDTREGNO
8764         now unsigned.
8765         * convert.c (convert_to_integer): INPREC and OUTPREC now unsigned.
8766         * cse.c (struct qty_table_elem): FIRST_REG and LAST_REG now unsigned.
8767         (struct cse_reg_info): REGNO now unsigned.
8768         (cached_regno): Now unsigned.
8769         (REGNO_QTY_VALID_P): Add cast.
8770         (make_new_qty, make_regs_eqv, delete_reg_eqiv): Regno args unsigned.
8771         (remove_invalid_regs): Likewise.
8772         (remove_invalid_subreg_refs): Likewise; arg WORD also unsigned
8773         as are variables END and I.
8774         (get_cse_reg_info, insert): Likewise.
8775         (mention_regs, invalidate_for_call): REGNO, ENDREGNO, and I unsigned.
8776         (canon_hash): Likewise.
8777         (insert_regs, lookup_for_remove): REGNO now unsigned.
8778         (invalidate): REGNO, ENDREGNO, TREGNO, and TENDREGNO now unsigned.
8779         New variable RN.
8780         * dbxout.c (dbxout_parms, dbxout_reg_parms): Don't check for REGNO < 0.
8781         * dwarf2out.c (dwarf2ou_frame_debug_expr): Remove cast.
8782         * emit-rtl.c (subreg_realpart_p): Add cast.
8783         (operand_subword): Arg I is now unsigned as is var PARTWORDS.
8784         (operand_subword_force): Arg I is now unsigned.
8785         * except.c (eh_regs): Variable I is now unsigned.
8786         * explow.c (hard_function_value): BYTES is unsigned HOST_WIDE_INT.
8787         * expmed.c (store_fixed_bit_field): Position is HOST_WIDE_INT;
8788         length is unsigned HOST_WIDE_INT; likewise for internal variables.
8789         (store_split_bit_field, extract_fixed_bit_field): Likewise.
8790         (extract_split_bit_field, store_bit_field, extract_bit_field):
8791         Likewise.
8792         * expr.c (store_constructor_fields, store_constructor, store_field):
8793         Positions are HOST_WIDE_INT and lengths are unsigned HOST_WIDE_INT.
8794         (expand_assignment, expand_expr, expand_expr_unaligned): Likewise.
8795         (do_jump): Likewise.
8796         (move_by_pieces, move_by_pieces_ninsns, clear_by_pieces):
8797         MAX_SIZE is now unsigned.
8798         (emit_group_load): BYTEPOS is HOST_WIDE_INT; BYTELEN is unsigned.
8799         (emit_group_store): Likewise.
8800         (emit_move_insn): I now unsigned.
8801         (store_constructor): Use host_integerp, tree_low_cst, and
8802         bitsize_unit_node.
8803         (get_inner_reference): Return bitpos and bitsize as HOST_WIDE_INT.
8804         Rework all calculations to use trees and new fields.
8805         * expr.h (promoted_input_arg): Regno now unsigned.
8806         (store_bit_field, extract_bit_field): Adjust types of pos and size.
8807         (mark_seen_cases): Arg is HOST_WIDE_INT.
8808         * flow.c (verify_wide_reg_1): REGNO now unsigned.
8809         * fold-const.c (decode_field_reference): Size and pos HOST_WIDE_INT;
8810         precisions and alignments are unsigned.
8811         (optimize_bit_field_compare, fold_truthop): Likewise.
8812         (int_const_binop): Adjust threshold for size_int_type_wide call.
8813         (fold_convert): Likewise.
8814         (size_int_type_wide): Make table larger and fix thinko that only
8815         had half of table used.
8816         (all_ones_mask_p, fold): Precisions are unsigned.
8817         * function.c (put_reg_info_stack): REGNO is unsigned.
8818         (instantiate_decl): Size is HOST_WIDE_INT.
8819         (instantiate_virtual_regs): I is unsigned.
8820         (assign_parms): REGNO, REGNOI, and REGNOR are unsigned.
8821         (promoted_input_arg): REGNO is unsigned.
8822         * function.h (struct function): x_max_parm_reg is now unsigned.
8823         * gcse.c (max_gcse_regno): Now unsigned.
8824         (struct null_pointer_info): min_reg and max_reg now unsigned.
8825         (lookup_set, next_set): REGNO arg now unsigned.
8826         (compute_hash_table): REGNO and I now unsigned.
8827         (handle_avail_expr): regnum_for_replacing now unsigned.
8828         (cprop_insn): REGNO now unsigned.
8829         (delete_null_pointer_checks_1): BLOCK_REG now pointer to unsigned.
8830         * ggc-common.c (ggc_mark_tree_children, case FIELD_DECL): New case.
8831         * global.c (set_preference): SRC_REGNO, DEST_REGNO, and I now unsigned.
8832         * hard-reg-set.h (reg_class_size): Now unsigned.
8833         * integrate.c (mark_stores): LAST_REG and I now unsigned; new UREGNO.
8834         * jump.c (mark_modified_reg): I now unsigned; add cast.
8835         (rtx_equal_for_thread_p): Add cast.
8836         * loop.c (max_reg_before_loop): Now unsigned.
8837         (struct_movable): REGNO now unsigned.
8838         (try_copy_prop): REGNO arg unsigned.
8839         (regs_match_p): XN and YN now unsigned.
8840         (consec_sets_invariant_p, maybe_eliminate_biv): REGNO now unsigned.
8841         (strength_reduce): Likewise; NREGS also unsigned.
8842         (first_increment_giv, last_increment_giv unsigned): Now unsigned.
8843         * loop.h (struct iv_class): REGNO now unsigned.
8844         (max_reg_before_loop, first_increment_giv, last_increment_giv):
8845         Now unsigned.
8846         * machmode.h (mode_size, mode_unit_size): Now unsigned.
8847         (mode_for_size, smallest_mode_for_size): Pass size as unsigned.
8848         * optabs.c (expand_binop): I and NWORDS now unsigned.
8849         (expand_unop): I now unsigned.
8850         * print-tree.c (print_node): Don't print DECL_FIELD_BITPOS, but do
8851         print DECL_FIELD_OFFSET and DECL_FIELD_BIT_OFFSET.
8852         * real.c (significand_size): Now returns unsigned.
8853         * real.h (significand_size): Likewise.
8854         * regclass.c (reg_class_size): Now unsigned.
8855         (choose_hard_reg_mode): Both operands now unsigned.
8856         (record_reg_classes): REGNO and NR now unsigned.
8857         (reg_scan): NREGS now unsigned.
8858         (reg_scan_update): old_max_regno now unsigned.
8859         (reg_scan_mark_refs): Arg MIN_REGNO and var REGNO now unsigned.
8860         * reload.c (find_valid_class): BEST_SIZE now unsigned.
8861         (find_dummy_reload): REGNO, NWORDS, and I now unsigned.
8862         (hard_reg_set_here_p): Args BEG_REGNO and END_REGNO now unsigned.
8863         Likewise for variable R.
8864         (refers_to_regno_for_reload_p): Args REGNO and END_REGNO now unsigned,
8865         as are variables INNER_REGNO and INNER_ENDREGNO; add new variable R.
8866         (find_equiv_reg): Add casts.
8867         (regno_clobbered_p): Arg REGNO now unsigned.
8868         * reload.h (struct reload): NREGS now unsigned.
8869         (refers_to_regno_for_reload_p): Regno args are unsigned.
8870         (regno_clobbered_p): Likewise.
8871         * reload1.c (reg_max_ref_width, spill_stack_slot_width): Now unsigned.
8872         (compute_use_by_pseudos): REGNO now unsigned.
8873         (find_reg): I and J now unsigned, new variable K, and change loop
8874         variables accordingly; THIS_NREGS now unsigned.
8875         (alter_reg): INHERENT_SIZE and TOTAL_SIZE now unsigned.
8876         (spill_hard_reg): REGNO arg now unsigned; add casts.
8877         (forget_old_reloads_1): REGNO, NR, and I now unsigned.
8878         (mark_reload_reg_in_use): Arg REGNO and vars NREGS and I now unsigned.
8879         (clear_reload_reg_in_use): Arg REGNO and vars NREGS, START_REGNO,
8880         END_REGNO, CONFLICT_START, and CONFLICT_END now unsigned.
8881         (reload_reg_free_p, reload_reg_reaches_end_p): Arg REGNO now unsigned.
8882         (choose_reload_regs): MAX_GROUP_SIZE now unsigned.
8883         (emit_reload_insns): REGNO now unsigned.
8884         (reload_cse_move2add): Add cast.
8885         (move2add_note_store): REGNO and I now unsigned; new variable ENDREGNO
8886         and rework loop.
8887         * resource.c (mark_referenced_resources, mark_set_resources): New
8888         variable R; REGNO and LAST_REGNO now unsigned.
8889         (mark_target_live_regs): J and REGNO now unsigned.
8890         * rtl.c (mode_size, mode_unit_size): Now unsigned.
8891         * rtl.h (union rtunion_def): New field rtuint.
8892         (XCUINT): New macro.
8893         (ADDRESSOF_REGNO, REGNO, SUBREG_WORD): New XCUINT.
8894         (operand_subword, operand_subword_force): Word number is unsigned.
8895         (choose_hard_reg_mode): Operands are unsigned.
8896         (refers_to-regno_p, dead_or_set_regno_p): Regno arg is unsigned.
8897         (find_regno_note, find_regno_fusage, replace_regs): Likewise.
8898         (regno_use_in, combine_instructions, remove_death): Likewise.
8899         (reg_scan, reg_scan_update): Likewise.
8900         (extended_count): Return is unsigned.
8901         * rtlanal.c (refers_to_regno_p): Args REGNO and ENDREGNO and vars I,
8902         INNER_REGNO, and INNER_ENDREGNO now unsigned; new variable X_REGNO.
8903         (reg_overlap_mentioned_p): REGNO and ENDREGNO now unsigned.
8904         (reg_set_last_first_regno, reg_set_last_last_regno): Now unsigned.
8905         (reg_reg_last_1): FIRS and LAST now unsigned.
8906         (dead_or_set_p): REGNO, LAST_REGNO, and I now unsigned.
8907         (dead_or_set_regno_p): Arg TEST_REGNO and vars REGNO and ENDREGNO
8908         now unsigned.
8909         (find_regno_note, regno_use_in): Arg REGNO now unsigned.
8910         (find_regno_fusage): Likewise; also var REGNOTE now unsigned.
8911         (find_reg_fusage): Variables REGNO, END_REGNO, and I now unsigned.
8912         (replace_regs): Arg NREGS now unsigned.
8913         * sdbout.c (sdbout_parms, sdbout_reg_parms): Don't check REGNO < 0.
8914         * simplify-rtx.c (simplify_unary_operation): WIDTH now unsigned.
8915         (simplify_binary_operation): Likewise.
8916         (cselib_invalidate_regno): Arg REGNO and variables ENDREGNO, I, and
8917         THIS_LAST now unsigned.
8918         (cselib_record_set): Add cast.
8919         * ssa.c (ssa_max_reg_num): Now unsigned.
8920         (rename_block): REGNO now unsigned.
8921         * stmt.c (expand_return): Bit positions unsigned HOST_WIDE_INT;
8922         sizes now unsigned.
8923         (all_cases_count): Just return -1 not -2.
8924         COUNT, MINVAL, and LASTVAL now HOST_WIDE_INT.
8925         Rework tests to use trees whenever possible.
8926         Use host_integerp and tree_low_cst.
8927         (mark_seen_cases): COUNT arg now HOST_WIDE_INT;
8928         Likewise variable NEXT_NODE_OFFSET; XLO now unsigned.
8929         (check_for_full_enumeration_handing): BYTES_NEEDED, I to HOST_WIDE_INT.
8930         * stor-layout.c (mode_for_size): SIZE arg now unsigned.
8931         (smallest_mode_for_size): Likewise.
8932         (layout_decl): Simplify handing of a specified DECL_SIZE_UNIT.
8933         KNOWN_ALIGN is now an alignment, so simplify code.
8934         Don't turn off DECL_BIT_FIELD if field is BLKmode, but not type.
8935         (start_record_layout): Renamed from new_record_layout_info.
8936         Update to new fields.
8937         (debug_rli, normalize_rli, rli_size_unit_so_far, rli_size_so_far):
8938         New functions.
8939         (place_union_field): Renamed from layout_union_field.
8940         Update to use new fields in rli.
8941         (place_field): Renamed from layout_field.
8942         Major rewrite to use new fields in rli; pass alignment to layout_decl.
8943         (finalize_record_size): Rework to use new fields in rli and handle
8944         union.
8945         (compute_record_mode): Rework to simplify and to use new DECL fields.
8946         (finalize_type_size): Make rounding more consistent.
8947         (finish_union_layout): Deleted.
8948         (layout_type, case VOID_TYPE): Don't set TYPE_SIZE_UNIT either.
8949         (layout_type, case RECORD_TYPE): Call new function names.
8950         (initialize_sizetypes): Set TYPE_IS_SIZETYPE.
8951         (set_sizetype): Set TYPE_IS_SIZETYPE earlier.
8952         (get_best_mode): UNIT is now unsigned; remove casts.
8953         * tree.c (bit_position): Compute from new fields.
8954         (byte_position, int_byte_position): New functions.
8955         (print_type_hash_statistics): Cast to remove warning.
8956         (build_range_type): Use host_integerp and tree_low_cst to try to hash.
8957         (build_index_type): Likewise; make subtype of sizetype.
8958         (build_index_2_type): Pass sizetype to build_range_type.
8959         (build_common_tree_nodes): Use size_int and bitsize_int to
8960         initialize nodes; add bitsize_{zero,one,unit}_node.
8961         * tree.h (DECL_FIELD_CONTEXT): Use FIELD_DECL_CHECK.
8962         (DECL_BIT_FIELD_TYPE, DECL_QUALIFIER, DECL_FCONTEXT): Likewise.
8963         (DECL_PACKED, DECL_BIT_FIELD): Likewise.
8964         (DECL_FIELD_BITPOS): Deleted.
8965         (DECL_FIELD_OFFSET, DECL_FIELD_BIT_OFFSET): New fields.
8966         (DECL_RESULT, DECL_SAVED_INSNS): Use FUNCTION_DECL_CHECK.
8967         (DECL_FRAME_SIZE, DECL_FUNCTION_CODE, DECL_NO_STATIC_CHAIN): Likewise.
8968         (DECL_INLINE, DECL_BUILT_IN_NONANSI, DECL_IS_MALLOC): Likewise.
8969         (DECL_BUILT_IN_CLASS, DECL_STATIC_CONSTRUCTOR): Likewise.
8970         (DECL_STATIC_DESTRUCTOR, DECL_NO_CHECK_MEMORY_USAGE): Likewise.
8971         (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT, DECL_NO_LIMIT_STACK) Likewise.
8972         (DECL_ORIGINAL_TYPE, TYPE_DECL_SUPPRESS_DEBUG): Use TYPE_DECL_CHECK.
8973         (DECL_ARG_TYPE_AS_WRITEN, DECL_ARG_TYPE): Use PARM_DECL_CHECK.
8974         (DECL_INCOMING_RTL, DECL_TRANSPARENT_UNION): Likewise.
8975         (DECL_ALIGN): Adjust to new field in union.
8976         (DECL_OFFSET_ALIGN): New field.
8977         (DECL_ERROR_ISSUED, DECL_TOO_LATE): Use LABEL_DECL_CHECK.
8978         (DECL_IN_TEXT_SECTION): Use VAR_DECL_CHECK.
8979         (union tree_decl): Add struct for both aligns.
8980         (enum tree_index): Add TI_BITSIZE_{ZERO,ONE,UNIT}.
8981         (bitsize_zero_node, bitsize_one_node, bitsize_unit_node): Added.
8982         (struct record_layout_info): Rework fields to have offset
8983         alignment and byte and bit position.
8984         (start_record_layout, place_field): Renamed from old names.
8985         (rli_size_so_far, rli_size_unit_so_far, normalize_rli): New decls.
8986         (byte_position, int_byte_position): Likewise.
8987         (get_inner_reference): Change types of position and length.
8988         * unroll.c (unroll_loop): New variable R; use for some loops.
8989         MAX_LOCAL_REGNUM and MAXREGNUM now unsigned.
8990         (calculate_giv_inc): Arg REGNO now unsigned.
8991         (copy_loop_body): REGNO and SRC_REGNO now unsigned.
8992         * varasm.c (assemble_variable): Clean up handling of size using
8993         host_integerp and tree_low_cst.
8994         (decode_addr_const): Use byte, not bit, position.
8995         (output_constructor): bitpos and offsets are HOST_WIDE_INT;
8996         use tree_low_cst and int_bit_position.
8997         * objc/objc-act.c (build_ivar_list_initializer): Use byte_position.
8998
8999 Fri Mar 24 20:13:49 2000  Jason Eckhardt  <jle@cygnus.com>
9000
9001         * bb-reorder.c (REORDER_MOVED_BLOCK_END): Removed.
9002         (reorder_block_def): New members eff_head and eff_end.
9003         (REORDER_BLOCK_EFF_HEAD, REORDER_BLOCK_EFF_END): New macros.
9004         (verify_insn_chain): New function.
9005         (skip_insns_between_block): Add code to skip deleted insns.
9006         Check for note before using.
9007         (chain_reorder_blocks): Replace calls to skip_insns_between_block
9008         with references to REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END.
9009         Check for note before using.
9010         (make_reorder_chain): Use INTVAL rather than XINT to get REG_BR_PROB.
9011         (fixup_reorder_chain): Restructure, clean up, defect removal.
9012         (reorder_basic_blocks): Remove last_insn and references to it.
9013         Moved insn chain verification code into a new function (see above).
9014         Delete defective code that sets last insn.
9015         Initialize REORDER_BLOCK_EFF_HEAD and REORDER_BLOCK_EFF_END for
9016         all blocks.
9017
9018 2000-03-25  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9019
9020         * config/c4x/c4x.h (CPP_SPEC): Remove erroneous space.
9021
9022 2000-03-24  Richard Henderson  <rth@cygnus.com>
9023
9024         * tree.c (lang_safe_for_unsave): Remove.
9025         (unsafe_for_reeval): Transmute and rename from safe_for_unsave,
9026         allowing for two levels of unsafeness.  Remove lang hook.
9027         * tree.h: Update declarations.
9028         * calls.c (expand_call): Rename safe_for_reeval to try_tail_call.
9029         Create temporary VAR_DECLs to protect very unsafe_for_reeval trees.
9030         Always fail sibcalls when there are pending cleanups.
9031
9032 2000-03-24  Geoff Keating  <geoffk@cygnus.com>
9033
9034         * flow.c (propagate_block): When we delete an ADDR_VEC,
9035         also delete the BARRIER following it if there is one.
9036
9037 2000-03-24  Richard Henderson  <rth@cygnus.com>
9038
9039         * builtins.c (expand_builtin_bzero): Convert `length' argument
9040         to sizetype.
9041
9042 2000-03-24  Jakub Jelinek  <jakub@redhat.com>
9043
9044         * sibcall.c (skip_copy_to_return_value): Use OUTGOING_REGNO for
9045         comparison if regno's are equal.
9046         * calls.c (initialize_argument_informat): Add ecf_flags argument.
9047         Use FUNCTION_INCOMING_ARG if available and ECF_SIBCALL.
9048         (expand_call): Update caller.
9049         Avoid making a sibling call if argument size of the callee is larger
9050         than argument size of the caller.
9051         Call hard_function_value with outgoing set if in sibcall pass.
9052         Use FUNCTION_INCOMING_ARG if available and ECF_SIBCALL.
9053
9054         * final.c (permitted_reg_in_leaf_functions, only_leaf_regs_used):
9055         Change LEAF_REGISTERS from an array initializer to actual array
9056         identifier. Move static global variable into the function.
9057         (leaf_function_p): Allow SIBLING_CALL_P calls even outside of
9058         sequences for leaf functions.
9059         * global.c (global_alloc): Likewise.
9060         * tm.texi (LEAF_REGISTERS): Update documentation.
9061
9062         * config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Remove the ugly
9063         TARGET_FLAT leaf disabling hack.
9064         (LEAF_REGISTERS): Changed from an array initializer to actual array
9065         identifier to avoid duplication and remove the above hack.
9066         (FUNCTION_OK_FOR_SIBCALL): Define.
9067         * config/sparc/sparc.md (sibcall): New attr type. Use it almost
9068         always like call attribute.
9069         (eligible_for_sibcall_delay): New attribute.
9070         (sibcall): New delay type.
9071         (sibcall, sibcall_value, sibcall_epilogue): New expands.
9072         (sibcall_symbolic_sp32, sibcall_symbolic_sp64,
9073         sibcall_value_symbolic_sp32, sibcall_value_symbolic_sp64): New insns.
9074         * config/sparc/sparc.c (sparc_leaf_regs): New array.
9075         (eligible_for_sibcall_delay, output_restore_regs, output_sibcall):
9076         New functions.
9077         (output_function_epilogue): Move part of the code into
9078         output_restore_regs.
9079         (ultra_code_from_mask, ultrasparc_sched_reorder): Handle
9080         TYPE_SIBCALL.
9081         * sparc-protos.h (output_sibcall, eligible_for_sibcall_delay): New
9082         prototypes.
9083
9084         * config/sparc/sparc.h (REVERSIBLE_CC_MODE): Revert Jan, 25 change
9085         until infrastructure is finished.
9086
9087 Fri Mar 24 13:49:45 2000  Jeffrey A Law  (law@cygnus.com)
9088
9089         * integrate.c (save_for_inline_nocopy): Clear in_nonparm_insns here.
9090         (save_parm_insns): Not here.
9091
9092 2000-03-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9093
9094         * builtins.c (expand_builtin_bzero): New function.
9095         (expand_builtin): Handle bzero.
9096
9097         * builtins.def: Add BUILT_IN_BZERO.
9098
9099         * c-common.c (c_common_nodes_and_builtins): Provide builtin
9100         prototype & function for bzero.
9101
9102 2000-03-23  Michael Meissner  <meissner@redhat.com>
9103
9104         * config/alpha/alpha.md (TF floating point insns): Undo 2000-03-21
9105         change adding TARGET_FP to the TF floating point insns, except for
9106         trunctfsf2, which generates direct calls to truncdfsf2.
9107
9108 2000-03-23  Geoff Keating  <geoffk@cygnus.com>
9109
9110         * config/rs6000/rs6000.h (ARG_POINTER_CFA_OFFSET): New definition,
9111         try to protect against middle-end changes that break binary
9112         compatibility.
9113         (DWARF_FRAME_REGISTERS): New definition, likewise for backend.
9114
9115 2000-03-24  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9116
9117         * config/c4x/c4x.md (load_immed_address):  Add DP reg clobber.
9118
9119 Thu Mar 23 17:10:48 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9120
9121         * calls.c (expand_call): If TARGET is passed by reference and
9122         is readonly, write a CLOBBER.
9123
9124 2000-03-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9125
9126         * builtins.c (expand_builtin): Handle bcmp.
9127
9128         * builtins.def: Add BUILT_IN_BCMP.
9129
9130         * c-common.c (c_common_nodes_and_builtins): Provide builtin
9131         prototype & function for bcmp.
9132
9133 Thu Mar 23 11:34:39 2000  Jim Wilson  <wilson@cygnus.com>
9134
9135         * config/ia64/ia64.c (rtx_needs_barrier, case UNSPEC): Move case 6...
9136         (rtx_needs_barrier, case UNSPEC_VOLATILE): to here.
9137         * config/ia64/ia64.md (pr_restore): Change UNSPEC to UNSPEC_VOLATILE.
9138
9139 Thu Mar 23 16:04:40 2000  Andrew Haley  <aph@cygnus.com>
9140
9141         * config/mips/mips.md (movdf_internal1a): Delete (set 'f', 'F')
9142         alternative when using -fp64 -gp32.
9143
9144 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
9145
9146         * config/rs6000/rs6000.h (DWARF_FRAME_RETURN_COLUMN): Define.
9147         * config/alpha/alpha.h (DWARF_FRAME_RETURN_COLUMN): Define.
9148         * config/sparc/sparc.h (DWARF_FRAME_RETURN_COLUMN): Define.
9149
9150         * frame.h (frame_state): Revert last change.
9151         * frame.c (execute_cfa_insn): Just don't record the save of a CFA reg.
9152         * libgcc2.c (throw_helper): Revert last change.
9153
9154 2000-03-22  Richard Henderson  <rth@cygnus.com>
9155
9156         * stmt.c (expand_asm_operands): Don't promote the temporary.
9157
9158 2000-03-22  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
9159
9160         * builtin.c (get_pointer_alignment): Use DECL_P and TYPE_P macros.
9161         * c-common.c (decl_attributes,check_format_info,truthvalue_conversion,
9162           c_get_alias_set): Likewise.
9163         * c-decl.c (duplicate_decls): Likewise.
9164         * c-typeck.c (default_conversion,build_unary_op): Likewise.
9165         * calls.c (initialize_argument_information): Likewise.
9166         * dwarf2out.c (decl_class_context,add_abstract_origin_attribute):
9167         Likewise.
9168         * dwarfout.c (decl_class_context,output_type): Likewise.
9169         * expr.c (get_inner_reference): Likewise.
9170         * fold-const.c (simple_operand_p,fold): Likewise.
9171         * function.c (aggregate_value_p): Likewise.
9172         * stmt.c (expand_asm_operands): Likewise.
9173         * varasm.c (named_section): Likewise.
9174
9175 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
9176
9177         Implement dwarf2 exception handling for the ARM.
9178         * config/arm/arm.h (INCOMING_RETURN_ADDR_RTX): Define.
9179         (DWARF_FRAME_RETURN_COLUMN): Define.
9180         * config/arm/arm.c (emit_multi_reg_push): Return rtx.  Attach
9181         REG_FRAME_RELATED_EXPR note.
9182         (emit_sfm): Likewise.
9183         (arm_expand_prologue): Set RTX_FRAME_RELATED_P on everything.
9184         * dwarf2out.c (reg_save): Handle saving a register to itself.
9185         (dwarf2out_frame_debug_expr): Handle an intermediate cfa reg.
9186         * except.c (eh_regs): Don't use the static chain reg if it's
9187         callee-saved.
9188         * frame.h (frame_state): Add cfa_saved field.
9189         * frame.c (execute_cfa_insn): Set it.
9190         * libgcc2.c (throw_helper): Don't adjust sp if it's restored in
9191         the epilogue.
9192         * function.c (ARG_POINTER_CFA_OFFSET): Default to FIRST_PARM_OFFSET.
9193         Now takes a parm.
9194         (instantiate_virtual_regs): Adjust.
9195         * tm.texi: Adjust.
9196         * config/m68k/m68k.h (ARG_POINTER_CFA_OFFSET): Don't define.
9197         * config/ns32k/ns32k.h (ARG_POINTER_CFA_OFFSET): Don't define.
9198         * config/sparc/sparc.h (ARG_POINTER_CFA_OFFSET): Take a parm.
9199
9200         * dwarf2out.c (reg_number): Refer to FIRST_PSEUDO_REGISTER.
9201         (initial_return_save): Use DWARF_FRAME_REGNUM, not reg_number.
9202
9203 2000-03-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9204
9205         * builtins.def: New file.
9206
9207         * Makefile.in (TREE_H): Depend on builtins.def.
9208
9209         * builtins.c (built_in_names): Use builtins.def.
9210
9211         * tree.h (built_in_function): Likewise.
9212
9213 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
9214
9215         * tree.c (size_in_bytes): Return size_zero_node, not
9216         integer_zero_node.
9217
9218 2000-03-22  Geoff Keating  <geoffk@cygnus.com>
9219
9220         * config/fp-bit.c (pack_d): Correct the case when a denormal
9221         is rounded up and stops being denormal.
9222
9223 2000-03-21  Richard Henderson  <rth@cygnus.com>
9224
9225         * config/alpha/alpha.c (function_arg): Check for void_type_node
9226         before using MUST_PASS_IN_STACK.
9227
9228 2000-03-21  Stephane Carrez  <stcarrez@worldnet.fr>
9229
9230         * regmove.c (combine_stack_adjustments_for_block): Check that
9231         the stack pointer is a valid memory address.
9232
9233 Wed Mar 22 11:44:50 MET 2000  Jan Hubicka  <jh@suse.cz>
9234
9235         * calls.c: re-install Mar 16 emit_library_call merge.
9236
9237 2000-03-21  Jakub Jelinek  <jakub@redhat.com>
9238
9239         * config/sparc/sparc.c (mem_min_alignment): If not optimizing,
9240         we cannot be sure that if reload_completed base register will
9241         be properly aligned.
9242
9243 2000-03-21  Richard Henderson  <rth@cygnus.com>
9244
9245         * flow.c (delete_block): Fix typo last change.
9246
9247 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
9248
9249         * c-common.c (c_expand_expr_stmt): Use COMPLETE_TYPE_OR_VOID_P,
9250         not COMPLETE_TYPE_P, to check the type of the expression.
9251
9252 2000-03-21  Michael Meissner  <meissner@redhat.com>
9253
9254         * config/alpha/alpha.md (floating point insns): Add TARGET_FP to
9255         all floating point insns that just tested the macro
9256         TARGET_HAS_XFLOATING_LIBS.
9257         (movsf/movdf recognizers): Add separate insns if -mno-fp-regs is
9258         used to only use the gprs.
9259
9260 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
9261
9262         * tree.h (COMPLETE_TYPE_P): New macro.
9263         (COMPLETE_OR_VOID_TYPE_P): New macro.
9264         (COMPLETE_OR_UNBOUND_ARRAY_TYPE_P): New macro.
9265         * stor-layout.c (layout_type, case VOID_TYPE): Don't set TYPE_SIZE.
9266         * c-aux-info.c (gen_type): Use them.
9267         * c-common.c (c_expand_expr_stmt): Likewise.
9268         * c-decl.c (poplevel, pushdecl, start_decl, finish_decl,
9269         grokdeclarator, grokparms, finish_struct, start_function,
9270         store_parm_decls, combine_parm_decls): Likewise.
9271         * c-parse.y (cast_expr): Likewise.
9272         * c-typeck.c (require_complete_type, c_sizeof, c_sizeof_nowarn,
9273         c_size_in_bytes, c_alignof, build_component_ref,
9274         build_indirect_ref, build_array_ref, convert_arguments,
9275         build_binary_op, pointer_diff, build_unary_op, digest_init: Likewise.
9276         * calls.c (initialize_argument_information): Likewise.
9277         * convert.c (convert_to_integer): Likewise.
9278         * dbxout.c (dbxout_typedefs, dbxout_type, dbxout_symbol): Likewise.
9279         * dwarfout.c (location_or_const_value_attribute,
9280         output_enumeration_type_die, output_structure_type_die,
9281         output_union_type_die, output_type): Likewise.
9282         * expr.c (safe_from_p, expand_expr): Likewise.
9283         * function.c (assign_parms): Likewise.
9284         * sdbout.c (sdbout_symbol, sdbout_one_type): Likewise.
9285         * tree.c (build_array_type, build_function_type,
9286         build_method_type, build_offset_type, build_complex_type): Likewise.
9287         * c-parse.c, c-parse.h: Regenerated.
9288
9289 2000-03-21  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9290
9291         * config/c4x/rtems.h: Include config/rtems.h.
9292
9293 Tue Mar 21 09:24:00 2000  Denis Chertykov  <denisc@overta.ru>
9294
9295         * config/avr/avr.c (encode_section_info): sets SYMBOL_REF_FLAG if
9296         decl is a FUNCTION_DECL
9297
9298 Mon Mar 20 19:53:53 2000  Jim Wilson  <wilson@cygnus.com>
9299
9300         * config/ia64/ia64.c (ia64_expand_prologue): Don't abort if leaf
9301         function uses output registers.  Don't save RP for leaf functions.
9302         Do save RP even if no epilogue.
9303         * config/ia64/ia64.h (FIXED_REGISTERS): Unmark in/out registers.
9304         (CALL_USED_REGISTERS): Unmark in registers.
9305         (REG_ALLOC_ORDER): Move out regs up, to near the top.  Move in regs up,
9306         to near the middle.
9307
9308 2000-03-20  Geoff Keating  <geoffk@cygnus.com>
9309
9310         * config/rs6000/rs6000.md (bunordered): New expander.
9311         (bordered): New expander.
9312         (buneq): New expander.
9313         (bunge): New expander.
9314         (bungt): New expander.
9315         (bunle): New expander.
9316         (bunlt): New expander.
9317         (bltgt): New expander.
9318
9319         * config/rs6000/rs6000.c (ccr_bit): Handle unordered comparisons.
9320         (ccr_bit_negated_p): New function.
9321         (print_operand): For %C, generate appropriate cror for UNEQ,
9322         UNLT, UNGT, and LTGT.  For %T and %t, use ccr_bit_negated_p.
9323
9324 2000-03-20  Andreas Jaeger  <aj@suse.de>
9325
9326         * sdbout.c (sdbout_one_type): Add braces to avoid "ambigous else"
9327         warning.
9328
9329         * tree.h (safe_for_unsave): Prototype.
9330
9331 2000-03-20  Richard Henderson  <rth@cygnus.com>
9332
9333         * regmove.c (stack_memref_p): Fix typo, reorg for readability.
9334         (combine_stack_adjustments_for_block): Don't allow sp references
9335         in the side of a set we're not fixing up.
9336         * toplev.c (rest_of_compilation): Run combine_stack_adjustments
9337         after life_analysis.
9338
9339 2000-03-20  Richard Henderson  <rth@cygnus.com>
9340
9341         * calls.c (expand_call): Don't bother generating tail call
9342         sequences if there are pending cleanups.  Use
9343         expand_start_target_temps/expand_end_target_temps to elide
9344         cleanups created during sibcall expansion.
9345
9346 2000-03-20  Geoff Keating  <geoffk@cygnus.com>
9347
9348         * configure.in: Set $IFS to a value if it doesn't already have one
9349         in the --enable-checking handling.
9350         * configure: Regenerate.
9351
9352 2000-03-20  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
9353
9354         * c-parse.in (SAVE_WARN_FLAGS): Use size_int.
9355         * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
9356         Regenerated.
9357
9358 Mon Mar 20 11:43:15 MET 2000  Jan Hubicka  <jh@suse.cz>
9359
9360         * jump.c (delete_noop_moves): Remove code attempting to
9361         combine stack adjustments.
9362
9363 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
9364
9365         * emit-rtl.c (push_to_full_sequence, end_full_sequence): New functions.
9366         * except.c (emit_cleanup_handler): Use them.
9367         (expand_end_all_catch): Likewise.
9368         * function.c (fixup_var_refs): Likewise.
9369         (expand_function_end): Clear catch_clauses_last.
9370         * rtl.h (push_to_full_sequence, end_full_sequence): Declare.
9371         * except.h (struct eh_status): New field x_catch_clauses_last.
9372         (catch_clauses_last): New define.
9373
9374         * Makefile.in (tree.o): Depend on HASHTAB_H.
9375         * tree.c: Include hashtab.h.
9376         (struct type_hash): Remove next field.
9377         (TYPE_HASH_SIZE): Remove.
9378         (TYPE_HASH_INITIAL_SIZE): New define.
9379         (type_hash_table): Change type to htab_t.
9380         (type_hash_eq, type_hash_hash, print_type_hash_statistics,
9381         mark_hash_entry): New functions.
9382         (init_obstacks): Allocate type hash.
9383         (type_hash_lookup): Use htab functions.
9384         (type_hash_add, mark_type_hash): Likewise.
9385         (dump_tree_statistics): Call print_type_hash_statistics.
9386
9387 2000-03-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9388
9389         * rs6000/t-aix41: New file.
9390
9391         * configure.in ({rs6000,powerpc}-ibm-aix4.[12]*): Use it.
9392
9393 Sun Mar 19 13:27:30 2000  Hans-Peter Nilsson  <hp@axis.com>
9394
9395         * tm.texi (Driver): Fix typos and tweak entry for
9396         INCLUDE_DEFAULTS.
9397         Move misplaced STRUCT_FORCE_BLK entry ...
9398         (Storage Layout): ... to here.
9399         (Run-time Target): Recommend having TARGET_MASK_... helper macros.
9400
9401 2000-03-19  Richard Henderson  <rth@cygnus.com>
9402
9403         * flow.c (delete_block): Delete the addr_vec along with the block.
9404         (flow_delete_insn): Decrement LABEL_NUSES when deleting insns that
9405         reference labels.
9406
9407         * fold-const.c (extract_muldiv): Apply type check for defined
9408         overflow to multiply as well as divide.
9409
9410         * stor-layout.c (layout_decl): Don't abort on any zero sized decl.
9411
9412 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
9413
9414         * emit-rtl.c (remove_unncessary_notes): Check that all
9415         NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes have an
9416         associated NOTE_BLOCK.
9417         * function.h (identify_blocks): Update comments.
9418         (reorder_blocks): Declare.
9419         * function.c (identify_blocks): Don't take paramters.
9420         (reorder_blocks): Don't take parameters.
9421         * loop.h (find_loop_tree_blocks): Remove.
9422         (unroll_block_trees): Likewise.
9423         * loop.c (loop_optimize): Don't call find_loop_tree_blocks.  Use
9424         reorder_blocks instead of unroll_block_trees.h
9425         * sibcall.c (optimize_sibling_and_tail_recursive_calls): Likewise.
9426         * stmt.c (find_loop_tree_blocks): Remove.
9427         (unroll_block_trees): Likewise.
9428         * toplev.c (rest_of_compilation): Don't call find_loop_tree_blocks
9429         in whole-function mode.
9430         * tree.h (reorder_blocks): Remove declaration.
9431
9432         * expr.c: Include intl.h.
9433         * Makefile.in (expr.o): Depend on intl.h.
9434
9435 2000-03-18  Richard Henderson  <rth@cygnus.com>
9436
9437         * expr.c (emit_move_insn_1): Clarify cannot_inline message.
9438
9439 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
9440
9441         * tree.h (tree_index): Remove enumerals for integer types.
9442         (integer_type_kind): New type.
9443         (integer_types): New variable.
9444         (char_type_node): Adjust.
9445         (signed_char_type_node): Likewise.
9446         (unsigned_char_type_node): Likewise.
9447         (short_integer_type_node): Likewise.
9448         (short_unsigned_type_node): Likewise.
9449         (integer_type_node): Likewise.
9450         (unsigned_type_node): Likewise.
9451         (long_integer_type_node): Likewise.
9452         (long_unsigned_type_node): Likewise.
9453         (long_long_integer_type_node): Likewise.
9454         (long_long_unsigned_type_node): Likewise.
9455         * tree.c (integer_types): New variable.
9456         (init_obstacks): Register it as a root.
9457
9458 Sat Mar 18 14:38:00 2000  Jason Eckhardt  <jle@cygnus.com>
9459
9460         * bb-reorder.c (reorder_basic_blocks): Update PREV_INSN as well as
9461         NEXT_INSN. Update last insn in chain.
9462
9463 2000-03-17  Jason Merrill  <jason@casey.cygnus.com>
9464
9465         * dwarf2out.c (dwarf2out_decl): Don't emit anything for types
9466         with TYPE_DECL_SUPPRESS_DEBUG set.
9467
9468 2000-03-18  Richard Henderson  <rth@cygnus.com>
9469
9470         * flow.c (make_edges): Use INTVAL to access REG_EH_REGION value.
9471
9472 2000-03-18  Richard Henderson  <rth@cygnus.com>
9473
9474         * i386.c (call_insn_operand): Always allow SYMBOL_REF,
9475         care for HALF_PIC_P.
9476         (expander_call_insn_operand): Remove.
9477         (ix86_expand_epilogue): New arg `emit_return' to control return insn.
9478         * i386.h (PREDICATE_CODES): Update.
9479         * i386.md (all call expanders): Remove predicates, remove special
9480         handling for half-pic.
9481         (*call_1, *call_value_1): Handle SIBLING_CALL_P insns.
9482         (*call_pop_pic2, *call_pic2, *call_value_pop_2, *call_value_2): Remove.
9483         (sibcall_epilogue): New.
9484
9485 2000-03-17  Richard Henderson  <rth@cygnus.com>
9486
9487         * rtlanal.c (single_set): Reject if the parallel has anything
9488         except SET or USE or CLOBBER.
9489
9490 2000-03-17  Jeff Law  <law@cygnus.com>
9491             Richard Henderson  <rth@cygnus.com>
9492
9493         * Makefile.in (OBJS): Add sibcall.o.
9494         (sibcall.o): New.
9495         * sibcall.c: New file.
9496         * calls.c (FUNCTION_OK_FOR_SIBCALL): Provide default.
9497         (ECF_IS_CONST, ECF_NOTHROW, ECF_SIBCALL): New.
9498         (emit_call_1): Replace `is_const' and `nothrow' with `ecf_flags'.
9499         Emit sibcall patterns when requested.  Update all callers.
9500         (expand_call): Generate CALL_PLACEHOLDER insns when tail call
9501         elimination seems feasable.
9502         * final.c (leaf_function_p): Sibling calls don't discount being
9503         a leaf function.
9504         * flow.c (HAVE_sibcall_epilogue): Provide default.
9505         (find_basic_blocks_1): Sibling calls don't throw.
9506         (make_edges): Make edge from sibling call to EXIT.
9507         (propagate_block): Don't remove sibcall_epilogue insns.
9508         * function.c (prologue, epilogue): Turn into varrays.  Update all uses.
9509         (sibcall_epilogue): New.
9510         (fixup_var_refs): Scan CALL_PLACEHOLDER sub-sequences.
9511         (identify_blocks_1): Likewise.  Break out from ...
9512         (identify_blocks): ... here.
9513         (reorder_blocks_1): Scan CALL_PLACEHOLDER.  Break out from ...
9514         (reorder_blocks): ... here.
9515         (init_function_for_compilation): Zap prologue/epilogue as varrays.
9516         (record_insns): Extend a varray instead of mallocing new memory.
9517         (contains): Read a varray not array of ints.
9518         (sibcall_epilogue_contains): New.
9519         (thread_prologue_and_epilogue_insns): Emit and record
9520         sibcall_epilogue patterns.
9521         (init_function_once): Allocate prologue/epilogue varrays.
9522         * genflags.c (gen_insn): Treat sibcall patterns as calls.
9523         * integrate.c (save_parm_insns): Recurse on CALL_PLACEHOLDER patterns.
9524         Broken out from ...
9525         (save_for_inline_nocopy): ... here.
9526         (copy_insn_list): Recurse on CALL_PLACEHOLDER patterns.
9527         Broken out from ...
9528         (expand_inline_function): ... here.
9529         (copy_rtx_and_substitute): Handle NOTE_INSN_DELETED_LABEL.
9530         (subst_constants): Handle 'n' formats.
9531         * jump.c (jump_optimize_minimal): New.
9532         (jump_optimize_1): New arg `minimal'; update callers.  Elide most
9533         optimizations if it's set.
9534         * rtl.c (copy_rtx): Do copy jump & call for insns.
9535         * rtl.h (struct rtx_def): Document use of jump and call for insns.
9536         (SIBLING_CALL_P): New.
9537         (sibcall_use_t): New.
9538         * toplev.c (rest_of_compilation): Do init_EXPR_INSN_LIST_cache earlier.
9539         Invoke optimize_sibling_and_tail_recursive_calls.
9540         * tree.c (lang_safe_for_unsave): New.
9541         (safe_for_unsave): New.
9542         * tree.h (lang_safe_for_unsave, safe_for_unsave): Declare.
9543
9544         * alpha.h (FUNCTION_OK_FOR_SIBCALL): New.
9545         * alpha.md (sibcall, sibcall_value, sibcall_epilogue): New.
9546         (*sibcall_osf_1, *sibcall_value_osf_1): New.
9547
9548 2000-03-17  Mark Mitchell  <mark@codesourcery.com>
9549
9550         * objc/objc-act.c (encode_method_prototype): Pass types, not
9551         PARM_DECLs, to int_size_in_bytes.
9552
9553 Fri Mar 17 11:51:34 2000  Jim Wilson  <wilson@cygnus.com>
9554
9555         * config/ia64/ia64.md (mix4right_3op): Swap %1 and %2 in template.
9556
9557         * config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
9558         config/ia64/ia64.md, config/ia64/xm-ia64.h: Fix copyrights again.
9559
9560 Fri Mar 17 08:09:14 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9561
9562         * Clean up usages of TREE_INT_CST_LOW.
9563         * c-parse.in (RESTORE_WARN_FLAGS): Use tree_low_cst.
9564         * c-parse.y, c-parse.c, objc/objc-parse.y, objc/objc-parse.c:
9565         Regenerated.
9566         * c-tree.h (min_precision): Move declaration to here.
9567         * c-typeck.c (build_binary_op): Use host_integerp and tree_low_cst.
9568         (build_unary_op, add_pending_init): Use bit_position.
9569         (pending_init_member, process_init_element): Likewise.
9570         (really_start_incremental_init, push_init_level, pop_init_level):
9571         Don't make copies of nodes or modify them in place, use consistent
9572         types when tracking positions, and use tree routines computations.
9573         (set_init_index, output_init_element): Likewise.
9574         (output_pending_init_elements, process_init_element): Likewise.
9575         * dbxout.c (dbxout_type_fields): Use bit_position, host_integerp,
9576         tree_low_cst and int_bit_position; also minor cleanup.
9577         (dbxout_type_method_1, dbxout_range_type, dbxout_type): Likewise.
9578         (print_cst_octal): Precision is unsigned.
9579         (dbxout_symbol): Ensure DECL_INITIAL is in-range and use tree_low_cst.
9580         * dwarf2out.c (ceiling): Input and output are unsigned HOST_WIDE_INT.
9581         (simple_type_align_in_bits): Result is unsigned int.
9582         Use tree_int_low_cst and host_integerp.
9583         (simple_type_size_in_bits): Result is unsigned HOST_WIDE_INT.
9584         (field_byte_offset): Result is HOST_WIDE_INT.
9585         Change types of internal variables so alignments are unsigned int,
9586         offsets are HOST_WIDE_INT and sizes are unsigned HOST_WIDE_INT.
9587         Use host_integerp, tree_low_cst, and int_bit_position.
9588         (add_bit_offset_attribute): Likewise.
9589         (add_data_member_location_attribute): Use tree_cst_low.
9590         (add_bound_info): Use host_integerp, integer_zerop, and integer_onep.
9591         (add_bit_size_attribute): Use tree_low_cst.
9592         (add_pure_or_virtual_attribute, gen_enumeration_type_die): Likewise.
9593         * dwarfout.c: Similar changes to dwarf2out.c.
9594         * expr.c (expand_expr, case ARRAY_REF): Remove redundant code.
9595         * genoutput.c (n_occurences): Return -1 for null string.
9596         (strip_whitespace): Accept null string and make into function.
9597         (scan_operands): Reflect above changes.
9598         * sdbout.c (plain_type_1): Use host_integerp and tree_low_cst.
9599         (sdbout_field_types, sdbout_one_type): Likewise; also use bit_position.
9600         * ssa.c (rename_registers): Add missing cast of arg to bzero.
9601         * tree.c (int_size_in_bytes): Check for too big to represent.
9602         (bit_position, int_bit_position, host_integerp, tree_low_cst): New fns.
9603         * tree.h (host_integerp, tree_low_cst, bit_position, int_bit_position):
9604         New declarations.
9605         (min_precision): Delete from here.
9606         * varasm.c (decode_addr_const): Use host_integerp, bit_position,
9607         and int_bit_position.
9608         * objc/objc-act.c (encode_method_prototype): Sizes are HOST_WIDE_INT.
9609         (encode_method_def): Likewise.
9610         (build_ivar_list_initializer): Use int_bit_position.
9611         (generate_shared_structures): Convert size.
9612         (encode_type, encode_complete_bitfield): Use integer_zerop.
9613         (encode_bitfield): Use tree_low_cst and int_bit_position.
9614
9615 2000-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9616
9617         * config/c4x/c4x.h (CPP_SPEC): Fix typo.
9618
9619 2000-03-17  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
9620
9621         * call.c (special_function_p): It is only malloc if it returns
9622         Pmode.
9623
9624 2000-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9625
9626         * config/c4x/c4x.h (ASM_SPEC, CPP_SPEC, LINK_SPEC): Support C33.
9627         (C33_FLAG, TARGET_C3X): Add macros.
9628         (TARGET_SWITCHES): Add -m33 option.
9629         * config/c4x/c4x.c (c4x_override_options): Test for TARGET_C33.
9630
9631 2000-03-17  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9632
9633         * config/c4x/c4x.h (PARALLEL_INSN_FLAG): Add.
9634         (PARALLEL_PACK_FLAG): Delete.
9635         (TARGET_SWITCHES): Update.
9636         (TARGET_PARALLEL): Use PARALLEL_INSN_FLAG.
9637
9638 Thu Mar 16 18:52:32 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9639
9640         * fold-const.c (fold): Fix a few cases when the returned result
9641         is not of the same type as the input.
9642
9643 2000-03-16  Nick Clifton  <nickc@cygnus.com>
9644
9645         * config/arm/arm.h (ASM_OUTPUT_MI_THUNK): Fix compile time
9646         warning.
9647
9648 2000-03-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9649
9650         * libgcc2.h: Move prototypes above macros with the same name.
9651         Wrap some function prototypes in the conditional which indicates
9652         whether they are supported, i.e. "BITS_PER_UNIT == 8".
9653
9654 2000-03-16  Richard Henderson  <rth@cygnus.com>
9655
9656         * calls.c: Revert last two changes.
9657
9658 2000-03-16  Bernd Schmidt  <bernds@cygnus.co.uk>
9659
9660         * fp-bit.c (_unpack_d): If NO_DENORMALS is defined, anything that
9661         has exponent 0 is a zero.
9662
9663         * simplify-rtx.c (hash_rtx, case MEM/REG): Take into account that
9664         HASH may already be nonzero.  Add code/mode into hash value
9665         immediately after repeat label.
9666         (cselib_lookup): Don't leave the hash table in an inconsistent
9667         state before a hash lookup operation.
9668
9669 Thu Mar 16 17:03:10 MET 2000  Jan Hubicka  <jh@suse.cz>
9670
9671         * i386.md (all HI and QI mode non-move patterns):  Conditionize
9672         by TARGET_[HQ]IMODE_MATH.
9673         * i386.h (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
9674         x86_promote_qi_regs): Declare.
9675         (TARGET_HIMODE_MATH, TARGET_QIMODE_MATH, TARGET_PROMOTE_HI_REGS,
9676         TARGET_PROMOTE_QI_REGS): New macros.
9677         (PROMOTE_MODE): New macro.
9678         * i386.c (x86_himode_math, x86_qimode_math, x86_promote_hi_regs,
9679         x86_promote_qi_regs): New global variables.
9680
9681 Thu Mar 16 16:50:44 MET 2000  Jan Hubicka  <jh@suse.cz>
9682
9683         * calls.c (emit_library_call_value_1): Break out from ...; handle
9684         VOIDmode function calls too.
9685         (emit_library_call_value): ... here.
9686         (emit_library_call): Implement by calling emit_library_call_value_1.
9687
9688 Thu Mar 16 16:01:30 MET 2000  Jan Hubicka  <jh@suse.cz>
9689
9690         * calls.c (expand_call): Do sanity checking on arg_space_so_far.
9691         Update arg_space_so_far on stack adjustments.
9692         (emit_library_call, emit_library_call_value): Likewise; take into
9693         account arg_space_so_far and pending_stack_adjust when calculcating
9694         the boundary.
9695
9696 Thu Mar 16 09:02:19 2000  Jason Eckhardt  <jle@cygnus.com>
9697
9698         * flow.c: Move all basic block reordering code into its own file.
9699         (create_basic_block): Externalize.
9700         * bb-reorder.c: New file. Copy all basic block reordering code from
9701         flow.c to this file.
9702         (reorder_basic_blocks): Fix fencepost error in for-loop.
9703         (reorder_basic_blocks): Remove braces from single statement for-loops.
9704         * basic-block.h: Add declaration for create_basic_block.
9705         * Makefile.in: Add rules for bb-reorder.o.
9706
9707 2000-03-16  Neil Booth  <NeilB@earthling.net>
9708
9709         * cppinit.c (handle_option):  Implement #unassert directive
9710         as -A- command line option.
9711         (print_help):  Update.
9712         * cpptexi.c:  Update.
9713
9714 Thu Mar 16 02:14:16 2000  Hans-Peter Nilsson  <hp@bitrange.com>
9715
9716         * md.texi (Standard Names): Document `jump'.
9717
9718 2000-03-15  Jason Merrill  <jason@casey.cygnus.com>
9719
9720         * calls.c (emit_call_1): Nothrow functions can still have nonlocal
9721         gotos.
9722
9723 2000-03-15  Geoff Keating  <geoffk@cygnus.com>
9724
9725         Merge changes from newppc-branch onto trunk.
9726
9727         2000-03-15  Geoff Keating  <geoffk@cygnus.com>
9728
9729         * rs6000.c (toc_hash_table): Update for new hash table functions.
9730         (toc_hash_function): Likewise.
9731         (toc_hash_eq): Likewise.
9732         (toc_hash_mark_entry): Likewise.
9733         (toc_hash_mark_table): Likewise.
9734         (output_toc): Likewise.
9735         (rs6000_add_gc_roots): Likewise.
9736
9737         2000-03-15  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
9738
9739         * t-aix43 (AR_FOR_TARGET): Deleted.  Moved `-X32_64'...
9740         (AR_FLAGS_FOR_TARGET): here.  New macro.
9741
9742         2000-03-05  Clinton Popetz  <cpopetz@cygnus.com>
9743
9744         * config/rs6000/rs6000.c (rs6000_fpmem_offset, rs6000_fpmem_size,
9745         fpmem_operand) Delete.
9746         (xer_operand) New.
9747         (rs6000_reg_names, alt_reg_names): Change fpmem to xer.
9748         (machine_function): Remove fpmem_size, fpmem_offset, save_toc_p.
9749         (rs6000_save_machine_status, rs6000_restore_machine_status,
9750         rs6000_init_expanders, rs6000_stack_info, debug_stack_info): Remove
9751         references to above variables.
9752         (gpc_reg_operand): Use XER_REGNO_P instead of FPMEM_REGNO_P.
9753         * config/rs6000/rs6000.h (REG_ALLOC_ORDER, REGISTER_NAMES,
9754         DEBUG_REGISTER_NAMES): Chagne fpmem to xer.
9755         (FPMEM_REGNO_P, FPMEM_REGNUM): Delete.
9756         (XER_REGNO_P, XER_REGNO): New.
9757         (rs6000_stack): Remove fpmem_p, fpmem_offset, fpmem_size.
9758         (PREDICATE_CODES): Change fpmem_operand to xer_operand.
9759         (HARD_REGNO_NREGS, HARD_REGNO_MODE_OK): Change FPMEM_REGNO_P to
9760         XER_REGNO_P.
9761         (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGNO_REG_CLASS,
9762         REG_CLASS_FROM_LETTER, CLASS_MAX_NREGS): Change FPMEM_REGS to XER_REGS,         and remove FLOAT_OR_FPMEM_REGS.
9763         (CLASS_CANNOT_CHANGE_SIZE): Change to FLOAT_REGS.
9764
9765         2000-02-29  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
9766
9767         * aix.h (FP_SAVE_INLINE, ASM_OUTPUT_INTERNAL_LABEL_PREFIX,
9768         TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP): Move here...
9769         * rs6000.h: from here.
9770
9771         * rs6000-protos.h (rs6000_select_section): Provide prototype.
9772         (rs6000_select_rtx_section): Likewise.
9773         (rs6000_encode_section_info): Likewise.
9774         (sdata_section): Likewise.
9775         (sdata2_section): Likewise.
9776         (sbss_section): Likewise.
9777         * sysv4.h (rs6000_select_section): Delete prototype.
9778         (rs6000_select_rtx_section): Likewise.
9779         (rs6000_encode_section_info): Likewise.
9780         (sdata_section): Likewise.
9781         (sdata2_section): Likewise.
9782         (sbss_section): Likewise.
9783         (REG_SAVE_AREA): Delete definition duplicated in rs6000.h.
9784
9785         * sysv4.h: Delete various unnecessary #undef's and put a comment
9786         on the remaining ones.
9787         Change various comments according to coding standard.
9788
9789         2000-02-29  Clinton Popetz  <cpopetz@cygnus.com>
9790
9791         * config/rs6000/rs6000.h (MQ_REGNO, CR0_REGNO, CR1_REGNO, CR2_REGNO,
9792         CR3_REGNO, CR4_REGNO, MAX_CR_REGNO): Define.
9793         (CR0_REGNO_P) Remove.
9794         * config/rs6000/rs6000.c (gpc_reg_operand, and64_operand, and_operand,
9795         setup_incoming_varargs, mtcrf_operation, print_operand,
9796         rs6000_stack_info, rs6000_emit_prologue, rs6000_emit_epilogue):
9797         Use the above macros.
9798
9799         2000-02-24  Clinton Popetz  <cpopetz@cygnus.com>
9800
9801         * config/rs6000/rs6000.md: Added a new alternative for each
9802         pattern that had a 'x' alternative but no 'y' alternative.
9803         Added a new split for each of the above patterns.
9804
9805         2000-02-18  Geoff Keating  <geoffk@cygnus.com>
9806
9807         * aix41.h (ASM_CPU_SPEC): Delete.
9808         (CPP_CPU_SPEC): Delete.
9809
9810         * aix.h (RS6000_OUTPUT_BASENAME): Define.
9811         (ASM_OUTPUT_LABEL): Define.
9812         (ASM_GLOBALIZE_LABEL): Define.
9813         (STRIP_NAME_ENCODING): Define.
9814         * rs6000.h (RS6000_OUTPUT_BASENAME): Don't define.
9815         (STRIP_NAME_ENCODING): Don't define.
9816         (ASM_OUTPUT_LABEL): Don't define.
9817         (ASM_GLOBALIZE_LABEL): Don't define.
9818         * sysv4.h (ASM_DECLARE_FUNCTION_NAME): Use assemble_name to output
9819         names, and ASM_OUTPUT_LABEL to output labels, rather than
9820         asm_fprintf.
9821         (ASM_OUTPUT_LABEL): Define.
9822         (ASM_OUTPUT_INT): Use assemble_name.
9823         (ASM_OUTPUT_DWARF_ADDR): Use assemble_name.
9824         (STRIP_NAME_ENCODING): Don't undefine first.
9825         (RS6000_OUTPUT_BASENAME): Make equivalent to assemble_name for
9826         ELF.
9827         (ASM_OUTPUT_LABELREF): Don't prepend underscores to labels
9828         specified with 'asm' even with -fleading-underscore.
9829         * rs6000.c (print_operand): Use assemble_name when !TARGET_AIX.
9830         (output_epilog): Likewise.
9831         (output_toc): Likewise.
9832         * tramp.asm: Handle -fleading-underscore correctly.
9833
9834         * rs6000.md (builtin_setjmp_receiver): Also run for -fPIC and
9835         -mminimal-toc.
9836         (nonlocal_goto_receiver): Delete.
9837         * rs6000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Delete.
9838
9839         * rs6000.h (ASM_OUTPUT_DEF): Don't define.
9840         (SET_ASM_OP): Define.
9841         * sysv4.h (ASM_OUTPUT_DEF): Don't undefine.
9842
9843         * rs6000.h (ASM_OUTPUT_ADDR_VEC_ELT): Don't define.
9844         (ASM_LONG): Define.
9845
9846         * rs6000.c (rs6000_dll_import_ref): Delete, not used.
9847         * rs6000-protos.h (rs6000_dll_import_ref): Delete.
9848
9849         * rs6000.h: Add 'u' to more constants.
9850
9851         2000-02-18  David Edelsohn  <edelsohn@gnu.org>
9852
9853         * rs6000.md (mfcr+shift): Delete PowerPC64 version.
9854
9855         2000-02-15  David Edelsohn  <edelsohn@gnu.org>
9856
9857         * rs6000.c (reg_or_u_cint_operand): New function.
9858         (logical_operand): Handle 64-bit hosts.
9859         (logical_u_operand): New function.
9860         (non_logical_cint_operand): Handle 64-bit hosts.
9861         (non_logical_u_cint_operand): New function.
9862         * rs6000.h (DATA_SECTION_ASM_OP): Add tab.
9863         (PREDICATE_CODES): Define new functions.
9864         * rs6000-protos.h: Declare new functions.
9865         * rs6000.md (iordi3, xordi3): Constant int must be unsigned 32-bits.
9866         (movdi_64): Bracket code intended for 64-bit hosts.  Create
9867         CONST_DOUBLE for 32-bit values.
9868         (scc insns): Generate DImode compares.
9869         (mfcr insns): Create DImode versions.
9870         (sge matchers): New patterns.
9871
9872         2000-02-15  Gabriel Paubert  <paubert@iram.es>
9873
9874         * rs6000.md: Correct instructions length attributes and
9875         constraints on unsigned compare instructions.
9876         (*ne0): Disable for PowerPC64.
9877
9878         2000-02-11  Geoff Keating  <geoffk@cygnus.com>
9879
9880         * rs6000.c (output_function_profiler): Use .long for a 32-bit
9881         quantity, fix profile1.C test failure under -fPIC.
9882
9883         * rs6000.c: Add 'u' to many constants to suppress warnings.
9884         (constant_pool_expr_1): Make static.
9885         (rs6000_emit_eh_toc_restore): Remove unused 'r2'.
9886         * rs6000.h: Add 'u' to many constants to suppress warnings.
9887
9888         * rs6000.c (rs6000_emit_load_toc_table): Use LCTOC..1 under AIX
9889         for the start of the TOC, instead of LCTOC..0.
9890         * aix.h (toc_section): Use LCTOC..1 under AIX for the start
9891         of the TOC.
9892         * rs6000.md (load_toc_aix_si): Use LCTOC..1.
9893         (load_toc_aix_di): Use LCTOC..1.
9894
9895         * rs6000.h (LEGITIMIZE_ADDRESS): Turn into a function.
9896         * rs6000.c (rs6000_legitimize_address): New function from
9897         LEGITIMIZE_ADDRESS.  Only use create_TOC_reference on
9898         symbols in the constant pool that really are TOC references.
9899         (print_operand_address): For ELF, write TOC offsets under
9900         -fPIC as subtractions in the insn.
9901         (output_toc): For ELF, define symbols in TOC as normal labels,
9902         to match RTL.
9903         (create_TOC_reference): Use gen_rtx_PLUS rather than gen_rtx.
9904         * rs6000-protos.h (rs6000_legitimize_address): Prototype.
9905         (create_TOC_reference): Prototype only when RTX_CODE is defined.
9906         * rs6000.md (movsi): Only use create_TOC_reference on
9907         symbols in the constant pool that really are TOC references.
9908
9909         * rs6000.h (MACHINE_DEPENDENT_REORG): Don't define.
9910         * rs6000.c (rs6000_reorg): Delete.
9911         * rs6000-protos.h (rs6000_reorg): Delete.
9912
9913         2000-02-09  Geoff Keating  <geoffk@cygnus.com>
9914
9915         * rs6000.h (INCOMING_RETURN_ADDR_RTX): New macro.
9916
9917         * aix.h (SETUP_FRAME_ADDRESSES): Define.
9918         * rs6000.c [TARGET_AIX] (insn_after_throw): New static variable.
9919         [TARGET_AIX] (rs6000_aix_emit_builtin_unwind_init): New function.
9920         [TARGET_AIX] (rs6000_emit_eh_toc_restore): New function.
9921         * rs6000-protos.h: Prototype rs6000_emit_eh_toc_restore,
9922         rs6000_aix_emit_builtin_unwind_init.
9923         * rs6000.md (eh_epilogue) [TARGET_AIX]: Call
9924         rs6000_emit_eh_toc_restore on AIX.
9925         (return_eh_si): Use r2.
9926         (return_eh_di): Use r2.
9927
9928         * aix43.h: Turn on HAS_INIT_SECTION and LD_INIT_SWITCH,
9929         since we're breaking binary compatibility anyway.
9930
9931         2000-02-09  Clinton Popetz  <cpopetz@cygnus.com>
9932
9933         * config/rs6000/rs6000-protos.h: (get_TOC_alias_set, uses_TOC,
9934         constant_pool_expr_p): Declare them.
9935         (constant_pool_expr_p): Declare it.
9936         * config/rs6000/rs6000.c (toc_label_name): Define.
9937         (rs6000_override_options): Set toc_label_name.
9938         (input_operand): Allow any TOC_RELATIVE_EXPR_P.
9939         (get_TOC_alias_set, constant_pool_expr_p, constant_pool_expr_1,
9940         uses_TOC): New functions.
9941         (print_operand): Delete old '*' case.
9942         (print_operand_address): Use LEGITIMATE_CONSTANT_POOL_ADDRESS_P,
9943         and strip off rtl for TOC before calling output_addr_const.
9944         (rs6000_emit_load_toc_table): Use toc_label_name.
9945         * config/rs6000/rs6000.h (TARGET_SWITCHES): Make msched-prolog
9946         the default.
9947         (LEGITIMATE_CONSTANT_POOL_BASE_P): Delete.
9948         (CONSTANT_POOL_EXPR_P, TOC_RELATIVE_EXPR_P): New macros.
9949         (LEGITIMATE_CONSTANT_POOL_ADDRESS_P): Use CONSTANT_POOL_EXPR_P.
9950         (LEGITIMIZE_ADDRESS, LEGITIMIZE_RELOAD_ADDRESS): Turn symbol_refs
9951         into explicit TOC_REGISTER offsets.
9952         (TOC_REGISTER): New macro.
9953         * config/rs6000/rs6000.md (movsi, movdi): Emit rtl under
9954         TARGET_TOC to reference TOC_REGISTER.
9955         (load_toc_v4_PIC_1b): Add 4 to offset for toc reload.
9956         * config/rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Call
9957         uses_TOC before emitting label references.
9958
9959         2000-02-05  Geoff Keating  <geoffk@cygnus.com>
9960
9961         * rs6000.md (stack_tie): Fix warning.
9962
9963         * eabi-ctors.c: Use 'asm' names for the start/end variables,
9964         to handle -fleading-underscore.
9965         * sysv4.h (ASM_DECLARE_FUNCTION_NAME): Use asm_fprintf and %U.
9966         (USER_LABEL_PREFIX): New macro.
9967         (ASM_OUTPUT_INTERNAL_LABEL_PREFIX): Use asm_fprintf and %L.
9968         (ASM_OUTPUT_LABELREF): Use asm_fprintf and %U.
9969         * t-ppccomm (MULTILIB_MATCHES_SYSV): Note that call-sysv and
9970         call-linux can use the same multilibs.
9971         * t-ppcgas (MULTILIB_OPTIONS): Don't need to have separate call-sysv
9972         and call-linux multilibs.  Do multilib with -fleading-underscore.
9973         (MULTILIB_DIRNAMES): Follow MULTILIB_OPTIONS change.
9974         (MULTILIB_EXCEPTIONS): Remove call-linux exceptions.  Add restrictions
9975         to call-aix.
9976
9977         * sysv4.h (CPP_SYSV_SPEC): Define _SOFT_FLOAT for all those CPUs that
9978         have MASK_SOFT_FLOAT set.
9979         (CPP_FLOAT_DEFAULT_SPEC): New macro.
9980         (SUBTARGET_EXTRA_SPECS): Set `cpp_float_default' to the value of
9981         CPP_FLOAT_DEFAULT_SPEC.
9982
9983         * rs6000.c (ccr_bit): Add some consistency checks and a variable 'reg'.
9984         * rs6000.md: Whitespace change.
9985         * sysv4.h (LINK_TARGET_SPEC): Whitespace change.
9986         * sysv4le.h (LINK_TARGET_SPEC): Whitespace change.
9987
9988         2000-02-05  Geoff Keating  <geoffk@cygnus.com>
9989
9990         * rs6000.md (eh_epilogue): New expander.
9991         (eh_reg_restore): New expand/split/insn combination.
9992         (return_eh_si): New insn.
9993         (return_eh_di): New insn.
9994
9995         * eabi-ci.asm: Put a label at the start of the .eh_frame section.
9996         * eabi-cn.asm: Put a zero at the end of the .eh_frame section.
9997         * eabi-ctors.c (__do_global_ctors): Register this object's
9998         frame.  Clean up.  Call atexit() after the constructors.
9999         (__do_global_dtors): Deregister this object's frame.  Clean up.
10000         Allow for recursive calls to exit().
10001         * rs6000.c (fixuplabelno): New variable.
10002         * sysv4.h (ASM_OUTPUT_INT): Don't do .fixup if not
10003         TARGET_RELOCATABLE, it slows down exec() under linux.
10004         (ASM_OUTPUT_DWARF_ADDR): Do .fixup if TARGET_RELOCATABLE.
10005
10006         * aix.h (ASM_OUTPUT_DWARF_ADDR_VAR): New macro.
10007         (ASM_OUTPUT_DWARF_DELTA_VAR): New macro.
10008         (ASM_OUTPUT_DWARF_DELTA2): New macro.
10009         (ASM_OUTPUT_DWARF_DELTA4): New macro.
10010         (ASM_OUTPUT_DWARF_ADDR_DELTA): New macro.
10011         (ASM_OUTPUT_DWARF_ADDR): New macro.
10012         (ASM_OUTPUT_DWARF_DATA4): New macro.
10013         (ASM_OUTPUT_DWARF_DATA2): New macro.
10014         (ASM_OUTPUT_DWARF_OFFSET4): New macro.
10015         (ASM_OUTPUT_DWARF_OFFSET): New macro.
10016         (UNALIGNED_INT_ASM_OP): New macro, fake definition.
10017
10018         2000-02-03  Geoff Keating  <geoffk@cygnus.com>
10019
10020         * rs6000.c (rs6000_sr_alias_set): New variable.
10021         (rs6000_override_options): Initialise rs6000_sr_alias_set.
10022         (rs6000_emit_stack_tie): New function.
10023         (rs6000_emit_allocate_stack): Specify RTX_FRAME_RELATED_P
10024         in a way that dwarf2out can understand.
10025         (rs6000_frame_related): New function.
10026         (rs6000_emit_prologue): Use rs6000_sr_alias_set.  Specify
10027         RTX_FRAME_RELATED_P in a way that dwarf2out can understand.
10028         Use rs6000_emit_stack_tie when needed.
10029         (rs6000_emit_epilogue): Use rs6000_sr_alias_set.  Don't set
10030         RTX_FRAME_RELATED_P.  Use rs6000_emit_stack_tie when needed.
10031         * rs6000.md (stack_tie): New insn.
10032         (return_internal_si): Allow return value to be in the count
10033         register.
10034         (return_internal_di): Likewise.
10035
10036         * rs6000.c (output_mi_thunk): Remove unused variable `sp'.
10037
10038         2000-02-03  Geoff Keating  <geoffk@cygnus.com>
10039
10040         * sysv4.h (LOCAL_LABEL_PREFIX): Define, for the use of dbxelf.h.
10041
10042         2000-01-31  Geoff Keating  <geoffk@cygnus.com>
10043
10044         * rs6000.h (ASM_OUTPUT_DEF_FROM_DECLS): New macro.
10045
10046         * rs6000.md (stmw): Use the right POWER opcode.
10047         (lmw): Likewise.
10048
10049         2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10050
10051         * rs6000-protos.h: New file.
10052
10053         * rs6000.c: Include tm_p.h.  Fix compile time warnings.
10054
10055         * rs6000.h: Move prototypes to rs6000-protos.h.  Fix compile time
10056         warnings.
10057
10058         * sysv4.h: Likewise.
10059
10060         2000-01-28  Geoff Keating  <geoffk@cygnus.com>
10061
10062         * ../../configure.in: Delete powerpcle-*-winnt*
10063         and powerpcle-*-pe|powerpcle-*-cygwin*.
10064         * ../../configure: Regenerated.
10065         * cygwin.h: Delete.
10066         * rs6000.h (OBJECT_WINDOWS_NT): Delete.
10067         (TARGET_WINDOWS_NT): Delete.
10068         (ABI_NT): Delete.
10069         (CALL_NT_DLLIMPORT): Delete.
10070         Delete NT-specific code.
10071         * rs6000.md, rs6000.c, sysv4.h: Delete NT-specific code.
10072         * win-nt.h: Delete.
10073         * t-winnt: Delete.
10074         * nt-ci.asm: Delete.
10075         * nt-cn.asm: Delete.
10076         * ntstack.asm: Delete.
10077
10078         2000-01-27  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
10079
10080         * rs6000.h (SELECT_RTX_SECTION): Move to aix.h.
10081         (ASM_FILE_START): Likewise.
10082         (ASM_DECLARE_FUNCTION_NAME): Likewise.
10083         (ASM_OUTPUT_LABELREF): Likewise.
10084         (ASM_OUTPUT_SKIP): Likewise.
10085         (ASM_OUTPUT_INTERNAL_LABEL): Likewise.
10086         (ASM_GENERATE_INTERNAL_LABEL): Likewise.
10087         (ASM_OUTPUT_CASE_LABEL): Likewise.
10088         (ASM_OUTPUT_ALIGNED_COMMON): Likewise.
10089         (ASM_OUTPUT_ASCII): Likewise.
10090
10091         2000-01-27  Clinton Popetz  <cpopetz@cygnus.com>
10092
10093         * rs6000.c (rs6000_emit_load_toc_table): Use "LCG" and
10094         reload_toc_labelno for non-prologue TOC reloads.  Also, don't
10095         increment rs6000_pic_labelno here.
10096         (rs6000_emit_prologue): Pass TRUE to rs6000_emit_load_toc_table,
10097         and increment rs6000_pic_labelno here.
10098
10099         2000-01-24  Geoffrey Keating  <geoffk@cygnus.com>
10100
10101         * rs6000.md (fctiwz): Use (set (reg) (unspec:DI [(fix:SI ...)]))
10102         rather than (set (subreg:SI (reg)) (fix:SI ...)) so that register
10103         allocation knows (reg) is dead before the insn.
10104
10105         2000-01-21  Geoff Keating  <geoffk@cygnus.com>
10106
10107         * rs6000.md (movsi_to_cr): Correct typo in output template.
10108
10109         2000-01-19  Geoffrey Keating  <geoffk@cygnus.com>
10110
10111         * rs6000.c (rs6000_pic_labelno): Always define.
10112         (rs6000_pic_func_labelno): Delete.
10113         (lmw_operation): Check for a zero base register,
10114         which doesn't mean what we want.
10115         (stmw_operation): New function.
10116         (print_operand): Define new 'l' modifier.
10117         (rs6000_stack_info): We must save all 64 bits of the registers
10118         if TARGET_POWERPC64.
10119         (rs6000_output_load_toc_table): Delete.
10120         (rs6000_emit_load_toc_table): New function.
10121         (rs6000_allocate_stack_space): Delete.
10122         (rs6000_emit_allocate_stack): New function.
10123         (rs6000_emit_prologue): New function.
10124         (output_prolog): Use rs6000_emit_prologue.
10125         (rs6000_emit_epilogue): Change a few variable names to be
10126         more accurate.  Restore all 64 bits of the registers if
10127         TARGET_POWERPC64.  Only restore the FP registers which were used
10128         if they are being saved/restored one-at-a-time.
10129         (output_mi_thunk): Delete inefficient code generation.
10130         (output_function_profiler): Don't use rs6000_output_load_toc_table.
10131         * rs6000.h: Declare rs6000_emit_load_toc_table,
10132         rs6000_allocate_stack_space, stmw_operation.  Don't declare
10133         rs6000_output_load_toc_table.
10134         * rs6000.md (elf_high): Allow register 0, but discourage it
10135         heavily.
10136         (elf_low): Support loading into register 0.
10137         (load_toc_aix_si): New pattern.
10138         (load_toc_aix_di): New pattern.
10139         (load_toc_v4_pic_si): New pattern.
10140         (load_toc_v4_pic_di): New pattern.
10141         (load_toc_v4_PIC_1): New pattern.
10142         (load_toc_v4_PIC_1b): New pattern.
10143         (load_toc_v4_PIC_2): New pattern.
10144         (builtin_setjmp_receiver): Use rs6000_emit_load_toc_table.
10145         (nonlocal_goto_receiver): Use rs6000_emit_load_toc_table.
10146         (prologue): New expander.
10147         (movesi_from_cr): New pattern.
10148         (stmw): New pattern.
10149         (save_fpregs_si): New pattern.
10150         (save_fpregs_di): New pattern.
10151
10152         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
10153
10154         * rs6000.md (movsi): Don't use force_reg when no_new_pseudos.
10155         (movdi): Likewise.
10156         (movhi): Likewise.
10157         (movqi): Likewise.
10158
10159         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
10160
10161         * rs6000.md (movsi_got): 'unspec 8' returns a SImode result,
10162         at present.
10163         (movsi_got_internal): Likewise.
10164         (movsi_got_internal+1): Likewise.
10165         (set_sp): 'unspec 7' does a SImode clobber.
10166
10167         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
10168
10169         * rs6000.md (floatsidf2): Don't use the fpmem "register", just
10170         allocate a stack temporary.
10171         (floatsidf2_internal): Likewise.
10172         (floatsidf2_internal+1): Likewise.  Don't do bizzare hacks
10173         with unspec.
10174         (floatunssidf2): Don't use the fpmem "register", just
10175         allocate a stack temporary.
10176         (floatunssidf2_internal): Likewise.
10177         (floatunssidf2_internal+1): Likewise.  Don't do bizzare hacks
10178         with unspec.
10179         (floatsidf2_loadaddr): Delete.
10180         (floatsidf2_store1): Delete.
10181         (floatsidf2_store2): Delete.
10182         (floatsidf2_load): Delete.
10183         (fix_truncdfsi2): Don't use the fpmem "register", just
10184         allocate a stack temporary.
10185         (fix_truncdfsi2_internal_si): Delete.
10186         (fix_truncdfsi2_internal_di): Delete.
10187         (fix_truncdfsi2_internal): New insn.
10188         (fix_truncdfsi2_internal+1): Don't use the fpmem "register".
10189         (fix_truncdfsi2_store): Delete.
10190         (fix_truncdfsi2_load): Delete.
10191         (fctiwz): Produce gen_fctiwz.
10192
10193         2000-01-19  Geoffrey Keating  <geoffk@cygnus.com>
10194
10195         * eabi.h (INVOKE__main): Define.
10196         * rs6000.c (rs6000_stack_info): Don't handle call to NAME__MAIN
10197         specially.
10198         (rs6000_emit_prologue): Likewise.
10199         * rs6000.h (struct rs6000_stack): Don't keep track of whether
10200         this is the main program.
10201
10202         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
10203
10204         * rs6000.c (rs6000_va_arg): Delete some unused variables.
10205
10206         2000-01-19  Geoff Keating  <geoffk@cygnus.com>
10207
10208         * rs6000.c (rs6000_va_arg): On AIX, padding for small arguments
10209         goes after the argument.
10210
10211         2000-01-12  Geoff Keating  <geoffk@cygnus.com>
10212
10213         * rs6000.md: Document 'unspec' values used.
10214         (epilogue): New expander.
10215         (movesi_to_cr_one): New expander.
10216         (movesi_to_cr and following): New pattern.
10217         (lmw): New pattern.
10218         (return_internal_si): New pattern.
10219         (return_internal_di): New pattern.
10220         (return_and_restore_fpregs_si): New pattern.
10221         (return_and_restore_fpregs_di): New pattern.
10222         * rs6000.h: Declare new functions.
10223         * rs6000.c (rs6000_stack_info): Use current_function_is_leaf
10224         rather than rs6000_calls_p.
10225         (rs6000_makes_calls): Delete.
10226         (lmw_operation): New function.
10227         (mtcrf_operation): New function.
10228         (rs6000_emit_epilogue): New function.
10229         (output_epilog): Call rs6000_emit_epilogue and final if
10230         !TARGET_SCHED_PROLOG, instead of writing text unconditionally.
10231
10232         2000-01-12  Geoff Keating  <geoffk@cygnus.com>
10233
10234         * aix43.h (SUBSUBTARGET_SWITCHES): Document switches.
10235         * aix41.h (SUBSUBTARGET_SWITCHES): Document switches.
10236         * aix.h (SUBTARGET_SWITCHES): Document switches.
10237         * rs6000.h: (TARGET_SWITCHES): Don't print options twice.  Make
10238         sched-prolog and sched-epilog the same.  Document all the
10239         switches.
10240         (TARGET_OPTIONS): No longer allow -mdebug-.
10241
10242         2000-01-12  Geoff Keating  <geoffk@cygnus.com>
10243
10244         * rs6000.h (ASM_FILE_END): Move to aix.h.
10245         (EXTRA_SECTIONS): Move to aix.h.
10246         (READONLY_DATA_SECTION): Move to aix.h.
10247         (EXTRA_SECTION_FUNCTIONS): Move to aix.h.
10248         (SELECT_SECTION): Move to aix.h.
10249         (JUMP_TABLES_IN_TEXT_SECTION): Move to aix.h.
10250         (INT_REGNO_P): Use symbolic name for ARG_POINTER_REGNUM.
10251         (LINK_REGISTER_REGNUM): New definition.
10252         (RETURN_ADDR_RTX): Use symbolic name for LINK_REGISTER_REGNUM.
10253         (SLOW_UNALIGNED_ACCESS): Define in a way suitable for both
10254         AIX and SVR4.
10255         * sysv4.h: Delete the code between the inclusion of rs6000.h
10256         and svr4.h.
10257         (DWARF_DEBUGGING_INFO): Don't define, it's defined in elfos.h.
10258         (FP_ARG_MAX_REG): Move generic definition to rs6000.h.
10259         (RS6000_REG_SAVE): Move generic definition to rs6000.h.
10260         (RS6000_SAVE_AREA): Move generic definition to rs6000.h.
10261         * rs6000.md (floatsidf2_loadaddr): The first arg here is Pmode.
10262         (fix_truncdfsi2_internal): Rename to fix_truncdfsi2_internal_si.
10263         (fix_truncdfsi2_internal_di): New pattern.
10264         (fix_truncdfsi2_store): The second arg here is Pmode too.
10265         (fix_truncdfsi2_load): The second arg here is Pmode too.
10266         (tablejumpdi): Now that switch tables hold only SImode values,
10267         gcc needs to know how to add them to the pc which is DImode.
10268         * rs6000.c (rs6000_stack_info): Use symbolic name for
10269         LINK_REGISTER_REGNUM.
10270         (output_mi_thunk) [!TARGET_ELF]: Don't define sp, it's not used.
10271         (output_toc): Delete unused variables s1 and s2.
10272         (output_ascii): Use fputs not fprintf on a variable string.
10273
10274         2000-01-07  David Edelsohn  <edelsohn@gnu.org>
10275
10276         * rs6000.c (processor_target_table): Add power3 as alias for 630.
10277         * aix43.h: Revert Aug 2 change.
10278         (HAS_INIT_SECTION): Define, not visible yet.
10279         (LD_INIT_SWITCH): Define, not visible yet.
10280         * t-aix43 (MULTILIB_OPTIONS): Revert Aug 2 change.
10281
10282         2000-01-04  Joel Sherrill (joel@OARcorp.com>
10283
10284         * config/rs6000/rtems.h: Include config/rtems.h.
10285
10286         2000-01-04  David Edelsohn  <edelsohn@gnu.org>
10287
10288         * rs6000.h (HANDLE_PRAGMA_PACK): Define.
10289         (SLOW_UNALIGNED_ACCESS): Define.
10290         (CASE_VECTOR_MODE): Always use 32-bit offsets.
10291         (ASM_FILE_END): Generate 64-bit symbol in 64-bit mode.
10292         (EXTRA_SECTOIN_FUNCTIONS): Indent .csect pseudo-op.
10293         (toc_section): Likewise and .toc pseudo-op.
10294         (ASM_DECLARE_FUNCTION): Likewise.  Align text more strictly in
10295         64-bit mode.
10296         (TEXT_SECTION_ASM_OP): Likewise.
10297         (ASM_OUTPUT_ADD_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Always use
10298         32-bit offsets.
10299
10300         1999-12-17  Jakub Jelinek  <jakub@redhat.com>
10301
10302         * config/rs6000/rs6000.h (TARGET_POWERPC64): Make sure
10303         UNITS_PER_WORD and BITS_PER_WORD are compile time constants when
10304         compiling libgcc2.
10305
10306         2000-01-06  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10307
10308         * rs6000.h: Move more stuff from here...
10309         * aix.h: to here.
10310         * sysv4.h: Cleanup accordingly.
10311         * netware.h: Likewise
10312
10313         2000-01-05  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
10314
10315         * rs6000.h: Continue cleanup.
10316         * aix.h: Likewise.
10317         * lynx.h: Likewise.
10318         * netware.h: Likewise.
10319         * sol2.h: Likewise.
10320         * sysv4.h: Likewise.
10321         * win-nt.h: Likewise.
10322
10323         * rs6000.h (TARGET_SWITCHES): Add descriptions.
10324         (TARGET_OPTIONS): Likewise.
10325
10326         * sysv4.h (SUBTARGET_SWITCHES): Add descriptions.
10327         (SUBTARGET_OPTIONS): Likewise.
10328
10329         * rs6000.md: Fix compile time warnings.
10330
10331         2000-01-04  Geoff Keating  <geoffk@cygnus.com>
10332
10333         vxworks patches from the Cygnus tree originally by
10334         Michael Meissner <meissner@cygnus.com> and Vladimir Makarov
10335         <vmakarov@cygnus.com>.
10336         * sysv4.h (SUBTARGET_SWITCHES): Add vxworks.
10337         (ENDFILE_SPEC): Likewise.
10338         (LIB_VXWORKS_SPEC): New macro.
10339         (STARTFILE_VXWORKS_SPEC): New macro.
10340         (ENDFILE_VXWORKS_SPEC): New macro.
10341         (LINK_START_VXWORKS_SPEC): New macro.
10342         (LINK_OS_VXWORKS_SPEC): New macro.
10343         (CPP_OS_VXWORKS_SPEC): New macro.
10344         (SUBTARGET_EXTRA_SPECS): Add all the vxworks specs.
10345         * vxppc.h: Rewrite to use proper configuration method.
10346         * vxppcle.h: New file.
10347         * ../../configure.in: Add powerpcle-wrs-vxworks*.
10348         * ../../configure: Rebuilt.
10349
10350         2000-01-04  Geoff Keating  <geoffk@cygnus.com>
10351
10352         Lots of changes to rs6000.h, sysv4.h, aix.h,
10353         aix31.h, aix3newas.h, aix41.h, aix43.h, beos.h,
10354         with the aim that rs6000.h is the first header
10355         included and the others override it.
10356         * aix.h: New file.
10357
10358         * x-aix41-gld: Remove.
10359         * x-aix43: Remove.
10360         * x-aix41: Remove target-specific switches, and don't specify
10361         -Wl,-bbigtoc as we don't need it any more.
10362         * ../../configure.in: Use x-aix41 for ppc AIX 4.1 and above.
10363         Use t-aix43 for AIX 4.3 and above.
10364         * ../../configure: Regenerated.
10365
10366         * rs6000.h (TARGET_SWITCHES): Add some initial prolog-scheduling
10367         options, that don't do anything yet.
10368         (MASK_SCHED_PROLOG): New macro.
10369         (MASK_SCHED_EPILOG): New macro.
10370         (TARGET_SCHED_PROLOG): New macro.
10371         (TARGET_SCHED_EPILOG): New macro.
10372
10373         2000-01-04  Geoff Keating  <geoffk@cygnus.com>
10374
10375         * rs6000.c: Correct comment, the `minimal' TOCs are actually
10376         one per translation unit, not one per function.
10377         (output_toc): Also do duplicate constant elimination
10378         for per-translation-unit TOCs.
10379
10380         * rs6000.md (nonlocal_goto_receiver): Put it back as before.  Add
10381         a comment explaining _exactly_ when this pattern gets used.
10382         (builtin_setjmp_receiver): New pattern for better clarity.
10383         (init_v4_pic): Move it into a section dealing with TOC registers.
10384
10385         1999-12-30  Geoff Keating  <geoffk@cygnus.com>
10386
10387         * rs6000.c (toc_hash_table): New variable.
10388         (rs6000_hash_constant): New function.
10389         (toc_hash_function): New function.
10390         (toc_hash_eq): New function.
10391         (toc_hash_mark_entry): New function.
10392         (toc_hash_mark_table): New function.
10393         (output_toc): Don't output duplicate TOC entries in
10394         a single file.
10395         (rs6000_add_gc_roots): Add the hash table as a GC root.
10396         * t-aix43: Move AR_FOR_TARGET and CLIB here from x-aix43,
10397         where they clearly shouldn't be.  This may need to be fixed
10398         later when there is a GNU ar for AIX.
10399         * x-aix43: Don't define CLIB or AR_FOR_TARGET.
10400         Don't define BOOT_LDFLAGS as it is now not necessary.
10401
10402         1999-12-29  Geoff Keating  <geoffk@cygnus.com>
10403
10404         * rs6000.c (rs6000_build_va_list): Use 'char *' rather than 'void *'
10405         for va_list on AIX.  Use unsigned_char_type_node rather than
10406         constructing our own version on svr4.
10407
10408         1999-12-17  Geoff Keating  <geoffk@cygnus.com>
10409
10410         * tramp.asm (__trampoline_size): Delete CYGNUS LOCAL comment,
10411         since patently it's not.
10412
10413         1999-12-08  Geoff Keating  <geoffk@cygnus.com>
10414
10415         * config/rs6000/rs6000.md (nonlocal_goto_receiver): Turn into
10416         define_expand/define_insn pair, and handle restore of the
10417         SVR4 -fpic register.
10418
10419 Wed Mar 15 15:43:38 2000  Jeffrey A Law  (law@cygnus.com)
10420
10421         * acconfig.h (HAVE_GAS_WEAK): New define.
10422         * configure.in (assembler weak support): Check for .weak support.
10423         * config.in, configure: Rebuilt.
10424         * pa/som.h (MAKE_DECL_ONE_ONLY, ASM_WEAKEN_LABEL): Only define if
10425         HAVE_GAS_WEAK is defined.
10426
10427 2000-03-15  Nick Clifton  <nickc@cygnus.com>
10428
10429         * config/arm/arm.c (arm_output_epilogue): Do not pass %c to
10430         asm_fprintf().
10431
10432 2000-03-15  Zack Weinberg  <zack@wolery.cumb.org>
10433
10434         * cppfiles.c (open_include_file): New function.
10435         (find_include_file, cpp_read_file): Use it.
10436
10437 2000-03-15  Jason Merrill  <jason@casey.cygnus.com>
10438
10439         * cpphash.c (dump_hash_helper): Take the slot, not the element.
10440
10441 Wed Mar 15 14:28:54 2000  Jason Eckhardt  <jle@cygnus.com>
10442
10443         * flow.c (verify_flow_info): Check for unconditional return.
10444
10445 Wed Mar 15 11:34:27 2000  Jim Wilson  <wilson@cygnus.com>
10446
10447         * config/ia64/ia64.md (restore_stack_nonlocal): New.
10448         * config/ia64/lib1funcs.asm (__ia64_nonlocal_goto): Delete padding nop.
10449         (__ia64_restore_stack_nonlocal): New.
10450         * config/ia64/t-ia64 (LIB1ASMFUNCS): Add __restore_stack_nonlocal.
10451
10452 2000-03-15  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
10453
10454         * cpphash.c (collect_formal_parameters): Do not complain about
10455         parameter names that just start with `__VA_ARGS__'.
10456
10457 Wed Mar 15 13:26:58 MET 2000  Jan Hubicka  <jh@suse.cz>
10458
10459         * i386.md (movhi_1): Promote movw imm, reg to movl imm, reg and
10460         movw reg, reg to movzwl reg, reg on PARTIAL_REGISTER_STALL machines.
10461         * i386.c (pentiumpro_cost): Set mul cost to 4.
10462         (x86_use_movx): Set for PPro.
10463
10464 Wed Mar 15 13:07:05 MET 2000  Jan Hubicka  <jh@suse.cz>
10465
10466         * i386.md (ix86_compute_frame_size): stack_alignment_needed is
10467         STACK_BOUNDARY for empty frames now.
10468
10469 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
10470
10471         * stor-layout.c (layout_union): Remove.
10472         (layout_union_field): New function, split out from layout_union.
10473         (finish_union_layout): Likewise.
10474         (layout_field): Handle unions by calling layout_union_field.
10475         (finish_record_layout): Handle unions.
10476         (layout_type): Combine RECORD_TYPE, UNION_TYPE, and
10477         QUAL_UNION_TYPE handling.
10478
10479 Wed Feb 23 13:00:06 CET 2000  Jan Hubicka  <jh@suse.cz>
10480
10481         * flow.c (fixup_reorder_chain): Avoid double labels in the basic block;
10482         end of basic block is jump_insn, not barrier; use create_basic_block
10483         instead of creating basic block by hand.
10484
10485 2000-03-14  Jason Eckhardt  <jle@cygnus.com>
10486
10487         * flow.c (reorder_basic_blocks): Account for barriers when writing
10488         over NEXT_INSN (last_bb->end).
10489         (verify_flow_info): Add check for missing barriers.
10490
10491 2000-03-14  Greg McGary  <gkm@gnu.org>
10492
10493         * c-lex.h (enum rid): Add RID_BOUNDED & RID_UNBOUNDED.
10494         * c-lex.c (init_lex): Handle RID_BOUNDED & RID_UNBOUNDED.
10495         * c-parse.gperf (__bounded, __bounded__, __ptrbase, __ptrbase__,
10496         __ptrextent, __ptrextent__, __ptrvalue, __ptrvalue__,
10497         __unbounded, __unbounded__): New keywords.
10498         * c-parse.in (PTR_VALUE PTR_BASE PTR_EXTENT): New tokens.
10499         * c-parse.y, c-parse.c, c-parse.h: Regenerate.
10500         * objc/objc-parse.y, objc/objc-parse.c: Regenerate.
10501
10502 2000-03-14  Bernd Schmidt  <bernds@cygnus.co.uk>
10503
10504         * cselib.h: New file.
10505         * alias.c: Include "cselib.h".
10506         (fixed_scalar_and_varying_struct_p): Accept the addresses of the
10507         MEMs as two new arguments.
10508         (get_addr): New static function.
10509         (find_base_term): Handle VALUEs.
10510         (memrefs_conflict_p): Likewise.
10511         (true_dependence): Call get_addr on the addresses.
10512         Call fixed_scalar_and_varying_struct_p with addresses that have been
10513         passed through get_addr and canon_rtx.
10514         (write_dependence_p): Move DIFFERENT_ALIAS_SETS_P test for consistency
10515         with true_dependence.
10516         Call get_addr on the addresses; don't call canon_rtx on the MEMs.
10517         * loop.c: Include "cselib.h".
10518         (load_mems): Process extended basic block that enters the loop with
10519         cselib.  Use that information to change initialization of the shadow
10520         register so that a constant equivalence is seen by later passes.
10521         * reload1.c: Include "cselib.h".
10522         (reload_cse_invalidate_regno): Delete function.
10523         (reload_cse_mem_conflict_p): Likewise.
10524         (reload_cse_invalidate_mem): Likewise.
10525         (reload_cse_invalidate_rtx): Likewise.
10526         (reload_cse_regno_equal_p): Likewise.
10527         (reload_cse_check_clobber): Likewise.
10528         (reload_cse_record_set): Likewise.
10529         (reg_values): Delete static variable.
10530         (invalidate_regno_rtx): Likewise.
10531         (reload_cse_delete_noop_set): New static function.
10532         (reload_cse_simplify): New static function, broken out of
10533         reload_cse_regs_1.
10534         (reload_cse_noop_set_p): Delete unused argument INSN.
10535         Just call rtx_equal_for_cselib_p on set source and destination.
10536         (reload_cse_regs_1): Break out some code into reload_cse_simplify and
10537         reload_cse_delete_noop_set.  Delete code to keep track of values; use
10538         cselib functions instead.  Delete code to push/pop obstacks.
10539         (reload_cse_simplify_set): Use cselib to find equivalent values.
10540         Delete code to push/pop obstacks.
10541         (reload_cse_simplify_operands): Likewise.
10542         * rtl.def (VALUE): New rtx code.
10543         * rtl.h (union rtunion_def): New elt rt_cselib.
10544         (X0CSELIB, CSELIB_VAL_PTR): New macros.
10545         * simplify_rtx.c: Include "ggc.h", "obstack.h", "cselib.h".
10546         (new_elt_list, new_elt_loc_list, unchain_one_value, clear_table,
10547         unchain_one_elt_list, unchain_one_elt_loc_list, check_useless_values,
10548         discard_useless_locs, discard_useless_values, entry_and_rtx_equal_p,
10549         hash_rtx, new_cselib_val, add_mem_for_addr, get_value_hash,
10550         cselib_lookup_mem, cselib_subst_to_values, cselib_invalidate_regno,
10551         cselib_mem_conflict_p, cselib_invalidate_mem, cselib_invalidate_rtx,
10552         cselib_record_set, cselib_record_sets): New static functions.
10553         (cselib_lookup, cselib_update_varray_sizes, cselib_init,
10554         cselib_finish, cselib_process_insn, rtx_equal_for_cselib_p,
10555         references_value_p): New functions.
10556         (MAX_USELESS_VALUES, REG_VALUES): New macros.
10557         (table, cselib_current_insn, next_unknown_value, cselib_nregs,
10558         n_useless_values, reg_values, callmem, cselib_obstack,
10559         cselib_startobj, empty_vals, empty_elt_lists, empty_elt_loc_lists):
10560         New static variables.
10561         * varray.h (union varray_data_tag): New elt te.
10562         (VARRAY_ELT_LIST_INIT, VARRAY_ELT_LIST): New macros.
10563         * Makefile.in (reload1.o, loop.o, simplify-rtx.o, alias.o): Update
10564         dependencies.
10565
10566 2000-03-14  Nick Clifton  <nickc@cygnus.com>
10567
10568         * gcc.c (do_spec_1): Catch the case where %* is used in a
10569         substitution pattern, but it has not been initialised.
10570         Issue a meaningful error message if an unrecognised operator
10571         is encountered in a spec string.
10572
10573 2000-03-14  Richard Earnshaw <rearnsha@arm.com>
10574
10575         * function.c (prepare_function_start): Correctly initialize
10576         cfun->stack_alignment_needed.
10577
10578 2000-03-14  Zack Weinberg  <zack@wolery.cumb.org>
10579
10580         * cppfiles.c (find_include_file): Don't assume nshort is a
10581         substring of name.
10582
10583 Tue Mar 14 08:42:21 2000  Jeffrey A Law  (law@cygnus.com)
10584
10585         * configure.in (hppa configurations): Add pa32-regs.h to the
10586         list of tm files as appropriate.
10587         * configure: Rebuilt.
10588         * pa.c (compute_frame_size): Remove explicit knowledge about FP
10589         register numbering.
10590         (hppa_expand_prologue, hppa_expand_epilogue): Likewise.
10591         (fmpyaddoperands, fmpysuboperands): Likewise.
10592         * pa.h: Remove various definitions which depend on knowing
10593         how registers are numbered.
10594         * pa32-regs.h: New file with PA32 register numbering specific
10595         definitions.
10596
10597 2000-03-14  Richard Henderson  <rth@cygnus.com>
10598
10599         * regmove.c (combine_stack_adjustments): New.
10600         (stack_memref_p, single_set_for_csa): New.
10601         (free_csa_memlist, record_one_stack_memref): New.
10602         (try_apply_stack_adjustment): New.
10603         (combine_stack_adjustments_for_block): New.
10604         * rtl.h (combine_stack_adjustments): Declare.
10605         * toplev.c (rest_of_compilation): Call it.
10606
10607         * i386.md: Revert 2000-01-16 change.
10608
10609 2000-03-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10610
10611         * gccbug.in: Add web category, gcc specific classes.
10612
10613 2000-03-14  Nathan Sidwell  <nathan@codesourcery.com>
10614
10615         * stor-layout.c (finalize_record_size): Fix typo.
10616
10617 2000-03-14  Stan Shebs  <shebs@apple.com>
10618
10619         * c-typeck.c (c_alignof): Error on incomplete types.
10620         * extend.texi (Alignment): Document this.
10621
10622 2000-03-13  Zack Weinberg  <zack@wolery.cumb.org>
10623
10624         * cppfiles.c: Include mkdeps.h.
10625         (find_include_file, read_include_file): Remove _cpp_ prefix
10626         from name, make static.
10627         (_cpp_execute_include): New function, broken out of
10628         do_include.
10629
10630         * cpplib.c: Don't include mkdeps.h.
10631         (struct directive): Remove type field. Reorder entries.  The
10632         function takes only one argument.
10633         (struct if_stack): Make type field an int.
10634         (directive_table): Rename to dtable.  Generate it, the
10635         prototypes of the directive handlers, and the enum for the
10636         directive numbers, from a template macro.
10637         (do_ifndef, do_include_next, do_import): New functions.
10638         (do_define, do_include, do_endif, do_ifdef, do_if, do_else,
10639         do_undef, do_line, do_elif, do_error, do_pragma, do_warning,
10640         do_ident, do_assert, do_unassert, do_sccs): Take only one
10641         argument.
10642         (do_sccs): Define always, but alter behavior based on
10643         SCCS_DIRECTIVE.
10644         (_cpp_handle_directive, consider_directive_while_skipping):
10645         Restructure for new directive table layout.
10646
10647         (pass_thru_directive): Take a directive number, not a pointer
10648         to a struct directive.
10649         (parse_include): New function, broken out of do_include.
10650         (do_include, do_import, do_include_next): Use parse_include
10651         and _cpp_execute_include.
10652         (do_elif, do_else): Test for T_ELSE specifically when checking
10653         for #elif/#else after #else.
10654         (parse_ifdef): New function, broken out of do_ifdef.
10655         (validate_else): Expect a name arg without a leading #.
10656         (if_directive_name): Delete.
10657         (cpp_define, cpp_assert, cpp_undef, cpp_unassert): Call
10658         directive handlers with only one argument.
10659
10660         * cpphash.h: Update prototypes.
10661         (enum node_type): Remove entries for directives.
10662         * Makefile.in: Update dependencies.
10663
10664         * cpphash.c (dump_hash_helper): Only dump nodes of type
10665         T_MACRO.  Emit a newline after each definition.
10666
10667 2000-03-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10668
10669         * gccbug.in: New file.
10670         * configure.in (all_outputs): Add gccbug.
10671         * Makefile.in (install-common): Install gccbug.
10672         (GCCBUG_INSTALL_NAME): New variable.
10673         * configure: Rebuilt.
10674
10675 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
10676
10677         * function.c (put_var_into_stack): Use type_for_mode to calculate
10678         part_type.  Use MEM_SET_IN_STRUCT_P.
10679         * expr.c (store_field): Handle CONCAT.
10680         (store_constructor): Use fields_length.
10681         * tree.c (fields_length): New fn.
10682         * tree.h: Declare it.
10683
10684 2000-03-13  Zack Weinberg  <zack@wolery.cumb.org>
10685
10686         * Makefile.in (LIBCPP_OBJS): Add cpplex.o.
10687         (cpplex.o): New target.
10688         * po/POTFILES.in: Add cpplex.c.
10689
10690         * cpplex.c (_cpp_grow_token_buffer, null_cleanup,
10691         cpp_push_buffer, cpp_pop_buffer, cpp_scan_buffer,
10692         cpp_expand_to_buffer, cpp_buf_line_and_col, cpp_file_buffer,
10693         skip_block_comment, skip_line_comment, skip_comment,
10694         copy_comment, _cpp_skip_hspace, _cpp_skip_rest_of_line,
10695         _cpp_parse_name, skip_string, parse_string,
10696         _cpp_parse_assertion, cpp_get_token, cpp_get_non_space_token,
10697         _cpp_get_directive_token, find_position,
10698         _cpp_read_and_prescan, _cpp_init_input_buffer): Move here.
10699         (maybe_macroexpand, _cpp_lex_token): New functions.
10700
10701         * cpplib.c (SKIP_WHITE_SPACE, eval_if_expr, parse_set_mark,
10702         parse_goto_mark): Delete.
10703         (_cpp_handle_eof): New function.
10704         (_cpp_handle_directive): Rename from handle_directive.
10705         (_cpp_output_line_command): Rename from output_line_command.
10706         (do_if, do_elif): Call _cpp_parse_expr directly.
10707         * cppfiles.c (_cpp_read_include_file): Don't call
10708         init_input_buffer here.
10709         * cpphash.c (quote_string): Move here, rename _cpp_quote_string.
10710         * cppexp.c (_cpp_parse_expr): Diddle parsing_if_directive
10711         here; pop the token_buffer and skip the rest of the line here.
10712         * cppinit.c (cpp_start_read): Call _cpp_init_input_buffer
10713         here.
10714
10715         * cpphash.h (CPP_RESERVE, CPP_IS_MACRO_BUFFER, ACTIVE_MARK_P):
10716         Define here.
10717         (CPP_SET_BUF_MARK, CPP_GOTO_BUF_MARK, CPP_SET_MARK,
10718         CPP_GOTO_MARK): New macros.
10719         (_cpp_quote_string, _cpp_parse_name, _cpp_skip_rest_of_line,
10720         _cpp_skip_hspace, _cpp_parse_assertion, _cpp_lex_token,
10721         _cpp_read_and_prescan, _cpp_init_input_buffer,
10722         _cpp_grow_token_buffer, _cpp_get_directive_token,
10723         _cpp_handle_directive, _cpp_handle_eof,
10724         _cpp_output_line_command): Prototype them here.
10725         * cpplib.h (enum cpp_token): Add CPP_MACRO.
10726         (CPP_RESERVE, get_directive_token, cpp_grow_buffer,
10727         quote_string, output_line_command): Remove.
10728
10729 2000-03-13  Bernd Schmidt  <bernds@cygnus.co.uk>
10730
10731         * stmt.c (expand_end_case): RANGE may be signed, and when checking
10732         whether it is too large we must also verify that it isn't negative.
10733
10734 2000-03-13  Jakub Jelinek  <jakub@redhat.com>
10735
10736         * config/sparc/sparc.md: Remove all traces of TARGET_LIVE_G0.
10737         (movsi_zero_liveg0): Remove.
10738         (movsf_insn_novis_liveg0): Remove.
10739         (negsi2): Remove.
10740         (negsi2_not_liveg0): Rename to negsi2.
10741         (one_cmplsi2): Remove.
10742         (one_cmplsi2_not_liveg0): Rename to one_cmplsi2.
10743         (one_cmplsi2_liveg0): Remove.
10744         * config/sparc/sparc.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE,
10745         MASK_LIVE_G0, MASK_BROKEN_SAVERESTORE): Remove.
10746         (CONDITIONAL_REGISTER_USAGE): Remove TARGET_LIVE_G0 if.
10747         (PREDICATE_CODES): Remove zero_operand.
10748         * config/sparc/sparc.c: Remove all traces of TARGET_LIVE_G0 and
10749         TARGET_BROKEN_SAVERESTORE.
10750         (zero_operand): Remove.
10751         * config/sparc/splet.h (SUBTARGET_SWITCHES): Remove -mlive-g0,
10752         -mno-live-g0, -mbroken-saverestore and -mno-broken-saverestore
10753         options.
10754         (SUBTARGET_OVERRIDE_OPTIONS): Remove.
10755         * config/sparc/linux-aout.h (TARGET_LIVE_G0,
10756         TARGET_BROKEN_SAVERESTORE): Remove.
10757         * config/sparc/linux.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
10758         Remove.
10759         * config/sparc/linux64.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
10760         Remove.
10761         * config/sparc/sol2.h (TARGET_LIVE_G0, TARGET_BROKEN_SAVERESTORE):
10762         Remove.
10763
10764         * config/sparc/sparc.md (return_df_no_fpu): New pattern.
10765
10766 2000-03-13  Zack Weinberg  <zack@wolery.cumb.org>
10767
10768         * cpplib.c (do_pragma_implementation): Fix off-by-one error
10769         truncating a string.  Don't assume tokens are nul terminated.
10770         Problem noted by Andreas Jaeger <aj@suse.de>
10771
10772 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
10773
10774         * dwarf2out.c (add_name_and_src_coords_attributes): Only add
10775         DW_AT_MIPS_linkage_name for TREE_PUBLIC decls.
10776         (ASM_OUTPUT_DWARF_ADDR_CONST): Don't output trailing newline.
10777
10778 2000-03-13  Richard Earnshaw <rearnsha@arm.com>
10779
10780         * stor-layout.c (new_record_layout_info): Fix typo inside ifdef
10781         STRUCTURE_SIZE_BOUNDARY.
10782
10783 2000-03-13  Mark Mitchell  <mark@codesourcery.com>
10784
10785         * tree.h (record_layout_info_s): New structure.
10786         (record_layout_info): New type.
10787         (new_record_layout_info): New function.
10788         (layout_field): Likewise.
10789         (finish_record_layout): Likewise.
10790         * stor-layout.c (layout_record): Remove.
10791         (new_record_layout_info): New function.
10792         (layout_field): New function, broken out from layout_record.
10793         (finalize_record_size): Likewise.
10794         (compute_record_mode): Likewise.
10795         (finalize_type_size): New function, broken out from layout_type.
10796         (finish_record_layout): Likewise.
10797         (layout_type): Use them.
10798
10799 2000-03-12  Zack Weinberg  <zack@wolery.cumb.org>
10800
10801         * cpphash.c: Don't include version.h.
10802         (special_symbol) [case T_VERSION]: Look for the string in
10803         hp->value.cpval; don't use version_string.
10804         * cppinit.c (initialize_builtins): Set hp->value.cpval for
10805         __VERSION__ to version_string.
10806         * Makefile.in (cpphash.o): Update deps.
10807
10808 2000-03-12  Zack Weinberg  <zack@wolery.cumb.org>
10809
10810         Convert cpplib to use libiberty/hashtab.c.
10811
10812         * cpplib.h (struct cpp_reader): Make hashtab and
10813         all_include_files of type 'struct htab *'.  Delete HASHSIZE
10814         and ALL_INCLUDE_HASHSIZE macros.
10815
10816         * cpphash.h: Update prototypes.
10817         (struct hashnode): Remove next, prev, and bucket_hdr members.
10818         Make length a size_t.  Add hash member.
10819         (struct ihash): Remove next member.  Add hash member.  Make
10820         name a flexible array member.
10821
10822         * cppfiles.c: Include hashtab.h.
10823         (include_hash): Delete.
10824         (IHASHSIZE): New macro.
10825         (hash_IHASH, eq_IHASH, _cpp_init_include_hash): New functions.
10826         (cpp_included): Do the hash lookup here.
10827         (_cpp_find_include_file): Rewrite.
10828         (cpp_read_file): Put the "fake" hash entry into the hash
10829         table.  Honor the control_macro, if it turns out we've seen
10830         the file before.  Don't push the buffer here.
10831         (_cpp_read_include_file): Push the buffer here.
10832         (OMODES): New macro.  Use it whenever we call open(2).
10833
10834         * cpphash.c: Include hashtab.h.
10835         (hash_HASHNODE, eq_HASHNODE, del_HASHNODE, dump_hash_helper,
10836         _cpp_init_macro_hash, _cpp_dump_macro_hash, _cpp_make_hashnode,
10837         _cpp_lookup_slot): New functions.
10838         (HASHSIZE): new macro.
10839         (hashf, _cpp_install, _cpp_delete_macro): Delete.
10840         (_cpp_lookup): Use hashtab.h routines.
10841
10842         * cppinit.c: Include hashtab.h.
10843         (cpp_reader_init): Call _cpp_init_macro_hash and
10844         _cpp_init_include_hash.  Don't allocate hashtab directly.
10845         (cpp_cleanup): Just call htab_delete on pfile->hashtab and
10846         pfile->all_include_files.
10847         (initialize_builtins): Use _cpp_make_hashnode and
10848         htab_find_slot to add hash entries.
10849         (cpp_finish): Just call _cpp_dump_macro_hash.
10850         * cpplib.c: Include hashtab.h.
10851         (do_define): Use _cpp_lookup_slot and _cpp_make_hashnode to
10852         create hash entries.
10853         (do_pragma_poison, do_assert): Likewise.
10854         (do_include): Don't push the buffer here.  Don't increment
10855         system_include_depth unless _cpp_read_include_file succeeds.
10856         (do_undef, do_unassert): Use _cpp_lookup_slot and htab_clear_slot
10857         or htab_remove_elt.
10858         (do_pragma_implementation): Use alloca to create copy.
10859
10860         * Makefile.in: Update dependencies.
10861
10862 2000-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10863
10864         * cppinit.c (cl_directive_handler): More K&R fixing.
10865
10866 Sat Mar 11 23:54:26 2000  Jim Wilson  <wilson@cygnus.com>
10867
10868         * config/ia64/ia64.c (ia64_compute_frame_size): Align size to
10869         STACK_BOUNDARY.
10870         * config/ia64/ia64.h (REGISTER_MOVE_COST): Add missing parentheses.
10871
10872 2000-03-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10873
10874         * cppinit.c (no_arg, no_ass, no_dir, no_fil, no_mac, no_pth):
10875         Change from char[] to macros.
10876
10877 2000-03-12  Neil Booth  <NeilB@earthling.net>
10878
10879         * cppinit.c (cpp_start_read): Update indirect function
10880         call to K&R C.
10881
10882 Sat Mar 11 16:18:12 2000  Jim Wilson  <wilson@cygnus.com>
10883
10884         * config/ia64/ia64.h (ADDITIONAL_REGISTER_NAMES): Fix typo in loc79
10885         entry.
10886
10887         * config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
10888         config/ia64/ia64.md, config/ia64/xm-ia64.h: Fix copyright messages.
10889
10890 2000-03-11  Neil Booth  <NeilB@earthling.net>
10891
10892         * cppinit.c (struct pending option): Replace undef with a
10893         pointer to a directive handling routine.
10894         (struct cpp_pending): Replace separate assert_ and define_
10895         lists with one directive_ list.
10896         (new_pending_define): Rename new_pending_directive. Extra
10897         argument is the directive's handling routine.
10898         (handle_option): Update to use new_pending_directive.
10899
10900 2000-03-11  Neil Booth  <NeilB@earthling.net>
10901
10902         * cppfiles.c (file_cleanup, _cpp_find_include_file,
10903         remap_filename, _cpp_read_include_file, actual_directory,
10904         hack_vms_include_specification): Replace bcopy(), index() etc
10905         calls.  Add casts to some allocations.  Make some variables
10906         pointers to const [unsigned] char.
10907         * cpphash.c (_cpp_install, macro_cleanup, collect_expansion,
10908         collect_formal_parameters): Similarly.
10909         * cppinit.c (struct pending_option, append_include_chain,
10910         cpp_options_init, cpp_reader_init, initialize_standard_includes,
10911         cpp_start_read, new_pending_define, handle_option): Similarly.
10912         * cpplib.c (cpp_define, copy_comment, do_define, do_include,
10913         do_undef, do_error, do_warning, do_pragma, do_pragma_once,
10914         do_pragma_implementation, detect_if_not_defined,
10915         do_ifdef, skip_if_group, cpp_get_token, parse_string,
10916         do_assert, do_unassert): Similarly.
10917         * cpplib.h (cpp_buffer, cpp_options): Update types.  Update
10918         function prototypes.
10919         * mkdeps.c (deps_add_target, deps_add_dep): cast allocations.
10920
10921 2000-03-10  Richard Henderson  <rth@cygnus.com>
10922
10923         * builtins.c (expand_builtin_strlen): Revert last change.
10924         Use emit_insn_before if we're at the beginning of a sequence.
10925
10926 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
10927
10928         * builtins.c (expand_builtin_strlen): Make sure that we have something
10929         at the beginning of the sequence.
10930
10931         * toplev.c (rest_of_compilation): Also set TREE_NOTHROW for
10932         deferred inlines.
10933
10934         * invoke.texi (C++ Dialect Options): Document -fno-enforce-eh-specs.
10935
10936 2000-03-10  Richard Henderson  <rth@cygnus.com>
10937
10938         * except.c (can_throw): Use INTVAL on a CONST_INT.
10939         (reachable_handlers): Likewise.
10940         * flow.c (count_basic_blocks, find_basic_blocks_1): Likewise.
10941
10942 2000-03-10  Andreas Jaeger  <aj@suse.de>
10943
10944         * config/mips/linux.h: Undefine MD_EXEC_PREFIX and
10945         MD_STARTFILE_PREFIX since those are not needed on linux.
10946         (ASM_FILE_START): New, from mips/gnu.h.
10947
10948 2000-03-09  Richard Henderson  <rth@cygnus.com>
10949             Alex Samuel  <samuel@codesourcery.com> and others
10950
10951         * Makefile.in (ssa.o): New rule.
10952         (OBJS): Add ssa.o.
10953         (STAGESTUFF): Add *.ssa and *.ussa.
10954         (mostlyclean): Delete *.ssa, *.ussa, */*.ssa, */*.ussa.
10955         * rtl.def (PHI): New RTL expression.
10956         * rtl.h (clear_log_links): New declaration.
10957         (convert_to_ssa): Likewise.
10958         (convert_from_ssa): Likewise.
10959         * flow.c (split_edge): If the entry node falls through to the
10960         split edge's source block, split the entry edge.
10961         (clear_log_links): New function.
10962         * toplev.c (ssa_dump): New variable.
10963         (flag_ssa): Likewise.
10964         (f_options): Add "ssa".
10965         (compile_file): Create SSA dump files.
10966         (rest_of_compilation): Go to and from SSA if enabled.
10967         (decide_d_option): Handle -de for SSA dump files.
10968         * ssa.c: New file.
10969
10970 Thu Mar  9 20:01:38 2000  Jim Wilson  <wilson@cygnus.com>
10971
10972         * expr.c (expand_assignment): For a CALL_EXPR, special case PARM_DECL
10973         same as VAR_DECL.
10974
10975 2000-03-09  Benjamin Kosnik  <bkoz@cygnus.com>
10976
10977         * config/alpha/linux.h (WCHAR_TYPE): Make consistent.
10978
10979 Thu Mar  9 18:10:02 2000  Jeffrey A Law  (law@cygnus.com)
10980
10981         * config/pa/pa-hpux10.h (LIB_SPEC): Correct typo in !p case.
10982         (MD_STARTFILE_PREFIX_1): New macro.
10983
10984 2000-03-09  Robert Lipe  <robertl@sco.com>
10985
10986         * config/ia64/ia64.c: Include system.h.
10987
10988 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
10989
10990         * except.c (nothrow_function_p): If -fno-exceptions, just return.
10991         (init_eh_nesting_info): Likewise.
10992
10993         * tree.h (struct tree_common): Rename raises_flag to nothrow_flag.
10994         (TREE_NOTHROW): Rename from TREE_RAISES.
10995         * toplev.c (rest_of_compilation): Set it.
10996         * print-tree.c (print_node): Adjust.
10997         * tree.c (stabilize_reference, build, build1): Don't set TREE_RAISES.
10998         (stabilize_reference_1, get_unwidened, get_narrower): Likewise.
10999         * calls.c (emit_call_1): Add 'nothrow' parm.  Add
11000         REG_EH_REGION note as appropriate.
11001         (libfunc_nothrow): New fn.
11002         (emit_library_call, emit_library_call_value): Use it.
11003         (expand_call): Check TREE_NOTHROW.
11004
11005         * varasm.c (make_decl_rtl): Skip initial '*' when setting
11006         DECL_ASSEMBLER_NAME.
11007
11008 2000-03-09  Andreas Jaeger  <aj@suse.de>
11009
11010         * mips/linux.h (NO_IMPLICIT_EXTERN_C): Define.
11011         (TARGET_MEM_FUNCTIONS): Define.
11012
11013 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
11014
11015         * i386.c (ix86_valid_type_attribute_p): Use compare_tree_int.
11016
11017         * except.c (can_throw): See through a SEQUENCE.
11018         (nothrow_function_p): New fn.
11019         * except.h: Declare it.
11020         * function.c (current_function_nothrow): New var.
11021         (prepare_function_start): Initialize it.
11022         * output.h: Declare it.
11023         * toplev.c (rest_of_compilation): Set it.
11024         * dwarf2out.c (dwarf2out_begin_prologue): Use it.
11025
11026 2000-03-09  Zack Weinberg  <zack@wolery.cumb.org>
11027
11028         * cpphash.c (collect_formal_parameters): strncmp returns 0 for
11029         match.  (cpp_compare_defs): Count the nul separator when
11030         advancing over argument names.
11031
11032 2000-03-09  Bernd Schmidt  <bernds@cygnus.co.uk>
11033
11034         * recog.c (preprocess_constraints): Matching constraints affect
11035         same alternative/different operand, not same operand/different
11036         alternative.
11037
11038         * reload1.c (eliminate_regs_in_insn): Handle additions of eliminable
11039         register and a constant specially.
11040
11041 2000-03-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11042
11043         * libgcc2.h: New file.
11044         * libgcc2.c: Move macros, typedefs and prototypes to libgcc2.h.
11045
11046 Wed Mar  8 16:19:42 2000  Jim Wilson  <wilson@cygnus.com>
11047
11048         * configure.in (ia64*-*-elf*, ia64*-*-linux*): New.
11049         * configure: Regenerate.
11050         * config/ia64: New.
11051
11052 2000-03-08  Zack Weinberg  <zack@wolery.cumb.org>
11053
11054         * Makefile.in (LIBCPP_DEPS): New macro.
11055         (cpplib.o, cpphash.o, cpperror.o, cppexp.o, cppfiles.o): Use
11056         it to declare deps.
11057         * cpperror.c: Include cpphash.h.
11058         * cppexp.c: Include cpphash.h.  Remove MULTIBYTE_CHARS
11059         dingleberry.
11060         (lex): Don't use CPP_WARN_UNDEF.
11061         (_cpp_parse_expr): Return an int, the truth value.
11062         * cppfiles.c: Include cpphash.h.
11063         (_cpp_merge_include_chains): Move to cppinit.c and make static.
11064         * cppinit.c (include_defaults_array): Disentangle.
11065         (cpp_cleanup): Don't free the if stack here.
11066         (cpp_finish): Pop off all buffers, not just one.
11067         * cpplib.c (eval_if_expr): Return int.
11068         (do_xifdef): Rename do_ifdef.
11069         (handle_directive): Don't use CPP_PREPROCESSED.
11070         (cpp_get_token): Don't use CPP_C89.
11071         * fix-header.c: Don't use CPP_OPTIONS.
11072
11073         * cpplib.h: Move U_CHAR, enum node_type, struct
11074         file_name_list, struct ihash, is_idchar, is_idstart,
11075         is_numchar, is_numstart, is_hspace, is_space, CPP_BUF_PEEK,
11076         CPP_BUF_GET, CPP_FORWARD, CPP_PUTS, CPP_PUTS_Q, CPP_PUTC,
11077         CPP_PUTC_Q, CPP_NUL_TERMINATE, CPP_NUL_TERMINATE_Q,
11078         CPP_BUMP_BUFFER_LINE, CPP_BUMP_LINE, CPP_PREV_BUFFER,
11079         CPP_PRINT_DEPS, CPP_TRADITIONAL, CPP_PEDANTIC, and prototypes
11080         of _cpp_simplify_pathname, _cpp_find_include_file,
11081         _cpp_read_include_file, and _cpp_parse_expr to cpphash.h.
11082         Move struct if_stack to cpplib.c.  Move struct cpp_pending to
11083         cppinit.c.
11084         Change all uses of U_CHAR to be unsigned char instead.
11085         Delete CPP_WARN_UNDEF, CPP_C89, and CPP_PREPROCESSED.
11086
11087 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
11088
11089         * dwarf2out.c (dw_fde_struct): Add 'nothrow'.
11090         (dwarf2out_begin_prologue): Set it.
11091         (output_call_frame_info): Don't emit EH unwind info for leaves.
11092
11093         * flow.c (count_basic_blocks, find_basic_blocks_1): A rethrow
11094         can occur outside of an EH region.
11095         * except.c: Correct comments about rethrow behavior.
11096         (rethrow_symbol_map): Do nothing if !flag_new_exceptions.
11097
11098 2000-03-08  Andrew MacLeod  <amacleod@cygnus.com>
11099
11100         * flow.c (make_edges): Always call make_eh_edge for calls.
11101
11102 2000-03-08  Zack Weinberg  <zack@wolery.cumb.org>
11103
11104         * cpplib.h (parse_underflow_t, CPP_NULL_BUFFER): Delete.
11105         (struct cpp_buffer): Remove fname and underflow fields.
11106         (struct cpp_reader): Remove get_token field.
11107         (struct include_hash): Rename to struct ihash.  Add typedef to
11108         IHASH.
11109         (struct if_stack): Remove fname field.
11110         (IF_STACK_FRAME): Rename to IF_STACK.
11111
11112         * cpperror.c (print_containing_files): Trust that there are no
11113         macro buffers below the top file buffer.
11114         * cppfiles.c: Replace all references to 'struct include_hash'
11115         with 'IHASH'.  Rename initialize_input_buffer to
11116         init_input_buffer.  Don't set or reference cpp_buffer->fname,
11117         use buffer->ihash->name instead.
11118         * cpphash.c (special_symbol): Use cpp_file_buffer.  Use NULL
11119         not CPP_NULL_BUFFER.
11120         * cppinit.c: Use NULL not CPP_NULL_BUFFER, IF_STACK not
11121         IF_STACK_FRAME, IHASH not struct include_hash.
11122         * cpplib.c: Rename eval_if_expression to eval_if_expr.  Remove
11123         null_underflow.  Use IF_STACK not IF_STACK_FRAME, IHASH not
11124         struct include_hash, NULL not CPP_NULL_BUFFER.  Remove all
11125         references to cpp_buffer->fname (delete entirely, or use
11126         ->ihash->name instead) and IF_STACK->fname.
11127         (cpp_push_buffer): Don't set new->underflow.
11128         (do_include): Use cpp_file_buffer.
11129
11130         * cpphash.c (collect_formal_parameters): Remove duplicate
11131         increment of argslen.  Pedwarn in C99 mode if __VA_ARGS__ is
11132         used as a macro argument name.  Don't append "..." to namebuf
11133         for varargs macros.  After we're done scanning, go through
11134         namebuf and make it NUL separated, not comma separated.
11135         (_cpp_compare_defs): Remove register tag from variables.
11136         Expect defn->argnames to be NUL separated.
11137         (_cpp_dump_definition): Expect defn->argnames to be NUL
11138         separated and in forward order.
11139         * cpphash.h: Update documentation of argnames field.
11140
11141 2000-03-08  Richard Henderson  <rth@cygnus.com>
11142
11143         * builtins.c (expand_builtin_strlen): Be prepared for strlensi
11144         to fail.  Don't pre-expand the source operand.
11145
11146         * i386.md (strlensi): Initialize eoschar and align before use.
11147
11148 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
11149
11150         * expr.c (expand_expr, case ARRAY_REF): Still check for missing
11151         CONSTRUCTOR element.
11152
11153 2000-03-08  Gavin Romig-Koch  <gavin@cetus.cygnus.com>
11154
11155         * mips.c (mips_expand_prologue): If the last
11156         named argument is the vararg marker "va_list", treat it as
11157         an unnamed argument.
11158
11159 2000-03-08  Clinton Popetz  <cpopetz@cygnus.com>
11160
11161         * dbxout.c (dbxout_parms): When correcting for promoted
11162         big-endian parameters, use the mode of the DECL_RTL rather
11163         than UNITS_PER_WORD.
11164
11165 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
11166
11167         * c-common.h (make_fname_decl): Declare.
11168         * c-common.c (make_fname_decl): Define.
11169         (declare_hidden_char_array): Remove.
11170         (declare_function_name): Use make_fname_decl.
11171         * c-decl.c (c_make_fname_decl): New function.
11172         (init_decl_processing): Set make_fname_decl.
11173
11174 Tue Mar  7 23:50:31 2000  Jeffrey A Law  (law@cygnus.com)
11175
11176         * cccp.c (handle_directive): Initialize backslash_newlines_p.
11177
11178 2000-03-07  Philipp Thomas  <pthomas@suse.de>
11179
11180         * po/POTFILES.in: Remove cppalloc.c from file list.
11181
11182 2000-03-07  Steve Chamberlain  <sac@pobox.com>
11183
11184         * pj.c (pj_expand_prologue): current_function->args_info is
11185         now current_function_args_info.
11186
11187         * pj.h (STORE_FLAG_VALUE, USER_LABEL_PREFIX,
11188         LOCAL_LABEL_PREFIX, ASM_GENERATE_INTERNAL_LABEL,
11189         ASM_OUTPUT_INTERNAL_LABEL, ASM_OUTPUT_SKIP): Define.
11190
11191 2000-03-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11192
11193         * config/c4x/c4x.h (PUT_SDB_TYPE): Define so that the type info is
11194         output as hexadecimal rather than the default octal.
11195
11196 2000-03-07  Zack Weinberg  <zack@wolery.cumb.org>
11197
11198         * cpphash.c (special_symbol): Fix thinko in previous commit.
11199
11200 2000-03-07  Neil Booth  <NeilB@earthling.net>
11201
11202         * cppexp.c (struct operation, left_shift, right_shift,
11203         cpp_parse_expr): Change some "char"s to "U_CHAR"s, and some
11204         "int"s to "unsigned int"s.
11205         * cpplib.c (detect_if_not_defined, do_assert, do_unassert):
11206         Similarly.
11207         * cpplib.h: Update for above.
11208         * mkdeps.c (deps_init, deps_calc_target): Cast pointers
11209         returned from allocations.
11210
11211         * cppinit.c (opt_comp, parse_options): New functions.
11212         (handle_option): Use parse_option to parse a single command
11213         line option, that possibly takes an argument.
11214         (cpp_handle_options): Sort the array of command line options on
11215         first invocation (non-ASCII hosts only).
11216         (print_help): Update.
11217
11218 2000-03-07  Zack Weinberg  <zack@wolery.cumb.org>
11219
11220         * mkdeps.c (munge): Fix off-by-one bug and inconsistencies in
11221         backslash counting loops.  Problem noted by Matt Kraai <kraai@ghs.com>.
11222
11223         * cppfiles.c (_cpp_find_include_file): Make sure ih->name is
11224         initialized.
11225         * cppinit.c (cpp_cleanup): Free imp->nshort also.
11226
11227         * cpperror.c (cpp_print_containing_files,
11228         cpp_print_file_and_line, v_cpp_message): Rename to
11229         print_containing_files, print_file_and_line, and v_message.
11230         * cppexp.c (cpp_parse_expr, cpp_parse_escape, cpp_lex): Rename
11231         to _cpp_parse_expr, parse_escape, and lex.
11232         (parse_charconst): Remove broken multibyte support.
11233         * cppfiles.c (include_hash): Make static.
11234         (cpp_included): New function.
11235         (merge_include_chains, find_include_file, finclude,
11236         simplify_pathname): Rename to _cpp_merge_include_chains,
11237         _cpp_find_include_file, _cpp_read_include_file, and
11238         _cpp_simplify_pathname.
11239         * cpphash.c (cpp_lookup, free_definition, delete_macro,
11240         cpp_install, create_definition, macroexpand, compare_defs,
11241         dump_definition): Rename to _cpp_lookup, _cpp_free_definition,
11242         _cpp_delete_macro, _cpp_install, _cpp_create_definition,
11243         _cpp_macroexpand, _cpp_compare_defs, and _cpp_dump_definition.
11244         * cppinit.c (cpp_handle_option): Rename to handle_option, make
11245         static.
11246         * cpplib.c: Remove extern prototype of cpp_parse_expr.
11247
11248         * cpphash.h: Update prototypes.
11249         * cpplib.h: Likewise.  Prototype _cpp_parse_expr here.
11250
11251 2000-03-07  Andrew Haley  <aph@cygnus.com>
11252
11253         * config/mips/mips.h (PTRDIFF_TYPE): Revert broken change;
11254         PTRDIFF_TYPE should be based solely on Pmode.
11255         (SIZE_TYPE): ditto.
11256
11257 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11258
11259         * rtl.h (rtunion_def): Constify member `rtstr'.
11260         (emit_line_note_after, emit_line_note, emit_line_note_force,
11261         emit_note, decode_asm_operands): Constify.
11262
11263         * cse.c (canon_hash): Likewise.
11264
11265         * dbxout.c (dbxout_block): Likewise.
11266
11267         * diagnostic.c (file_and_line_for_asm, v_error_for_asm,
11268         v_warning_for_asm): Likewise.
11269
11270         * dwarfout.c (function_start_label): Likewise.
11271
11272         * emit-rtl.c (emit_line_note_after, emit_line_note, emit_note,
11273         emit_line_note_force): Likewise.
11274
11275         * final.c (last_filename, asm_insn_count, final_scan_insn,
11276         output_source_line): Likewise.
11277
11278         * function.h (struct emit_status): Likewise.
11279
11280         * gcse.c (hash_expr_1): Likewise.
11281
11282         * genattr.c (gen_attr, main): Likewise.
11283
11284         * genattrtab.c (struct function_unit, current_alternative_string,
11285         write_attr_valueq, n_comma_elts, next_comma_elt, attr_eq,
11286         attr_numeral, check_attr_test, check_attr_value,
11287         convert_set_attr_alternative, convert_set_attr,
11288         compute_alternative_mask, simplify_by_exploding, gen_attr,
11289         gen_unit): Likewise.
11290
11291         * genflags.c (gen_insn): Likewise.
11292
11293         * gengenrtl.c (type_from_format): Likewise.
11294
11295         * genopinit.c (gen_insn): Likewise.
11296
11297         * genoutput.c (n_occurrences, process_template, process_template):
11298         Likewise.
11299
11300         * ggc-page.c (ggc_set_mark, ggc_mark_if_gcable, ggc_get_size):
11301         Likewise.
11302
11303         * ggc-simple.c (ggc_set_mark, ggc_mark_if_gcable, ggc_get_size):
11304         Likewise.
11305
11306         * ggc.h (ggc_mark_string, ggc_mark, ggc_mark_if_gcable,
11307         ggc_set_mark, ggc_get_size): Likewise.
11308
11309         * objc/objc-act.c (build_module_descriptor, finish_objc): Likewise.
11310
11311         * optabs.c (init_one_libfunc): Likewise.
11312
11313         * output.h (assemble_start_function): Likewise.
11314
11315         * recog.c (decode_asm_operands): Likewise.
11316
11317         * toplev.c (rest_of_compilation): Likewise.
11318
11319         * tree.h (emit_line_note_after, emit_line_note,
11320         emit_line_note_force): Likewise.
11321
11322         * varasm.c (asm_output_bss, asm_output_aligned_bss,
11323         asm_emit_uninitialised, assemble_start_function,
11324         assemble_variable, const_hash, compare_constant_1,
11325         find_pool_constant, mark_constant_pool, assemble_alias): Likewise.
11326
11327         * xcoffout.h (DBX_FINISH_SYMBOL): Likewise.
11328
11329         * alpha/alpha.md (call_vms, call_value_vms): Likewise.
11330
11331         * arm/aof.h (ASM_OUTPUT_ASCII): Likewise.
11332
11333         * arm/aout.h (ASM_OUTPUT_ASCII): Likewise.
11334
11335         * arm/arm-protos.h (output_ascii_pseudo_op, arm_dllexport_name_p,
11336         arm_dllimport_name_p): Likewise.
11337
11338         * arm/arm.c (arm_encode_call_attribute, output_ascii_pseudo_op):
11339         Likewise.
11340
11341         * arm/arm.h (ASM_OUTPUT_MI_THUNK): Likewise.
11342
11343         * arm/elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11344
11345         * arm/pe.c (arm_dllexport_name_p, arm_dllimport_name_p,
11346         arm_mark_dllexport, arm_mark_dllimport,
11347         arm_pe_encode_section_info): Likewise.
11348
11349         * arm/telf.h (ASM_OUTPUT_DEF_FROM_DECLS,
11350         ASM_FINISH_DECLARE_OBJECT): Likewise.
11351
11352         * arm/thumb.c (thumb_function_prologue): Likewise.
11353
11354         * arm/thumb.h (ASM_OUTPUT_ASCII): Likewise.
11355
11356         * avr/avr.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11357
11358         * clipper/clix.h (ASM_OUTPUT_ASCII): Likewise.
11359
11360         * fx80/fx80.h (ASM_OUTPUT_ASCII): Likewise.
11361
11362         * i386/cygwin.h (ASM_OUTPUT_SECTION_NAME): Likewise.
11363
11364         * i386/freebsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11365
11366         * i386/i386-interix.h (ASM_OUTPUT_LIMITED_STRING,
11367         ASM_OUTPUT_ASCII, ASM_OUTPUT_SECTION_NAME): Likewise.
11368
11369         * i386/i386-protos.h (asm_output_function_prefix): Likewise.
11370
11371         * i386/i386.c (asm_output_function_prefix): Likewise.
11372
11373         * i386/i386elf.h (ASM_OUTPUT_ASCII): Likewise.
11374
11375         * i386/osfrose.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11376
11377         * i386/ptx4-i.h (ASM_OUTPUT_ASCII): Likewise.
11378
11379         * i386/sco5.h (ASM_FINISH_DECLARE_OBJECT,
11380         ASM_OUTPUT_LIMITED_STRING, ASM_OUTPUT_ASCII,
11381         ASM_OUTPUT_SECTION_NAME): Likewise.
11382
11383         * i386/sysv4.h (ASM_OUTPUT_ASCII): Likewise.
11384
11385         * i860/paragon.h (ASM_OUTPUT_ASCII): Likewise.
11386
11387         * i860/sysv3.h (ASM_OUTPUT_ASCII): Likewise.
11388
11389         * m32r/m32r.c (m32r_encode_section_info): Likewise.
11390
11391         * mcore-elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11392
11393         * mcore/mcore.c (mcore_encode_section_info): Likewise.
11394
11395         * mips/elf.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11396
11397         * mips/elf64.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11398
11399         * mips/iris6.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11400
11401         * mips/mips.h (ASM_OUTPUT_IDENT): Likewise.
11402
11403         * mips/mips.md (movdi, movsi): Likewise.
11404
11405         * mips/netbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11406
11407         * netbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11408
11409         * openbsd.h (ASM_FINISH_DECLARE_OBJECT): Likewise.
11410
11411         * ptx4.h (ASM_FINISH_DECLARE_OBJECT, ASM_OUTPUT_LIMITED_STRING,
11412         ASM_OUTPUT_ASCII): Likewise.
11413
11414         * rs6000/rs6000.c (rs6000_allocate_stack_space, output_epilog,
11415         output_mi_thunk, output_toc): Likewise.
11416
11417         * rs6000/rs6000.md (movsi): Likewise.
11418
11419         * rs6000/sysv4.h (ASM_OUTPUT_INT, ASM_OUTPUT_SECTION_NAME): Likewise.
11420
11421         * tahoe/harris.h (ASM_OUTPUT_ASCII): Likewise.
11422
11423         * v850/v850.c (print_operand, print_operand_address,
11424         v850_encode_data_area): Likewise.
11425
11426 2000-03-07  Clinton Popetz  <cpopetz@cygnus.com>
11427
11428         * config/mips/mips.md (zero_extendsidi2): Always force operand
11429         one to memory for mips16.
11430
11431 Mon Mar  6 15:22:29 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11432
11433         * tree.h (INT_CST_LT, INT_CST_LT_UNSIGNED): Remove unneeded casts.
11434         (struct tree_int_cst): int_cst_low is now unsigned HOST_WIDE_INT.
11435         (attribute_hash_list, type_hash_canon): hashcode is now unsigned.
11436         (type_hash_lookup, type_hash_add, type_hash_list): Likewise.
11437         (min_precision): Result is unsigned.
11438         (add_double, neg_double, mul_double): Low word is unsigned.
11439         (lshift_double, rshift_double, lrotate_double): Likewise.
11440         (rrotate_double, div_and_round_double): Likewise.
11441         (tree_floor_log2, compare_tree_int): New functions.
11442         (preserve_rtl_expr_temps): New declaration.
11443         * c-common.c (declare_hidden_char_array): Use compare_tree_int.
11444         (decl_attributes): Use tree_log2 to find alignment.
11445         Check for TREE_INT_CST_HIGH for format args.
11446         (min_precision): Now unsigned.
11447         Use tree_floor_log2.
11448         (truthvalue_conversion): Delete long-disabled code.
11449         * c-decl.c (finish_struct): Clean up tests on field width.
11450         (finish_function): Use compare_tree_int.
11451         * c-pragma.c (handle_pragma_token): Use tree_log2 for alignment.
11452         * c-typeck.c (comptypes): Use tree_int_cst_equal.
11453         (default_conversion, digest_init): Use compare_tree_int.
11454         (build_binary_op): Use integer_all_onesp and compare_tree_int.
11455         Fix type errors in forming masks.
11456         * calls.c (initialize_argument_information): Use compare_tree_int.
11457         * dbxout.c (dbxout_type): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
11458         * except.c (expand_eh_region_start_tree): Use compare_tree_int.
11459         * expr.c (is_zeros_p, case INTEGER_CST): Use integer_zerop.
11460         (store_field): Use compare_tree_int.
11461         (expand_expr, case CONSTRUCTOR): Use TYPE_SIZE_UNIT.
11462         (expand_expr, case ARRAY_REF): Use compare_tree_int.
11463         (do_jump, case BIT_AND_EXPR): Use tree_floor_log2.
11464         (do_store_flag): Use compare_tree_int.
11465         * fold-const.c (encode, decode): Low part is always unsigned.
11466         (force_fit_type, add_double, neg_double, mul_double): Likewise.
11467         (lshift_double, rshift_double, lrotate_double): Likewise.
11468         (rrotate_double, div_and_round_double, int_const_binop): Likewise.
11469         (fold_convert): Use compare_tree_int.
11470         (operand_equal_p, case INTEGER_CST): Use tree_int_cst_equal.
11471         (invert_truthvalue, case INTEGER_CST): Likewise.
11472         (fold): Use compare_tree_int; add casts for unsigned TREE_INT_CST_LOW.
11473         * mkdeps.c (deps_dummy_targets): Make I unsigned.
11474         * rtl.h (add_double, neg_double, mul_double): Low words are unsigned.
11475         (lshift_double, rshift_double, lrotate_double, rrotate_double):
11476         Likewise.
11477         * stmt.c (expand_decl): Use compare_tree_int and mode_for_size_tree.
11478         (expand_end_case): Use compare_tree_int.
11479         (estimate_case_costs): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
11480         * stor-layout.c (mode_for_size_tree): Use compare_tree_int.
11481         (layout_decl): Likewise.
11482         (layout_record, layout_union): Make sizes unsigned.
11483         (layout_type, case VOID_TYPE): TYPE_SIZE must be bitsizetype.
11484         (layout_type, case QUAL_UNION_TYPE): Use compare_tree_int.
11485         * tree.c (struct type_hash): hashcode is unsigned.
11486         (build_type_attribute_variant, type_hash_list): Likewise.
11487         (type_hash_lookup, type_hash_add, type_hash_canon): Likewise.
11488         (attribute_hash_list, build_array_type, build_method_type): Likewise.
11489         (build_complex_type): Likewise.
11490         (real_value_from_int_cst): Remove unneeded casts.
11491         (integer_all_onesp): Add casts.
11492         (tree_floor_log2, compare_tree_int): New functions.
11493         (build_index_type): Use tree_int_cst_sgn.
11494         * varasm.c (assemble_variable): Use compare_tree_int.
11495
11496 2000-03-06  Jason Merrill  <jason@casey.cygnus.com>
11497
11498         * cpphash.c (collect_expansion): Also catch ## at start of macro.
11499
11500         * varasm.c (make_decl_rtl): Don't add a number to members of
11501         local classes.
11502         (make_function_rtl): Likewise.
11503
11504 2000-03-06  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
11505
11506         * gcse.c (compute_can_copy): Adjust if/else blocks from rth's
11507         patch from 2000-01-28.
11508
11509 2000-03-06  Clinton Popetz  <cpopetz@cygnus.com>
11510
11511         * config/sh/sh.c: (barrier_align): Handle a delay slot that is
11512         filled with an insn from the jump target.
11513
11514 2000-03-07  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
11515
11516         * config/c4x/c4x-protos.h (c4x_global_name): Constify char *.
11517         (c4x_external_ref): Likewise.
11518         * config/c4x/c4x.c (struct name_list): Likewise.
11519
11520 1999-12-16  Ben Collins  <bcollins@debian.org>
11521
11522         * Makefile.in: Pass a new MULTILIB_EXCLUSIONS option as the sixth
11523         argument to genmultilib.
11524         * genmultilib: accept new MULTILIB_EXCLUSIONS option and output
11525         the contents into the multilib.h header.
11526         * gcc.c: Declare multilib_exclusions for the specs file.
11527         (set_multilib_dir): Use it.
11528         (print_multilib_info): Likewise.
11529         * t-linux64: Declare arguments for new MULTILIB_EXCLUSIONS option
11530         to pass to genmultilib.
11531
11532 2000-03-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11533
11534         * builtins.c (built_in_class_names, built_in_names): Constify a
11535         char*.
11536
11537         * gmon-sol2.c (monstartup, moncontrol): Cast ptrs to long, not
11538         int.
11539         (_mcleanup): Ensure value matches format specifier in sprintf.
11540
11541         * cpphash.c (special_symbol): Don't needlessly cast away
11542         const-ness.
11543
11544         * cppinit.c (base_name): Delete unused prototype.
11545
11546         * mkdeps.c (deps_init): Make definition K&R safe.
11547
11548         * tree.h (built_in_class_names, built_in_names): Constify a
11549         char*.
11550
11551 2000-03-06  Jakub Jelinek  <jakub@redhat.com>
11552
11553         * config/sparc/sparc.c (eligible_for_epilogue_delay): Accept
11554         floating point instructions for epilogue delay.
11555
11556         * config/sparc/sparc.h (ASM_ARCH64_SPEC): Pass -no-undeclared-regs
11557         to gas if it supports .register pseudo.
11558
11559         * real.h (MAX_LONG_DOUBLE_TYPE_SIZE): Define to
11560         LONG_DOUBLE_TYPE_SIZE if not defined.
11561         Use MAX_LONG_DOUBLE_TYPE_SIZE instead of
11562         LONG_DOUBLE_TYPE_SIZE in preprocessor if clauses.
11563         * real.c: Likewise.
11564         * gengenrtl.c: Likewise.
11565         * print-rtl.c: Likewise.
11566         * rtl.c: Likewise.
11567         * config/sparc/sol2-sld-64.h (TARGET_DEFAULT): Set
11568         MASK_LONG_DOUBLE_128.
11569         * config/sparc/sol2.h (TARGET_DEFAULT): Likewise.
11570         * config/sparc/sp64-elf.h (TARGET_DEFAULT): Likewise.
11571         * config/sparc/linux64 (TARGET_DEFAULT): Likewise.
11572         (SUBTARGET_SWITCHES): Define.
11573         (CPP_ARCH32_SPEC): Define __LONG_DOUBLE_128__ if compiling
11574         with -mlong-double-128.
11575         (LONG_DOUBLE_TYPE_SIZE): Define depending on target_flags.
11576         (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
11577         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on CPP macros.
11578         (CC1_SPEC): Include -mlong-double-{64,128} as needed.
11579         * config/sparc/linux.h (SUBTARGET_SWITCHES): Define.
11580         (CPP_SUBTARGET_SPEC): Define __LONG_DOUBLE_128__ if compiling
11581         with -mlong-double-128.
11582         (LONG_DOUBLE_TYPE_SIZE): Define depending on target_flags.
11583         (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
11584         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on CPP macros.
11585         * config/sparc/sparc.h (MASK_LONG_DOUBLE_128,
11586         TARGET_LONG_DOUBLE_128): Define.
11587         * config/sparc/linux-aout.h (LONG_DOUBLE_TYPE_SIZE): Remove.
11588         * config/sparc/sparc.c (sparc_override_options): Disallow 64bit
11589         long double on TARGET_ARCH64.
11590
11591 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
11592
11593         * function.c (free_temps_for_rtl_expr): Don't free slots
11594         that have been pushed into a higher level.
11595
11596         Revert this patch:
11597         2000-03-05  Mark Mitchell  <mark@codesourcery.com>
11598
11599 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
11600
11601         * basic-block.h (ALLOCA_REG_SET): Remove.
11602         (INITIALIZE_REG_SET): New macro.
11603         * flow.c (update_life_info): Use it.
11604         (calculate_global_regs_live): Likewise.
11605         (propagate_block): Likewise.
11606         * global.c (build_insn_chain): Likewise.
11607         * haifa-sched.c (schedule_region): Likewise.
11608
11609 2000-03-05  Stephane Carrez  <stcarrez@worldnet.fr>
11610
11611         * dwarf2out.c (UNALIGNED_WORD_ASM_OP): Support 2 bytes pointer.
11612         (ASM_OUTPUT_DWARF_ADDR_CONST): Use UNALIGNED_WORD_ASM_OP.
11613         (DWARF_ARANGES_PAD_SIZE): New define.
11614         (output_aranges): Use it to pad the address range header.
11615         (DWARF_ROUND): Fix for non power of 2 rounding.
11616
11617 2000-03-05  Jason Merrill  <jason@casey.cygnus.com>
11618
11619         * mkdeps.c (deps_calc_target): Remove incorrect 'const'.
11620
11621 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
11622
11623         * tree.def (RTL_EXPR): Update documentation.
11624         * tree.h (RTL_EXPR_HAS_NO_SCOPE): New macro.
11625         * expr.c (expand_expr): Handle RTL_EXPR_HAS_NO_SCOPE.
11626         * function.c (preserve_rtl_expr_temp): New function.
11627         (preserve_rtl_expr_temps): Likewise.
11628         (preserve_rtl_expr_result): Use it.
11629
11630         Revert this patch:
11631         2000-03-04  Mark Mitchell  <mark@codesourcery.com>
11632
11633 2000-03-04  Thomas Schuster <Thomas.Schuster@gmx.net>
11634
11635         * regmove.c (copy_src_to_dest)  Do not create src->dest move
11636         for unchanging destination.
11637
11638 2000-03-04  Mark Mitchell  <mark@codesourcery.com>
11639
11640         * function.h (struct sequence_stack): Remove rtl_expr.
11641         (struct emit_staus): Likewise.
11642         (seq_rtl_expr): Remove.
11643         * tree.h (free_temps_for_rtl_expr): Don't declare.
11644         (start_sequence_for_rtl_expr): Likewise.
11645         * rtl.h (preserve_rtl_expr_result): Likewise.
11646         * emit-rtl.c (start_sequence): Don't set sequence_rtl_expr.
11647         (start_sequence_for_rtl_expr): Remove.
11648         (push_topmost_sequence): Don't save sequence_rtl_expr.
11649         (pop_topmost_sequence): Remove comment about not restoring it.
11650         (end_sequence): Don't set seq_rtl_expr.
11651         (init_emit): Don't initialize it.
11652         (mark_sequence_stack): Don't mark it.
11653         (mark_emit_status): Likewise.
11654         * except.c (protect_with_terminate): Use
11655         start_sequence_for_rtl_expr, not start_sequence.
11656         * expr.c (expand_expr, case RTL_EXPR): Don't call
11657         preserve_rtl_expr_result or free_temps_for_rtl_expr.
11658         * function.c (assign_stack_temp_for_type): Don't set rtl_expr.
11659         (preserve_rtl_expr_result): Remove.
11660         (free_temps_for_rtl_expr): Likewise.
11661         (pop_temp_slots): Likewise.
11662         (mark_temp_slot): Don't mark the rtl_expr.
11663         * stmt.c (expand_start_stmt_expr): Use start_sequence, not
11664         start_sequence_for_rtl_expr.
11665
11666 2000-03-04  Zack Weinberg  <zack@wolery.cumb.org>
11667
11668         * mkdeps.c, mkdeps.h: New files.
11669         * po/POTFILES.in: Add them.
11670         * Makefile.in (LIBCPP_OBJS): Add mkdeps.o.
11671         (cpplib.o, cppinit.o): Depend on mkdeps.h.
11672         (mkdeps.o): New target.
11673
11674         * cppfiles.c: Delete deps_output.
11675         * cppinit.c: Include mkdeps.h.  Delete known_suffixes,
11676         OBJECT_SUFFIX, and base_name.
11677         (cpp_cleanup): Use deps_free.  Free ihash->name when clearing
11678         the include hash.
11679         (initialize_dependency_output): Use deps_init,
11680         deps_add_target, deps_calc_target, and deps_add_dep.  Remove
11681         all the unnecessary string bashing.
11682         (cpp_finish): Use deps_write.  Remove an unnecessary nesting
11683         level.
11684         * cpplib.c (do_include): Use deps_add_dep.
11685         * cpplib.h (struct cpp_reader): Replace deps_buffer,
11686         deps_allocated_size, deps_size, deps_column members with
11687         single pointer to a struct deps.  Delete prototype of
11688         deps_output.
11689
11690         * cppinit.c: Fix thinko in previous patch.
11691
11692 Sat Mar  4 11:32:30 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11693
11694         * machmode.h (mode_for_size, smallest_mode_for_size): SIZE now signed.
11695         * stor-layout.c (mode_for_size, smallest_mode_for_size): Likewise.
11696         (mode_for_size_tree): New function.
11697         (layout_decl, layout_type): Call it and clean up BLKmode checks.
11698         * tree.h (mode_for_size_tree): New declaration.
11699
11700         * toplev.c (debug_ignore_block): Mark arg BLOCK as possibly unused.
11701
11702 2000-03-04  Jason Merrill  <jason@casey.cygnus.com>
11703
11704         * stmt.c (is_body_block): Move...
11705         * dwarfout.c, dwarf2out.c: ...from here.
11706         * tree.h: Declare it.
11707         * emit-rtl.c (remove_unncessary_notes): Don't remove the body block.
11708         * final.c (final_start_function): Do call remove_unnecessary_notes
11709         when scheduling.
11710
11711 2000-03-03  Zack Weinberg  <zack@wolery.cumb.org>
11712
11713         * config/vax/xm-vms.h: Define OBJECT_SUFFIX and EXECUTABLE_SUFFIX.
11714
11715         * cpplib.h (_dollar_ok): New macro.
11716         (is_idchar, is_idstart): Use it.
11717         (IStable): Rename to _cpp_IStable.  Declare it const if
11718         gcc >=2.7 or C99.  Delete all references to FAKE_CONST.
11719         (is_idchar, is_idstart, is_numchar, is_numstart, is_hspace,
11720         is_space): Update for renamed IStable.
11721
11722         * cppinit.c: Delete all references to FAKE_CONST and CAT
11723         macros. Define init_IStable as empty macro if gcc >=2.7 or
11724         C99. Change TABLE() to ISTABLE and hardcode name of table.
11725         (cpp_start_read): Don't change the IStable based on
11726         dollars_in_ident.
11727
11728         * cpphash.c (unsafe_chars): Add pfile argument.  All callers
11729         changed.  Handle '$' for char1 correctly.
11730         * cpplib.c (cpp_get_token): Use is_numchar when parsing numbers.
11731
11732         * cppexp.c (tokentab2): Make const.
11733         (cpp_lex): Make toktab const.
11734         * cppinit.c (include_defaults_array): Make const.
11735         (initialize_standard_includes): Make default_include const.
11736
11737 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
11738
11739         * dwarf2out.c (dwarf2out_frame_debug): Add cast to silence warning.
11740         (dwarf2out_decl): Functions can now have DECL_IGNORED_P.
11741         (gen_decl_die): Likewise.
11742         * dwarfout.c (dwarfout_file_scope_decl): Likewise.
11743         (output_decl): Likewise.
11744
11745         * varasm.c (make_function_rtl): If we change the name used in the
11746         rtl, update DECL_ASSEMBLER_NAME accordingly.
11747         (make_decl_rtl): Likewise.
11748
11749         * toplev.c (rest_of_compilation): Tweak formatting.
11750
11751         * toplev.c (rest_of_compilation): find_loop_tree_blocks before
11752         remove_unnecessary_notes.
11753         (debug_ignore_block): New fn.
11754         * toplev.h: Declare it.
11755         * emit-rtl.c (remove_unncessary_notes): Call it.
11756         * dwarf2out.c (dwarf2out_ignore_block): New fn.
11757         * dwarf2out.h: Declare it.
11758         * final.c (final_start_function): Don't call remove_unnecessary_notes
11759         if we did insn scheduling.
11760
11761 2000-03-03  Zack Weinberg  <zack@wolery.cumb.org>
11762
11763         * cppinit.c (cpp_handle_option): Set opts->pedantic directly.
11764         * cpplib.h: Delete SET_CPP_PEDANTIC.
11765
11766 Fri Mar  3 14:56:12 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11767
11768         * expr.c (expand_expr, case COMPONENT_REF): Use bitfield case if
11769         result is a RECORD_TYPE.
11770
11771 2000-03-03  Jonathan Larmour  <jlarmour@cygnus.co.uk>
11772
11773         * mips/elf.h (CTOR_LISTS_DEFINED_EXTERNALLY): Added.
11774
11775 2000-03-03  Richard Henderson  <rth@cygnus.com>
11776
11777         * alpha.c (alpha_emit_set_const_1): Re-order cases to prefer
11778         addition over compliments over shifts.
11779
11780 Fri Mar  3 12:49:28 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
11781
11782         * reload1.c (reload_combine_note_use): Handle return register USEs.
11783         REG case: Handle multi-hard-register hard regs.
11784
11785 Fri Mar  3 07:38:34 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11786
11787         * md.texi: Document use of '*' in insn pattern name.
11788
11789 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
11790
11791         * calls.c (special_function_p): operator new may not be malloc-like.
11792
11793         * gcse.c (dump_hash_table): Really fix error in last change.
11794
11795 2000-03-02  Denis Chertykov  <denisc@overta.ru>
11796
11797         * avr.c (print_operand): Use print_operand_address instead of
11798         output_addr_const.
11799         * avr/libgcc.S: Cleanup code.
11800
11801 2000-03-02  Richard Henderson  <rth@cygnus.com>
11802
11803         * alpha.c (alpha_emit_set_const_1): Also try c + small constant.
11804
11805 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
11806
11807         * tree.h (TYPE_ALIGN_UNIT): New macro.
11808
11809 2000-03-02  Clinton Popetz  <cpopetz@cygnus.com>
11810
11811         * i386.c: (constant_call_address_operand): Reject CONST_INT.
11812
11813 2000-03-02  Jason Merrill  <jason@casey.cygnus.com>
11814
11815         * cpplib.h (CPP_PEDANTIC): Only true if system_header_p is not set
11816         for the buffer.
11817         (SET_CPP_PEDANTIC): New macro.
11818         * cpplib.c (do_include): Don't bother checking system_header_p.
11819         (do_warning, do_ident, do_assert, do_unassert): Likewise.
11820         * cppinit.c (cpp_handle_option): Use SET_CPP_PEDANTIC.
11821
11822         * function.h (struct expr_status): Add x_arg_space_so_far.
11823         (arg_space_so_far): New macro.
11824         * expr.c (init_expr): Initialize it.
11825         * calls.c (emit_call_1): Reset it.
11826         (compute_argument_block_size, expand_call): Use it.
11827         (expand_call, store_one_arg): Increment it.
11828
11829 Thu Mar  2 17:27:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11830
11831         * varasm.c (output_constant): Strip off a CONVERT_EXPR to
11832         a UNION_TYPE.
11833
11834 2000-03-02  Zack Weinberg  <zack@wolery.cumb.org>
11835
11836         * cppfiles.c (cpp_read_file): New function.
11837
11838         * cpphash.c (collect_expansion): Make sure to reset last_token
11839         to NORM when we hit a string.  Handle trailing whitespace
11840         properly when the expansion is empty.
11841         (create_definition): Disable line commands while parsing the
11842         directive line.
11843         (dump_definition): If pfile->lineno == 0, output a line
11844         command ahead of the dump, and add a trailing newline.
11845
11846         * cppinit.c (append_include_chain): Add fifth argument, which
11847         indicates whether or not system headers are C++ aware.
11848         (initialize_standard_includes): New function,
11849         broken out of read_and_prescan.  Pass 'cxx_aware' value from
11850         the include_defaults_array on to append_include_chain.
11851         (dump_special_to_buffer): Const-ify char array.
11852         (builtin_array): Don't dump __BASE_FILE__.
11853         (cpp_start_read): Use cpp_read_file.  Reorder code for
11854         clarity.  Don't output line commands here for -D/-A/-U
11855         switches.  Don't call deps_output for files included with
11856         -include or -imacros.
11857
11858         * cpplib.c (do_define): Don't pay any attention to the second
11859         argument.
11860         (cpp_expand_to_buffer): Disable line commands while scanning.
11861         (output_line_command): Work in the file buffer.
11862         * cpplib.h: Remove no_record_file flag from struct cpp_reader.
11863         Fix formatting of comments.  Prototype cpp_read_file.
11864
11865 Thu Mar  2 13:29:46 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11866
11867         * c-common.c (c_common_nodes_and_builtins): Make sizetype_endlink
11868         reference the language-equivalent of sizetype.
11869         * c-typeck.c (comptypes): Treat sizetype like its language equivalent.
11870         * fold-const.c (size_binop, size_diffop): Put back checks.
11871         * gcse.c (dump_hash_table): Fix minor error in last change.
11872         * stor-layout.c (set_sizetype): Set TYPE_DOMAIN of sizetype.
11873         Clear TYPE_{NEXT,MAIN}_VARIANT and TYPE_{POINTER,REFERENCE}_to of
11874         all sizetypes.
11875
11876 Thu Mar  2 12:48:45 MET 2000  Jan Hubicka  <jh@suse.cz>
11877
11878         * calls.c (expand_call)  Do not attempt to combine stack adjustments
11879         with inhibit_defer_pop set.
11880
11881 2000-03-01  Mark Mitchell  <mark@codesourcery.com>
11882
11883         * stor-layout.c (layout_decl): Allow front-ends to explicitly set
11884         the DECL_SIZE for a FIELD_DECL.
11885
11886 2000-03-01  Bruce Korb  <bkorb@gnu.org>
11887
11888         * fixinc/inclhack.tpl: remove unused symlinks
11889         * fixinc/README: GCC Maintainer info
11890         * fixinc/inclhack.sh: regen
11891         * fixinc/fixincl.sh: regen
11892
11893 2000-03-01  Zack Weinberg  <zack@wolery.cumb.org>
11894
11895         * cpphash.c (collect_expansion): Trim trailing white space
11896         from macro definitions, but don't go past the last insertion
11897         point.
11898
11899 Wed Mar  1 12:14:31 MET 2000  Jan Hubicka  <jh@suse.cz>
11900
11901         * i386.md (mulqi3): New pattern.
11902
11903 2000-02-29  Zack Weinberg  <zack@wolery.cumb.org>
11904
11905         * cpplib.h (CPP_ASSERTION, CPP_STRINGIZE, CPP_TOKPASTE): New
11906         token types.
11907         (struct cpp_reader): Add parsing_if_directive and
11908         parsing_define_directive flags.
11909         (struct cpp_options): Remove output_conditionals flag.
11910         (check_macro_name): Delete prototype.
11911
11912         * cpphash.h (struct macrodef): Delete.
11913         (struct reflist): Separate from struct definition.
11914         (struct definition): Remove unused fields.  Add column number.
11915         (create_definition): Returns a DEFINITION *.  Takes a
11916         cpp_reader * and an int.
11917
11918         * cpphash.c (SKIP_WHITE_SPACE): Delete.
11919         (PEEKC): Copy defn from cpplib.c.
11920         (rest_extension, REST_EXTENSION_LENGTH): Delete.
11921         (struct arg): New.
11922         (struct arglist): Simplify.
11923         (collect_expansion): Rewrite.  Get tokens by calling
11924         cpp_get_token.  Add more error checking.
11925         (collect_formal_parameters): New function, broken out of
11926         create_definition and reworked to use get_directive_token.
11927         (create_definition): All real work is now in collect_expansion
11928         and collect_formal_parameters.  do_define handles finding the
11929         macro name.  Return a DEFINITION, not a MACRODEF.
11930         (macroexpand): Replace bcopy with memcpy throughout.  Replace
11931         character-at-a-time copy loop with memcpy and pointer increments.
11932         (compare-defs): d1->argnames / d2->argnames might be null.
11933
11934         * cpplib.c (copy_rest_of_line): Delete function.
11935         (skip_rest_of_line): Do all the work ourselves.
11936         (skip_string): New function.
11937         (parse_string): Use skip_string.
11938         (get_macro_name): New function.
11939         (check_macro_name): Delete.
11940         (copy_comment): Use CPP_RESERVE and CPP_PUTC_Q.
11941         (cpp_skip_hspace): Use CPP_BUMP_LINE.
11942         (handle_directive): ICE if we're called on a macro buffer.
11943         (do_define): Determine macro name and type (funlike/objlike)
11944         here.  Expunge all uses of MACRODEF.
11945         (cpp_push_buffer): Set line_base to NULL.
11946         (do_undef, read_line_number): Don't worry about getting a POP token.
11947         (eval_if_expression): Set/reset parsing_if_directive around
11948         cpp_parse_expr. Don't clear only_seen_white.
11949         (skip_if_group): Remove output_conditionals logic.  Use
11950         skip_rest_of_line.
11951         (cpp_get_token): Return ASSERTION, STRINGIZE, and TOKPASTE
11952         tokens under appropriate conditions.
11953         (cpp_unassert): Call do_unassert not do_assert.  Oops.
11954
11955         * cppexp.c (parse_defined): New function, break out of
11956         cpp_lex.
11957         (cpp_lex): We now get CPP_ASSERTION tokens and can check them
11958         ourselves, with cpp_defined.
11959         * cppinit.c (cpp_handle_option, print_help): Delete -ifoutput.
11960
11961         * gcc.dg/20000209-2.c: Turn off -pedantic-errors.
11962         * gcc.dg/strpaste-2.c: New.
11963
11964 2000-02-29  Mark Mitchell  <mark@codesourcery.com>
11965
11966         * fold-const.c (size_binop): Don't asert inputs are the same and
11967         have TYPE_IS_SIZETYPE set.
11968         (size_diffop): Likewise.
11969
11970 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
11971
11972         * dwarfout.c (output_block): Output abstract blocks even if they
11973         don't have TREE_ASM_WRITTEN set.
11974
11975         * calls.c (emit_library_call): Check for null REG.
11976
11977 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
11978
11979         * c-decl.c (current_function_decl): Move to toplev.c.
11980         (init_decl_processing): Don't add current_function_decl as a ggc
11981         root here.
11982         * dbxout.c (dbxout_symbol): Change return type to int.
11983         (dbxout_symbol_location, dbxout_syms): Likewise.
11984         (dbxout_block): Don't emit LBRAC/RBRAC pairs for blocks without
11985         any locals. Use current_function_func_begin_label if set.
11986         * dbxout.h (dbxout_symbol, dbxout_syms): Change return type.
11987         * dwarf2out.c (dwarf2out_begin_prologue): Set
11988         current_function_func_begin_label.
11989         * final.c (final_start_function): Reset it.
11990         * toplev.c (current_function_decl): Define it here.
11991         (current_function_func_begin_label): New variable.
11992         (main): Add both as ggc roots.
11993         * tree.h (current_function_func_begin_label): Declare.
11994
11995 Tue Feb 29 14:07:04 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11996
11997         * gcse.c: Cleanups throughout: mostly white-space, but also
11998         some minor rearrangement of code.
11999
12000 Tue Feb 29 10:45:59 2000  Jeffrey A Law  (law@cygnus.com)
12001
12002         * calls.c (emit_library_call): Do not abort if FUNCTION_ARG
12003         returns a PARALLEL.  Use emit_group_load and use_group_regs
12004         as needed.
12005         (emit_library_call_value): Similarly.
12006
12007         * pa/t-pa: Use quadlib.c instead of quadlib.asm.
12008         * pa/quadlib.asm: Remove.
12009         * pa/quadlib.c: New file.
12010
12011         * configure.in (hpux10, hpux11, PA32 mode): Use i128 float format.
12012         * configure: Rebuilt.
12013
12014 2000-02-29  Philip Blundell  <pb@futuretv.com>
12015
12016         * config/arm/conix-elf.h: New file.
12017         * configure.in (arm*-*-conix*): New configuration.
12018         * configure: Regenerate.
12019
12020 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
12021
12022         * dwarf2out.c (gen_block_die): Output abstract blocks even if they
12023         don't have TREE_ASM_WRITTEN set.
12024
12025 Mon Feb 28 21:07:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12026
12027         * Eliminate DECL_FIELD_SIZE.
12028         * builtins.c (built_in_class_names, built_in_names): New variables.
12029         * c-decl.c (finish_struct): Set specified size in DECL_SIZE.
12030         * expr.c (expand_expr, case COMPONENT_REF): Get field size from
12031         DECL_SIZE, not DECL_FIELD_SIZE.
12032         * print-tree.c (print_node): Remove code that prints extra blank
12033         lines in some cases.
12034         Properly handle inline and builtin function cases.
12035         * stor-layout.c (layout_decl): Get specified size from DEC_SIZE.
12036         * tree.h (built_in_class_named, built_in_names): New declarations.
12037         (union tree_decl): Rename internal unions to u1 and u2 and change
12038         some of their components.
12039         Add new field built_in_class.
12040         (DECL_ALIGN, DECL_INCOMING_RTL, DECL_SAVED_INSNS, DECL_FRAME_SIZE):
12041         Reflect above changes.
12042         (DECL_FUNCTION_CODE, DECL_BUILT_IN_CLASS): Likewise.
12043         (DECL_SET_FUNCTION_CODE, DECL_FIELD_SIZE): Deleted.
12044         * objc/objc-act.c (objc_copy_list): Use DECL_SIZE, not DECL_FIELD_SIZE.
12045         (encode_field_decl): Likewise; also remove obsolete test for bitfield.
12046
12047 2000-02-28  Dmitri Makarov  <dim@windriver.com>
12048
12049         * extend.texi: Document ARM's support for long/short calls.
12050
12051         * invoke.texi: Document ARM's -mlong-calls command line switch.
12052
12053         * config/arm/arm-protos.h (arm_is_longcall_p): Add prototype.
12054         (arm_encode_call_attribute): Add prototype.
12055         (arm_set_default_type_attribute): Add prototype.
12056         (arm_strip_name_encoding): Add prototype.
12057
12058         * config/arm/arm.c (arm_init_cumulative_args): replace
12059         initialisation og 'long_calls' field with initialisation of
12060         'call_cookie' field.
12061         (enum arm_pragma_enum): New enum.
12062         (arm_pragma_long_calls): New static variable.
12063         (arm_process_pragma): Also process "#pragma long_calls_off".
12064         (arm_valid_type_attribute_p): Accept short_call attribute.
12065         (arm_comp_type_attributes): Check long/short call attributes.
12066         (arm_encode_call_attribute):  New function:  Encode long_call
12067         or short_call attribute in function name.
12068         (arm_set_default_type_attributes): New function: Assign
12069         default attributes to newly defined type.
12070         (current_file_function_operand): New function: Return true if
12071         the symbol is a function which has already been compiled.
12072         (arm_is_longcall_p): New function: Return true if the
12073         indicated function should be called via a long call.
12074         (arm_get_strip_length): New function.  Returns number of
12075         prefix characters to be stripped from a function's name.
12076         (arm_strip_name_encoding): New function.  Strip prefix characters
12077         from a function's name.
12078
12079         * config/arm/arm.h (CUMULATIVE_ARGS): Replace 'long_call' field
12080         with 'call_cookie'.
12081         (SHORT_CALL_FAG_CHAR): Define.
12082         (LONG_CALL_FAG_CHAR): Define.
12083         (ENCODED_SHORT_CALL_ATTR_P): Define.
12084         (ENCODED_LONG_CALL_ATTR_P): Define.
12085         (ARM_NAME_ENCODING_LENGTHS): Define.
12086         (STRIP_NAME_ENCODING): Define.
12087         (ASM_OUTPUT_LABELREF): Define, and use to strip name encoding.
12088         (ARM_ENCODE_CALL_TYPE): Define.
12089         (ENCODE_SECTION): Invoke ARM_ENCODE_CALL_TYPE.
12090         (ARM_DECLARE_FUNCTION_SIZE): Define.
12091         (SET_DEFAULT_TYPE_ATTRIBUTES): Define.
12092
12093         * config/arm/arm.md (call): Call arm_is_longcall_p to decide
12094         if a long call is needed.
12095         (call_value): Ditto.
12096         (call_symbol): Ditto.
12097
12098         * config/arm/elf.h (ASM_DECLARE_FUNCTION_SIZE): Add invocation of
12099         ARM_DECLARE_FUNCTION_SIZE.
12100
12101         * config/arm/pe.h (ARM_PE_FLAG_CHAR): Define.
12102         (SUBTARGET_NAME_ENCODING_LENGTHS): Define.
12103         (ARM_STRIP_NAME_ENCODING): Undefine.
12104         (STRIP_NAME_ENCODING): Undefine.
12105         (ASM_OUTPUT_LABELREF): Use arm_strip_name_encoding.
12106         (ASM_DECLARE_FUNCTION_NAME): Ditto.
12107         (ASM_OUTPUT_COMMON): Ditto.
12108         (ASM_DECLARE_OBJECT_NAME): Ditto.
12109
12110         * config/arm/pe.c (arm_dllexport_name_p): Check for
12111         ARM_PE_FLAG_CHAR.
12112         (arm_dllimport_name_p): Ditto.
12113         (arm_mark_dllexport): Use ARM_PE_FLAG_CHAR.
12114         (arm_mark_dllimport): Ditto.
12115
12116 Mon Feb 28 22:11:12 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12117
12118         * sh.h (DWARF_LINE_MIN_INSTR_LENGTH): Define.
12119
12120 2000-02-28  Mark Mitchell  <mark@codesourcery.com>
12121
12122         * xcoffout.c (xcoffout_begin_function): Fix typo in previous change.
12123
12124 2000-02-28  Zack Weinberg  <zack@wolery.cumb.org>
12125
12126         * tm.texi: Document new target switch, NO_BUILTIN_WCHAR_TYPE.
12127         * cppinit.c (builtin_array): Define __WCHAR_TYPE__ only if
12128         NO_BUILTIN_WCHAR_TYPE is not defined.
12129         (CPP_WCHAR_TYPE): Delete.
12130         * cccp.c (main): Don't change wchar_type if cplusplus.
12131         (special_symbol, initialize_builtins): Honor NO_BUILTIN_WCHAR_TYPE.
12132
12133 2000-02-28  Nick Clifton  <nickc@cygnus.com>
12134
12135         * config/arm/arm-wince-pe.h (SIZE_TYPE): Define to "unsigned long".
12136
12137 Mon Feb 28 14:21:15 2000  Catherine Moore  <clm@cygnus.com>
12138
12139         * config/pa/som.h (MAKE_DECL_ONE_ONLY): Define.
12140         (ASM_WEAKEN_LABEL): Define.
12141
12142 Mon Feb 28 13:07:19 MET 2000  Jan Hubicka  <jh@suse.cz>
12143
12144         * expr.c (store_constructor): Do not emit USE.
12145         * rtl.h (stupid_life_analysis): Remove.
12146
12147 Mon Feb 28 07:03:27 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12148
12149         * function.c (number_blocks): Reset next_block_index based on
12150         what debugging format is used, not what is defined.
12151
12152         * lcm.c: Minor reformatting throughout.
12153         (reg_dies, reg_becomes_live): Properly handle multiple hard regs.
12154
12155         * toplev.c (rest_of_compilation): Account for time in
12156         optimize_mode_switching.
12157
12158         * jump.c (jump_optimize_1): Don't call delete_barrier_successors
12159         if only marking labels.
12160
12161 Mon Feb 28 12:53:57 MET 2000  Jan Hubicka  <jh@suse.cz>
12162
12163         * calls.c (expand_call): Attempt to combine stack adjustments with
12164         pending stack adjustments.
12165
12166 Mon Feb 28 11:34:43 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12167
12168         * loop.c (reg_in_basic_block_p): Don't abort when falling through
12169         to the end of the function.
12170
12171 2000-02-27  Mark Mitchell  <mark@codesourcery.com>
12172
12173         * emit-rtl.c (remove_unncessary_notes): Remove notes for empty
12174         blocks.
12175         * final.c (next_block_index): Remove.
12176         (max_block_depth): Likewise.
12177         (pending_blocks): Likewise.
12178         (init_final): Don't initialize them.
12179         (final_start_function): Don't set next_block_index.  Set up
12180         BLOCK_NUMBER.
12181         (final_scan_insn): Use BLOCK_NUMBER, not next_block_index.
12182         * function.h (number_blocks): New function.
12183         * function.c (get_block_vector): New function.
12184         (identify_blocks): Use it.
12185         (reorder_blocks): Set NOTE_BLOCK.
12186         (number_blocks): New function.
12187         * tree.def (BLOCK): Add documentation for TREE_ASM_WRITTEN flag.
12188         * tree.h (BLOCK_NUMBER): New macro.
12189         (tree_block): Add block_num field.
12190         * dbxout.c (next_block_number): Remove.
12191         (dbxout_init): Don't set it.
12192         (dbxout_block): Only output blocks that have TREE_ASM_WRITTEN
12193         set.  Use BLOCK_NUMBER, rather than next_block_num, to determine
12194         block numbers.
12195         * toplev.c (rest_of_compilation): Always call
12196         find_loop_tree_blocks.  Fix indentation.
12197         * dwarf2out.c (next_block_number): Remove.
12198         (gen_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
12199         to determine block numbers.
12200         (gen_inlined_subroutine_die): Likewise.
12201         (gen_block_die): Only output blocks that have TREE_ASM_WRITTEN set.
12202         (decls_for_scope): Don't increment next_block_number.
12203         * dwarfout.c (next_block_number): Remove.
12204         (output_lexical_block_die): Use BLOCK_NUMBER, not next_block_number,
12205         to determine block numbers.
12206         (output_inlined_subroutine_die): Likewise.
12207         (output_block): Only output blocks that have TREE_ASM_WRITTEN set.
12208         (output_decls_for_scope): Don't increment next_block_number.
12209         * sdbout.c (next_block_number): Remove.
12210         (sdbout_block): Use BLOCK_NUMBER.
12211         (sdbout_begin_block): Simplify.
12212         * xcoffout.c (next_block_number): Remove.
12213         (xcoffout_block): Use BLOCK_NUMBER, not next_block_number.
12214         (xcoffout_begin_block): Don't set next_block_number.
12215         (xcoffout_begin_function): Likewise. Use BLOCK_NUMBER, not
12216         next_block_number.
12217
12218 Sun Feb 27 16:40:33 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12219
12220         * builtins.c (c_strlen): Use size_diffop and return ssizetype value.
12221         (expand_builtin_strcpy): Pass correct type to size_binop.
12222         (expand_builtin_strcmp): Likewise.
12223         Clean up conditional structure.
12224         * c-decl.c (init_decl_processing): Don't call set_sizetype twice.
12225         (complete_array_type): Don't use size_binop for MAXINDEX.
12226         * c-typeck.c (c_sizeof): Use size_one_node and TYPE_SIZE_UNIT.
12227         (c_sizeof_nowarn, c_size_in_bytes): Likewise.
12228         (c_alignof): Use size_one_node.
12229         (build_unary_op): Pass arg of proper type to size_binop.
12230         (really_start_incremental_init, push_init_level): Use sizetype for
12231         constructor{,_bit,_unfilled}_index.
12232         (pop_init_label, output_init_element): Likewise.
12233         (output_pending_init_elements, process_init_element): Likewise.
12234         * calls.c (compute_argument_block_size): Field VAR is ssizetype.
12235         * expr.c (store_expr): Use size_int.
12236         (store_constructor): Use proper types for size_binop args.
12237         (get_inner_reference, expand_expr, case ARRAY_REF): Likewise.
12238         (expand_expr_unaligned): Likewise.
12239         (string_contant): Return object of sizetype.
12240         * expr.h (SUB_PARM_SIZE): Call size_diffop and pass proper types.
12241         (ARGS_SIZE_RTX): Call ARGS_SIZE_TREE.
12242         (ARGS_SIZE_TREE): Pass proper types to size_binop.
12243         * fold-const.c (int_const_binop): Refine when size_int is called.
12244         (fold_convert): Likewise.
12245         (size_int_wide): Rework to take KIND as arg, only take low order
12246         bits, handle new sizetype_tab datatype, and chain entries in
12247         size_table.
12248         (size_int_type_wide): New function.
12249         (size_binop): Validate types of arguments.
12250         (ssize_binop): Deleted.
12251         (size_diffop): New function.
12252         (extract_muldiv): Only fold division into multiplication for sizetypes.
12253         * function.c (assign_parms): Use size_diffop and make sure
12254         VAR field is of ssizetype; also pass proper type to size_binop.
12255         (locate_and_pad_parm, pad_to_arg_alignment): Likewise.
12256         (round_down): Deleted from here.
12257         * store-layout.c (sizetype_tab): Now an array.
12258         (sizetype_set, early_root_list): New variables.
12259         (variable_size): Use size_one_node.
12260         (round_up): Pass proper type to size_binop.
12261         (round_down): Moved to here and corrected as above.
12262         (layout_record): Pass proper arg types to size_binop.
12263         (layout_type): Likewise.
12264         If sizetype_set is zero, record the type just laid out.
12265         (make_unsigned_type): Don't call set_sizetype;
12266         (make_signed_type): Likewise; also, call fixup_signed_type.
12267         (initialize_sizetypes): New function.
12268         (set_sizetype): Make copy of types, set TYPE_IS_SIZETYPE, and
12269         set name of bitsizetype to "bit_size_type".
12270         Fix up type of sizes of all types made before call.
12271         * tm.texi (ROUND_TYPE_SIZE_UNIT): New macro.
12272         * tree.c (fix_sizetype): Deleted.
12273         (build_common_tree_nodes): Call initialize_sizetypes.
12274         (build_common_tree_nodes_2): Don't call fix_sizetype.
12275         * tree.h (TYPE_IS_SIZETYPE): New macro.
12276         (initialize_sizetype): New declaration.
12277         (enum size_type_kind): New type.
12278         (struct sizetype_tab): Deleted.
12279         (sizetype_tab): Now array; adjust sizetype macros.
12280         (size_diffop, size_int_type_wide): New functions.
12281         (size_int_wide): Change number of args and type; access macros changed.
12282         (ssize_int, sbitsize_int): New macros.
12283         * config/i960/i960.h (ROUND_TYPE_SIZE): Use size_int.
12284         (ROUND_TYPE_SIZE_UNIT): New macro.
12285
12286 2000-02-27  Zack Weinberg  <zack@wolery.cumb.org>
12287
12288         * c-lex.c (putback_buffer): Make 'buffer' an unsigned char *.
12289
12290 Sun Feb 27 07:44:17 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12291
12292         * gcov-io.h (__fetch_long, __store_long, __read_long, __write_long):
12293         Mark as possibly unused.
12294
12295         * cse.c (cse_insn): Delete dead code involving tablejump.
12296         Pass CODE_LABEL, not LABEL_REF to gen_jump and reset INSN_CODE.
12297
12298         * Makefile.in (libcpp.a): Start by deleting it.
12299
12300 2000-02-27  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
12301
12302         * cpplib.h (enum file_change_code): Added rename_file.
12303         * cpplib.c (do_line): If a filename is given, set file_change to
12304         rename_file.
12305         (output_line_command): If file_change is rename_file, always
12306         output a # directive with the file name.
12307
12308         * cpplib.c (do_pragma): Accept #pragma without consecutive token.
12309
12310 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
12311
12312         * integrate.c (copy_decl_for_inlining): Preserve TREE_ADDRESSABLE
12313         when copying a PARM_DECL or RESULT_DECL.
12314
12315 2000-02-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12316
12317         * fix-header.c (recognized_function): Also fix prototypes for
12318         functions taking "void".
12319
12320 2000-02-26  Geoff Keating  <geoffk@cygnus.com>
12321
12322         * reload1.c (do_output_reload): Check reg_reloaded_valid before
12323         looking at reg_reloaded_contents.
12324
12325 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
12326
12327         * Makefile.in (STMP_FIXINC): New toggle.
12328         (LIBGCC2_DEPS): Delete all references.
12329         (stmp-headers): Delete target.  All references either deleted
12330         or changed to stmp-int-headers.
12331         (all.cross): Don't depend on stmp-headers or STMP_FIXPROTO.
12332         (LIBCPP_OBJS): Take out cppalloc.o.
12333         (cppalloc.o): Delete target.
12334         (stmp-int-hdrs): Depend on $(STMP_FIXINC).
12335         (gen-protos, fix-header): Link with libiberty.a.
12336         * build-make: Don't change FIXINCLUDES.  Override STMP_FIXINC
12337         to empty.
12338
12339         * configure.in: Remove refs to strerror.
12340         * acconfig.h: Take out NEED_DECLARATION_STRERROR.
12341         * system.h: Take out strerror stanza.
12342
12343         * cpperror.c (my_strerror): Delete function.
12344         (cpp_error_from_errno, cpp_notice_from_errno): Use xstrerror.
12345         * cppmain.c (main): Call xmalloc_set_program_name first thing.
12346         * cppalloc.c: Delete file.
12347         * gen-protos.c: Don't provide xrealloc.
12348
12349         * fixinc/fixincl.c, fixinc/fixlib.c, fixinc/procopen.c: Use
12350         xstrerror throughout.
12351
12352 2000-02-26  Bruce Korb  <bkorb@gnu.org>
12353
12354         * fixinc/inclhack.def (undefine_null): the bypass pattern needs to
12355         match for DOS headers, too.
12356         * fixinc/inclhack.sh,fixincl.x: Regenerate.
12357
12358 2000-02-26  Geoff Keating  <geoffk@cygnus.com>
12359
12360         * config/elfos.h (ASM_OUTPUT_LABELREF): Don't define.  The default
12361         is right for most ELF targets.
12362         * config/ns32k/ns32k.h (ASM_OUTPUT_LABELREF): Don't define.
12363         Let the default file use %U properly.
12364         * config/sh/elf.h (ASM_OUTPUT_LABELREF): Don't define.  Use the
12365         default.
12366
12367         * config/fp-bit.c (pack_d): Properly handle rounding of denormal
12368         numbers.
12369
12370 Sat Feb 26 09:39:16 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12371
12372         * toplev.c (documented_lang_options): Correct spelling error.
12373         (decode_d_option, decode_f_option, main): Likewise.
12374
12375         * toplev.c (print_time): Avoid SIGFPE when all_time is zero.
12376
12377         * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Use .set at
12378         to tell assembler it is permitted to expand large constants.
12379
12380 2000-02-25  Mumit Khan  <khan@xraylith.wisc.edu>
12381
12382         * protoize.c: (AUX_INFO_SUFFIX): New macro.
12383         (aux_info_suffix): Use.
12384         (SAVE_SUFFIX): New macro.
12385         (save_suffix): Use.
12386         (munge_compile_parms): Fix typo in NUL. DJGPP supports /dev/null.
12387         (gen_aux_info_file): Use aux_info_suffix instead of ".X".
12388         (edit_file): Handle 8.3 restriction for DOS/DJGPP filenames.
12389
12390         * invoke.texi (Running Protoize): Update documentation.
12391
12392 2000-02-25 Mark Elbrecht <snowball3@bigfoot.com>
12393
12394         * i386/djgpp.h (CPP_PREDEFINES): Remove Unix defines.
12395
12396 2000-02-25  John Wehle  (john@feith.com)
12397
12398         * rtlanal.c (find_last_value): Allow NULL_RTX for valid_to.
12399
12400 2000-02-25  Anthony Green  <green@cygnus.com>
12401
12402         * toplev.c (rest_of_compilation): Rebuild jump labels if
12403         combine_instructions has created a new direct jump.
12404         * combine.c (try_combine): Add new_direct_jump_p argument.  Set it
12405         when appropriate.
12406         (combine_instructions): Call try_combine with new argument.
12407         Return non-null value when new direct jump instruction is created.
12408         * rtl.h: combine_instructions returns an int.
12409
12410 Fri Feb 25 19:49:08 2000  Jeffrey A Law  (law@cygnus.com)
12411
12412         * cse.c (cse_insn): Replace the PATTERN of the insn with an new
12413         jump when changing a computed jump into a jump to a known
12414         target.
12415
12416 Fri Feb 25 19:22:44 2000  Graham Stott <grahams@rcp.co.uk>
12417
12418         * resource.c (mark_referenced_resources): Changed use SET_DEST (...)
12419         to XEXP (..., 0) on RTL nodes which are not SET or CLOBBER.
12420
12421         * i386.md (define_expand "clrstrsi"): Fix typo.
12422
12423 Fri Feb 25 18:49:39 2000  "K. Richard Pixley" <rich@microunity.com>
12424
12425         * rtl.texi: Fix typo.
12426
12427 Fri Feb 25 20:02:35 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12428
12429         * sh.c (calc_live_regs): Multiply value assigned to *COUNT_PTR by
12430         UNITS_PER_WORD.  Change caller initial_elimination_offset.
12431         (rounded_frame_size): Take into account that argument pushed has
12432         changed.  Fix TARGET_ALIGN_DOUBLE problem.
12433
12434 2000-02-25  Geoff Keating  <geoffk@cygnus.com>
12435
12436         * haifa-sched.c (schedule_block): Explain the real reason
12437         we delete REG_SAVE_NOTEs on the first insn of a block.
12438         Don't delete REG_SAVE_NOTES for NOTE_INSN_SETJMP.
12439
12440 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
12441
12442         * input.h (push_srcloc): New function.
12443         (pop_srcloc): Likewise.
12444         * toplev.c (push_srcloc): Define it.
12445         (pop_srcloc): Likewise.
12446
12447 2000-02-24  Richard Henderson  <rth@cygnus.com>
12448
12449         * flow.c (life_analysis): When collecting reg info, clear
12450         regs_ever_live.
12451
12452 Thu Feb 24 22:06:52 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12453
12454         Fix bug exposed by reload.c no longer rounding the frame
12455         size to BIGGEST_ALIGNMENT:
12456         * sh.c (rounded_frame_size): New function.
12457         (sh_expand_prologue, sh_expand_epilogue): Use it.
12458         (initial_elimination_offset): Likewise.
12459
12460 Thu Feb 24 20:04:11 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12461
12462         Fix breakage from 6th Feb thread_prologue_and_epilogue_insns change:
12463         * sh-protos.h (sh_need_epilogue): Declare.
12464         * sh.c (sh_need_epilogue_known): New static variable.
12465         (sh_need_epilogue): New function.
12466         (function_epilogue): Clear need_epilogue_known.
12467         * sh.md (return): Split into expander / insn pattern.
12468         Make the expander conditional on ! sh_need_epilogue ().
12469
12470 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
12471
12472         * machmode.h (get_mode_alignment): Declare.
12473         (GET_MODE_ALIGNMENT): Call it.
12474         * stor-layout.c (get_mode_alignment): New function. Make
12475         sure alignment is always power of 2.
12476
12477 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
12478
12479         * i386.h: Remove useless definition of "I386" and misleading
12480         comment above it.
12481
12482 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
12483
12484         * tree.h (TREE_SET_PERMANENT): New macro.  Document conditions
12485         under which TREE_PERMANENT will be set.
12486         * tree.c (make_node, copy_node, make_tree_vec, tree_cons,
12487         build1): Use TREE_SET_PERMANENT.
12488         * print-tree.c (print_node): Don't report value of
12489         TREE_PERMANENT if ggc_p is true.
12490
12491         * c-common.c (c_get_alias_set): Don't use TREE_PERMANENT to
12492         decide whether to give a type a new alias set.
12493         * objc/objc-act.c (build_objc_string_object): Never copy the string.
12494         * tree.c (make_node): Set DECL_IN_SYSTEM_HEADER irrespective
12495         of value of 'obstack'.
12496
12497
12498 2000-02-24  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
12499
12500         * config/c4x/c4x.c (c4x_process_after_reload): Split all insns.
12501
12502 2000-02-23  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
12503
12504         * cpplib.h (enum cpp_token): Added CPP_WCHAR and CPP_WSTRING.
12505         * cpplib.c (cpp_get_token): Produce them.
12506         * cppexp.c (cpp_lex): Handle them.
12507
12508 2000-02-23  Nick Clifton  <nickc@cygnus.com>
12509
12510         * config/arm/arm.c (arm_comp_type_attributes): Simply and
12511         comment tests on type attributes.
12512
12513 Wed Feb 23 16:42:21 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12514
12515         * final.c (shorten_branches): Make value passed to LOOP_ALIGN
12516         conform to documentation.
12517         * sh.h (LOOP_ALIGN): If aligning loops, call sh_loop_align
12518         to check for special cases.
12519         * sh-protos.h (sh_loop_align): Declare.
12520         * sh.c (sh_loop_align): Define.
12521
12522 2000-02-22  Andrew Haley  <aph@cygnus.com>
12523
12524         * config/mips/mips.h (GAS_ASM_SPEC): Pass -mgp32/-mgp64 to gas.
12525         (SIZE_TYPE): Is 32 bits when using -mgp32.
12526         (PTRDIFF_TYPE): Ditto.
12527
12528 Wed Feb 23 07:26:27 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12529
12530         * diagnostic.c (init_output_buffer): Handle case of null PREFIX.
12531
12532 2000-02-23  Zack Weinberg  <zack@wolery.cumb.org>
12533
12534         * config/i386/i386.h: If IN_TARGET_LIBS is defined, make
12535         BIGGEST_FIELD_ALIGNMENT a constant.
12536
12537 2000-02-21  Jason Merrill  <jason@casey.cygnus.com>
12538
12539         * dwarf2out.c (output_line_info): Put the marker for the end of
12540         the line number info at the actual end.
12541         (gen_struct_or_union_type_die): Use decl_function_context
12542         to check for local classes.
12543         * dwarfout.c (output_type): Likewise.
12544
12545 Tue Feb 22 01:38:57 2000  Jeffrey A Law  (law@cygnus.com)
12546
12547         * pa.h (FUNCTION_ARG_PASS_BY_REFERENCE): Handle pass-by-reference
12548         for arguments with a mode, but no type.
12549         (FUNCTION_ARG_CALLEE_COPIES): Similarly.
12550         * t-pa (LIB2FUNCS_EXTRA): Add quadlib.asm.
12551         * pa/long_double.h: New file.
12552         * configure.in (hpux10, hpux11 configurations): hpux10 and hpux11
12553         both have 128bit wide long doubles.
12554         * configure: Rebuilt.
12555
12556 2000-02-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12557
12558         * defaults.h (ASM_OUTPUT_ASCII): Constify a char*.
12559
12560         * flow.c (get_common_dest, chain_reorder_blocks, make_reorder_chain,
12561         fixup_reorder_chain, skip_insns_between_block): Add static prototypes.
12562         (life_analysis): Wrap variable `i' with macro ELIMINABLE_REGS.
12563
12564         * haifa-sched.c (rank_for_schedule): Don't cast away const-ness.
12565
12566         * integrate.c (compare_blocks, find_block): Likewise.
12567
12568         * rtl.c (fatal_with_file_and_line): Add ATTRIBUTE_PRINTF_2.
12569
12570         * rtl.h (set_file_and_line_for_stmt): Constify a char*.
12571
12572         * stmt.c (stmt_status, set_file_and_line_for_stmt,
12573         expand_asm_operands): Likewise.
12574
12575 Mon Feb 21 17:06:27 2000  Jason Eckhardt  <jle@cygnus.com>
12576
12577         * predict.c (estimate_probability): Added the pointer heuristic to
12578         the collection of static branch predictors.
12579
12580 2000-02-21  Catherine Moore  <clm@cygnus.com>
12581
12582         * config/mips/mips.h (ASM_SPEC): Add -mfix700.
12583         * invoke.texi (-mfix7000): Document.
12584
12585 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
12586
12587         * diagnostic.c (init_output_buffer): Make it possible to output at
12588         least 32 characters if we're given a too long prefix.
12589
12590 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
12591
12592         * varasm.c (initializer_constant_valid_p): Call
12593         lang_expand_constant to simplify the constant.
12594
12595 2000-02-20  Bruce Korb  <bkorb@gnu.org>
12596
12597         * fixinc/inclhack.def(stdio_va_list):
12598         typedef needs to be disabled.
12599         * fixinc/inclhack.sh: regen
12600         * fixinc/fixincl.x: regen
12601
12602 2000-02-20  Geoff Keating  <geoffk@cygnus.com>
12603
12604         * print-rtl.c (print_rtx): Don't print addresses when
12605         flag_dump_unnumbered.
12606
12607 2000-02-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12608
12609         * sparc.c (sparc_output_scratch_registers): Mark parameter with
12610         ATTRIBUTE_UNUSED.
12611         (sparc_va_arg, sparc_flat_output_function_prologue,
12612         sparc_flat_output_function_epilogue): Cast value to unsigned in
12613         comparison.
12614         (sparc_emit_float_lib_cmp): Remove unused variable `cmp'.
12615
12616         * sparc.md: Add default case in switch.
12617
12618 2000-02-19  Richard Henderson  <rth@cygnus.com>
12619
12620         * c-typeck.c (add_pending_init): Don't abort for multiple
12621         fields at the same offset.
12622         (pending_init_member): Test the correct member.
12623
12624 2000-02-19  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
12625
12626         * except.c (start_dynamic_handler) : Use TYPE_MODE (integer_type_node)
12627         instead of SImode.
12628         (start_catch_handler) : Same.
12629
12630 2000-02-19  Brad Lucier  (lucier@math.purdue.edu)
12631
12632         * Makefile.in: Have flow.o depend on $(EXPR_H)
12633
12634 Sat Feb 19 18:43:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12635
12636         * c-common.c (decl_attributes): Set DECL_SIZE_UNIT.
12637         * c-decl.c (duplicate_decls, finish_enum): Likewise.
12638         (finish_decl): Remove -Wlarger-than code from here.
12639         * flags.h (id_clash_len): Now int.
12640         (larger_than_size): Now HOST_WIDE_INT.
12641         * fold-const.c (size_int_wide): No more HIGH parm; NUMBER is signed.
12642         Clean up checking to see if in table.
12643         (make_bit_field_ref): Remove extra parm to bitsize_int.
12644         * ggc-common.c (ggc_mark_tree_children): Mark DECL_SIZE_UNIT.
12645         * print-tree.c (print_node): Print DECL_SIZE_UNIT and TYPE_SIZE_UNIT.
12646         * stmt.c (expand_decl): Use DECL_SIZE_UNIT for stack checking size
12647         and for computing size of decl.
12648         * stor-layout.c (layout_decl): Set DECL_SIZE_UNIT.
12649         Move -Wlarger-than code to here.
12650         (layout_record): Remove extra arg to bitsize_int.
12651         Set TYPE_BINFO_SIZE_UNIT.
12652         (layout_union): Remove extra arg to bitsize_int.
12653         Use proper type for size of QUAL_UNION.
12654         (layout_type): Remove extra arg to bitsize_int.
12655         * toplev.c (id_clash_len): Now int.
12656         (larger_than_size): Now HOST_WIDE_INT.
12657         (decode_W_option): Clean up id-clash and larger-than- cases.
12658         * tree.c (get_identifier, maybe_get_identifier): Remove unneeded casts.
12659         (expr_align, case FUNCTION_DECL): DECL_ALIGN is not defined.
12660         * tree.h (BINFO_SIZE_UNIT, TYPE_BINFO_SIZE_UNIT, DECL_SIZE_UNIT): New.
12661         (struct tree_decl): New field size_unit.
12662         (size_int_wide): No HIGH operand; NUMBER is now signed.
12663         (size_int_2): Deleted.
12664         (size_int, bitsize_int): Don't use it and rework args.
12665         * varasm.c (assemble_variable, output_constructor): Use DECL_SIZE_UNIT.
12666
12667 Fri Feb 18 20:01:58 2000  Jeffrey A Law  (law@cygnus.com)
12668
12669         * pa/quadlib.asm (_U_QFgt, _U_Qfge): Fix flags for _U_Qfcmp call.
12670
12671 2000-02-18  Geoff Keating  <geoffk@cygnus.com>
12672
12673         * invoke.texi (Warning Options): Add an explanation of why
12674         you might want the -Wfloat-equal flag.
12675
12676 Fri Feb 18 20:08:57 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12677
12678         * bitmap.c (bitmap_operation): Avoid using -1 for index since unsigned.
12679         * cppinit.c (new_pending_define): Add cast to avoid warning.
12680         * expmed.c (extract_bit_field): Likewise.
12681         * flow.c (enum reorder_skip_type): New type.
12682         (skip_insns_between_blcok): New it.
12683         Rework to avoid warning about possibly undefined variable.
12684         * function.c (assign_parms): Make thisparm_boundary unsigned.
12685         * genrecog.c (write_switch): Cast XWINT result to int.
12686         * lcm.c: Many static fcns and vars now #ifdef OPTIMIZE_MODE_SWITCHING.
12687         * mips-tfile.c (init_file): Make two versions of FDR intializer:
12688         one for MIPS and one for Alpha.
12689         (get_tag, copy_object): Add casts to avoid warnings.
12690         * optabs.c (init_one_libfunc): Cast NAME to (char *).
12691         * reload.c (find_reloads): Make TYPE enum reload_type.
12692         * sbitmap.c (dump_sbitmap): J is unsigned; don't use "1L".
12693         * unroll.c (unroll_loop): Initialize UNROLL_NUMBER.
12694         * varasm.c (compare_constant_1): Add cast to avoid warning.
12695         * config/alpha/alpha.c (alpha_emit_xfloating_libcall): Cast FUNC
12696         to (char *).
12697         (alpha_expand_unaligned_load, alpha_expand_unaligned_store):
12698         Cast switch operand of size to int.
12699         (alpha_expand_epilogue): Always initialize fp_offset and sa_reg.
12700         * config/alpha/alpha.h (INITIAL_ELIMINATION_OFFSET): Add abort
12701         in unhandled case.
12702
12703 2000-02-18  Nick Clifton  <nickc@cygnus.com>
12704
12705         * config/arm/elf.h (ASM_OUTPUT_ALIGN): Do not generate
12706         anything for an alignment of zero.
12707
12708         * config/arm/thumb.h (ASM_OUTPUT_ALIGN): Do not generate
12709         anything for an alignment of zero.
12710
12711 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
12712
12713         * gcc.texi (Bug Reporting): Refer to bugs.html.
12714         (Bug Lists): Likewise.
12715         * system.h (GCCBUGURL): New preprocessor define.
12716         * rtl.c (fancy_abort): Use it.
12717         * gcc.c (main): Likewise.
12718
12719 2000-02-18  Richard Henderson  <rth@cygnus.com>
12720
12721         * flow.c (INSN_VOLATILE, SET_INSN_VOLATILE, uid_volatile): Remove.
12722         (life_analysis_1): Subsume into ...
12723         (life_analysis): ... here.  Force PROP_REG_INFO off after reload.
12724         Use update_life_info for the relaxation.
12725         (update_life_info): Update REG_BASIC_BLOCK for registers live on
12726         entry and regs_live_at_setjmp.
12727         (set_noop_p): Simplify.
12728         (notice_stack_pointer_modification_1): Renamed from s/_1//.
12729         (record_volatile_insns): Split into ...
12730         (delete_noop_moves): ... here,
12731         (notice_stack_pointer_modification): ... here,
12732         (insn_dead_p): ... and here.
12733         (propagate_block): Don't query INSN_VOLATILE.
12734         (mark_used_regs): Mind !PROP_REG_INFO.
12735         * toplev.c (rest_of_compilation): Call mark_constant_function here,
12736         not in life_analysis.
12737
12738 Fri Feb 18 01:29:22 EST 2000  John Wehle  (john@feith.com)
12739
12740         * loop.c (canonicalize_condition): New function,
12741         broken out of get_condition.
12742         (get_condition): Use it.
12743         * expr.h (canonicalize_condition): Prototype it.
12744
12745         * tree.h (tree_int_cst_msb): Declare.
12746         * tree.c (tree_int_cst_msb): New function.
12747
12748 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
12749
12750         * stmt.c (set_file_and_line_for_stmt): Don't crash if cfun->stmt
12751         isn't set.
12752
12753         * invoke.texi (-fmessage-length=n): Document.
12754
12755 2000-02-17  Jason Merrill  <jason@casey.cygnus.com>
12756
12757         * bitmap.c (bitmap_operation): Don't leak bitmap elements.
12758
12759 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
12760
12761         * function.c (thread_prologue_and_epilogue_insns): Put a line note
12762         after the prologue.
12763
12764 2000-02-17  Nick Clifton  <nickc@cygnus.com>
12765
12766         * config/arm/thumb.c: Replace includes of system headers with
12767         #include "system.h".
12768
12769 2000-02-16  Richard Henderson  <rth@cygnus.com>
12770
12771         * configure.in (alpha-linux*, alpha-netbsd) [extra_parts]:
12772         Add crtbeginS.o and crtendS.o.
12773         * alpha/elf.h (STARTFILE_SPEC): Use crtbeginS.o.
12774         (ENDFILE_SPEC): Use crtendS.o.
12775         * alpha/t-crtbe (crtbeginS.o, crtendS.o): New targets.
12776
12777         * alpha/crtbegin.asm (__do_frame_takedown): Merge into ...
12778         (__do_global_dtors_aux): ... here.  Call __cxa_finalize if
12779         shared and present.
12780         (__dso_handle): New variable.
12781         * alpha/crtend.asm (__do_global_ctors_aux): Remove runtime
12782         bias to __CTOR_END__.
12783
12784 2000-02-16  Richard Henderson  <rth@cygnus.com>
12785
12786         * Makefile.in (s-crtS, crtbeginS, crtendS): Prefix usage with $(T).
12787
12788 Wed Feb 16 21:40:04 2000  Hans-Peter Nilsson  <hp@bitrange.com>
12789
12790         * longlong.h (__clz_tab): Declare as static to match definition.
12791
12792 2000-02-16 Mark Elbrecht <snowball3@bigfoot.com>
12793
12794         * i386/xm-djgpp.h (LIBSTDCXX): Delete. Moved to config/i386/djgpp.h.
12795         (XREF_FILE_NAME): Define.
12796
12797         * i386/djgpp.h (DATA_SECTION_ASM_OP): Define.
12798         (EH_FRAME_SECTION_ASM_OP): Define.
12799         (IDENT_ASM_OP): Define.
12800         (TEXT_SECTION_ASM_OP): Define.
12801         (CPP_SPEC): Define.
12802         (CTORS_SECTION_ASM_OP): Define.
12803         (CTOR_SECTION_FUNCTION): Use it.
12804         (DTORS_SECTION_ASM_OP): Define.
12805         (DTOR_SECTION_FUNCTION): Use it.
12806
12807 2000-02-16  Zack Weinberg  <zack@wolery.cumb.org>
12808
12809         * reg-stack.c (emit_swap_insn): Do not put a new insn before a
12810         NOTE_BASIC_BLOCK.
12811
12812         * flow.c (dump_regset, debug_regset, dump_bb, debug_bb,
12813         debug_bb_n): New functions.
12814         (dump_flow_info, print_rtl_with_bb): Use dump_regset.
12815         * basic-block.h: Prototype new functions.
12816
12817 Wed Feb 16 21:07:53 2000  Denis Chertykov  <denisc@overta.ru>
12818
12819         * configure.in: Add support for avr target.
12820         * configure: Rebuilt.
12821
12822         * invoke.texi: Add AVR invocation docs.
12823         * install.texi: Add information about AVR.
12824         * md.texi: Add AVR constraint letters description.
12825         * extend.texi: Add description for AVR specific attributes.
12826
12827 2000-02-16  Jason Merrill  <jason@casey.cygnus.com>
12828
12829         * fixinc/fixinc.svr4: Wrap byteorder.h with extern "C".
12830
12831 2000-02-16  Nick Clifton  <nickc@cygnus.com>
12832
12833         * emit-rtl.c (emit_insn): Move RTL check into make_insn_raw.
12834         (make_insn_raw): Move RTL check here.
12835
12836 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12837
12838         * version.c: Include gansidecl.h and version.h.
12839
12840         * version.h: Wrap entire file in macro __GCC_VERSION_H__.
12841
12842         * configure.in (gcc_version): When setting, narrow search to
12843         lines containing `version_string'.
12844
12845         * Makefile.in (mainversion): Likewise.
12846         (GCC_H): New variable.
12847         (gcc.h): Delete target.
12848         (gcc.o, gccspec.o, cppspec.o): Depend on $(GCC_H), not gcc.h.
12849         (version.o): Depend on version.h.
12850         (dbxout.o): Don't depend on gcc.h.
12851
12852 Wed Feb 16 15:04:49 2000  Hans-Peter Nilsson  <hp@bitrange.com>
12853                           Michael Meissner  <meissner@cygnus.com>
12854
12855         * md.texi (Simple Constraints): Add item about whitespace.
12856         * genoutput.c (strip_whitespace): New.
12857         (scan_operands) [MATCH_OPERAND, MATCH_SCRATCH]: Call
12858         strip_whitespace for constraints.
12859         Test pointer using NULL, not 0.
12860
12861 2000-02-16  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
12862
12863         * cpplib.c (do_line): Pedwarn for #line > 32767.
12864
12865         * c-lex.c (readescape): Warn about '\x', but do not reject it.
12866
12867 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
12868
12869         * gcc.c (default_compilers): Add new __GNUC_PATCHLEVEL__ define
12870         to default cpp spec.
12871         (do_spec_1): Add support for %v3 spec used by __GNUC_PATCHLEVEL__.
12872         * cpp.texi: Document __GNUC_PATCHLEVEL__.
12873         * cpp.1: Likewise.
12874
12875         * objc/lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to
12876         default spec.
12877
12878 2000-02-15  Denis Chertykov  <denisc@overta.ru>
12879
12880         * configure.in: Add support for avr target.
12881
12882 Wed Feb 16 03:21:43 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12883
12884         * sh.h (OVERRIDE_OPTIONS): Don't set sh_addr_diff_vec_mode.
12885         (sh_addr_diff_vec_mode): Don't declare.
12886         * sh.c (sh_addr_diff_vec_mode): Delete.
12887
12888 Wed Feb 16 01:27:52 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12889
12890         * sh.md (mulsi3_highpart): Add REG_EQUAL note to last insn.
12891
12892 Wed Feb 16 00:58:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12893
12894         * sh.md (udivsi3_i1, divsi3_i1, umulhisi3_i, mulhisi3_i): Name.
12895         (smulsi3_highpart_i): Name.
12896         (udivsi3): Wrap emitted insns in REG_LIBCALL / REG_RETVAL notes.
12897         (divsi3, mulhisi3, umulhisi3, mulsidi3, umulsidi3): Likewise.
12898         (smulsi3_highpart, umulsi3_highpart): Likewise.
12899
12900         (mulsidi3_i, umulsidi3_i): Make rtl describe operation
12901         correctly independent of endianness.
12902         (mulsidi3, umulsidi3): Now define_insn.  Hide details that
12903         confuse the optimizers.
12904         (mulsidi3+1, umulsidi3+1): New define_split.
12905
12906 Tue Feb 15 23:22:26 2000  Andrew Haley  <aph@cygnus.com>
12907
12908         * config/sh/sh.md: Guard insn splits against illegal registers.
12909         * config/sh/sh.h: Correct comment about macros.
12910
12911 Tue Feb 15 22:30:36 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12912                           Andrew MacLeod  <amacleod@cygnus.com>
12913
12914         * Makefile.in (lcm.o): Depend on insn-attr.h.
12915         * basic-block.h (optimize_mode_switching): Declare.
12916         * lcm.c (tm_p.h, insn-attr.h): #include.
12917         (seginfo, bb_info): New structs.
12918         (antic, transp, comp, delete, insert) : New file-scope static variables.
12919         (new_seginfo, add_seginfo, make_preds_opaque, reg_dies): New functions.
12920         (reg_becomes_live, optimize_mode_switching): Likewise.
12921         * tm.texi: Add description of mode switching macros.
12922         * toplev.c (rest_of_compilation): Call optimize_mode_switching.
12923
12924         * sh-protos.h (remove_dead_before_cse): Remove prototype.
12925         (fldi_ok, fpscr_set_from_mem): New prototypes.
12926         * sh.h (OPTIMIZATION_OPTION): Remove sh_flag_remove_dead_before_cse set.
12927         (CONST_DOUBLE_OK_FOR_LETTER_P, SECONDARY_INPUT_RELOAD_CLASS):
12928         Disable fldi for (TARGET_SH4 && ! TARGET_FMOVD).
12929         (sh_flag_remove_dead_before_cse): Remove declaration.
12930         (NUM_MODES_FOR_MODE_SWITCHING, OPTIMIZE_MODE_SWITCHING): New macros.
12931         (MODE_USES_IN_EXIT_BLOCK, MODE_NEEDED, MODE_AT_ENTRY): Likewise.
12932         (MODE_PRIORITY_TO_MODE, EMIT_MODE_SET): Likewise.
12933         * sh.c (broken_move): Disable fldi for (TARGET_SH4 && ! TARGET_FMOVD).
12934         (barrier_align): Allow for JUMP_INSNS containing a parallel.
12935         (machine_dependent_reorg): Remove sh_flag_remove_dead_before_cse set.
12936         (fldi_ok): New function.
12937         (get_fpscr_rtx): Add fpscr_rtx as GC root.
12938         (emit_sf_insn): Only generate fpu switches when optimize < 1.
12939         (emit_df_insn): Likewise.
12940         (expand_fp_branch, emit_fpscr_use, remove_dead_before_cse): Delete.
12941         (sh_flag_remove_dead_before_cse): Delete.
12942         (get_free_reg, fpscr_set_from_mem): New functions.
12943         * sh.md (movdf, movsf): Remove no_new_pseudos code.
12944         (return): Remove emit_fpscr_use / remove_dead_before_cse calls.
12945
12946 2000-02-15  Loren Rittle  <ljrittle@acm.org>
12947
12948         * ginclude/stddef.h: Correct usage of _BSD_RUNE_T_ for FreeBSD.
12949
12950 2000-02-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12951
12952         * Makefile.in (TREE_H, collect2.o, gcc.h, mips-tfile.o, cccp.o,
12953         cpphash.o, cppinit.o, protoize.o, unprotoize.o): Depend on version.h.
12954
12955         * cccp.c: Include version.h and/or don't declare `version_string'.
12956         * collect2.c: Likewise.
12957         * alpha.c: Likewise.
12958         * arm/aof.h: Likewise.
12959         * arm/coff.h: Likewise.
12960         * arm/elf.h: Likewise.
12961         * arm/pe.h: Likewise.
12962         * arm/tcoff.h: Likewise.
12963         * arm/telf.h: Likewise.
12964         * arm/tpe.h: Likewise.
12965         * arm/vxarm.h: Likewise.
12966         * convex/convex.c: Likewise.
12967         * i386/dgux.c: Likewise.
12968         * i386/sun386.h: Likewise.
12969         * m88k/m88k.c: Likewise.
12970         * mcore/mcore-pe.h: Likewise.
12971         * mips/mips.h: Likewise.
12972         * romp/romp.h: Likewise.
12973         * sh/sh.c: Likewise.
12974         * cpphash.c: Likewise.
12975         * cppinit.c: Likewise.
12976         * dwarf2out.c: Likewise.
12977         * dwarfout.c: Likewise.
12978         * gcc.c: Likewise.
12979         * gcc.h: Likewise.
12980         * mips-tfile.c: Likewise.
12981         * protoize.c: Likewise.
12982         * toplev.c: Likewise.
12983         * tree.h: Likewise.
12984
12985         * version.c (version_string): Constify a char*.
12986
12987         * version.h: New file.
12988
12989 2000-02-14  Nick Clifton  <nickc@cygnus.com>
12990
12991         * configure.in: Add mcore-elf and mcore-pe targets.
12992         * configure: Regenerate.
12993
12994         * NEWS: Add note that MCore port has been contributed.
12995
12996         * invoke.texi: Document command line switches for MCore port.
12997         * install.texi: Add MCore to list of supported targets.
12998
12999 2000-02-14  Geoff Keating  <geoffk@cygnus.com>
13000
13001         * collect2.c (main) [COLLECT_EXPORT_LIST]: If we have frames,
13002         then we will need to import the frame handling functions.
13003         (scan_prog_file) [COLLECT_EXPORT_LIST]: We will also need
13004         to import the frames themselves.
13005
13006 Mon Feb 14 13:31:01 2000  Stan Cox  <scox@cygnus.com>
13007                           Jason Eckhardt  <jle@cygnus.com>
13008
13009         * basic_block.h: Added prototype for reorder_basic_blocks.
13010         * toplev.c: Changes to add -freorder-blocks and graph dump after
13011         block reordering is done.
13012         * flow.c (reorder_block_def): New structure for use during block
13013         reordering.
13014         (REORDER_BLOCK_*): New macros to access members of above structure.
13015         (skip_insns_between_block, get_common_dest, chain_reorder_blocks,
13016         make_reorder_chain, fixup_reorder_chain, reorder_basic_blocks): New
13017         functions for block reordering.
13018
13019 Mon Feb 14 11:24:44 2000  Hans-Peter Nilsson  <hp@bitrange.com>
13020
13021         * gcc.texi (Passes): Fix typo.
13022         * md.texi (Standard Names): Ditto.
13023         * tm.texi (Storage Layout): Ditto.
13024
13025 2000-02-13  Zack Weinberg  <zack@wolery.cumb.org>
13026
13027         * cpplib.c (do_define): Only free the old definition if it
13028         actually had one.
13029
13030 2000-02-13   Neil Booth  <NeilB@earthling.net>
13031
13032         * cppfiles.c (read_and_prescan): When emitting deferred
13033         newlines, test speccase[] again instead of checking each
13034         possible whitespace character in turn.  When we encounter \r,
13035         look behind for \n first, then ahead.
13036
13037 2000-02-13  Zack Weinberg  <zack@wolery.cumb.org>
13038
13039         * cse.c (cse_altered): New internal flag.
13040         (cse_insn): Set it if we changed an insn.
13041         (cse_main): Clear cse_altered before each basic block.
13042         Only garbage collect if cse_altered is true afterward.
13043
13044 Sun Feb 13 14:12:28 2000  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
13045
13046         * sparc/sol2.h (LIB_SPEC): Link -ldl if profiling.
13047
13048 Sun Feb 13 13:21:55 2000  Jeffrey A Law  (law@cygnus.com)
13049
13050         * combine.c (simplify_comparison): Fix typo.
13051
13052 Sun Feb 13 12:57:52 2000  Neil Booth <NeilB@earthling.net>
13053
13054         * prefix.c (concat, lookup_key): Use xmalloc and xrealloc
13055         consistently.
13056
13057 2000-02-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13058
13059         * flow.c (flow_loop_tree_node_add): Use better algorithm by passing
13060         previously inserted node instead of root node.  Caller changed.
13061
13062 2000-02-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13063
13064         * basic-block.h (FLOW_LOOP_FIRST_BLOCK, FLOW_LOOP_LAST_BLOCK): Delete.
13065
13066 2000-02-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13067
13068         * crtstuff.c (__do_global_ctors_aux, __reg_frame_ctor,
13069         __dereg_frame_dtor): Add prototype argument.
13070
13071         * gthr-dce.h (__gthread_active_p, __gthread_once): Likewise.
13072
13073         * gthr-posix.h (__gthread_active_p, __gthread_once): Likewise.
13074
13075         * gthr-solaris.h (__gthread_active_p, __gthread_once): Likewise.
13076
13077         * gthr-vxworks.h (__gthread_once): Likewise.
13078
13079         * gthr-win32.h (__gthread_active_p, __gthread_once): Likewise.
13080
13081 Sat Feb 12 01:44:26 MET 2000  Jan Hubicka  <jh@suse.cz>
13082
13083         * i386.c (ix86_emit_restore_regs_using_mov): Break out from ...
13084         (ix86_expand_epilogue): ... here. Use mov instead of add to restore
13085         stack pointer in functions w/o saved registers, output LEAVE more often
13086         on TARGET_USE_LEAVE machines.
13087
13088 2000-02-07  Dmitri Makarov  <dim@wrs.com> & Bernd Schmidt <bernds@redhat.com>
13089
13090         * config/arm/arm.c (arm_init_cumulative_args); New function:
13091         Initlaise the CUMULATIE_ARGS strcuture for a function
13092         defintion.
13093         (arm_function_arg): New function: Determine where to place a
13094         function's argument.  Also handles deciding the function's
13095         call cookie.
13096         (current_file_function_operand): New function: Return true if
13097         the symbol is a function which has already been compiled.
13098         (arm_is_long_call_p): New function: Return true if the
13099         indicated function should be called via a long call.
13100         (arm_valid_type_attribute_p): New function: Return true if the
13101         attribute is a valid, arm specific, attribute.
13102         (arm_comp_type_attribute): New function: Return true if the
13103         two types have compatable, arm specific, attributes.
13104
13105         * config/arm/arm.h (CUMULATIVE_ARGS): Redefine to be a
13106         structure.
13107         (FUNCTION_ARG): Redefine to call arm_function_arg.
13108         (FUNCTION_ARG_PARTIAL_NREGS): Redefine to use correct
13109         structure field.
13110         (INIT_CUMULATIVE_ARGS): Redefine to call
13111         arm_init_cumulative_args.
13112         (FUNCTION_ARG_ADVANCE): Redefine to use correct structure
13113         field.
13114         (SETUP_INCOMING_VARARGS): Redefine to use correct structure
13115         field.
13116         (ARM_MARK_NEARBY_FUNCTION): New macro: Mark already compiled
13117         functions.
13118         (ENCODE_SECTION): Add call to ARM_MARK_NEARBY_FUNCTION.
13119         (VALID_MACHINE_TYPE_ATTRIBUTE): Define.
13120         (COMP_TYPE_ATTRIBUTES): Define.
13121
13122         * config/arm/arm.md (call): Call arm_is_long_call_p to decide
13123         if a long call is needed.
13124         (call_value): Call arm_is_long_call_p to decide if a long call
13125         is needed.
13126         (call_symbol): Call arm_is_long_call_p to decide if a long call
13127         is needed.
13128
13129         * config/arm/arm-protos.h: Add prototype for arm_is_long_call_p.
13130
13131 2000-02-11  Denis Chertykov  <denisc@overta.ru>
13132
13133         * README.AVR: New file with information about the avr ports.
13134         * config/avr: New directory with avr port files.
13135
13136 2000-02-11  Andreas Jaeger  <aj@suse.de>
13137
13138         * fixinc/Makefile.in (FIXINC_DEFS): Remove unneeded @fixinc_defs@.
13139
13140 2000-02-11  Zack Weinberg  <zack@wolery.cumb.org>
13141
13142         * cpphash.c: Fix formatting, update commentary.
13143         (dump_definition): Take three separate arguments instead of a
13144         MACRODEF structure argument.
13145         * cpphash.h: Update prototype of dump_definition.
13146         * cppinit.c (cpp_finish): Update call of dump_definition.
13147
13148         * cpplib.c (do_define): Always create new hash entry with
13149         T_MACRO type.  Remove redundant check for redefinition of
13150         poisoned identifier.  Update call of dump_definition.
13151         (do_undef): Don't call check_macro_name.  Rename sym_length to
13152         len.
13153         (do_error, do_warning): Don't use copy_rest_of_line or
13154         SKIP_WHITE_SPACE.
13155         (do_warning): Don't use pedwarn for the actual warning,
13156         only the notice about its not being in the standard.  (Fixes
13157         bug with #warning in system headers.)
13158         (do_ident): Stricter argument checking - accept only a single
13159         string after #ident.  Also, macro-expand the line.
13160         (do_xifdef): Use cpp_defined.  De-obfuscate.
13161
13162         (do_pragma): Split out specific pragma handling to separate
13163         functions.  Use get_directive_token.  Update commentary.  Do
13164         not pass on #pragma once or #pragma poison to the front end.
13165         (do_pragma_once, do_pragma_implementation, do_pragma_poison,
13166         do_pragma_default): New.
13167
13168 Feb 11 12:30:53 2000  Jeffrey A Law  (law@cygnus.com)
13169
13170         * jump.c (jump_optimize_1): The first operand in a relational
13171         can be a CONST_INT.
13172         * optabs.c (emit_conditional_move): Handle relationals which
13173         have a known true/false result.
13174
13175 2000-02-11  Geoff Keating  <geoffk@cygnus.com>
13176
13177         * function.c (thread_prologue_and_epilogue_insns): Don't insert
13178         a RETURN insn into a block which already ends with a jump.
13179
13180 2000-02-11  Geoff Keating  <geoffk@cygnus.com>
13181
13182         * haifa-sched.c (BUF_LEN): Increase a lot.
13183
13184 2000-02-11  Nick Clifton  <nickc@cygnus.com>
13185
13186         * configure.in: Add tm_p_file specification for thumb targets.
13187         * configure: Regenerate.
13188
13189         * config/arm/thumb-protos.h: New file: Prototypes for exported
13190         functions defined in thumb.c.
13191
13192 2000-02-11  Robert Lipe  <robertl@sco.com>
13193
13194         * Makefile.in (bootstrap-lean): Remove additional files.
13195         (bootstrap2-lean): Likewise.
13196         (VOL_FILES): List of files for above.
13197
13198 2000-02-11  Nathan Sidwell  <nathan@acm.org>
13199
13200         * cpphash.c (special_symbol): Remove spurious argument to
13201         cpp_lookup.
13202
13203 2000-02-11  Joel Sherrill (joel@OARcorp.com>
13204
13205         * configure.in: (i*86-*-rtems*): Swapped elf and coff
13206         stanzas.
13207         * configure: Rebuilt.
13208
13209 2000-02-11  Rodney Brown  <RodneyBrown@pmsc.com>
13210
13211         * pa-protos.h: Wrap function_arg_padding in TREE_CODE #ifdef.
13212
13213 Fri Feb 11 02:59:05 2000  Jeffrey A Law  (law@cygnus.com)
13214
13215         * pa.c, pa.h: Remove trigraph sequences within comments.
13216
13217 Fri Feb 11 02:51:56 2000  Pavel Roskin <pavel_roskin@geocities.com>
13218
13219         * invoke.texi (PPC Options): -mno-new-mnenomics -> -mold-mnemonics.
13220
13221 Fri Feb 11 02:48:30 2000  Brad Lucier  (lucier@math.purdue.edu)
13222
13223         * sbitmap.h: Make SBITMAP_ELT_BITS unsigned.
13224
13225 2000-02-11  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13226
13227         * config/c4x/c4x.c (fp_zero_operand): Check for CONST_DOUBLE.
13228
13229 2000-02-11  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13230
13231         * config/c4x/c4x.h (ASM_GLOBALIZE_LABEL): Use c4x_global_label.
13232         (ASM_OUTPUT_EXTERNAL): Use c4x_external_ref.
13233         (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
13234         (ASM_FILE_END): Use c4x_file_end.
13235         * config/c4x/c4x.c (c4x_global_label): New function.
13236         (c4x_external_ref, c4x_file_end): Likewise.
13237
13238         * config/c4x/c4x-protos.h (c4x_global_label): Add prototype.
13239         (c4x_external_ref, c4x_end_file): Likewise.
13240
13241 2000-02-10  Zack Weinberg  <zack@wolery.cumb.org>
13242
13243         * cppexp.c: Don't include cpphash.h.
13244         (parse_charconst, cpp_lex): Use cpp_defined.
13245         (cpp_lex): Use get_directive_token throughout.  Remove
13246         unnecessary cases from switch.  Move assertion-handling code
13247         down to OTHER case.
13248         (cpp_parse_expr): If we see '+' or '-', check the context to
13249         determine if they are unary or binary operators.  Streamline
13250         the jumps a bit.  Do not call skip_rest_of_line.
13251
13252         * cpplib.c: Make skip_rest_of_line and cpp_skip_hspace
13253         static.  Export get_directive_token.  Update commentary.
13254         (cpp_defined): New function.
13255         (do_define): Remove reference to T_PCSTRING.  Call
13256         free_definition to release memory for old definition, when
13257         redefining a macro.
13258         (eval_if_expression): Set only_seen_white to 0 before calling
13259         cpp_parse_expr.  Call skip_rest_of_line after it returns.
13260         (cpp_read_check_assertion): Don't preserve a pointer into the
13261         token buffer across a call to cpp_get_token.
13262
13263         * Makefile.in (cppexp.o): Don't depend on cpphash.h.
13264         * cppfiles.c (redundant_include_p): Use cpp_defined.
13265         * cpphash.c (free_definition): New function.
13266         (delete_macro): Use it.  Update commentary.
13267         * cpphash.h: Typedef HASHNODE here.  Prototype cpp_lookup and
13268         free_definition.
13269         * cpplib.h: Don't typedef HASHNODE here. Delete T_PCSTRING
13270         from enum node_type.  Prototype cpp_defined and get_directive_token.
13271         Don't prototype cpp_lookup, skip_rest_of_line, or cpp_skip_hspace.
13272
13273         * fix-header.c (check_macro_names): Use cpp_defined.
13274         (read_scan_file): Set inhibit_warnings and inhibit_errors in
13275         the options structure.
13276
13277 2000-02-10  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
13278
13279         * c-pragma.c (maximum_field_alignment): Remove duplicate declaration.
13280
13281 2000-02-10  Jason Merrill  <jason@casey.cygnus.com>
13282
13283         * dwarf2out.c (add_abstract_origin_attribute): Check TREE_CODE (origin)
13284         rather than die->die_tag.
13285
13286 Thu Feb 10 16:26:49 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13287
13288         * combine.c (make_extraction, force_to_mode): Avoid warning on
13289         mixed-signedness conditionals.
13290         (make_field_assignment, nonzero_bits): Likewise.
13291         * expmed.c (store_fixed_bit_field): ALIGN arg now unsigned.
13292         (store_split_bit_field, extract_split_bit_field): Likewise.
13293         (extract_fixed_bit_field, store_bit_field,
13294         * expr.c: Change alignment to be unsigned everywhere.
13295         (move_by_pieces, store_constructor_field, store_constructor):
13296         Alignment parm is unsigned.
13297         (emit_block_move, emit_group_load, emit_group_store): Likewise.
13298         (clear_storage, emit_push_insn, compare_from_rtx): Likewise.
13299         (do_compare_rtx_and_jump): Likewise.
13300         (move_by_pieces_ninsns, clear_by_pieces): Likewise.
13301         Compare align with GET_MODE_ALIGNMENT.
13302         (expand_expr_unaligned): Pointer to alignment is pointer to unsigned.
13303         (get_inner_reference): Likewise.
13304         (copy_blkmode_from_reg, emit_push_insn): Remove unneeded casts.
13305         (expand_assignment): Local vars for alignment now unsigned.
13306         (store_constructor, store_field, expand_expr, do_jump): Likewise.
13307         (do_compare_and_jump): Likewise.
13308         (store_field): Call new function expr_align.
13309         * expr.h (emit_block_move, emit_group_load, emit_group_store):
13310         Alignment arg now unsigned.
13311         (clear_storage, emit_push_insn, compare_from_rtx): Likewise.
13312         (do_compare_rtx_and_jump, store_bit_field): Likewise.
13313         (extract_bit_field): Likewise.
13314         * fold-const.c (add_double): Add cast to eliminate signedness warning.
13315         * machmode.h (GET_MODE_ALIGNMENT): Result is unsigned.
13316         (get_best_mode): Alignment arg is unsigned.
13317         * rtl.h (move_by_pieces): Likewise.
13318         * store-layout.c (maximum_field_alignment, set_alignment):
13319         Now unsigned.
13320         (layout_decl): Alignment arg is now unsigned.
13321         Remove unneeded casts.
13322         (layout_record, layout_union, layout_type): Remove unneeded casts.
13323         Local alignment variables now unsigned.
13324         (get_best_mode): Alignment arg now unsigned.
13325         * tree.c (expr_align): New function.
13326         * tree.h (expr_align): Likewise.
13327         (maximum_field_alignment, set_alignment): Now unsigned.
13328         (get_inner_reference): Alignment argument is now pointer to unsigned.
13329         * varasm.c (assemble_variable): Add cast to eliminate warning.
13330
13331 Thu Feb 10 12:56:47 2000  Jim Wilson  <wilson@cygnus.com>
13332
13333         * expmed.c (store_bit_field): If op0 and fieldmode are the same size,
13334         then store directly into op0.
13335
13336         * calls.c (expand_call): When emitting a NOTE_INSN_SETJMP, search for
13337         the CALL_INSN, and emit the note immediately after it.
13338
13339 2000-02-10  Nick Clifton  <nickc@cygnus.com>
13340
13341         * config/arm/thumb.md (epilogue): Include a (return) in the
13342         generated insn, and emit it using emit_jump_insn not
13343         emit_insn.
13344
13345 Thu Feb 10 18:28:59 MET 2000  Jan Hubicka  <jh@suse.cz>
13346
13347         * function.c (assign_temp): Change zero-sized arrays to size 1.
13348         * integrate.c (expand_inline_function): Do not update
13349         stack_alignment_needed
13350         * i386.c (compute_frame_size): Remove #ifdef PREFERRED_FRAME_BOUNDARY,
13351         add some sanity checking, remove optimization for function with
13352         zero frame size.
13353
13354 2000-02-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13355
13356         * flow.c (mark_regs_live_at_end): Delete unused variables.
13357
13358         * ggc-page.c (ggc_page_print_statistics): bzero -> memset.
13359
13360         * integrate.c (copy_rtx_and_substitute): Wrap variable `alignment'
13361         in macro FRAME_GROWS_DOWNWARD.
13362
13363         * stmt.c (expand_end_bindings): Delete unused variable.
13364
13365         * unroll.c (iteration_info): Mark parameter `loop' with
13366         ATTRIBUTE_UNUSED.
13367
13368 2000-02-10  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
13369
13370         * fixinc/server.c (load_data): Return NULL if the marker line is
13371         not found.
13372         (run_shell): If load_data returns NULL, retry the command once, in
13373         a new shell.
13374
13375         * configure: Rebuilt.
13376
13377 2000-02-09  Bruce Korb  <bkorb@gnu.org>
13378
13379         * gcc/fixincludes:  ** DELETED **
13380         * gcc/fixcpp:  ** DELETED **
13381         * gcc/fixinc-nt.sed:  ** DELETED **
13382         * gcc/just-fixinc:  ** DELETED **
13383         * gcc/Makefile.in:  Removed out-dated commentary
13384         * gcc/configure.in: Removed fast-fixincludes disablement.
13385         * MAINTAINERS(Ian Taylor) moved to "Write after approval" group.
13386
13387 2000-02-09  Clinton Popetz  <cpopetz@cygnus.com>
13388         * function.c (thread_prologue_and_epilogue_insns): Uncomment
13389         last change.
13390
13391 2000-02-09  Richard Henderson  <rth@cygnus.com>
13392
13393         * jump.c (delete_insn): Don't delete user labels at -O0.
13394
13395 2000-02-09  Robert Lipe  <robertl@sco.com>
13396
13397         * Makefile.in (gen-protos): Don't depend on HOST_LIBDEPS.
13398         Don't link with HOST_LIBS.
13399
13400 2000-02-09  Zack Weinberg  <zack@wolery.cumb.org>
13401
13402         * configure.in: Correct --help text for --with-dwarf2.
13403         Put tm-dwarf2.h after other tm files, if it's requested.
13404         * configure: Regenerate.
13405         * config/tm-dwarf2.h: #undef PREFERRED_DEBUGGING_TYPE before
13406         defining it.
13407
13408 2000-02-09  Zack Weinberg  <zack@wolery.cumb.org>
13409
13410         * cpplib.h: Provide HASHNODE typedef and forward decl of
13411         struct hashnode only.  Kill cpp_hashnode typedef.  MACRODEF,
13412         DEFINITION, struct hashnode, struct macrodef, struct
13413         definition, scan_decls prototype, default defn of
13414         INCLUDE_LEN_FUDGE moved elsewhere.
13415
13416         * cpphash.h: MACRODEF, DEFINITION, struct macrodef, struct
13417         definition, and struct hashnode moved here. Remove the unused
13418         'predefined' field from struct definition.  Replace the 'args'
13419         union with its sole member.  All users updated (cpphash.c).
13420         Delete HASHSTEP and MAKE_POS macros, and hashf prototype.  Add
13421         multiple include guard.
13422
13423         * cpphash.c (hashf): Make static; use better algorithm; drop
13424         HASHSIZE parameter; return an unsigned int.
13425         (cpp_lookup): Drop HASH parameter.  PFILE parameter is
13426         used. Calculate HASHSIZE modulus here.
13427         (cpp_install): Drop HASH parameter. Calculate HASHSIZE modulus
13428         here.
13429         (create_definition): Drop PREDEFINITION parameter.
13430         * cpplib.c (do_define): Don't calculate a hash value here.
13431         Don't pass (keyword == NULL) to create_definition.
13432
13433         * scan.h: Prototype scan_decls here.
13434         * cppfiles.c: Move INCLUDE_LEN_FUDGE default defn here.
13435         * cppexp.c, cppfiles.c, cppinit.c, cpplib.c, fix-header.c: All
13436         callers of cpp_lookup and cpp_install updated.
13437
13438         * cpphash.c (macarg): Hoist all the flag diddling out of the
13439         function...
13440         (macroexpand): ... and out of the loop that calls macarg.
13441         Skip over the initial paren before macro arguments with
13442         cpp_get_non_space_token; point may be some distance before
13443         that paren.  Abort if it's not there.
13444
13445         * cpplib.c (parse_clear_mark): Delete function.
13446         (parse_set_mark, parse_goto_mark): Make static.
13447         (ACTIVE_MARK_P): New macro.
13448         (skip_block_comment, skip_line_comment): Do not bump the line
13449         if ACTIVE_MARK_P is true.
13450         (cpp_pop_buffer): The buffer to be popped may not have an
13451         active mark.
13452         (cpp_get_token): When looking for the initial paren before
13453         macro arguments, only set a mark in a file buffer, Always
13454         return to that mark before proceeding to call macroexpand or
13455         return a NAME token.
13456
13457         * cpplib.h: Remove prototypes of parse_set_mark,
13458         parse_clear_mark, parse_goto_mark.
13459         (struct cpp_options): Rename 'put_out_comments' to
13460         'discard_comments' and invert its sense.
13461         * cppinit.c, cpphash.c, cpplib.c: All users of
13462         put_out_comments changed to use discard_comments, with
13463         opposite sense.
13464
13465 2000-02-09  Clinton Popetz  <cpopetz@cygnus.com>
13466
13467         * function.c (thread_prologue_and_epilogue_insns): Don't delete
13468         the edge from a block that both jumps and falls through to the
13469         fallthru block.
13470
13471 2000-02-09  Scott Bambrough  <scottb@netwinder.org>
13472
13473         * config/arm/arm.md (movsi): In PIC mode, make sure that a
13474         constant source address is legitimate.
13475
13476 2000-02-09  Philip Blundell  <pb@futuretv.com>
13477
13478         * config/arm/arm.c (legitimize_pic_address): Handle LABEL_REF
13479         correctly.
13480
13481         * config/arm/arm.h (LEGITIMATE_CONSTANT_P): Allow anything when
13482         generating PIC.
13483         (LEGITIMATE_PIC_OPERAND): Disallow references to labels.
13484
13485 2000-02-09  Zack Weinberg  <zack@wolery.cumb.org>
13486
13487         * cpplib.c (cpp_define, cpp_undef): Make sure the stacked buffer
13488         ends with a newline and a NUL.  Don't be so clever manipulating
13489         strings.
13490
13491 Wed Feb  9 14:18:08 MET 2000  Jan Hubicka  <jh@suse.cz>
13492
13493         * reload1.c (reload) Align stack frame to cfun->stack_alignment_needed,
13494         not to BIGGEST_ALIGNMENT.
13495
13496 2000-02-08  Geoff Keating  <geoffk@cygnus.com>
13497
13498         * dwarf2.h (DW_CFA_GNU_negative_offset_extended): New constant.
13499         * dwarf2out.c (dwarf_cfi_name): Print name of new constant.
13500         (reg_save): Use DW_CFA_GNU_negative_offset_extended when needed.
13501         (output_cfi): Handle output of DW_CFA_GNU_negative_offset_extended.
13502         * frame.c (execute_cfa_insn): Handle
13503         DW_CFA_GNU_negative_offset_extended.
13504
13505 2000-02-08  Richard Henderson  <rth@cygnus.com>
13506
13507         * flow.c (tidy_fallthru_edges): Split out from ...
13508         (delete_unreachable_blocks): ... here.
13509         (find_basic_blocks): Use it.
13510
13511 Tue Feb  8 15:51:50 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13512
13513         * stmt.c (expand_decl): Do set RTX_UNCHANGING_P for TREE_READONLY.
13514
13515 2000-02-08  Zack Weinberg  <zack@wolery.cumb.org>
13516
13517         * Makefile.in (GEN_PROTOS_OBJS): Remove libcpp.a.
13518         (gen_protos.o): Don't depend on cpplib.h or cpphash.h.
13519         (fix-header.o): Don't depend on cpphash.h.
13520
13521         * scan.c (hashstr): New function.
13522         * scan.h: Prototype it.
13523         * fix-header.c: Don't include cpphash.h.  Use hashstr.
13524         * gen-protos.c: Don't include cpphash.h or cpplib.h.  Use
13525         hashstr.  Report hash table statistics.  Add private
13526         definition of xrealloc.
13527
13528 2000-02-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13529
13530         * i386.h (TARGET_SWITCHES): Fix typo in option name.
13531
13532 2000-02-08  Clinton Popetz  <cpopetz@cygnus.com>
13533
13534         * function.c (thread_prologue_and_epilogue_insns): Don't replace
13535         jumps with returns unless they are jumps to the fallthru block.
13536
13537 Tue Feb  8 07:53:55 2000  Jan Hubicka  <jh@suse.cz>
13538
13539         * i386.md (addqi3_cc): Fix contraints.
13540
13541 Tue Feb  8 01:39:45 2000  Hans-Peter Nilsson  <hp@bitrange.com>
13542
13543         * function.c (emit_return_into_block): Wrap in #ifdef HAVE_return.
13544
13545 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
13546
13547         * cpplib.c (cpp_get_token): Call CPP_BUMP_LINE after reading a
13548         carriage return after a macro name.
13549
13550 2000-02-07  Fred Fish  <fnf@be.com>
13551
13552         * i386/beos-elf.h: (ASM_IDENTIFY_GCC): Define to nothing
13553         so the gcc2_compiled symbol doesn't confuse BeOS debuggers.
13554
13555 2000-02-07  Zack Weinberg  <zack@wolery.cumb.org>
13556
13557         * cppfiles.c (deps_output): Count spacers in deps_column.
13558
13559 2000-02-07  Neil Booth  <NeilB@earthling.net>
13560
13561         * cppinit.c (initialize_dependency_output): If there is no
13562         suffix, don't try to look for known suffixes.  Use strrchr.
13563         (cpp_start_read): Remove duplicate initialization.
13564
13565 Mon Feb  7 18:36:41 MET 2000  Jan Hubicka  <jh@suse.cz>
13566
13567         * calls.c (compute_argument_block_size): New argument
13568         preferred_stack_boundary.
13569         (expand_call): update cfun->preferred_stack_boundary, update call of
13570         compute_argument_block_size
13571         (emit_library_call): Increate cfun->preferred_stack_boundary
13572         to PREFERRED_STACK_BOUNDARY
13573         (emit_library_call_value): Likewise.
13574         * explow.c (allocate_dynamic_stack_spave): Likewise.
13575         * function.c (prepare_function_start): Set
13576         cfun->preferred_stack_boundary
13577         * function.h (struct function): Add preferred_stack_boundary field.
13578         * integrate.c (expand_inline_function): Update
13579         cfun->preferred_stack_boundary and cfun->stack_alignment_needed.
13580         (copy_rtx_and_substitute): Align frame to stack_alignment_needed only.
13581         * i386.c (compute_frame_size): Use cfun->preferred_stack_boundary.
13582
13583 2000-02-06  Zack Weinberg  <zack@wolery.cumb.org>
13584
13585         * cpplib.c (my_strerror, cpp_error, cpp_error_with_line,
13586         cpp_error_from_errno, cpp_warning, cpp_warning_with_line,
13587         cpp_pedwarn, cpp_pedwarn_with_line,
13588         cpp_pedwarn_with_file_and_line): Move to cpperror.c.
13589         (cpp_print_file_and_line, v_cpp_error, v_cpp_warning,
13590         v_cpp_error_with_line, v_cpp_warning_with_line,
13591         cpp_message_from_errno, cpp_perror_with_name): Delete.
13592
13593         * cpperror.c (cpp_print_containing_files): Take starting
13594         buffer as argument.
13595         (cpp_file_line_for_message): Rename to cpp_print_file_and_line.
13596         (v_cpp_message): Now called directly by all entry points.
13597         Remove -1 case.
13598         (cpp_pfatal_with_name, cpp_message): Delete.
13599         (cpp_notice_from_errno, cpp_ice): New functions.
13600         (cpp_notice): Is now for reporting error conditions, just
13601         without an associated file.
13602         (cpp_error, cpp_error_with_line): Don't do anything if
13603         opts->inhibit_errors is on.
13604         (cpp_pedwarn_with_file_and_line): Take column argument also.
13605
13606         * cpplib.h: Update prototypes of exported functions.
13607         (struct cpp_options): Add inhibit_errors.
13608
13609         * cppalloc.c, cppfiles.c: Use fprintf not cpp_notice for
13610         non-error messages.  Include intl.h.
13611
13612         * cppinit.c, cppmain.c: Likewise.  Also, use
13613         cpp_notice_from_errno instead of cpp_perror_with_name or
13614         cpp_pfatal_with_name, and cpp_notice instead of cpp_message.
13615
13616         * cppexp.c, cpphash.c, cppinit.c, cpplib.c: Use cpp_ice to
13617         report internal errors.
13618
13619         * cpplib.c (do_define): Switch bcopy to memcpy.
13620         Give cpp_pedwarn_with_file_and_line a dummy column argument.
13621
13622         * cpplib.c (copy_rest_of_line): Revert previous change: don't
13623         bail out early if we hit a line comment.
13624
13625 2000-02-06  Richard Henderson  <rth@cygnus.com>
13626
13627         * flow.c (flow_delete_insn, make_edge, remove_edge): Export.
13628         * basic-block.h: Declare them.
13629         * emit-rtl.h (active_insn_p): New.
13630         (next_active_insn, prev_active_insn): Use it.
13631         * rtl.h: Declare it.
13632         * function.c (emit_return_into_block): New.
13633         (thread_prologue_and_epilogue_insns): Insert return insns instead
13634         of epilogues when possible.
13635         * jump.c (jump_optimize_1): Remove code to insert a return insn
13636         on the fallthru to the exit block.
13637
13638         * i386.c (ix86_can_use_return_insn_p): Fail for large poped args
13639         and for non-empty stack frames.
13640         * i386.md (return): Expand to return-pop as needed.
13641
13642 2000-02-06  Richard Henderson  <rth@cygnus.com>
13643
13644         * simplify-rtx.c (simplify_relational_operation): Canonicalize
13645         constant to op1 for testing.
13646
13647 2000-02-06  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13648
13649         * config/c4x/c4x.md (*ldi_on_overflow): New pattern.
13650         (fixuns_truncqfqi2): Use it.
13651
13652 2000-02-06  Richard Henderson  <rth@cygnus.com>
13653
13654         * i386.c (ix86_agi_dependant): Handle pro_epilogue_adjust_stack
13655         as a TYPE_LEA insn.
13656
13657         * i386.md (widening and peepholes): Mask the constant instead of
13658         using gen_lowpart.
13659
13660 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
13661
13662         * cppfiles.c (read_and_prescan) [case SPECCASE_QUESTION]: Bump
13663         input pointer before possibly branching off to the backslash
13664         code.
13665         * cpphash.c (macroexpand): Correctly delete \r escapes when
13666         stringifying parameters.
13667         * cpplib.c (copy_rest_of_line): Go directly to skip_block_comment
13668         if we can; bail out early if we hit a line comment.
13669         (handle_directive): Treat '# 123' in an .S file just like
13670         '# <punctuation>'.  Discard the shifted '#' if we hit '#\n'.
13671         Return 1 for '# not_a_directive'.
13672         (get_directive_token): Pop macro buffers here, so that
13673         cpp_get_token can't sneakily move past a newline.
13674         Add sanity checks.
13675         (cpp_get_token): goto randomchar if handle_directive returns 0.
13676
13677         * cppalloc.c: Update copyright.
13678         * cpplib.c: Merge all the static function prototypes into one
13679         block.
13680         * cpplib.h: Remove #if 0 block.
13681
13682         * cpperror.c: Remove #ifdef EMACS block.
13683         * cppmain.c: Likewise.
13684         * cpphash.c: Remove #if 0 blocks.
13685         * cppinit.c: Remove #if 0 blocks, and the -lint option.
13686         * cpplib.c: Remove #if 0 blocks and code referencing
13687         pcp_inside_if or for_lint.  Remove duplicate error message.
13688         Fix error messages for #else after #else or #elif.  Reformat.
13689         Remove archaic TODO list.
13690         * cpplib.h: Remove pcp_inside_if and for_lint flags.
13691
13692 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
13693
13694         * i386/osf1elf.h: Add missing backslash to multiline string.
13695
13696 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13697
13698         * longlong.h [sparc] (udiv_qrnnd): Avoid stringifying macro arg.
13699
13700 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13701
13702         * Makefile.in (c-common.o): Depend on $(EXPR_H).
13703
13704         * c-common.c: Include expr.h.
13705
13706         * c-pragma.c (mark_align_stack): Add prototype.
13707
13708         * caller-save.c (add_stored_regs): Likewise.
13709
13710         * combine.c (record_promoted_value): Likewise.
13711
13712         * i386.c (ix86_sched_reorder_pentium, ix86_sched_reorder_ppro):
13713         Likewise.
13714
13715         * cppinit.c (new_pending_define): Likewise.
13716
13717         * cpplib.c (skip_block_comment, skip_line_comment): Likewise.
13718
13719         * dwarf2out.c (save_rtx, splice_child_die, reverse_die_lists,
13720         AT_class, AT_flag, AT_int, AT_unsigned, AT_string, AT_ref, AT_loc,
13721         AT_addr, AT_lbl, get_AT_ref, free_AT, free_die, local_scope_p,
13722         class_scope_p): Likewise.
13723
13724         * dwarf2out.h (dwarf2out_set_demangle_name_func,
13725         dwarf2out_add_library_unit_info): Likewise.
13726
13727         * ggc.h (ggc_page_print_statistics): Likewise.
13728
13729         * haifa-sched.c (propagate_deps): Likewise.
13730
13731         * reg-stack.c (next_flags_user, record_label_references): Likewise.
13732
13733         * rtl.h (set_stack_check_libfunc): Likewise.
13734
13735         * toplev.h (set_fatal_function): Likewise.
13736
13737         * toplev.c (set_fatal_function): Delete prototype.
13738
13739         * diagnostic.c: Deconstify functions returning malloc'ed ptrs.
13740
13741 2000-02-05  Geoff Keating  <geoffk@cygnus.com>
13742
13743         * ginclude/ppc-asm.h (FUNC_START): Use USER_LABEL_PREFIX.
13744         (FUNC_END): Likewise.
13745
13746 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13747
13748         * caller-save.c: Include tm_p.h.
13749
13750 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13751
13752         * Makefile.in (libgcc.a): Add $(LIBGCC1) to libgcc.a after $(LIBGCC2).
13753
13754 2000-02-04  Neil Booth  <NeilB@earthling.net>
13755
13756         * cccp.c (main): Check 'dir' for a NULL pointer before passing
13757         it to strcmp.
13758
13759 2000-02-04  Zack Weinberg  <zack@wolery.cumb.org>
13760
13761         * recog.h: Remove NO_MD_PROTOTYPES ifdefs.
13762         * genflags.c: Use the max_operand_1 logic from genemit.c to
13763         calculate how many arguments gen_insn prototypes have.  Remove
13764         NO_MD_PROTOTYPES ifdefs from the generated file.
13765         * genoutput.c: Don't define NO_MD_PROTOTYPES in the generated
13766         file.  Cast gen_insn initializers to insn_gen_fn.
13767         * config/alpha/vms.h: Don't define NO_MD_PROTOTYPES.
13768         * gcc.texi: Remove documentation of NO_MD_PROTOTYPES.
13769
13770 2000-02-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13771
13772         * fixinc/Makefile.in (HDR): Add machname.h.
13773         (clean): Likewise.
13774
13775 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13776
13777         * config/c4x/c4x.h (c4x_compare_op0, c4x_compare_op1): Move ...
13778         (c4x_regclass_map, c4x_caller_save_map, c4x_rpts_cycles): Ditto.
13779         (c4x_cpu_version): Ditto.
13780         * config/c4x/c4x-protos.h: ... here.
13781
13782 2000-02-04  Jason Merrill  <jason@casey.cygnus.com>
13783
13784         * dwarf2out.c (add_abstract_origin_attribute): Don't call
13785         gen_abstract_function on our context if we're a nested function.
13786
13787 2000-02-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
13788
13789         * config/c4x/c4x.md (fixuns_truncqfqi2): Rewrite.
13790         * config/c4x/libgcc.S (ufix_truncqfhi2n): Fix.
13791
13792 2000-02-04  Bruce Korb  <bkorb@gnu.org>
13793
13794         * fixinc/genfixes(machname.h):
13795         Move the functionality from gen-machine.h into this file.
13796         UNdef MN_NAME_PAT if there are no names to change.
13797         Also, be a little kinder when AutoGen is not present.
13798
13799         * fixinc/Makefile.in(machname.h):
13800         Change the generation rule to use genfixes.
13801
13802         * fixinc/fixfixes.c(machine_name):
13803         machine_name_fix's functionality now dependent upon whether
13804         MN_NAME_PAT is defined.
13805
13806         * fixinc/fixtests.c(machine_name):
13807         ditto.
13808
13809         * fixinc/fixlib.c(mn_get_regexps): conditional on definition
13810         of MN_NAME_PAT.
13811
13812         * fixinc/fixlib.h(mn_get_regexps):
13813         ditto
13814
13815         * fixinc/gen-machine.h: DELETED
13816
13817 2000-02-04  Jan Hubicka  <jh@suse.cz>
13818             Richard Henderson  <rth@cygnus.com>
13819
13820         * i386.c (SAVE_REGS_FIRST): Remove.
13821         (ix86_initial_elimination_offset): Handle only SAVE_REGS_FIRST mode.
13822         (ix86_compute_frame_size): Likewise.
13823         (ix86_expand_prologue): Likewise.  Use pro_epilogue_adjust_stack.
13824         (ix86_emit_restore_regs): Remove.
13825         (ix86_emit_epilogue_esp_adjustment): Use pro_epilogue_adjust_stack
13826         when a frame pointer is in use.
13827         (ix86_expand_epilogue): Handle only SAVE_REGS_FIRST mode.  Use mov
13828         instead of pop to restore a register when profitable; emit leave
13829         when profitable.
13830         (ix86_attr_length_default): Handle pro_epilogue_adjust_stack
13831         as a TYPE_LEA insn.
13832         (ix86_adjust_cost): Handle pro_epilogue_adjust_stack as TYPE_ALU.
13833         * i386.md (prologue_allocate_stack): Remove.
13834         (epilogue_deallocate_stack): Remove.
13835         (pro_epilogue_adjust_stack): New.
13836
13837 2000-02-04  Richard Henderson  <rth@cygnus.com>
13838
13839         * function.c (diddle_return_value): Rework to use a callback function.
13840         Use current_function_return_rtx if it's been set up.
13841         (do_clobber_return_reg, clobber_return_register): New.
13842         (do_use_return_reg, use_return_register): New.
13843         (expand_function_end): Use them.
13844         * stmt.c (expand_null_return): Likewise.
13845         * function.h: Declare them.
13846         * flow.c (mark_regs_live_at_end): Use diddle_return_value.
13847         (mark_reg): Change arguments as appropriate for callback.
13848         * integrate.c (expand_inline_function): Revert 19 Jan change.
13849
13850 Fri Feb  4 20:25:42 2000  Hans-Peter Nilsson  <hp@bitrange.com>
13851
13852         * tm.texi (Values in Registers): Fix typo: "fo" "for".
13853         (Misc): Say the scheduler, not the Haifa scheduler.
13854
13855 2000-02-04  Clinton Popetz  <cpopetz@cygnus.com>
13856
13857         * jump.c (mark_jump_label): Add in_mem param, check SYMBOL_REFs
13858         when in_mem is set.  Update all callers.
13859
13860 2000-02-04  Richard Henderson  <rth@cygnus.com>
13861
13862         * i386/openbsd.h (INT_ASM_OP): Define.
13863
13864 Fri Feb  4 10:51:30 2000  Hans-Peter Nilsson  <hp@bitrange.com>
13865
13866         * tm.texi: Fix various typos.
13867
13868 Thu Feb  3 17:17:32 2000  Steve Ellcey <sje@cup.hp.com>
13869
13870         * config/pa/pa-hpux11.h (LIB_SPEC): Correct typo in !p case.
13871         (MD_STARTFILE_PREFIX_1): New macro.
13872
13873 Thu Feb  3 15:08:13 MET 2000  Jan Hubicka  <jh@suse.cz>
13874
13875         * i386.md (movstrsi, clrstrsi): Support variable sized copies, align
13876         destination when needed.
13877         (strmovsi, strsetsi): New expander.
13878         (strmovsi_1, strsetsi_1): New pattern.
13879         * i386.h (MASK_NO_ALIGN_STROP, MASK_INLINE_ALL_STROP,
13880         TARGET_ALIGN_STRINGOPS, TARGET_INLINE_ALL_STRINGOPS): New macros.
13881         (TARGET_SWITCHES) Add align-stringops and inline-all-stringops.
13882         * invoke.texi (align-stringops, inline-all-stringops): Document.
13883
13884 Wed Feb  2 23:04:47 2000   Krister Walfridsson <cato@df.lth.se>
13885
13886         * i386/netbsd.h (INT_ASM_OP): Define.
13887
13888 2000-02-02  Zack Weinberg  <zack@wolery.cumb.org>
13889
13890         * cpplib.h (cpp_reader): Add new flag, no_directives.
13891         * cpphash.c (macarg): Set it.
13892         * cpplib.c (handle_directive): If no_directives is on and we
13893         find a directive, issue an error and discard the line.
13894
13895 Wed Feb  2 13:07:10 2000  Jim Wilson  <wilson@cygnus.com>
13896
13897         * config/sparc/sparc.h (PREFERRED_RELOAD_CLASS): Delete 'E' check for
13898         FP constants.  Add ! TARGET_FPU check for FP constants.
13899
13900 2000-02-02  Clinton Popetz  <cpopetz@cygnus.com>
13901
13902         * flow.c (find_basic_blocks): Don't kill label_value_list
13903         here.
13904         (cleanup_cfg): Kill it here.
13905
13906 Wed Feb  2 08:12:30 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13907
13908         * expr.c (store_field): Ensure ALIGN is no stricter than the
13909         alignment of EXP.
13910
13911 2000-02-02  Richard Henderson  <rth@cygnus.com>
13912
13913         * jump.c (delete_insn): Partially revert 19 Jan change;
13914         don't convert unused code labels to notes at -O0.
13915
13916 2000-02-02 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
13917
13918         * toplev.c (rest_of_compilation): Run rebuild_jump_labels after
13919         split_all_insns to recreate REG_LABEL notes for flow2 pass.
13920
13921 2000-02-01  Richard Henderson  <rth@cygnus.com>
13922
13923         * i386.c (general_no_elim_operand): New.
13924         (nonmemory_no_elim_operand): New.
13925         (ix86_expand_move): Copy eliminable operands before a push.
13926         * i386-protos.h: Declare new functions.
13927         * i386.h (CAN_ELIMINATE): Simplify.
13928         (PREDICATE_CODES): Update.
13929         * i386.md (push insns): Don't allow eliminable register operands.
13930
13931 2000-02-01  Richard Henderson  <rth@cygnus.com>
13932
13933         * flow.c (mark_regs_live_at_end): Follow expand_function_end and
13934         replace BLKmode with DECL_RTL's mode.
13935
13936 2000-02-01  Zack Weinberg  <zack@wolery.cumb.org>
13937
13938         * frame.c (find_fde): Convert for loop to do-while so compiler
13939         sees it's always executed at least once.
13940         * libgcc2.c (BBINBUFSIZE): Kill.
13941         (__bb_init_prg): Use fgets.
13942         (__bb_exit_trace_func): Don't paste strings.
13943         * unroll.c (unroll_loop): Initialize unroll_type, not
13944         unroll_number, and tweak logic to match.
13945
13946         * i386.c (ix86_expand_int_movcc): Add explicit 'return 0' in
13947         all failure paths.
13948         (ix86_flags_dependant): Likewise.  Disentangle control flow.
13949         (ix86_sched_reorder): Break guts out to
13950         ix86_sched_reorder_pentium and ix86_sched_reorder_ppro.
13951         (ix86_sched_reorder_ppro): Initialize pair2 and insnp before
13952         any possible use.
13953
13954         * i386.h (MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Don't
13955         use string concatenation.  Don't save and restore esi.
13956
13957         * fixinc/Makefile.in (fixincl.sh): Don't depend on inclhack.def.
13958         (machname.h): Remove script to separate file.  Use two-step
13959         sequence so target is not created if script fails.
13960         * fixinc/gen-machname.h: New file.  Handle case where no non-reserved
13961         identifiers are defined.
13962         * fixinc/fixlib.c (mn_get_regexps): Return a flag: if MN_NAME_PAT is
13963         an empty string, machine_name doesn't need to do anything at
13964         all.
13965         (is_cxx_header): Add more cases to regexp.
13966         * fixinc/fixlib.h: Update prototype.
13967         * fixinc/fixtests.c, fixinc/fixfixes.c: Update callers of
13968         mn_get_regexps.
13969         * fixinc/fixincl.c: Define NO_BOGOSITY.
13970
13971         * fixinc/inclhack.def (no_double_slash, else_endif_label): Ifdef out.
13972         (hp_sysfile): Add missing comma.
13973         (math_exception): Put the wrapper ifdefs at the beginning and
13974         the end of the file.
13975         * fixinc/fixincl.x, fixinc/inclhack.sh: Regenerate.
13976
13977 2000-02-01  Richard Henderson  <rth@cygnus.com>
13978
13979         * sparc.c (fp_zero_operand): Turn into a normal predicate.
13980         Use CONST0_RTX.  Update all callers.
13981         * sparc.h, sparc-protos.h: Update accordingly.
13982         * sparc.md (fp mov insns): Use fp_zero_operand directly
13983         where applicable.
13984
13985 Wed Feb  2 02:59:45 2000  Hans-Peter Nilsson  <hp@bitrange.com>
13986
13987         * tm.texi (Values in Registers): Fix typo in HARD_REGNO_NREGS
13988         example.
13989
13990 2000-02-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13991
13992         * Makefile.in (specs.ready): New target.
13993         (fixinc.sh): Depend on `specs.ready' instead of `specs'.
13994
13995 2000-02-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13996
13997         * fixinc.irix: Use unique filenames for writing into /tmp,
13998         * fixinc.ptx: Likewise.
13999         * fixinc.sco: Likewise.
14000         * fixinc.svr4: Likewise.
14001         * fixinc.winnt: Likewise.
14002
14003 2000-02-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14004
14005         * tsystem.h: New file.
14006
14007         * Makefile.in (libgcc2.a, stmp-multilib, crtbegin.o, crtend.o,
14008         s-crtS): Depend on tsystem.h.
14009
14010         * crtstuff.c: Include tsystem.h.
14011         * frame.c: Likewise.
14012         * libgcc2.c: Likewise.
14013
14014 Tue Feb  1 19:53:27 CET 2000  Jan Hubicka  <jh@suse.cz>
14015
14016         * builtins.c (expand_builtin_memset): Expand for variable sized
14017         lengths too.
14018
14019 2000-02-01  David Billinghurst <David.Billinghurst@riotinto.com.au>
14020
14021         * config/mips/iris6.h (SUBTARGET_ASM_SPEC) : Default ISA based
14022         on ABI.
14023
14024 Tue Feb  1 00:57:40 2000  Hans-Peter Nilsson  <hp@bitrange.com>
14025
14026         * dwarfout.c (SHORT_TYPE_SIZE): Correct default.
14027
14028         * tm.texi (Type Layout): Correct entry for CHAR_TYPE_SIZE.
14029
14030 2000-01-31  Chandra Chavva <cchavva@cygnus.com>
14031
14032         * combine.c (try_combine) [HAVE_cc0]: Trying to check the missed
14033         case 3->2 combining (combining with splitting) in which 2 is CC0
14034         setter/user and 3 is user. The rest of cases 2->1 and 3->2 are
14035         checked at the begining of the function with the aid of calling
14036         function 'can_combine_p'.
14037
14038 2000-01-31  Dave Brolley  <brolley@redhat.com>
14039
14040         * cccp.c (struct argdata): Redeclare 'newlines' field as 'int'.
14041
14042 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
14043
14044         * jump.c (redirect_jump): Move a NOTE_INSN_FUNCTION_END to the
14045         new label.
14046
14047 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14048
14049         * gansidecl.h (PROTO, VPROTO, PVPROTO): Delete macros.
14050
14051         * sbitmap.h (sbitmap_first_set_bit, sbitmap_last_set_bit):
14052         PROTO -> PARAMS.
14053
14054 2000-01-30  Zack Weinberg  <zack@wolery.cumb.org>
14055
14056         * i386/386bsd.h, i386/beos-pe.h, i386/bsd386.h, i386/crtdll.h,
14057         i386/cygwin.h, i386/dgux.h, i386/djgpp-rtems.h, i386/djgpp.h,
14058         i386/freebsd.h, i386/gnu.h, i386/i386-aout.h, i386/i386-coff.h,
14059         i386/i386-interix.h, i386/i386elf.h, i386/linux.h, i386/lynx-ng.h,
14060         i386/lynx.h, i386/mach.h, i386/mingw32.h, i386/moss.h,
14061         i386/netbsd.h, i386/next.h, i386/openbsd.h, i386/osf1elf.h,
14062         i386/ptx4-i.h, i386/rtems.h, i386/rtemself.h, i386/sco.h,
14063         i386/sequent.h, i386/sun.h, i386/sysv4.h, i386/uwin.h, i386/vsta.h,
14064         i386/vxi386.h, i386/win-nt.h, i386/win32.h:
14065         Remove -Di386 -Acpu(i386) -Amachine(i386) from CPP_PREDEFINES.
14066
14067         * i386/osf1elf.h, i386/scodbx.h, i386/seq-sysv3.h, i386/sysv5.h:
14068         Add %(cpp_cpu) to CPP_SPEC.
14069
14070         * i386/osf1elf.h, i386/osfelf.h, i386/osfrose.h:
14071         Add %(cc1_cpu) to CC1_SPEC.
14072
14073 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
14074
14075         * c-decl.c (c_decode_option): Accept optional numeric argument to
14076         -Wformat and set warn_format.
14077         * c-common.c: Don't emit warning about non-constant printf format
14078         string unless warn_format > 1.
14079
14080 2000-01-30  Richard Henderson  <rth@cygnus.com>
14081
14082         * alpha.md (return_internal): Allow after reload only.
14083
14084 2000-01-30  Richard Henderson  <rth@cygnus.com>
14085
14086         * i386.c (ix86_compute_frame_size): Omit padding1 if the
14087         local frame size is zero.
14088
14089 2000-01-30  Richard Henderson  <rth@cygnus.com>
14090
14091         * alpha.c (alpha_expand_epilogue): Don't emit the return insn.
14092         * alpha.h (EPILOGUE_USES): New.  Mark $26 live.
14093         * alpha.md (return): Turn into an expander.
14094         (return_internal): Don't use $26.
14095         (epilogue): Emit the return insn.
14096
14097 2000-01-30  Richard Henderson  <rth@cygnus.com>
14098
14099         * alpha.md (negtf2, abstf2): Fix word order thinko.
14100         (extendsftf2): New.
14101         (trunctfsf2): Avoid intermediate rounding errors.
14102
14103 2000-01-30  Zack Weinberg  <zack@wolery.cumb.org>
14104
14105         * cppfiles.c (find_position): Drop 'colp' argument, return the
14106         new line base.
14107         (read_and_prescan): Adjust to match.  Don't ever manipulate
14108         line or line_base except via find_position.
14109
14110 2000-01-29  Zack Weinberg  <zack@wolery.cumb.org>
14111
14112         * c-parse.in: Apply Ulrich's changes from c-parse.y.
14113         * c-parse.y, objc/objc-parse.y, c-parse.c, objc/objc-parse.c:
14114         Regenerate.
14115
14116 2000-01-29  Zack Weinberg  <zack@wolery.cumb.org>
14117
14118         * cpperror.c (cpp_file_line_for_message): If 'line' is zero,
14119         just print "<command line>".  If 'filename' is null or an
14120         empty string, print "<stdin>" for the filename.
14121         * cpplib.c (do_define): Don't print the 'location of the
14122         previous definition' message if we're still parsing the
14123         command line.
14124         (cpp_pedwarn_with_file_and_line): Always call
14125         cpp_file_line_for_message.
14126
14127 2000-01-29  Mark Mitchell  <mark@codesourcery.com>
14128
14129         * flow.c (mark_regs_live_at_end): Fix typo.
14130
14131 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
14132
14133         * c-common.c: Adjust variable names, comments, help strings to c99.
14134         * c-lex.c: Likewise.
14135         * c-parse.y: Likewise.
14136         * c-tree.h: Likewise.
14137         * cccp.c: Likewise.
14138         * cpplib.h: Likewise.
14139         * c-decl.c: Likewise.  Recognize options with names "*99" as well.
14140         * cppinit.c: Likewise.
14141
14142 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
14143
14144         * c4x.h (INIT_TARGET_OPTABS): Add all missing local optab entries.
14145         * c4x.c: Define the optab rtx values.
14146         (c4x_add_gc_roots): Add the ggc roots for these optab rtx values.
14147         (c4x_emit_libcall): Use new optab rtx values.
14148         (c4x_emit_libcall3): Likewise.
14149         (c4x_emit_libcall_mulhi): Likewise.
14150         * c4x-protos.h: Add prototypes for optab rtx values and change
14151         prototypes for above c4x_emit_libcall functions.
14152
14153 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
14154
14155         * c4x.c (c4x_output_ascii): Restrict line length of output when TI
14156         syntax is used.
14157         (c4x_function_prologue): Use regnames intead of float_reg_names when
14158         TI syntax is used.
14159         (c4x_function_epilogue): Likewise.
14160         (c4x_print_operand): Likewise.
14161         * c4x.h (HOST_WIDE_INT_PRINT_HEX): Redefine.
14162         * c4x.md (set_high): Disable for TARGET_TI.
14163
14164 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
14165
14166         * c4x.h (PREFERRED_RELOAD_CLASS): Change to restrict the reloading
14167         of framepointer + constant to ADDR_REGS class.
14168         * c4x.md (addqi3, addqi3_noclobber_reload): Update.
14169         * c4x.c (std_or_reg_operand): New function.
14170         * c4x-protos.h (std_or_reg_operand): Prototype it.
14171
14172 2000-01-29 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
14173
14174         * t-c4x: Change qi,qf,di,df into si,sf,hi,hf to generate same
14175                 object names as libgcc2.c.
14176         * libgcc.S: Use newly defined names.
14177
14178 Fri Jan  7 19:48:04 CET 2000  Jan Hubicka  <jh@suse.cz>
14179         * sbitmap.c (sbitmap_first_set_bit, sbitmap_last_set_bit): New
14180         function.
14181         * sbitmap.h (sbitmap_first_set_bit, sbitmap_last_set_bit): Declare.
14182         * basic_block.h (FLOW_LOOP_FIRST_BLOCK): New macro.
14183         (FLOW_LOOP_LAST_BLOCK): Likewise.
14184
14185 2000-01-21  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14186
14187         * basic-block.h (struct loop): New fields 'first' and 'last'.
14188         * flow.c (flow_loops_find): Compute loop->first and loop->last.
14189         (flow_loops_dump): Use loop->first to check for NOTE_INSN_LOOP_BEG
14190         and loop->last to check for NOTE_INSN_LOOP_END.
14191
14192 Fri Jan 28 10:57:58 2000  Jason Eckhardt  <jle@cygnus.com>
14193
14194         * predict.c (estimate_probability): Use the new FIRST and LAST fields
14195         of the loop descriptor rather than HEADER and LATCH. Also added
14196         missing break statements as well making some coding style modifications
14197         as suggested by Michael Hayes.
14198
14199 2000-01-28  Richard Henderson  <rth@cygnus.com>
14200
14201         * flow.c (find_basic_blocks): Remove do_cleanup argument.
14202         Break out that code ...
14203         (cleanup_cfg): ... here.
14204         (commit_one_edge_insertion): Detect a return instruction being
14205         emitted to an edge.  Emit a barrier following; clear fallthru.
14206         (commit_edge_insertions): Verify CFG consistency.
14207         * function.c (expand_function_start): Kill unused variable.
14208         (expand_function_end): Likewise.
14209         (thread_prologue_and_epilogue_insns): Use insert_insn_on_edge
14210         to insert the epilogue.
14211
14212         * gcse.c (gcse_main): Adjust for find_basic_blocks change.
14213         (delete_null_pointer_checks): Likewise.
14214         * output.h: Likewise.
14215         * reg-stack.c (reg_to_stack): Likewise.
14216         * toplev.c (rest_of_compilation): Likewise.  Run
14217         thread_prologue_and_epilogue_insns after rebuilding the CFG.
14218
14219 2000-01-28  Richard Henderson  <rth@cygnus.com>
14220
14221         * Makefile.in (flow.o): Revert 24 Jan change.
14222         * flow.c (mark_regs_live_at_end): Likewise.  Force BLKmode
14223         FUNCTION_VALUE result to DECL_RESULT's mode.
14224
14225         * haifa-sched.c (schedule_insns): Don't recompute reg info
14226         after reload.
14227
14228 2000-01-28  Zack Weinberg  <zack@wolery.cumb.org>
14229
14230         * configure.in: Make --enable-cpplib the default.
14231         * configure: Regenerate.
14232         * gcc.dg/990119-1.c: No longer expected to fail.
14233
14234 2000-01-28  Bernd Schmidt  <bernds@cygnus.co.uk>
14235
14236         * jump.c (jump_optimize_1): Delete an optimization that is also done
14237         by merge_blocks in flow.
14238
14239 2000-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14240
14241         * diagnostic.c (build_message_string, output_printf,
14242         line_wrapper_printf): Add ATTRIBUTE_PRINTF_*.
14243         (build_location_prefix): Fix non-literal format string.
14244
14245 2000-01-27  Richard Henderson  <rth@cygnus.com>
14246
14247         * alpha.md (trunctfsf2): New.
14248
14249 2000-01-27  Andrew Hobson  <ahobson@eng.mindspring.net>
14250
14251         * configure.in (alpha-dec-osf5): Enable MASK_SUPPORT_ARCH.
14252
14253 2000-01-27  Zack Weinberg  <zack@wolery.cumb.org>
14254
14255         * cppinit.c (cpp_handle_option): Recognize C++ comments under
14256         -std=gnu89.
14257         * cpplib.c (skip_block_comment, skip_line_comment): Split code
14258         out of...
14259         (skip_comment) ... here.  Permit C++ comments in system
14260         headers always.  Warn about C++ comments in user code under
14261         -std=gnu89 -pedantic.
14262         (copy_comment): Use skip_comment.
14263         (cpp_skip_hspace, cpp_get_token): skip_comment can no longer
14264         return EOF.
14265         (consider_directive_while_skipping, do_else, do_endif): Call
14266         validate_else unconditionally.
14267         (validate_else): Check CPP_PEDANTIC here.  Accept non-comment
14268         text after the conditional in a system header.
14269         * cpplib.h (struct cpp_buffer): Add flag
14270         warned_cplusplus_comments.
14271
14272 2000-01-27  Geoffrey Keating  <geoffk@cygnus.com>
14273
14274         * emit-rtl.c (unshare_all_rtl): Unshare virtual parameters too.
14275         Use unshare_all_rtl_1.
14276         (unshare_all_rtl_again): New function.
14277         (unshare_all_rtl_1): New function split out of unshare_all_rtl.
14278
14279         * function.c (purge_addressof_1): Use unshare_all_rtl_again
14280         rather than resetting the 'used' flags ourself.
14281
14282         * toplev.c (rest_of_compilation): Add current_function_decl
14283         to the unshare_all_rtl call.
14284         * tree.h: Prototype unshare_all_rtl.
14285         * rtl.h: Prototype unshare_all_rtl_again here.
14286
14287 2000-01-27  Geoffrey Keating  <geoffk@cygnus.com>
14288
14289         * genoutput.c (output_prologue): Include ggc.h in generated
14290         files.
14291         * Makefile.in (insn-output.o): Depends on ggc.h.
14292
14293 2000-01-27  Ian Dall  <ian@sibyl.beware.dropbear.id.au>
14294             Hans-Peter Nilsson  <hp@bitrange.com>
14295
14296         * ns32k/xm-ns32k.h (memcpy, memset, memcmp): Delete.
14297         Remove redundant include of xm-ns32k.h.
14298         * ns32k/xm-genix.h (memcpy, memset, memcmp): Add definitions.
14299         Remove redundant include of xm-ns32k.h.
14300         * ns32k/xm-netbsd.h (memcpy, memset, memcmp): No longer undefine.
14301         Remove redundant include of xm-ns32k.h.
14302         * ns32k/netbsd.h (TARGET_DEFAULT): Enable multiply-add instructions.
14303
14304         * ns32k/ns32k.h: Update comment on multiply-add instructions.
14305         (TARGET_SWITCHES): Add documentation strings.
14306         (DWARF_FRAME_REGNUM): Override default definition.
14307         (REG_CLASS_CONTENTS): Add comments.
14308         (SUBSET_P): Format to reduce line length.
14309         (SMALL_REGISTER_CLASSES): Make a run time option.
14310         (GO_IF_NONINDEXED_ADDRESS): Reformat.
14311         (GO_IF_LEGITIMATE_ADDRESS): Ensure that cfun is non NULL before
14312         dereferencing it.  Braces to avoid "ambiguous else" were misplaced.
14313         (regclass_map): fix typo in comment.
14314         * ns32k/ns32k.c: Add spaces before parentheses for consistant style.
14315         Prefer gen_rtx_FOO(...) to gen_rtx(FOO,...).
14316         (trace, reg_or_mem_operand): Delete, unused function.
14317         (calc_address_cost): Small offsets are cheaper than large ones.
14318         (expand_block_move): Generate more efficient code when bytes is a
14319         known at compile time.
14320         * ns32k/ns32k.md: Alternate constraints for multiply-add instructions.
14321         (udivmodsi4, udivmodhi4, udivmodqi4): Use nonimmediate_operand
14322         instead of reg_or_mem_operand.
14323
14324         * ns32k/ns32k.md: Use nonimmediate_operand or stricter for outputs,
14325         not general_operand.  Similarly use "=rm" or stricter, not "=g".
14326         For input operands, use stricter constraints than "g" if not
14327         general_operand.  Similarly use stricter predicate than
14328         "general_operand" when stricter constraints than "g" are present,
14329         except for matching constraints.
14330         (movstrsi): Use "memory_operand" for operands 0 and 1.
14331         (truncsiqi2, truncsihi2, trunchiqi2): Remove.
14332         (udivmoddisi4_internal): Use nonimmediate_operand for operand 0,
14333         not reg_or_mem_operand.
14334         (udivmoddisi4): Ditto.
14335         Use nonimmediate_operand for operand 1, not reg_or_mem_operand.
14336         Use nonimmediate_operand for operand 3, not register_operand.
14337         (udivmoddiqi4_internal): Use register_operand for operand 1, not
14338         reg_or_mem_operand.
14339
14340 2000-01-27  Fred Fish  <fnf@be.com>
14341
14342         * gthr-posix.h: Fix typo; compatibily -> compatibility.
14343         * gthr-single.h: Likewise.
14344         * gthr-solaris.h: Likewise.
14345         * gthr-vxworks.h: Likewise.
14346         * gthr-win32.h: Likewise.
14347         * gthr.h: Likewise.
14348
14349 2000-01-27  Zack Weinberg  <zack@wolery.cumb.org>
14350
14351         * cppinit.c: Add " (cpplib)" to end of string printed by
14352         -v / --version.
14353
14354 2000-01-27  Richard Henderson  <rth@cygnus.com>
14355
14356         * alpha.c (alpha_emit_conditional_move): Use VOIDmode when
14357         testing for a signed comparison.
14358         (alpha_emit_floatuns): New.
14359         * alpha-protos.h: Declare it.
14360         * alpha.md (floatunsdisf2, floatunsdidf2): New.
14361         (extendsfdf2): Tidy.
14362
14363 2000-01-27  Jakub Jelinek  <jakub@redhat.com>
14364
14365         * config/sparc/linux64.h (CC1_SPEC): If compiling -m32 with -g but
14366         no -g option specifying debugging format, default to -gstabs+.
14367
14368 Wed Jan 26 22:19:14 1999  J"orn Rennecke  <amylaar@cygnus.co.uk>
14369
14370         * calls.c (special_function_p): New argument fork_or_exec.
14371         (expand_call): When profile_arc_flag is set and the function
14372         is in the fork_or_exec group, call __bb_fork_func first.
14373         * libgcc2.c, _bb module (__bb_fork_func): New function.
14374         (__bb_exit_func): If fcntl F_SETLKW is available, use it to lock
14375         output file.
14376         * config/svr4.h (TARGET_HAS_F_SETLKW): Define.
14377         * tree.h (special_function_p): Update prototype.
14378
14379 2000-01-26  Richard Henderson  <rth@cygnus.com>
14380
14381         * alpha.c (alpha_split_tfmode_pair): New.
14382         * alpha-protos.h: Declare it.
14383         * alpha.md (abstf2, negtf2): New.
14384         (movtf insn): Add input G constraint.
14385         (movtf splitter): Use alpha_split_tfmode_pair.
14386
14387 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14388
14389         * i386/cygwin.h: PROTO -> PARAMS.
14390
14391 2000-01-26  Jakub Jelinek  <jakub@redhat.com>
14392
14393         * config/sparc/sparc.c (sparc_emit_float_lib_cmp): Handle
14394         TARGET_ARCH32 again. Handle ORDERED, UN* and LTGT comparisons
14395         using _Qp_cmp/_Q_cmp and testing the return value.
14396         (print_operand): Call reverse_condition_maybe_unordered if
14397         we are handling CCFPmode or CCFPEmode.
14398         Handle ORDERED, UN* and LTGT comparisons.
14399         * config/sparc/sparc.md (cmptf): Use even on TARGET_ARCH32
14400         if not TARGET_HARD_QUAD.
14401         (seq, sne, sgt, slt, sge, sle, beq, bne, bgt, blt, bge, ble,
14402         bunordered, bordered, bungt, bunlt, buneq, bunge, bunle, bltgt):
14403         Call sparc_emit_float_lib_cmp even on TARGET_ARCH32.
14404         Adjust gen_b* calls so that they reflect return comparison of
14405         sparc_emit_float_lib_cmp.
14406
14407 2000-01-26  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
14408
14409         * config/alpha/alpha.c (alpha_emit_xfloating_cvt): Do not assume
14410         incoming operands array is large enough for one more operand.
14411         (alpha_emit_xfloating_arith): Likewise.
14412
14413 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
14414
14415         * fixinc/Makefile.in (machname.h): SunOS 4 sed can't handle a
14416         file with one line and no trailing newline.
14417         Patch by Kaveh Ghazi <ghazi@caip.rutgers.edu>.
14418         * fixinc/fixtests.c (machine_name_test): Fix fencepost error
14419         checking if the match is on the line.
14420         * fixinc/gnu-regex.c: Provide regerror not __regerror.
14421
14422 2000-01-25  Richard Henderson  <rth@cygnus.com>
14423
14424         * sparc.c (output_cbranch): Fix accidental squashing of the
14425         fp branch pre-delay nop.
14426
14427 2000-01-25  Richard Henderson  <rth@cygnus.com>
14428
14429         * tree.def (UNNE_EXPR): Remove.
14430         * c-typeck.c (build_binary_op): Don't handle it.
14431         * expr.c (expand_expr, do_jump, do_store_flag): Likewise.
14432
14433         * rtl.def (UNNE): Remove.
14434         (LTGT): Add.
14435         * jump.c (reverse_condition): Update accordingly.
14436         (swap_condition): Likewise.
14437         (comparison_dominates_p): Handle unordered comparisons.
14438         (reverse_condition_maybe_unordered): New.
14439         * rtl.h (reverse_condition_maybe_unordered): Declare.
14440
14441         * sparc.c (select_cc_mode): Update for UNNE/LTGT.
14442         (output_cbranch): Use reverse_condition_maybe_unordered and LTGT.
14443         * sparc.h (REVERSIBLE_CC_MODE): Always true.  Update docs.
14444         * sparc.md (bltgt): New.
14445
14446 2000-01-25  Nick Clifton  <nickc@redhat.com>
14447
14448         * emit-rtl.c (emit_insn): Only check machine class insns for
14449         improper emission of a RETURN.
14450
14451 2000-01-25  Richard Henderson  <rth@cygnus.com>
14452
14453         * Makefile.in (flow.o): Depend on $(EXPR_H).
14454         * flow.c (mark_regs_live_at_end): Use hard_function_value, i.e.
14455         duplicate the structure of diddle_return_value for keeping regs live.
14456
14457 2000-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14458
14459         * loop.c (current_loop_info): Delete.
14460         (consec_sets_invariant_p): Add loop argument, update callers.
14461         (get_condition_for_loop): Likewise.
14462         (count_nonfixed_reads, update_giv_derive): Likewise.
14463         (simplify_giv_expr, general_induction_var): Likewise.
14464         (consec_sets_giv, recombine_givs): Likewise.
14465         (move_movables): Delete loop_start and loop_end arguments,
14466         add loop argument, and update callers.
14467         (find_mem_givs, check_final_value): Likewise.
14468         (record_giv, maybe_eliminate_biv, maybe_eliminate_biv_1): Likewise.
14469         (loop_invariant_p): Rename from invariant_p, add loop argument, and
14470         update callers.
14471         (basic_induction_var): Add loop argument, delete loop_level argument,
14472         and update callers.
14473         * unroll.c (iteration_info): Delete loop_start and loop_end arguments,
14474         add loop argument, and update callers.
14475         (find_splittable_regs, find_splittable_givs): Likewise.
14476         (reg_dead_after_loop, loop_find_equiv_value): Likewise.
14477         (final_biv_value, final_giv_value, back_branch_in_range_p): Likewise.
14478         (biv_total_increment): Delete loop_start and loop_end arguments;
14479         update callers.
14480         (precondition_loop_p): Delete loop_start and loop_info arguments;
14481         update callers.
14482         * loop.h (get_condition_for_loop): Add loop argument.
14483         (biv_total_increment): Delete loop_start and loop_end arguments.
14484         (precondition_loop_p): Delete loop_start and loop_info arguments;
14485         add loop argument.
14486         (final_biv_value): Delete loop_start and loop_end arguments;
14487         add loop argument.
14488         (final_giv_value, back_branch_in_range_p): Likewise.
14489
14490 2000-01-25  Gavin Romig-Koch  <gavin@cygnus.com>
14491
14492         * config/mips/mips.h (LEGITIMATE_CONSTANT_P): Fix for mips16.
14493
14494 2000-01-25  Gavin Romig-Koch  <gavin@cygnus.com>
14495
14496         * Makefile.in (c-gperf.h) : Change the "See" pointer to
14497         point to the new "generated_files" doc.
14498
14499 2000-01-25  Clinton Popetz  <cpopetz@cygnus.com>
14500
14501         * config/fp-bit.c (_unord_f2): Fix typo.
14502
14503 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
14504
14505         * c-common.c, c-decl.c, c-lang.c, c-lex.c, c-parse.in, c-pragma.c,
14506         c-typeck.c, objc/objc-act.c: Remove all references to obstack
14507         functions obsoleted by GC, such as push_obstacks_nochange,
14508         end_temporary_allocation, savealloc, saveable_tree_cons, etc.
14509         and code which existed only to decide whether or not to call
14510         them.  Remove now-unused NESTED argument from start_function;
14511         all callers changed.  Do not change behavior based on ggc_p.
14512         The use of the ixp_obstack in c-iterate.c and the util_obstack
14513         in objc/objc-act.c remain; these are not obsoleted by garbage
14514         collection.
14515         * c-tree.h: Update prototype for start_function.
14516
14517         * c-parse.y, c-parse.c, objc/objc-parse.c, objc/objc-parse.y: Rebuild.
14518
14519 2000-01-25  Clinton Popetz  <cpopetz@cygnus.com>
14520
14521         * config/mips/mips.md (zero_extendsidi2_internal): Disable for
14522         mips16.
14523
14524 2000-01-25  Richard Henderson  <rth@cygnus.com>
14525
14526         * sparc-protos.h (select_cc_mode): Declare.
14527         * sparc.c (select_cc_mode): New.  Handle unordered compares.
14528         (output_cbranch): Always reverse via code change.  Handle
14529         unordered compares.  Factor tests and string updates.
14530         * sparc.h (SELECT_CC_MODE): Split out to select_cc_mode.
14531         (REVERSIBLE_CC_MODE): Also exclude CCFPmode.
14532         * sparc.md (bunordered, bordered): New.
14533         (bungt, bunlt, buneq, bunge, bunle): New.
14534
14535 2000-01-25  Richard Henderson  <rth@cygnus.com>
14536
14537         * dwarf2out.c (dwarf2out_init): Use ggc_add_rtx_varray_root.
14538         * ggc-common.c (ggc_add_rtx_varray_root): New.
14539         (ggc_mark_rtx_varray): New.
14540         (ggc_mark_rtx_varray_ptr): New.  Shift all ggc_mark_foo_ptr
14541         functions down below ggc_mark_foo.
14542         * ggc.h (ggc_add_rtx_varray_root, ggc_mark_rtx_varray): Declare.
14543
14544 2000-01-25  Richard Henderson  <rth@cygnus.com>
14545
14546         * alpha.c (secondary_reload_class): Don't allocate a secondary
14547         for integral mode memories into FLOAT_REGS.  Rearrange the more
14548         complicated memory expression inward.
14549
14550 2000-01-25  Zack Weinberg  <zack@wolery.cumb.org>
14551
14552         * inclhack.def: Fixes to play nicer with FreeBSD, and
14553         corrections to comments.
14554         (cxx_unready): Add select expression.
14555         (irix_sockaddr): Add bypass expression.
14556         (machine_ansi_h_va_list): New fix.
14557         (stdio_va_list): No need to edit _BSD_VA_LIST_.
14558         Split out addition of "#include <stdarg.h>" to...
14559         (stdio_stdarg_h): ... here.
14560         (systypes_for_aix): Rename to systypes_stdlib_size_t.  Apply
14561         to stdlib.h also.  Do not munge _BSD_SIZE_T_.
14562         (sysz_stdlib_for_sun): Delete duplicate fix for unprotected
14563         size_t.
14564         (ultrix_ifdef): Tighten up select expression.
14565
14566         * fixincl.tpl: Exorcise 'exesel'.  Rewrite calculations of
14567         re_ct and max_mach to avoid use of shell.  Make printed names
14568         match names in inclhack.def.  Use static copyright date.
14569         Don't count c_test and test expressions as requiring regex_t
14570         slots.  Add some commentary.
14571         * inclhack.tpl: Do not include the 'This script contains N
14572         fixup scripts' line if PROGRAM is defined.  Use static
14573         copyright date.
14574
14575 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
14576
14577         * dwarf2out.c: include "varray.h", not dyn-string.h.
14578         (ASM_OUTPUT_DWARF2_ADDR_CONST, ASM_NAME_TO_STRING): Lose.
14579         (addr_const_to_string, addr_to_string): Lose.
14580         (ASM_OUTPUT_DWARF_ADDR_CONST): Copy from dwarfout.c.
14581         (struct dw_val_struct): val_addr is now an rtx.
14582         (add_AT_addr, AT_addr, free_AT, output_aranges): Adjust.
14583         (used_rtx_varray): New varray.
14584         (dwarf2out_init): Initialize it.
14585         (save_rtx): New fn.
14586         (mem_loc_descriptor, add_const_value_attribute): Call it instead of
14587         addr_to_string.
14588         * arm/telf.h, arm/unknown-elf.h, mn10200.h, mn10300.h,
14589         sparc/sp64-elf.h: Remove definition of ASM_OUTPUT_DWARF2_ADDR_CONST.
14590         * Makefile.in (dwarf2out.o): Update dependencies.
14591
14592 2000-01-24  Richard Henderson  <rth@cygnus.com>
14593
14594         * i386.c (i386_dwarf_output_addr_const): New.
14595         * i386.h (ASM_OUTPUT_DWARF_ADDR_CONST): New.
14596
14597         * dwarf2out.c (mem_loc_descriptor): Call ASM_SIMPLIFY_DWARF_ADDR
14598         if defined.
14599         * dwarfout.c (output_mem_loc_descriptor): Likewise.
14600         * i386.c (i386_simplify_dwarf_addr): New.
14601         * i386.h (ASM_SIMPLIFY_DWARF_ADDR): New.
14602
14603 Mon Jan 24 16:56:10 2000  Jim Wilson  <wilson@cygnus.com>
14604
14605         * dwarf2out.c (gen_struct_or_union_type_die): Set complete if
14606         TYPE_STUB_DECL is NULL.
14607
14608 2000-01-24  Richard Henderson  <rth@cygnus.com>
14609
14610         * builtins.c (expand_tree_builtin): Move ...
14611         * c-common.c (expand_tree_builtin): ... here.
14612
14613 2000-01-25  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14614
14615         * loop.h (LOOP_INFO): New accessor macro.
14616         * basic-block.h (struct loop): Rename field `info' to `aux'.
14617         * loop.c (scan_loop): Replace loop->info with LOOP_INFO (loop).
14618         (prescan_loop, strength_reduce, check_dbra_loop, insert_bct): Likewise.
14619         * unroll.c (loop_iterations, unroll_loop): Likewise.
14620
14621 2000-01-24  Christopher Faylor <cgf@cygnus.com>
14622
14623         * config/i386/t-cygwin: Accomodate new winsup directory layout
14624         when searching for include files.
14625
14626 2000-01-24  Richard Henderson  <rth@cygnus.com>
14627
14628         * rtl.def: Add unordered fp comparisions.
14629         * tree.def: Likewise.
14630         * tree.h: Add ISO C 9x unordered fp comparision builtins.
14631
14632         * builtins.c (expand_tree_builtin): New function.
14633         * c-typeck.c (build_function_call): Use it.
14634         (build_binary_op): Support unordered compares.
14635         * c-common.c (c_common_nodes_and_builtins): Add unordered compares.
14636
14637         * combine.c (known_cond): Handle reverse_condition returning UNKNOWN.
14638         (reversible_comparison_p): Allow UNORDERED/ORDERED to be reversed.
14639         * cse.c (fold_rtx): Check FLOAT_MODE_P before reversing.
14640         (record_jump_equiv): Handle reverse_condition returning UNKNOWN.
14641         * jump.c (reverse_condition): Don't abort for UNLE etc, but
14642         return UNKNOWN.
14643         (swap_condition): Handle unordered compares.
14644         (thread_jumps): Check can_reverse before reversing.
14645         * loop.c (get_condition): Likewise.  Allow UNORERED/ORDERED to be
14646         reversed for FP.
14647
14648         * optabs.c (can_compare_p): New argument CODE.  Verify branch or
14649         setcc is present before acking for cmp_optab.  Update all callers.
14650         (prepare_float_lib_cmp, init_optabs): Handle UNORDERED.
14651         * expmed.c (do_cmp_and_jump): Update for can_compare_p.
14652         * expr.c (expand_expr): Likewise.  Support unordered compares.
14653         (do_jump, do_store_flag): Likewise.
14654         * expr.h (enum libfunc_index): Add unordered compares.
14655
14656         * Makefile.in (FPBIT_FUNCS): Add _unord_sf.
14657         (DPBIT_FUNCS): Add _unord_df.
14658         * config/fp-bit.c (_unord_f2): New.
14659         * fp-test.c (main): Try unordered compare builtins.
14660
14661         * alpha-protos.h (alpha_fp_comparison_operator): Declare.
14662         * alpha.c (alpha_comparison_operator): Check mode properly.
14663         (alpha_swapped_comparison_operator): Likewise.
14664         (signed_comparison_operator): Likewise.
14665         (alpha_fp_comparison_operator): New.
14666         (alpha_emit_conditional_branch): Handle unordered compares.
14667         * alpha.h (PREDICATE_CODES): Update.
14668         * alpha.md (fp compares): Use alpha_fp_comparison_operator.
14669         (bunordered, bordered): New.
14670
14671 2000-01-24  Richard Henderson  <rth@cygnus.com>
14672
14673         * alpha.c (alpha_emit_xfloating_cvt): Thinko in operand manipulation.
14674         * alpha.md (movtf): New expander, insn, and splitter.
14675
14676 Mon Jan 24 19:49:47 MET 2000  Jan Hubicka  <jh@suse.cz>
14677
14678         * reg-stack.c (subst_stack_regs_pat): Handle correctly USEs of
14679         dead registers.
14680
14681 Mon Jan 24 17:37:31 MET 2000  Jan Hubicka  <jh@suse.cz>
14682
14683         * i386.h (FIRST_PSEUDO_REGISTER): Set to 21.
14684         (FIXED_REGISTERS, CALL_USED_REGISTERS,
14685          REG_ALLOC_ORDER): Add frame pointer
14686         (FRAME_POINTER_REGNUM): Set to 20
14687         (HARD_FRAME_POINTER_REGNUM): New macro.
14688         (ELIMINABLE_REGS): Eliminate ARG_POINTER and FRAME_POINTER
14689         to HARD_FRAME_POINTER.
14690         (REGNO_OK_FOR_BASE_P): Accept FRAME_POINTER_REGNUM
14691         (REG_OK_FOR_INDEX_NONSTRICT_P): Likewise.
14692         (REG_OK_FOR_BASE_NONSTRICT_P): Likewise.
14693         (HI_REGISTER_NAMES): Add "frame".
14694         (CAN_ELIMINATE): Handle FRAME_POINTER_REGNUM elimination.
14695         (debug_reg): Handle FRAME_POINTER_REGNUM.
14696         (reg_class): Add arg pointer and frame pointer to NON_Q_REGS,
14697         GENERAL_REGS and INDEX_REGS.
14698         * i386.c (SAVED_REGS_FIRST): new macro.
14699         (AT_BP): Use hard_frame_pointer_rtx instead of frame_pointer_rtx
14700         (ix86_decompose_address, memory_address_length): Likewise.
14701         (regclass_map): Add frame pointer.
14702         (call_insn_operand): Handle frame_pointer_rtx.
14703         (reg_no_sp_operand): Likewise.
14704         (ix86_decompose_address): Handle frame_pointer_rtx as stack_pointer_rtx.
14705         (print_operand, legitimize_pic_address): Fix formating.
14706         (ix86_compute_frame_size): Make static, update prototype, new
14707         parameters padding1, padding2, use ix86_nsaved_regs, use
14708         stack_alignment_needed.
14709         (ix86_initial_elimination_offset): Handle FRAME_POINTER_REGNUM
14710         to HARD_FRAME_POINTER_REGNUM conversions.
14711         (ix86_expand_prologue): Handle SAVED_REGS_FIRST prologues.
14712         (ix86_expand_epilogue): Handle SAVED_REGS_FIRST epilogues.
14713         (print_reg): Abort on FRAME_POINTER_REGNUM
14714
14715 Mon Jan 24 16:50:08 MET 2000  Jan Hubicka  <jh@suse.cz>
14716
14717         * i386.h (PREDICATE_CODES): Add aligned_operand.
14718         * i386.c (aligned_operand): New function.
14719         (ix86_aligned_p): Kill.
14720         * i386.md (movhi_1): Emit mov for aligned operands.
14721         (promoting peep2s): Use aligned_operand.
14722
14723 2000-01-23  Zack Weinberg  <zack@wolery.cumb.org>
14724
14725         * fixinc/fixfixes.c (fix_char_macro_uses): Correct regular
14726         expression to allow underscores in macro names.
14727         (fix_char_macro_defines): Increment scanning pointer.
14728
14729 2000-01-23  Richard Henderson  <rth@cygnus.com>
14730
14731         * alpha/osf.h (TARGET_HAS_XFLOATING_LIBS): Define.
14732         * alpha/osf5.h: New file.
14733         * configure.in (alpha-*-osf5): Add it to tm_file.
14734
14735         * emit-rtl.c (operand_subword): Support TFmode on a 64-bit target.
14736
14737         * alpha-protos.h (alpha_emit_xfloating_arith): Declare.
14738         (alpha_emit_xfloating_cvt, function_arg): Declare.
14739         * alpha.c (alpha_emit_conditional_branch): Call
14740         alpha_emit_xfloating_compare for TFmode compares.
14741         (alpha_lookup_xfloating_lib_func): New.
14742         (alpha_compute_xfloating_mode_arg): New.
14743         (alpha_emit_xfloating_libcall): New.
14744         (alpha_emit_xfloating_arith): New.
14745         (alpha_emit_xfloating_compare): New.
14746         (alpha_emit_xfloating_cvt): New.
14747         (print_operand): Add default abort case.
14748         (function_arg): Mind FUNCTION_ARG_PASS_BY_REFERENCE.
14749         * alpha.h (TARGET_HAS_XFLOATING_LIBS): New.
14750         (BIGGEST_ALIGNMENT): Increase to 128 bits.
14751         (RETURN_IN_MEMORY): True for TF/TCmode.
14752         (ALPHA_ARG_SIZE): TF/TCmode is passed indirect.
14753         (FUNCTION_ARG): Move to function_arg.
14754         (FUNCTION_ARG_PASS_BY_REFERENCE): New.
14755         (ASM_OUTPUT_LONG_DOUBLE): New.
14756         (ASM_OUTPUT_DOUBLE): Always output bits.
14757         * alpha.md (addtf3, divtf3, multf3, subtf3, cmptf): New.
14758         (fix_trunctfdi2, floatditf2, floatunsditf2): New.
14759         (extenddftf2, trunctfdf2): New.
14760
14761 2000-01-23  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
14762
14763         * config/sparc/sol2-sld-64.h (TRANSFER_FROM_TRAMPOLINE): Moved...
14764         * config/sparc/sol2.h: ... here.
14765
14766 2000-01-24  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14767
14768         * basic-block.h (struct loops): New field `levels'.
14769         * flow.c (flow_loops_level_compute): Traverse all outer loops.
14770         (flow_loop_level_compute): Initialise level to 1.
14771         (flow_loops_find): Set loops->levels.
14772         (flow_loops_dump): Print loops->levels.
14773
14774 2000-01-23  Richard Henderson  <rth@cygnus.com>
14775
14776         * libgcc2.c (dwarf_reg_size_table): Size with DWARF_FRAME_REGISTERS.
14777         (throw_helper): Iterate over DWARF_FRAME_REGISTERS.
14778
14779 2000-01-23  Richard Henderson  <rth@cygnus.com>
14780
14781         * i386.c (dbx_register_map, svr4_dbx_register_map): New.
14782         * i386.h (DBX_REGISTER_NUMBER): Use them.
14783         * i386/beos-elf.h, i386/freebsd-elf.h, i386/i386elf.h: Likewise.
14784         * i386/linux.h, i386/osfrose.h, i386/ptx4-i.h: Likewise.
14785         * i386/rtemself.h, i386/sco5.h, i386/sysv4.h: Likewise.
14786         * i386/sequent.h: Kill incorrect comment.
14787
14788 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
14789
14790         * ggc-page.c (struct page_entry): Make `context_depth' an
14791         `unsigned short'.
14792         (struct globals): Likewise.
14793
14794 2000-01-23  Clinton Popetz  <cpopetz@cygnus.com>
14795
14796         * loop.c (check_dbra_loop): When checking a loop for
14797         reversability, check the source of any stores to ensure
14798         they don't depend on an initial value.
14799
14800 2000-01-23  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14801
14802         * config/c4x/c4x.h (ASM_OUTPUT_BSS): Redefine.
14803
14804 2000-01-22  Zack Weinberg  <zack@wolery.cumb.org>
14805
14806         * fixinc/fixincl.c: Move declarations of 'pz_fname' and
14807         'pz_scan' into scope of entire function.  Only affects
14808         compiles with -DDEBUG.
14809
14810 2000-01-22  Alan Modra <alan@SPRI.Levels.UniSA.Edu.Au>
14811
14812         * config/elfos.h (UNIQUE_SECTION): Restore uninitialised data
14813         section naming to that prior to 2000-01-07 patch.
14814         * config/mips/elf.h (UNIQUE_SECTION): Ditto.
14815         * config/mips/elf64.h (UNIQUE_SECTION): Ditto.
14816         * config/mips/iris6gld.h (UNIQUE_SECTION): Ditto.
14817         * config/i386/interix.c (UNIQUE_SECTION): Ditto.
14818         * config/i386/winnt.c (UNIQUE_SECTION): Ditto.
14819
14820 2000-01-22  Bernd Schmidt  <bernds@cygnus.co.uk>
14821
14822         * config/arm/arm.c (soft_df_operand): Reject SUBREGs containing a
14823         constant.
14824
14825 2000-01-21  Jim Wilson  <wilson@cygnus.com>
14826
14827         * fixinc/inclhack.tpl: Test for directory before trying to cd into it.
14828         * fixinc/fixincl.sh, fixinc/inclhack.sh: Regenerate.
14829
14830 2000-01-21  Zack Weinberg  <zack@wolery.cumb.org>
14831
14832         * cpphash.c (change_newlines): Delete function.
14833         (struct argdata): Delete 'newlines' and 'use_count' fields.
14834         (macroexpand): Remove code referencing those fields.
14835
14836 2000-01-22  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14837
14838         * loop.c (loops_info): New variable.
14839         (loop_optimize): Allocate loops->array and free it on exit.
14840         Allocate memory for loops_info and assign to each loop,
14841         replacing alloca.
14842         (find_and_verify_loops): Do not allocate loops->array.
14843
14844 2000-01-21  Zack Weinberg  <zack@wolery.cumb.org>
14845
14846         * fixinc/fixfixes.c (machine_name_fix): Don't free 'scratch'.
14847
14848 2000-01-21  Jakub Jelinek  <jakub@redhat.com>
14849
14850         * config/sparc/sparc.md (movsi_pic_label_ref): Avoid creating new
14851         pseudos if expanded after first flow.
14852         (movdi_pic_label_ref): Likewise.
14853
14854 2000-01-20  Richard Henderson  <rth@cygnus.com>
14855
14856         * jump.c (jump_optimize_1): Don't do addr_vec optimizations at -O0.
14857
14858 2000-01-20  Zack Weinberg  <zack@wolery.cumb.org>
14859
14860         * Makefile.in (fixinc.sh): Depend on specs.
14861         * fixinc/Makefile.in: Add rule to create machname.h.
14862         (fixlib.o): Depend on machname.h.
14863         * fixinc/fixtests.c (machine_name): New test.
14864         * fixinc/fixfixes.c (machine_name): New fix.
14865         * fixinc/fixlib.c (mn_get_regexps): New helper function for
14866         the machine_name test and fix.
14867         * fixinc/fixlib.h: Prototype it.
14868         * fixinc/inclhack.def (machine_name): Use the C test and fix.
14869         * fixinc/fixincl.x, fixinc/inclhack.sh: Rebuild.
14870
14871         * gcc.c (do_spec_1) [case P]: Take care not to create
14872         identifiers with three leading or trailing underscores.
14873
14874         * fixinc/Makefile.in (FIXINC_DEFS): Add -DIN_GCC.
14875         (fixincl): Don't specify libraries twice on link line.
14876         (gnu-regex.o): Remove special rule.
14877         * fixinc/gnu-regex.c: Define REGEX_MALLOC if C_ALLOCA was
14878         defined by config.h.  Do not define _REGEX_RE_COMP.
14879         (regcomp): Allocate and initialize a fastmap.
14880         * fixinc/gnu-regex.h: Do not define _REGEX_RE_COMP.
14881
14882 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
14883
14884         * Makefile.in (predict.o): Depend on $(EXPR_H), not expr.h.
14885
14886 2000-01-19  Richard Henderson  <rth@cygnus.com>
14887
14888         * flow.c (propagate_block): Replace FIRST, LAST and BNUM
14889         arguments with BB.  Update all callers.  Tidy line wrapping.
14890
14891 2000-01-19  Clinton Popetz  <cpopetz@cygnus.com>
14892
14893         * emit-rtl.c (try_split): Return last_insn if we split the
14894         last_insn.
14895
14896 Thu Jan 20 01:01:23 MET 2000  Jan Hubicka  <jh@suse.cz>
14897
14898         * i386-protos.h (ix86_compute_frame_size): Remove prototype.
14899         (ix86_initial_elimination_offset): Declare.
14900         * i386.c (ix86_nsaved_regs): Break out from ...
14901         (ix86_can_use_return_insn_p): ... here.
14902         (ix86_emit_save_regs): Break out from ...
14903         (ix86_expand_prologue): ... here.
14904         (ix86_emit_epilogue_esp_adjustment, ix86_emit_restore_regs): Break
14905         out from ...
14906         (ix86_expand_epilogue): ... here.
14907         (ix86_compute_frame_size): Make static, add prototype.
14908         (ix86_initial_elimination_offset): Break out from ...
14909         * i386.h (INITIAL_ELIMINATION_OFFSET): ... here.
14910
14911 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14912
14913         * recog.h (OUT_FCN): Delete.
14914
14915         * vax.md: Call `get_insn_template' instead of OUT_FCN.
14916
14917 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14918
14919         * cppalloc.c: PROTO -> PARAMS.
14920         * cpperror.c: Likewise.
14921         * cppfiles.c: Likewise.
14922         * cpplib.c: Likewise.
14923         * cpplib.h: Likewise.
14924
14925         * config/arm/arm-protos.h: PROTO -> PARAMS.
14926         * config/arm/arm.c: Likewise.
14927         * config/c4x/c4x.c: Likewise.
14928         * config/fr30/fr30-protos.h: Likewise.
14929         * config/nextstep.c: Likewise.
14930         * config/pa/pa.c: Likewise.
14931         * config/pj/pj.c: Likewise.
14932         * config/rs6000/rs6000.c: Likewise.
14933         * config/v850/v850-protos.h: Likewise.
14934         * config/v850/v850.c: Likewise.
14935
14936 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14937
14938         * i370-protos.h: New file.
14939
14940         * i370.c: Include tm_p.h.  Fix compile time warnings.
14941
14942         * i370.h: Move prototypes to i370-protos.h.  Fix compile time
14943         warnings.
14944
14945         * i370.md: Likewise.
14946
14947 2000-01-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14948
14949         * real.c (enan, einan, eiisnan, eiisneg, make_nan): Wrap in NANS.
14950         (target_isinf, target_isnan, eisnan): Mark parameter with
14951         ATTRIBUTE_UNUSED.
14952         (eiisinf): Wrap in INFINITY.
14953         (etoe113, etoe64, etoe53, etoe24): Wrap label `nonorm' in INFINITY.
14954         (ibmtoe): Remove unused variable `rndsav'.
14955
14956 Wed Jan 19 20:23:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14957
14958         * sh.h (PASS_IN_REG_P): Remove extraneous paranthesis.
14959         (GO_IF_LEGITIMATE_ADDRESS): Added missing tab.
14960
14961 2000-01-19  Zack Weinberg  <zack@wolery.cumb.org>
14962
14963         * fixinc/Makefile.in: Correct dependencies of fixincl and fixincl.o.
14964         * fixinc/fixfixes.c (IO_use, CTRL_use, IO_defn, CTRL_defn): New fixes.
14965         (fix_char_macro_defines, fix_char_macro_uses): New functions.
14966
14967         * fixinc/fixlib.c (is_cxx_header): Do the text scan with a regexp.
14968         Recognize Emacs mode markers also.
14969         * fixinc/fixtests.c (else_endif_label): Fix bug in recognition of
14970         C++ comments in C++ headers.  Call is_cxx_header only if
14971         necessary.
14972
14973         * fixinc/inclhack.def (avoid_bool): Add select for the problem and
14974         bypass for ncurses.
14975         (bsd43_io_macros, io_def_quotes, ioctl_fix_ctrl): Replace with...
14976         (io_def_quotes, io_use_quotes, ctrl_def_quotes, ctrl_use_quotes):
14977         ... these, which use the new C fixes.
14978         (math_exception): Escape literal '+' in bypass expression.
14979
14980         * fixinc/fixincl.x, fixinc/fixincl.sh, fixinc/inclhack.sh:
14981         Regenerate.
14982
14983 2000-01-19  Geoff Keating  <geoffk@cygnus.com>
14984
14985         * rtlanal.c (reg_referenced_p): A CLOBBER of a MEM uses any REGs
14986         inside the MEM.
14987
14988 2000-01-20  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
14989
14990         * loop.c (loop_optimize): Allocate loop_info structure for each loop
14991         prior to calling scan_loop.
14992
14993 Wed Jan 19 19:54:38 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14994
14995         * sh.c (find_barrier, gen_block_redirect): Fix indentation.
14996         (split_branches, calc_live_regs): Likewise.
14997
14998 Wed Jan 19 19:12:36 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
14999
15000         * sh.md (fpu_single, fp_mode): New attributes.
15001
15002 2000-01-20  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15003
15004         * loop.c (current_loop_info): Renamed from loop_info_data
15005         and changed to a pointer.
15006         (loop_optimize): Allocate loop_info structure for each loop
15007         and initialise to zero.
15008         (scan_loop): Set current_loop_info.
15009
15010         * unroll.c (loop_iterations): Don't abort if REG_USERVAR_P set
15011         on iteration_var.
15012
15013 2000-01-19  Richard Henderson  <rth@cygnus.com>
15014
15015         * stupid.c: Die die die.
15016         * Makefile.in (OBJS): Remove stupid.o.
15017         (stupid.o): Likewise.
15018
15019         * except.c (emit_eh_context): Don't emit USEs for stupid.
15020         * explow.c (probe_stack_range): Likewise.
15021         * flags.h (obey_regdecls): Remove.
15022         * flow.c (find_basic_blocks): Don't run try_merge_blocks
15023         when not optimizing.
15024         (life_analysis): Limit data collection when not optimizing.
15025         (mark_regs_live_at_end): Always mark the return value registers.
15026         (mark_used_regs): Remove dummy RETURN case.
15027         (print_rtl_with_bb): Don't consult obey_regdecls.
15028         * function.c (use_variable, use_variable_after): Remove.
15029         (assign_parms): Consult optimize not obey_regdecls.
15030         (expand_function_start): Don't emit USEs for stupid.
15031         (expand_function_end): Likewise.
15032         * global.c (build_insn_chain): Export.
15033         * integrate.c (expand_inline_function): Kill return-value USE
15034         handling code.
15035         * jump.c (jump_optimize_1): Do simple jump optimizations and
15036         dead code elimination.
15037         (calculate_can_reach_end): Remove check_deleted argument.
15038         (delete_insn): Patch out insns even when not optimizing.
15039         * local-alloc.c (block_alloc): Don't do tying when not optimizing.
15040         * rtl.h (use_variable, use_variable_after): Remove declarations.
15041         (build_insn_chain): Declare.
15042         * stmt.c (expand_value_return): Don't emit USEs for stupid.
15043         (expand_end_bindings): Likewise.
15044         (expand_decl): Likewise.  Consult optimize not obey_regdecls.
15045         * toplev.c (obey_regdecls): Remove.
15046         (rest_of_compilation): Don't set it.  Kill stupid in favour of
15047         flow1, local-alloc, and reload.
15048         (main): Don't set obey_regdecls.
15049
15050         * config/nextstep.c (handle_pragma): Likewise.
15051
15052         * alpha/alpha.md (allocate_stack): Don't emit USEs for stupid.
15053
15054         * arm/arm.h (CONDITIONAL_REGISTER_USAGE): Don't fix reg 0 for stupid.
15055
15056 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15057
15058         * alpha-protos.h: PROTO -> PARAMS.
15059         * alpha.c: Likewise.
15060         * elf.h: Likewise.
15061         * h8300.c: Likewise.
15062         * i386-protos.h: Likewise.
15063         * i386.c: Likewise.
15064         * m32r-protos.h: Likewise.
15065         * m32r.c: Likewise.
15066         * mips.c: Likewise.
15067         * mips.md: Likewise.
15068         * gmon-sol2.c: Likewise.
15069         * sparc.c: Likewise.
15070
15071 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15072
15073         * ns32k-protos.h: New file.
15074
15075         * ns32k.c: Fix compile time warnings.
15076
15077         * ns32k.h: Move prototypes to ns32k-protos.h.  Fix compile time
15078         warnings.
15079
15080         * ns32k.md: Likewise.
15081
15082 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15083
15084         * vax-protos.h: New file.
15085
15086         * vax.c: Fix compile time warnings.
15087
15088         * vax.h: Move prototypes to vax-protos.h.  Fix compile time
15089         warnings.
15090
15091         * vax.md: Likewise.
15092
15093         * vaxv.md: Likewise.
15094
15095 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15096
15097         * romp-protos.h: New file.
15098
15099         * romp.c: Fix compile time warnings.
15100
15101         * romp.h: Move prototypes to romp-protos.h.  Fix compile time
15102         warnings.
15103
15104         * romp.md: Likewise.
15105
15106 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15107
15108         * we32k-protos.h: New file.
15109
15110         * we32k.c: Fix compile time warnings.
15111
15112         * we32k.h: Move prototypes to we32k-protos.h.  Fix compile time
15113         warnings.
15114
15115 2000-01-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15116
15117         * calls.c (emit_call_1): Mark parameter with ATTRIBUTE_UNUSED.
15118
15119         * except.c (eh_regs): Likewise.
15120
15121         * final.c (output_operand): Likewise.
15122
15123         * fold-const.c (target_isinf, target_isnan): Likewise.
15124
15125 Tue Jan 18 16:19:55 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
15126
15127         * i386.h (BIGGEST_ALIGNMENT): Set to 128.
15128         (BIGGEST_FIELD_ALIGNMENT): Set to (TARGET_ALIGN_DOUBLE ? 64 : 32)
15129
15130         * i386.md (memstr): Do not use rep stosb for counts divisible by 4
15131         when optimize_size.
15132         (clrstrsi): Rewrite.
15133         (strsethi, strsetqi): New expanders.
15134         (strsethi_1, strsetqi_1, rep_stossi, rep_stosqi): New insn patterns.
15135         (cmpstrsi): Emit compare insn before cmpstrsi_1
15136         (cmpstrsi_nz): use flags, set type to str, prefix_length to 1.
15137         (strlensi_1): Likewise.
15138         (cmpstrsi_1): Likewise; do not output compare.
15139         (strlen expander): Do not unroll when optimizing for size.
15140         (*subsi3_carry): Rename to subsi3_carry
15141         (addqi3_cc): New pattern.
15142         * i386.h (processor_costs): Add move_ratio field.
15143         (MOVE_RATIO): Use move_ratio field, set to 3 for OPTIMIZE_SIZE
15144         * i386.c (*_cost): Set move_ratio.
15145         (x86_unroll_strlen): Enable for Athlon, PPro and K6 too.
15146         (x86_expand_strlensi_1): Rewrite the main loop.
15147
15148 2000-01-17  Richard Henderson  <rth@cygnus.com>
15149
15150         * combine.c (combine_simplify_rtx): Give FLOAT_STORE_FLAG_VALUE a mode.
15151         * cse.c (find_comparison_args, fold_rtx): Likewise.
15152         * integrate.c (subst_constants): Likewise.
15153         * loop.c (get_condition): Likewise.
15154
15155         * tm.texi (FLOAT_STORE_FLAG_VALUE): Update docs.
15156
15157         * alpha.h (FLOAT_STORE_FLAG_VALUE): Use REAL_VALUE_ATOF.
15158
15159 2000-01-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
15160
15161         * c-parse.in (SAVE_WARN_FLAGS): Create an INTEGER_CST.
15162         (RESTORE_WARN_FLAGS): Unpack it.
15163         Change semantic type of extension to ttype.
15164         * c-common.c (split_specs_attrs): Expect an INTEGER_CST.
15165         * c-parse.y, c-parse.c, objc/objc-parse.y,
15166         objc/objc-parse.c: Regenerate.
15167
15168 2000-01-17  Zack Weinberg  <zack@wolery.cumb.org>
15169
15170         * fixinc/fixlib.c: Add copyright notice.
15171         (compile_re): New function.
15172         * fixinc/fixlib.h: Prototype compile_re.
15173
15174         * fixinc/fixfixes.c, fixinc/fixtests.c, fixinc/fixincl.c:
15175         Use compile_re to compile regular expressions.
15176
15177         * fixinc/fixincl.c (egrep_test): Don't bother asking regexec
15178         where the pattern matched.
15179
15180         * fixinc/inclhack.def (sun_memcpy): Move to AAB_sun_memcpy,
15181         use 'replace'.
15182         (ultrix_ansi_compat): Likewise.
15183         (interactv_add1): Rename to 'isc_omits_with_stdc', remove shell test,
15184         add egrep test.
15185         (interactv_add2, interactv_add3): Delete.
15186         (x11_sprintf): Don't use filename glob.
15187         * fixinc/fixincl.x, fixinc/inclhack.sh, fixinc/fixincl.sh:
15188         Regenerate.
15189
15190 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15191
15192         * print-rtl.c: PROTO -> PARAMS.
15193         * real.c: Likewise.
15194         * reg-stack.c: Likewise.
15195         * resource.c: Likewise.
15196         * sdbout.h: Likewise.
15197         * simplify-rtx.c: Likewise.
15198         * stor-layout.c: Likewise.
15199         * stupid.c: Likewise.
15200         * xcoffout.c: Likewise.
15201         * xcoffout.h: Likewise.
15202
15203 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15204
15205         * toplev.c: PROTO -> PARAMS.
15206         * toplev.h: Likewise.
15207         * tree.c: Likewise.
15208         * tree.h: Likewise.
15209         * unroll.c: Likewise.
15210         * varasm.c: Likewise.
15211         * varray.c: Likewise.
15212         * varray.h: Likewise.
15213
15214 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15215
15216         * reload.c: PROTO -> PARAMS.
15217         * reload.h: Likewise.
15218         * reload1.c: Likewise.
15219         * reorg.c: Likewise.
15220         * resource.h: Likewise.
15221         * rtl.c: Likewise.
15222         * rtl.h: Likewise.
15223         * rtlanal.c: Likewise.
15224         * sbitmap.h: Likewise.
15225         * sdbout.c: Likewise.
15226         * stack.h: Likewise.
15227         * stmt.c: Likewise.
15228         * system.h: Likewise.
15229
15230 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15231
15232         * machmode.h: PROTO -> PARAMS.
15233         * mbchar.h: Likewise.
15234         * mips-tdump.c: Likewise.
15235         * mips-tfile.c: Likewise.
15236         * optabs.c: Likewise.
15237         * output.h: Likewise.
15238         * prefix.c: Likewise.
15239         * profile.c: Likewise.
15240         * protoize.c: Likewise.
15241         * real.h: Likewise.
15242         * recog.c: Likewise.
15243         * recog.h: Likewise.
15244         * regclass.c: Likewise.
15245         * regmove.c: Likewise.
15246         * regs.h: Likewise.
15247
15248 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15249
15250         * ggc-common.c: PROTO -> PARAMS.
15251         * ggc-page.c: Likewise.
15252         * ggc-simple.c: Likewise.
15253         * ggc.h: Likewise.
15254         * global.c: Likewise.
15255         * graph.c: Likewise.
15256         * gthr-win32.h: Likewise.
15257         * haifa-sched.c: Likewise.
15258         * halfpic.h: Likewise.
15259         * integrate.c: Likewise.
15260         * integrate.h: Likewise.
15261         * jump.c: Likewise.
15262         * lcm.c: Likewise.
15263         * local-alloc.c: Likewise.
15264         * loop.c: Likewise.
15265         * loop.h: Likewise.
15266
15267 2000-01-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15268
15269         * genattr.c: PROTO -> PARAMS.
15270         * genattrtab.c: Likewise.
15271         * gencheck.c: Likewise.
15272         * gencodes.c: Likewise.
15273         * genconfig.c: Likewise.
15274         * genemit.c: Likewise.
15275         * genextract.c: Likewise.
15276         * genflags.c: Likewise.
15277         * gengenrtl.c: Likewise.
15278         * genopinit.c: Likewise.
15279         * genoutput.c: Likewise.
15280         * genpeep.c: Likewise.
15281         * genrecog.c: Likewise.
15282
15283 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
15284
15285         * tree.h (BINFO_VPTR_FIELD): Augment documentation.
15286
15287 2000-01-16  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
15288
15289         * aclocal.m4 (AC_FUNC_MMAP_ZERO): New macro.
15290         * configure.in (AC_FUNC_MMAP_ZERO): Use instead of AC_FUNC_MMAP.
15291         * ggc-page.c: Replace HAVE_MMAP with HAVE_MMAP_ZERO.
15292         * configure, config.in: Rebuilt.
15293
15294 2000-01-16  Zack Weinberg  <zack@wolery.cumb.org>
15295
15296         * config/i386/i386.md: Add peephole to merge successive stack
15297         adjusts.
15298
15299 Sat Jan 15 15:41:14 EST 2000  John Wehle  (john@feith.com)
15300
15301         * gcse.c (insert_insn_end_bb): Use emit_block_insn_before
15302         instead of emit_insn_before.  Also handle NOTE_INSN_BASIC_BLOCK
15303         when walking backwards to find all the parameter loads when
15304         the basic block ends in a call.
15305
15306 2000-01-15  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15307
15308         * loop.c (this_loop_info): Delete.
15309         (uid_loop): Add in place of uid_loop_num.  All uses updated.
15310         (loop_number_exit_count): Delete and replace with entry in loop
15311         structure.  All uses updated.
15312         (loop_number_loop_starts, loop_number_loop_ends): Likewise.
15313         (loop_number_loop_cont, loop_number_cont_dominator): Likewise.
15314         (loop_outer_loop): Likewise.
15315         (loop_invalid, loop_number_exit_labels): Likewise.
15316         (loop_used_count_register): Delete and replace with entry in
15317         loop_info structure.
15318         (find_and_verify_loops): Add loops argument.
15319         (verify_dominator, mark_loop_jump, prescan_loop): Replace loop_start,
15320         loop_end, etc. arguments with loop structure pointer.  All callers
15321         changed.
15322         (loop_reg_used_before_p, scan_loop, strength_reduce): Likewise.
15323         (check_dbra_loop, next_insn_in_loop, try_copy_prop): Likewise.
15324         (load_mems_and_recount_loop_regs_set, load_mems): Likewise.
15325         (insert_bct): Likewise.
15326         (basic_induction_var): New argument level.
15327         * loop.h (struct loop_info): Delete fields num, loops_enclosed,
15328         vtop, and cont.  Add used_count_register.
15329         (uid_loop): Delete declaration.
15330         (loop_number_exit_count): Likewise.
15331         (loop_number_loop_starts, loop_number_loop_ends): Likewise.
15332         (loop_number_loop_cont, loop_number_cont_dominator): Likewise.
15333         (loop_outer_loop, loop_used_count_register): Likewise.
15334         (loop_invalid, loop_number_exit_labels): Likewise.
15335         (unroll_loop): Replace loop_start and loop_end arguments
15336         with loop structure pointer.
15337         (loop_precondition_p, loop_iterations): Likewise.
15338         Include basic-block.h.
15339         * unroll.c: (unroll_loop): Replace loop_start and loop_end arguments
15340         with loop structure pointer.
15341         (loop_precondition_p, loop_iterations): Likewise.
15342         * basic-block.h (struct loop): New entries vtop, cont,
15343         cont_dominator, start, end, top, scan_start, exit_labels,
15344         exit_count.
15345         * Makefile.in (LOOP_H): Add basic-block.h to dependencies.
15346
15347 2000-01-15  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
15348
15349         * defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT.
15350
15351 2000-01-14  Nathan Sidwell  <sidwell@codesourcery.com>
15352
15353         * config.in: Rebuilt for 2000-01-13 change to acconfig.h.
15354
15355 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15356
15357         * pdp11-protos.h: New file.
15358
15359         * pdp11.c: Include tm_p.h.  Add static prototypes.  Fix compile
15360         time warnings.
15361
15362         * pdp11.h: Move prototypes to pdp11-protos.h.  Fix compile time
15363         warnings.
15364
15365         * pdp11.md: Likewise.
15366
15367         * 2bsd.h: Likewise.
15368
15369 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15370
15371         * mn10300-protos.h: New file.
15372
15373         * mn10300.c: Include tm_p.h.  Add static prototypes.  Fix compile
15374         time warnings.
15375
15376         * mn10300.h: Move prototypes to mn10300-protos.h.  Fix compile time
15377         warnings.
15378
15379         * mn10300.md: Likewise.
15380
15381 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15382
15383         * mn10200-protos.h: New file.
15384
15385         * mn10200.c: Include tm_p.h.  Add static prototypes.  Fix compile
15386         time warnings.
15387
15388         * mn10200.h: Move prototypes to mn10200-protos.h.  Fix compile time
15389         warnings.
15390
15391         * mn10200.md: Likewise.
15392
15393 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15394
15395         * h8300-protos.h: New file.
15396
15397         * h8300.c: Include tm_p.h.  Add static prototypes.  Fix compile
15398         time warnings.
15399
15400         * h8300.h: Move prototypes to h8300-protos.h.  Fix compile time
15401         warnings.
15402
15403         * h8300.md: Likewise.
15404
15405 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15406
15407         * varasm.c (asm_output_bss): Mark parameters with ATTRIBUTE_UNUSED.
15408         (asm_emit_uninitialised): Likewise.
15409
15410 2000-01-13  Gavin Romig-Koch  <gavin@cygnus.com>
15411
15412         * config/mips/mips.h (ISA_HAS_INT_CONDMOVE): New.
15413         * config/mips/mips.md: Use ISA_HAS_INT_CONDMOVE.
15414
15415 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
15416
15417         * config/mips/mips.c (override_options): Don't turn on extra
15418         alignment for mips16.
15419
15420 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
15421
15422         * config/mips/mips.c (mips_va_arg): Fix fprv for the 32 bit
15423         eabi, and make sure queued POSTINCREMENT rtl is emitted at
15424         the right point.
15425
15426 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
15427
15428         * builtins.c (PAD_VARARGS_DOWN): Define.
15429         (std_expand_builtin_va_arg): Use the above macro.
15430         * config/mips/mips.h (PAD_VARARGS_DOWN): Define.
15431         * tm.texi (Register Arguments): Document the above macro.
15432
15433 2000-01-14  Nick Clifton  <nickc@cygnus.com>
15434
15435         * emit-rtl.c (emit_insn): If checking is enabled, make sure
15436         that this function has not been used to emit a jump
15437         instruction.
15438
15439         * jump.c (return_jump_1): Cope with being passed a null rtx.
15440
15441 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15442
15443         * eh-common.h: PROTO -> PARAMS.
15444         * emit-rtl.c: Likewise.
15445         * errors.c: Likewise.
15446         * errors.h: Likewise.
15447         * except.c: Likewise.
15448         * except.h: Likewise.
15449         * explow.c: Likewise.
15450         * expmed.c: Likewise.
15451         * expr.c: Likewise.
15452         * expr.h: Likewise.
15453         * final.c: Likewise.
15454         * fix-header.c: Likewise.
15455         * flow.c: Likewise.
15456         * fold-const.c: Likewise.
15457         * function.c: Likewise.
15458         * function.h: Likewise.
15459         * gcc.c: Likewise.
15460         * gcov-io.h: Likewise.
15461         * gcov.c: Likewise.
15462         * gcse.c: Likewise.
15463
15464 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15465
15466         * sh-protos.h: New file.
15467
15468         * sh.c: Include insn-config.h, toplev.h, recog.h and tm_p.h.
15469         Add static prototypes.  Fix compile time warnings.
15470
15471         * sh.h: Move prototypes to sh-protos.h.  Fix compile time warnings.
15472         * sh.md: Likewise.
15473         * elf.h: Likewise.
15474
15475 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15476
15477         * arc-protos.h: New file.
15478
15479         * arc.c: Include tm_p.h.  Add static prototypes.  Fix compile
15480         time warnings.
15481
15482         * arc.h: Move prototypes to arc-protos.h.  Fix compile time
15483         warnings.
15484
15485         * arc.md: Likewise.
15486
15487 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15488
15489         * dsp16xx-protos.h: New file.
15490
15491         * dsp16xx.c: Include tm_p.h.  Add static prototypes.  Fix compile
15492         time warnings.
15493
15494         * dsp16xx.h: Move prototypes to dsp16xx-protos.h.  Fix compile time
15495         warnings.
15496
15497         * dsp16xx.md: Likewise.
15498
15499 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15500
15501         * convex-protos.h: New file.
15502
15503         * convex.c: Include tm_p.h.  Add static prototypes.  Fix compile
15504         time warnings.
15505
15506         * convex.h: Move prototypes to convex-protos.h.  Fix compile time
15507         warnings.
15508
15509 2000-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15510
15511         * elxsi-protos.h: New file.
15512
15513         * elxsi.c: Include tm_p.h.  Add static prototypes.  Fix compile
15514         time warnings.
15515
15516         * elxsi.h: Move prototypes to elxsi-protos.h.  Fix compile time
15517         warnings.
15518
15519         * elxsi.md: Likewise.
15520
15521 2000-01-14  Clinton Popetz  <cpopetz@cygnus.com>
15522
15523         * config/mips/mips.h (REGISTER_MOVE_COST): Remove redundant
15524         case for moving from HI/LO/HI_LO_REG.  This makes the behavior
15525         match the comment for MIPS16.
15526
15527 Fri Jan 14 00:28:06 2000  Jeffrey A Law  (law@cygnus.com)
15528
15529         * flow.c (split_edge): Do not call set_block_for_insn if we
15530         do not have a basic_block_for_insn structure.
15531
15532         * fr30.h (TRAMPOLINE_TEMPLATE): Use nops to ensure the static chain
15533         and destination functions are 32bit aligned within the trampoline.
15534         (TRAMPOLINE_SIZE, INITIALIZE_TRAMPOLINE): Corresponding changes.
15535         (TRAMPOLINE_ALIGNMENT): Define.
15536
15537         * cse.c (cse_insn): When changing (set (pc) (reg)) to
15538         (set (pc) (label_ref)), verify the change creates a valid insn.
15539
15540         * fr30.c (call_operand): Tighten and rework to match rules for
15541         call RTL expressions.
15542         * fr30.h (PREDICATE_CODES, case call_operand): Only allow MEMs.
15543         * fr30.md (call patterns): Improve constraints.
15544
15545 Thu Jan 13 23:44:03 2000  Richard Henderson  <rth@cygnus.com>
15546
15547         * fr30.c (fr30_expand_epilogue): Revert last change.
15548         Use emit_jump_insn for the return insn.
15549
15550 Thu Jan 13 14:46:03 2000  Jason Eckhardt  <jle@cygnus.com>
15551                           Stan Cox  <scox@cygnus.com>
15552
15553         * predict.c: New file. Preliminary infrastructure work for static
15554         branch prediction and basic block reordering.
15555         * basic-block.h: Add prototype for estimate_probability.
15556         * Makefile.in: Add rules for predict.o.
15557
15558 2000-01-13  Jason Merrill  <jason@yorick.cygnus.com>
15559
15560         * fixincludes (va_list): Use __not_va_list__ for the dummy.
15561         * fixinc/*: Likewise.
15562
15563 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15564
15565         * cccp.c: PROTO -> PARAMS.
15566         * cexp.y: Likewise.
15567         * collect2.c: Likewise.
15568         * combine.c: Likewise.
15569         * convert.h: Likewise.
15570         * cse.c: Likewise.
15571         * dbxout.c: Likewise.
15572         * dbxout.h: Likewise.
15573         * diagnostic.c: Likewise.
15574         * doprint.c: Likewise.
15575         * dwarf2out.c: Likewise.
15576         * dwarf2out.h: Likewise.
15577         * dwarfout.c: Likewise.
15578         * dwarfout.h: Likewise.
15579         * dyn-string.h: Likewise.
15580
15581 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15582
15583         * calls.c (emit_call_1): Wrap varaible `struct_value_size_rtx' in
15584         macro conditionals guarding use.
15585
15586         * dwarf2out.c: Include "tm_p.h".
15587
15588         * function.c (locate_and_pad_parm): Mark parameter with
15589         ATTRIBUTE_UNUSED.
15590         (expand_function_end): Likewise for variable `context'.
15591
15592         * reorg.c (make_return_insns): Wrap prototype in macro HAVE_return.
15593
15594 2000-01-13  Nick Clifton  <nickc@cygnus.com>
15595
15596         * config/fr30/fr30.c (fr30_expand_epilogue): Emit USEs of pop'ed
15597         register to prevent compile time warnings.
15598
15599 2000-01-13  Zack Weinberg  <zack@wolery.cumb.org>
15600
15601         * longlong.h [i386] (udiv_qrnnd): Rename 'd' argument to 'dv'
15602         to avoid -Wtraditional warning.
15603
15604 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15605
15606         * 1750a-protos.h: New file.
15607
15608         * 1750a.c: Include tm_p.h.  Add static prototypes.  Fix compile
15609         time warnings.
15610
15611         * 1750a.h: Move prototypes to 1750a-protos.h.  Fix compile time
15612         warnings.
15613
15614         * 1750a.md: Likewise.
15615
15616 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15617
15618         * a29k-protos.h: New file.
15619
15620         * a29k.c: Include tm_p.h.  Add static prototypes.  Fix compile
15621         time warnings.
15622
15623         * a29k.h: Move prototypes to a29k-protos.h.  Fix compile time
15624         warnings.
15625
15626 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15627
15628         * clipper-protos.h: New file.
15629
15630         * clipper.c: Include tm_p.h.  Add static prototypes.  Fix compile
15631         time warnings.
15632
15633         * clipper.h: Move prototypes to clipper-protos.h.  Fix compile time
15634         warnings.
15635
15636 Thu Jan 13 16:03:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
15637
15638         * reload1.c (reload_combine_note_store): Use HARD_REGNO_NREGS.
15639
15640 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
15641
15642         * configure.in (--enable-new-gxx-abi): New option.
15643         * acconfig.h (ENABLE_NEW_GXX_ABI): New define.
15644         * Makefile.in (GXX_ABI_FLAG): New variable.
15645         * configure: Regenerate.
15646
15647 2000-01-13  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
15648
15649         * stor-layout.c (layout_type): Use FORCE_STRUCT_BLK.
15650         * tm.texi (FORCE_STRUCT_BLK): Document.
15651         * config/c4x/c4x.h (FORCE_STRUCT_BLK): New macro.
15652
15653 Wed Jan 12 23:12:47 2000  Hans-Peter Nilsson  <hp@axis.com>
15654
15655         * config/ns32k/ns32k.md: Revert Jan 9 change.
15656
15657         * genrecog.c (maybe_both_true_2): Do not compare a predicate-test
15658         to a mode-test, if the predicate is address_operand.
15659
15660 Wed Jan 12 22:34:00 2000  Jeffrey A Law  (law@cygnus.com)
15661
15662         * combine.c (if_then_else_cond): Be careful about what kinds
15663         of RTL expressions are passed to operand_subword.
15664
15665         * flow.c (split_edge): If we have to insert a new jump, make
15666         sure to associate it with a basic block.
15667
15668         * flow.c (commit_one_edge_insertion): A block with one successor
15669         can end in a JUMP_INSN that is not a simplejump.
15670
15671 2000-01-12  Robert Lipe  <robertl@sco.com>
15672
15673         * i386/sco5.h (INIT_SECTION_ASM_OP_COFF): Rename section to "ctor".
15674         (BUILD_VA_LIST_TYPE): Define.
15675         (EH_FRAME_SECTION_ASM_OP): Explictly define to better interact
15676         with crtstuff.c.
15677
15678 2000-01-12  Jason Merrill  <jason@casey.cygnus.com>
15679
15680         * cccp.c (do_pragma): Add cast to (char *).
15681
15682 2000-01-12  Richard Henderson  <rth@cygnus.com>
15683             Fred Fish  <fnf@be.com>
15684             Jason Merrill  <jason@cygnus.com>
15685
15686         * configure.in (i?86-*-beos{pe,elf,}*): Recognize.
15687         * i386/t-beos, i386/x-beos, i386/xm-beos.h: New files.
15688         * i386/beos-elf.h, i386/beos-pe.h: New files.
15689
15690         * Makefile.in (CROSS_SYSTEM_HEADER_DIR): New.
15691         * cross-make (SYSTEM_HEADER_DIR): Define using
15692         CROSS_SYSTEM_HEADER_DIR.
15693
15694         * gcc.c (LIBRARY_PATH_ENV): Provide default.
15695         (process_command): Use it.
15696         (main): Likewise.  Kill trailing = from env vars.
15697         (build_search_list): Put it back.
15698         * collect2.c (main): Use LIBRARY_PATH_ENV.
15699
15700         * configure.in (GCC_NEED_DECLARATIONS): Add environ.
15701         * toplev.c: Use NEED_DECLARATION_ENVIRON.
15702
15703         * tm.texi (Frame Layout): Document SMALL_STACK.
15704         * c-common.c (c_common_nodes_and_builtins): Check it.
15705
15706         * system.h: Undef alloca after including glibc's <stdlib.h>,
15707         if USE_C_ALLOCA is defined.
15708
15709         * gcc.c (set_input): New fn.
15710         (main): After all input files are compiled, reset the input file
15711         info to the first.
15712
15713         * aclocal.m4 (rindex, index): If already defined, don't attempt
15714         to redefine.
15715
15716         * ginclude/varargs.h: (__va_list__): Define ifndef.
15717         * ginclude/stdarg.h: Likewise.
15718
15719         * ginclude/stddef.h (__WCHAR_TYPE__) [BEOS]: Use int
15720         instead of unsigned char.
15721
15722         * hash.h (true, false, boolean): Undef before enum.
15723
15724         * expmed.c (choose_multiplier): Cast &mhigh_lo and &mhigh_hi to be
15725         proper type of "HOST_WIDE_INT *", rather than their natural type of
15726         "unsigned HOST_WIDE_INT *".
15727
15728 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15729
15730         * svr3.h (ASM_FILE_START): Wrap if-clause in squigly brackets.
15731
15732         * recog.c (memory_address_p): Mark parameter with ATTRIBUTE_UNUSED.
15733
15734         * regclass.c (choose_hard_reg_mode): Likewise.
15735
15736         * reload.c (find_valid_class, strict_memory_address_p): Likewise.
15737
15738         * reorg.c (optimize_skip): Wrap prototype in macro conditionals.
15739
15740 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15741
15742         * c-common.c: PROTO -> PARAMS.
15743         * c-common.h: Likewise.
15744         * c-decl.c: Likewise.
15745         * c-iterate.c: Likewise.
15746         * c-lang.c: Likewise.
15747         * c-lex.c: Likewise.
15748         * c-lex.h: Likewise.
15749         * c-parse.in: Likewise.
15750         * c-pragma.c: Likewise.
15751         * c-pragma.h: Likewise.
15752         * c-tree.h: Likewise.
15753         * c-typeck.c: Likewise.
15754         * objc/objc-act.c: Likewise.
15755         * objc/objc-act.h: Likewise.
15756
15757 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15758
15759         * m88k-protos.h: New file.
15760
15761         * m88k.c: Include tm_p.h.  Add static prototypes.  Fix compile
15762         time warnings.
15763
15764         * m88k.h: Move prototypes to m88k-protos.h.  Fix compile time warnings.
15765
15766         * m88k.md: Likewise.
15767
15768         * tekXD88.h: Likewise.
15769
15770 2000-01-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15771
15772         * m68k-protos.h: New file.
15773
15774         * m68k.c: Include tm_p.h.  Add static prototypes.  Fix compile
15775         time warnings.
15776
15777         * m68k.h: Move prototypes to m68k-protos.h.  Fix compile time warnings.
15778
15779         * mot3300.h: Likewise.
15780
15781 2000-01-12  Richard Earnshaw <rearnsha@arm.com>
15782
15783         * haifa-sched.c (split_edges): Pass edgeset_size as second arg to
15784         extract_bitlst.
15785         (extract_bitlist): Declare bitlen.
15786
15787 2000-01-12  Zack Weinberg  <zack@wolery.cumb.org
15788
15789         * cccp.c: Accept and ignore -lang-fortran.
15790
15791         * c-typeck.c (build_c_cast): Issue -Wcast-qual warnings if the
15792         qualifiers don't match at any level of pointerness.
15793
15794 2000-01-12  Robert Lipe  <robertl@sco.com>
15795
15796         * i386/sysv5.h (CPP_SPEC, LIBSPEC): Add -pthreadT.
15797
15798 2000-01-12  Bernd Schmidt  <bernds@cygnus.co.uk>
15799
15800         * reload1.c (reload_reg_unavailable): New static variable.
15801         (reload_reg_free_p): Test it.
15802         (reload_reg_free_for_value_p): Test it instead of
15803         reload_reg_used.
15804         (choose_reload_regs_init): Compute it.
15805
15806 Wed Jan 12 03:24:41 2000  Toshiyasu Morita (toshi.morita@sega.com)
15807
15808         * reorg.c (fill_slots_from_thread): Check modified_in_p
15809         before replacing.
15810
15811 Wed Jan 12 03:20:31 2000  John Marshall <john_w_marshall@palm.com>
15812
15813         * gcc.texi (Funding, GNU/Linux, Copying, Contributors): Format
15814         these nodes even if INTERNALS is not set.
15815
15816 Wed Jan 12 09:39:22 2000  Nick Burrett  <nick.burrett@btinternet.com>
15817
15818         * gcse.c (delete_null_pointer_checks_1): Cope when
15819         get_condition cannot determine the condition.
15820
15821 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
15822
15823         * toplev.h (set_message_length): Declare.
15824
15825         * diagnostic.c (obstack_chunk_alloc): Define macro.
15826         (obstack_chunk_free): Likewise.
15827         (struct output_buffer): New data structure.
15828         (vmessage): Remove.
15829         (output_maximum_width): New variable.
15830         (doing_line_wrapping, set_message_length, init_output_buffer,
15831         get_output_prefix, output_space_left, emit_output_prefix,
15832         output_newline, output_append, output_puts, dump_output,
15833         vbuild_message_string, build_message_string, build_location_prefix,
15834         voutput_notice, output_printf, line_wrapper_printf,
15835         vline_wrapper_message_with_location):  New functions. Implement
15836         automatic line wrapping.
15837         (v_message_with_decl): Make it handle automatic line wrapping.
15838         (v_error_with_file_and_line): Likewise.
15839         (v_warning_with_file_and_line): Likewise.
15840         (announce_function): Likewise.
15841         (default_print_error_function): Likewise.
15842
15843 2000-01-11 16:24 -0800  Zack Weinberg  <zack@wolery.cumb.org>
15844
15845         * cpplib.h (struct cpp_options): Change lang_asm to char.
15846         Add lang_fortran.
15847         * cppinit.c (builtin_array): Take out __STDC_VERSION__, it's
15848         done in cpp_handle_option now.
15849         (initialize_builtins): Take out special case code used only by
15850         __STDC_VERSION__.
15851         (cpp_handle_option): Turn off trigraphs and trigraph warnings
15852         if -traditional.  Recognize -lang-fortran and set
15853         lang_fortran, also turn off cplusplus_comments.
15854         (print_help): Document -lang-fortran.
15855         * cpplib.c (handle_directive): Ignore `# 123 "file"' if
15856         lang_asm. Ignore all directives other than `# 123 "file"' if
15857         CPP_PREPROCESSED.
15858         (cpp_get_token): If -traditional, don't recognize directives
15859         unless the # is in column 1.
15860         (parse_string): If lang_fortran or lang_asm, silently
15861         terminate strings ('' or "") at end of line.
15862         Remove unnecessary braces.
15863
15864 2000-01-11  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
15865             Richard Henderson  <rth@cygnus.com>
15866
15867         * resource.c (mark_referenced_resources): Mark a set strict_low_part
15868         as used.
15869         * config/i386/i386.c (ix86_expand_setcc): Re-enable clear + set
15870         strict_low_part when possible.
15871
15872 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15873
15874         * alias.c: PROTO -> PARAMS.
15875         * basic-block.h: Likewise.
15876         * bitmap.c: Likewise.
15877         * bitmap.h: Likewise.
15878         * builtins.c: Likewise.
15879         * c-aux-info.c: Likewise.
15880         * caller-save.c: Likewise.
15881         * calls.c: Likewise.
15882
15883 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15884
15885         * Makefile.in (toplev.o): Depend on regs.h.
15886
15887         * output.h (tdesc_section): Prototype.
15888
15889         * regclass.c (copy_cost): Mark parameters with ATTRIBUTE_UNUSED.
15890
15891         * sdbout.c: Include "tm_p.h".
15892
15893         * toplev.c: Include "regs.h".
15894
15895 Tue Jan 11 11:37:58 2000  Mike Stump  <mrs@wrs.com>
15896
15897         * unroll.c (unroll_loop): Add EH support.
15898
15899 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15900
15901         * pa-protos.h: New file.
15902
15903         * pa.c: Include recog.h and tm_p.h.
15904         (compute_zdepwi_operands, compute_movstrsi_length,
15905         remove_useless_addtr_insns, store_reg, load_reg, set_reg_plus_d,
15906         find_addr_reg, import_milli): Add static prototypes.
15907         (pa_cpu_string, pa_arch_string): Constify a char*.
15908         (legitimize_pic_address): Pass argument `mode' to pic_label_operand.
15909         (read_only_operand): Add argument `mode'.
15910         (singlemove_string, output_move_double, output_fp_move_double,
15911         output_block_move, output_and, output_ior, output_ascii,
15912         remove_useless_addtr_insns, milli_names, output_mul_insn,
15913         output_div_insn, output_mod_insn, output_arg_descriptor,
15914         output_cbranch, output_bb, output_bvb, output_dbra, ,
15915         output_millicode_call, output_call, hppa_encode_label,
15916         output_parallel_movb, output_parallel_addb): Constify a char*.
15917         (hppa_va_start): Mark parameter `stdarg_p' with ATTRIBUTE_UNUSED.
15918         (output_parallel_addb): Remove extra arg to `constrain_operands'
15919
15920         * pa.h:  Move all prototypes to pa-protos.h.
15921         (pa_cpu_string, pa_arch_string): Constify a char*.
15922         (LEGITIMIZE_ADDRESS): Call `symbolic_operand' with mode argument.
15923
15924         * pa.md: Call `function_label_operand' with mode argument.
15925         Likewise for `read_only_operand'.
15926         Fix nesting of parens in call to `symbolic_operand'.
15927
15928 2000-01-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15929
15930         * i860-protos.h: New file.
15931
15932         * i860.c: Include tm_p.h.  Add static prototypes.  Fix compile
15933         time warnings.
15934
15935         * i860.h: Move prototypes to i860-protos.h.  Fix compile time warnings.
15936
15937         * i860.md: Likewise.
15938
15939 Tue Jan 11 18:59:35 MET 2000  Jan Hubicka <jh@suse.cz>
15940
15941         * i386.md (movstrsi expander): Rewrite.
15942         (movstrsi_1 insn): Deleted.
15943         (strmovhi, strmovqi expander): New expanders.
15944         (movshi_1, movsqi_1, rep_movsi, rep_movqi): New patterns.
15945         * i386.c (x86_single_stringop): New global variable.
15946         * i386.h (x86_single_stringop): Declare.
15947         (TARGET_SINGLE_STRINGOP): New macro.
15948
15949 2000-01-11  Clinton Popetz  <cpopetz@cygnus.com>
15950
15951         * config/mips/mips.c (mips_va_arg): For EABI, emit the queued
15952         integer vararg POSTINCREMENT before the destination of the jump
15953         for the hard fp case.
15954         (function_arg_pass_by_reference): Pass a copy of CUM to
15955         FUNCTION_ARG.
15956
15957         * config/mips/mips.h (GO_IF_LEGITIMATE_ADDRESS): Move check
15958         for CONSTANT_ADDRESS_P above while loop for subreg.
15959
15960 2000-01-11  Clinton Popetz  <cpopetz@cygnus.com>
15961
15962         * flow.c (propagate_block): When a prologue/epilogue insn
15963         is marked dead, unconditionally clear libcall_is_dead and
15964         insn_is_dead, and only dump rtl if warnings aren't being
15965         suppressed.
15966
15967 Tue Jan 11 16:26:47 MET 2000  Jan Hubicka <jh@suse.cz>
15968
15969         * i386.c (ix86_attr_length_default): Handle TYPE_STR and TYPE_CLD.
15970         * i386.md (FIRST_PSEUDO_REGISTER): Set to 20.
15971         (FIXED_REGISTERS): Set dirflag as fixed.
15972         (CALL_USED_REGISTERS): Set dirflag as used.
15973         (REG_ALLOC_ORDER): Set dirflag as last one.
15974         (DIRFLAG_REG): New macro.
15975         (MD_ASM_CLOBBERS): Asm clobber dirflag for backward compatibility.
15976         (HI_REGISTER_NAMES): Add dirflag.
15977         (DEBUF_PRINT_REG): Handle dirflag.
15978         * i386.md (type attribute): New cld and str types.
15979         (length_opcode attribute): Set cld and str to 1.
15980         (memory attribute): Set str to unknown - it is not clear from the
15981         patterns.
15982         (pent_np function unit): Prefixed string operations takes 12 cycles
15983         minimally; cld takes 2 cycles.
15984         (ppro_uops attribute): Str is "many" and cld is "few".
15985         (ppro_p0 unit): Handle cld here.
15986         (k6_alux unit): Handle cld and str types.
15987         (k6_load unit): It is ocupied by str opcodes.
15988         (k6_store unit): It is ocupied by str opcodes.
15989         (athlon_decode): Str is vector decoded.
15990         (athlon_ieu): Handle str and cld.
15991         (cld pattern): New.
15992         (movstrsi, clrstr, cmpstr, strlen expander): Emit cld instruction
15993         (movstrsi_1, clrstrsi_1, cmpstrsi_1, strlensi_1,
15994         cmpstrsi_nz_1 insn): Do not output cld instruction
15995
15996 Tue Jan 11 06:14:39 2000  David Starner <dstarner98@aasaa.ofe.org>
15997
15998         * gcc.texi (G++ and GCC): Add Java and Chill.
15999         (Bug Critera): Don't list languages.
16000
16001         * gcc.texi (Incompatibilities): No longer claim most C compilers
16002         are K&R.
16003
16004         * gcc.texi (G++ and GCC): Update other front-ends list.
16005
16006 Tue Jan 11 05:49:01 2000  Jeffrey A Law  (law@cygnus.com)
16007
16008         * i386.c (ix86_expand_setcc): Fix typo.
16009         (ix86_expand_movcc): Similarly.
16010
16011         * Band-aid until haifa's bitset implementation is nuked.
16012         * haifa-sched.c (extract_bitlst): New parameter for size of the
16013         bitset in bits.  All callers changed.  Avoid looking at undefined
16014         bits in the bitset.
16015         (edgeset_bitsize): New variable.
16016         (schedule_region): Initialize edgeset_bitsize.
16017
16018 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16019
16020         * Makefile.in (optabs.o): Depend on real.h
16021         (resource.o): Depend on insn-attr.h
16022
16023         * builtins.c (result_vector): Wrap prototype in macro conditions
16024         governing definition and use.
16025
16026         * c-common.c: Include tm_p.h.
16027
16028         * c-lex.c: Likewise.
16029
16030         * elfos.h: Constify a char*.
16031
16032         * final.c (align_fuzz): Wrap prototype in macro HAVE_ATTR_length.
16033         (get_attr_length, shorten_branches, profile_after_prologue): Mark
16034         parameter with ATTRIBUTE_UNUSED.
16035
16036         * fold-const.c (exact_real_inverse): Wrap variable `i' in
16037         CHECK_FLOAT_VALUE.
16038
16039         * haifa-sched.c (schedule_insns): Mark parameter with
16040         ATTRIBUTE_UNUSED.
16041
16042         * optabs.c: Include real.h.
16043
16044         * real.h (ereal_atof): Add prototype arguments.
16045
16046         * resource.c: Include insn-attr.h.
16047
16048         * sdbout.c (sdbout_queue_anonymous_type,
16049         sdbout_dequeue_anonymous_types): Wrap in macro
16050         SDB_ALLOW_FORWARD_REFERENCES.
16051         (sdbout_init, sdbout_start_new_source_file): Mark parameter with
16052         ATTRIBUTE_UNUSED.
16053
16054         * stmt.c (expand_return): Wrap variable `op0' in macro HAVE_return.
16055
16056         * stupid.c: Include tm_p.h.
16057
16058         * tree.c (real_value_from_int_cst): Mark parameter with
16059         ATTRIBUTE_UNUSED.
16060
16061 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16062
16063         * i960-protos.h: New file.
16064
16065         * i960.c: Include tm_p.h.  Add static prototypes.  Fix compile
16066         time warnings.
16067
16068         * i960.h: Move prototypes to i960-protos.h.  Fix compile time warnings.
16069
16070 2000-01-10  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
16071
16072         * combine.c (expand_field_assignment): Do not discard SUBREGs
16073         while computing nonzero_bits.
16074
16075 2000-01-09  Nick Clifton  <nickc@cygnus.com>
16076
16077         * config/arm/arm.c: Fix compile time warnings about signed vs
16078         unsigned constants.
16079         * config/arm/arm.h: Fix compile time warnings about signed vs
16080         unsigned constants.
16081
16082 2000-01-09  Philip Blundell  <philb@gnu.org>
16083
16084         * config/arm/arm.c (output_return_instruction): Use `ldr' rather
16085         than `ldm' with only one register.
16086         * config/arm/arm.md (push_multi): Use `str' rather than `stm' with
16087         only one register.
16088
16089         * config/arm/linux-gas.h (CLEAR_INSN_CACHE): Say that R0 is
16090         clobbered.
16091
16092 Sun Jan  9 17:50:23 2000  Hans-Peter Nilsson  <hp@axis.com>
16093
16094         * config/ns32k/ns32k.md (load or push effective address): Operand 1
16095         must have SImode.
16096
16097 2000-01-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16098
16099         * elfos.h (ASM_OUTPUT_LIMITED_STRING): Add parentheses around
16100         assignment used as truth value.
16101
16102         * function.c (assign_temp): Mark parameter `dont_promote' with
16103         ATTRIBUTE_UNUSED.  Wrap variable `unsignedp' with macro
16104         PROMOTE_FOR_CALL_ONLY.
16105
16106         * genrecog.c (write_subroutine): Mark variable `operands' with
16107         ATTRIBUTE_UNUSED.
16108
16109         * optabs.c (prepare_cmp_insn): Mark parameter `align' with
16110         ATTRIBUTE_UNUSED.
16111
16112         * sdbout.c (sdbout_init): Likewise for parameter `asm_file'.
16113         (sdbout_begin_block, sdbout_end_block): Likewise for `file'.
16114
16115         * toplev.c (note_deferral_of_defined_inline_function): Likewise
16116         for `decl'.
16117
16118 2000-01-09  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16119
16120         * config/c4x.h: Tidy up comments.
16121         * config/c4x.c: Likewise.
16122
16123 Sun Jan  9 01:02:55 EST 2000  John Wehle  (john@feith.com)
16124
16125         * fold-const.c (lshift_double, rshift_double): Handle
16126         shifting by 2 * HOST_BITS_PER_WIDE_INT correctly.
16127
16128 2000-01-08  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>
16129
16130         * toplev.c (rest_of_compilation): Initialize cse_not_expected as
16131         in prepare_function_start().
16132
16133 Sat Jan  8 12:12:46 2000  Nick Clifton  <nickc@cygnus.com>
16134
16135         * config/v850/v850.c (expand_epilogue): Interrupt functions no
16136         longer allocate extra stack for function calls.
16137
16138 2000-01-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16139
16140         * config/c4x/c4x.md (*subqf3_set): Fix typo.
16141
16142 2000-01-08  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16143
16144         * config/c4x/c4x.h (CALLER_SAVE_PROFITABLE): Define as 0.
16145
16146 2000-01-07  David Edelsohn  <edelsohn@gnu.org>
16147
16148         * rs6000.c (processor_target_table): Add power3 as alias for 630.
16149         * aix43.h: Revert Aug 2 change.
16150         (HAS_INIT_SECTION): Define, not visible yet.
16151         (LD_INIT_SWITCH): Define, not visible yet.
16152         * t-aix43 (MULTILIB_OPTIONS): Revert Aug 2 change.
16153
16154         * glimits.h (__LONG_MAX__): Recognize 64-bit AIX too.
16155
16156         * collect2.c (main): Expand ld2 size further.
16157         (export_object_lst): Cast assignment to avoid warning.
16158         (main, LD_INIT_SWITCH): Add AIX 4.2+ -binitfini support.
16159         (scan_prog_file, COFF): Do not collect initialization or
16160         finalization functions generated for entire shared object if
16161         init/fini support present.
16162
16163 2000-01-07  Nick Clifton  <nickc@cygnus.com>
16164
16165         * config/elfos.h: Tidy up formatting of marcos.  Make sure
16166         that .section directives are always prefixed by a tab.
16167
16168         * config/svr4.h: Add #include "elfos.h" and remove duplicate
16169         definitions.
16170
16171 2000-01-07  Matt Austern  <austern@sgi.com>
16172
16173         * fold-const.c (real_hex_to_f): Remove duplicate declaration of
16174         expon.
16175
16176 Fri Jan  7 01:55:34 2000  Jeffrey A Law  (law@cygnus.com)
16177
16178         * Makefile.in (crtend.o): Pass @inhibit_libc@ to compilation of
16179         crtstuff.c.
16180         (crtbegin.o, s-crtS): Likewise.
16181
16182 2000-01-06  Richard Henderson  <rth@cygnus.com>
16183
16184         * alpha.md (adddi_2+1): Limit offset such that it will be
16185         loadable with a single ldah+lda pair.
16186         (adddi_2+2): Explicitly fail split if we can't make it work.
16187
16188 2000-01-06  Mumit Khan  <khan@xraylith.wisc.edu>
16189
16190         * protoize.c: Conditionally include unistd.h.
16191         (IS_SAME_PATH_CHAR): New macro.
16192         (IS_SAME_PATH): New macro.
16193         (CPLUS_FILE_SUFFIX): New macro.
16194         (cplus_suffix): New static variable.
16195         (is_abspath): New static function.
16196         (in_system_include_dir): Handle DOS style pathnames.
16197         (file_could_be_converted): Likewise.
16198         (file_normally_convertible): Likewise.
16199         (directory_specified_p): Likewise.
16200         (file_excluded_p): Likewise.
16201         (abspath): Likewise.
16202         (shortpath): Likewise.
16203         (referenced_file_is_newer): Likewise.
16204         (save_def_or_dec): Likewise.
16205         (do_processing): Likewise.
16206         (main): Likewise.
16207         (edit_file): Likewise. Use rename instead of link.
16208         (rename_c_file): Likewise. Don't rename syscalls file.
16209         (munge_compile_params): Define null device for DOS based systems.
16210         (process_aux_info_file): Use binary mode if appliable.
16211         (edit_file): Likewise.
16212         * invoke.texi (Running Protoize): Document C++ suffixes used.
16213
16214         * cccp.c: Delete PATH_SEPARATOR, DIR_SEPARATOR and
16215         IS_DIR_SEPARATOR macros.
16216         * collect2.c: Likewise.
16217         * cppinit.c: Likewise.
16218         * dwarf2out.c: Likewise.
16219         * gcc.c: Likewise.
16220         * gcov.c: Likewise.
16221         * prefix.c: Likewise.
16222         * rtl.c: Likewise.
16223         * toplev.c: Likewise.
16224         * system.h: And move to here.
16225
16226         * prefix.c (update_path): Fix typo in variable name.
16227
16228 2000-01-06  Richard Henderson  <rth@cygnus.com>
16229
16230         * flow.c (mark_set_1): Use loop_depth+1 as reference weight.
16231         (find_auto_inc, mark_used_regs, try_pre_increment_1): Likewise.
16232         (count_reg_sets_1, count_reg_references): Likewise.
16233         (flow_loops_level_compute): Start counting actual loop depth at 1.
16234         (flow_loops_find): Likewise.
16235         * local-alloc.c (update_equiv_regs): Likewise.
16236         * regclass.c (regclass): Re-instate Jan 4 0-based loop_depth change.
16237
16238 2000-01-06  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
16239
16240         * defaults.h (DWARF_FRAME_REGISTERS): if not defined, default to
16241         FIRST_PSEUDO_REGISTER
16242         * dwarf2out.c: Don't include frame.h
16243         * dwarfout.c: Likewise
16244         * Makefile.in (dwarfout.o, dwarf2out.o): Remove dependence on
16245         frame.h
16246
16247 Thu Jan  6 13:44:59 CET 2000  Jan Hubicka  <jh@suse.cz>
16248
16249         * reg-stack.c (subst_stack_regs_pat): Handle correctly USEs of
16250         dead registers.
16251
16252         * i386.c (movsf splitter): Fix typo in my last checkin.
16253
16254 2000-01-05  Nick Clifton  <nickc@cygnus.com>
16255
16256         * varasm.c (IN_NAMED_SECTION): Allow targets to provide their
16257         own definition of this macro.
16258         (asm_emit_uninitialised): Invoke UNIQUE_SECTION if either
16259         flag_data_sections or UNIQUE_SECTION_P are true.
16260
16261         * tm.texi (UNIQUE_SECTION): Document that it can be called for
16262         unitialised data decls.
16263
16264         * config/i386/winnt.c (i386_pe_unique_section): Cope with
16265         being called for uninitialised data.
16266
16267         * config/i386/interix.c (i386_pe_unique_section): Cope with
16268         being called for uninitialised data.
16269
16270         * config/mips/elf.h (UNIQUE_SECTION): Cope with being called
16271         for uninitialised data.
16272
16273         * config/mips/elf64.h (UNIQUE_SECTION): Cope with being called
16274         for uninitialised data.
16275
16276         * config/mips/iri6gld.h (UNIQUE_SECTION): Cope with being called
16277         for uninitialised data.
16278
16279         * config/arm/unknown-elf.h (IN_NAMED_SECTION): Define.
16280         (UNIQUE_SECTION_P): Always generate a unique section if
16281         flag_data_sections is true.
16282         (UNIQUE_SECTION): Also generate unique sections for
16283         uninitialised data.
16284         (ASM_OUTPUT_ALIGNED_BSS): Redefine to use named_section().
16285         (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Redefine to use
16286         named_section().
16287
16288 2000-01-06  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16289
16290         * config/c4x/t-c4x (TARGET_LIBGCC2_CFLAGS): Don't redefine SF, DF,
16291         SI, or DI.
16292
16293 2000-01-06  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16294
16295         * config/c4x/c4x.md (udivqi3, divqi3): Delete.
16296         (umodqi3, modqi3, udivhi3, divhi3, umodhi3, modhi3, ffsqi2): Likewise.
16297         (*smulqi3_highpart_noclobber, *umulqi3_highpart_noclobber): New.
16298         (*lshrqi3_const_noclobber, *lshrqi3_nonconst_noclobber): Likewise.
16299         (*ashrqi3_const_noclobber, *ashrqi3_nonconst_noclobber): Likewise.
16300
16301         * c4x.h (INIT_TARGET_OPTABS): Define to init libcalls.
16302
16303 2000-01-05 11:25 -0800  Zack Weinberg  <zack@rabi.columbia.edu>
16304
16305         * c-decl.c (finish_enum): Simplify code to determine minimum and
16306         maximum values of the enum, and calculate the type.  Remove check
16307         for FUNCTION_DECLs in the values list, which cannot happen.  Replace
16308         the DECL_INITIAL of each enumeration constant with a copy converted
16309         to the enumeration type.  When updating variant types, don't bother
16310         updating the type itself.
16311
16312         * c-typeck.c (build_binary_op): Simplify conditional expressions
16313         when weeding out spurious signed-unsigned warnings.  Add new
16314         spurious warning category: if the unsigned quantity is an enum
16315         and its maximum value fits in signed_type(result_type).  Update
16316         commentary.
16317         (build_conditional_expr): Warn here if one alternative is signed
16318         and the other is unsigned.
16319
16320 2000-01-05  Nick Clifton  <nickc@cygnus.com>
16321
16322         * config/fr30/fr30.h: Remove extraneous comments.
16323
16324 2000-01-05  Bernd Schmidt  <bernds@cygnus.co.uk>
16325
16326         * reload1.c (choose_reload_regs): When disabling a reload, also
16327         set reload_spill_index to -1.
16328
16329 2000-01-04  Joel Sherrill (joel@OARcorp.com>
16330
16331         * configure.in (m68*-*-rtemscoff*): New target, formal name for
16332         old m68*-*-rtems*.
16333         (m68*-*-rtemself*): New target.
16334         (mips64orion-*-rtems*): Remove duplicate definition of tm_file.
16335         (sparc*-*-rtemsaout*): New target, formal name for old sparc*-*-rtems*.
16336         (sparc*-*-rtemself*): New target.
16337         (sparc*-*-rtems*): Now elf not a.out.
16338         * config/i386/rtems.h: Include config/rtems.h.
16339         * config/i386/rtemself.h: Include config/rtems.h.
16340         * config/i960/rtems.h: Include config/rtems.h.
16341         * config/m68k/rtems.h: Include config/rtems.h.
16342         * config/m68k/rtemself.h: Include config/rtems.h.
16343         * config/mips/rtems64.h: Include config/rtems.h.
16344         * config/pa/rtems.h: Include config/rtems.h.
16345         * config/rs6000/rtems.h: Include config/rtems.h.
16346         * config/sh/rtems.h: Include config/rtems.h.
16347         * config/sh/rtemself.h: Include config/rtems.h.
16348         * config/sparc/rtems.h: Include config/rtems.h.
16349         * config/sparc/rtemself.h: Include config/rtems.h
16350
16351 Tue Jan  4 23:59:26 2000  Denis Chertykov <denisc@overta.ru>
16352
16353         * final.c (shorten_branches): Correctly compute length of
16354         asms without operands.
16355
16356 Tue Jan  4 22:55:41 2000  Steve Chamberlain <sac@pobox.com>
16357
16358         * configure.in: Add pj target.
16359         * configure: Regenerate.
16360         * config/pj: New directory.
16361         * config/pj/lib1funcs.S: New file.
16362         * config/pj/linux.h: New file.
16363         * config/pj/pj.c: New file.
16364         * config/pj/pj.md: New file.
16365         * config/pj/pjl.h: New file.
16366         * config/pj/t-pj: New file.
16367         * config/pj/xm-pj.h: New file
16368
16369 Tue Jan  4 22:30:16 2000  Jeffrey A Law  (law@cygnus.com)
16370
16371         * toplev.c (rest_of_compilation): Run shorten-branches before
16372         reg-stack for now.
16373
16374 2000-01-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16375
16376         * config/c4x/c4x.h (IS_XXX_REG, IS_XXX_REGNO): Swap behaviour of
16377         macros so that they're consistent with their names.
16378         * config/c4x/c4x.c (IS_XXX_REG, IS_XXX_REGNO): Likewise.
16379         * config/c4x/c4x.md (IS_XXX_REG, IS_XXX_REGNO): Likewise.
16380
16381 2000-01-05  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
16382
16383         * config/c4x/c4x.md (*addqi3_noclobber_reload): Ensure that CC never
16384         modified inadvertently.
16385
16386 2000-01-04  Joel Sherrill <joel@OARcorp.com>
16387
16388         * configure.in (v850*-*-rtems*): New target.
16389         * configure: Regenerate.
16390         * config/v850/rtems.h: New file.
16391
16392 2000-01-04  Mumit Khan  <khan@xraylith.wisc.edu>
16393
16394         * gthr-win32.h (__gthread_active_p): Support Mingw MT runtime.
16395         (__gthread_key_create): Likewise.
16396         (__gthread_key_dtor):  Likewise.
16397         (__gthread_once): Fix logic.
16398         (__gthread_key_delete): Cast away constness.
16399
16400         * i386/cygwin.h (SUBTARGET_SWITCHES): Add -mthreads option.
16401         * invoke.texi: Document.
16402         * i386/mingw32.h (CPP_SPEC): Use.
16403         (LIBGCC_SPEC): Likewise.
16404         * i386/crtdll.h (LIBGCC_SPEC): Likewise.
16405
16406 2000-01-04  David Edelsohn  <edelsohn@gnu.org>
16407
16408         * rs6000/sysv4.h (ASM_OUTPUT_DEF): Undefine.
16409         (HANDLE_PRAGMA_PACK): Undefine.
16410         (SLOW_UNALIGNED_ACCESS): Define.
16411
16412 2000-01-04  David Edelsohn  <edelsohn@gnu.org>
16413
16414         * expmed.c (SLOW_UNALIGNED_ACCESS): Add mode and align parameters
16415         to default definition.
16416         (store_bit_field): Call SLOW_UNALIGNED_ACCESS with mode and alignment.
16417         (store_fixed_bit_field): Call macro with word_mode and alignment.
16418         (extract_bit_field): Call macro with relevant mode and alignment.
16419         * expr.c (SLOW_UNALIGNED_ACCESS): Add mode and align parameters
16420         to default definition.
16421         (move_by_pieces): Call SLOW_UNALIGNED_ACCESS with word_mode
16422         and alignment.
16423         (move_by_pieces_ninsns): Likewise.
16424         (clear_by_pieces): Likewise.
16425         (emit_push_insn): Likewise.
16426         (store_field): Call macro with relevant mode and alignment.
16427         (expand_expr): Likewise.
16428         (expand_expr_unaligned): Likewise.
16429
16430         * rs6000.h (HANDLE_PRAGMA_PACK): Define.
16431         (SLOW_UNALIGNED_ACCESS): Define.
16432         (CASE_VECTOR_MODE): Always use 32-bit offsets.
16433         (ASM_FILE_END): Generate 64-bit symbol in 64-bit mode.
16434         (EXTRA_SECTION_FUNCTIONS): Indent .csect pseudo-op.
16435         (toc_section): Likewise and .toc pseudo-op.
16436         (ASM_DECLARE_FUNCTION): Likewise.  Align text more strictly in
16437         64-bit mode.
16438         (TEXT_SECTION_ASM_OP): Likewise.
16439         (ASM_OUTPUT_ADD_VEC_ELT, ASM_OUTPUT_ADDR_DIFF_ELT): Always use
16440         32-bit offsets.
16441
16442         * a29k.h (SLOW_UNALIGNED_ACCESS): Add MODE and ALIGN parameters.
16443         * alpha.h (SLOW_UNALIGNED_ACCESS): Likewise.
16444         * arm/thumb.h (SLOW_UNALIGNED_ACCESS): Likewise.
16445         * gmicro.h (SLOW_UNALIGNED_ACCESS): Likewise.
16446         * fr30.h (SLOW_UNALIGNED_ACCESS): Likewise.
16447
16448 Tue Jan  4 11:44:13 2000  Jeffrey A Law  (law@cygnus.com)
16449
16450         * regclass.c: Revert my Jan 4 change to loop cost computation.
16451
16452 Tue Jan  4 19:22:39 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
16453
16454         * regclass.c (regclass): Do not obey REG_N_REFS in non-optimizing
16455         compilation.
16456
16457 2000-01-04  Stan Cox  <scox@cygnus.com>
16458
16459         * haifa-sched.c (build_control_flow): Change unreachable simple
16460         loop test to check if current block has only one predecessor.
16461         (find_rgns): Initialize degree.  Use dest as degree index, not src.
16462
16463 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16464
16465         * builtins.c (expand_builtin_strlen): Initialize variable `icode'.
16466
16467         * calls.c (expand_call): Likewise for
16468         `old_stack_arg_under_construction'.
16469
16470         * cpphash.c (macroexpand): Likewise for `args' and `rest_zero'.
16471
16472         * function.c (pad_to_arg_alignment): Likewise for `save_var' and
16473         `save_constant'.
16474
16475         * gcc.c (execute): Likewise for `ut' and `st'.
16476
16477         * genattrtab.c (attr_rtx): Likewise for `rt_val'.
16478
16479         * genopinit.c (gen_insn): Likewise for `m1', `m2' and `op'.
16480
16481         * jump.c (jump_optimize_1): Likewise for `temp2'.
16482
16483         * local-alloc.c (block_alloc): Likewise for `r1'.
16484
16485         * loop.c (recombine_givs): Likewise for `life_start' and `life_end'.
16486
16487         * reg-stack.c (check_asm_stack_operands): Likewise for `clobber_reg'.
16488         (subst_asm_stack_regs): Likewise for `clobber_reg' and `clobber_loc'.
16489
16490         * regmove.c (fixup_match_1): Likewise for `insn_const', `dst_node'
16491         and `set2'.
16492
16493         * reload.c (find_reloads): Likewise for `goal_alternative_number'
16494         and `goal_earlyclobber'.
16495
16496         * scan-decls.c (scan_decls): Likewise for `prev_id_end'.
16497
16498         * sdbout.c (sdbout_one_type): Likewise for `member_scl'.
16499
16500         * stupid.c (stupid_life_analysis): Likewise for `chain'.
16501
16502         * unroll.c (copy_loop_body): Likewise for `copy'.
16503
16504         * varasm.c (output_constructor): Likewise for `byte'.
16505
16506 Tue Jan  4 15:34:34 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
16507
16508         * i386.c (ix86_expand_move): Allow pushes of memory, offload to memory
16509         all FP constants for constant->reg moves.
16510         (ix86_split_to_parts): Try to convert memory address into immediate
16511         when available in the constant pool.
16512         * i386.h (PREFERRED_RELOAD_CLASS): Allow CONST_DOUBLE->integer reg
16513         moves.
16514         (LEGITIMATE_CONSTANT_P): Return 1.
16515         * i386.md (pushsf): New splitter to convert constant pool memory
16516         reference to immediate.
16517         (mov?f): Likewise; do not allow CONST_DOUBLE for reg moves before
16518         reload.
16519
16520 2000-01-04  Bernd Schmidt  <bernds@cygnus.co.uk>
16521
16522         * i386.md (ashlsi3_cmpno): Don't accept variables shifts.
16523         (ashlhi3_cmpno, ashlqi3_cmpno, ashrsi3_cmpno, ashrhi3_cmpno,
16524         ashrqi3_cmpno, lshrsi3_cmpno, lshrhi3_cmpno, lshrqi3_cmpno): Likewise.
16525         (rotlsi3_cmpno, rotlhi3_cmpno, rotlqi3_cmpno, rotrsi3_cmpno,
16526         rotrhi3_cmpno, rotrqi3_cmpno): Likewise.
16527
16528 2000-01-04  Martin von Löwis  <loewis@informatik.hu-berlin.de>
16529
16530         * ginclude/stdbool.h:  Support compilation as C++.
16531
16532 Tue Jan  4 01:35:13 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
16533
16534         * fold-const.c (make_range): Don't try to reverse an unbounded range.
16535
16536 Tue Jan  4 00:18:46 2000  Jeffrey A Law  (law@cygnus.com)
16537
16538         * regclass.c (regclass): Properly compute loop_cost.  Adjust
16539         comments.
16540
16541         * regclass.c: Fix minor whitespace problems.
16542
16543 2000-01-03  Anthony Green  <green@cygnus.com>
16544
16545         * config/i386/i386.md (builtin_setjmp_receiver): New pattern.
16546         Restore the pic register if required.
16547
16548 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
16549
16550         * c-common.c (format_char_info): Update comment.
16551         (check_format_info): Recognize 'z' modifier in the same way 'Z'
16552         was recognized.  Emit warning for formats new in ISO C99 only
16553         if flag_isoc9x is not set.
16554
16555 Mon Jan  3 12:59:54 2000  Mark P. Mitchell  <mark@codesourcery.com>
16556
16557         * config/mips/iris6gld.h: Fix typo in -mabi=n32 specs.
16558
16559 Mon Jan  3 15:33:37 MET 2000  Jan Hubicka  <hubicka@freesoft.cz>
16560
16561         * combine.c (expand_compound_operation): Do not convert ZERO_EXTEND to
16562         SIGN_EXTEND, convert SIGN_EXTEND to ZERO_EXTEND.
16563         (make_compound_operation): Choose cheaper alternative between
16564         ZERO_EXTEND and SIGN_EXTEND when sign bit is not set.
16565
16566         * regclass.c (op_costs): Remove global variable.
16567         (record_reg_classes): New parameter "op_costs" and "reg_pref".
16568         (record_operand_costs): Break out from ...
16569         (scan_one_insn): ... here.
16570         (dump_regclass): Make dumps nicer.
16571         (regclass): Dump preferrences choosed and changes done during passes.
16572
16573 2000-01-03  Jakub Jelinek  <jakub@redhat.com>
16574
16575         * config/sparc/sparc.c (gen_df_reg): Fix for 32bit SPARC.
16576
16577 2000-01-03  Jakub Jelinek  <jakub@redhat.com>
16578
16579         * config/sparc/sparc.c (gen_df_reg): New function.
16580         * config/sparc/sparc-protos.h (gen_df_reg): Add prototype.
16581         * config/sparc/sparc.md (movtf_no_e_insn_sp64+1,
16582         movtf_no_e_insn_sp64+2, movtf_no_e_insn_sp64+3, movtf_cc_sp64+1,
16583         movtf_cc_reg_sp64+1): Use it.
16584
16585 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
16586
16587         * integrate.c (copy_decl_for_inlining): Clear TREE_ADDRESSABLE on
16588         copied LABEL_DECLs.
16589
16590 Mon Jan  3 02:54:40 2000  Hans-Peter Nilsson  <hp@bitrange.com>
16591
16592         * config/i386/i386.c (ix86_expand_unary_operator): Function
16593         definition made void.
16594         (ix86_expand_binary_operator): Update outdated preceding comment.
16595         * config/i386/i386-protos.h (ix86_expand_unary_operator): Update
16596         prototype.
16597
16598         * config/i386/i386.c (override_options): Fix option-name typo.
16599
16600 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
16601
16602         * system.h (CEIL): Define.
16603         * builtins.c (CEIL): Remove.
16604         * expmed.c (CEIL): Likewise.
16605         * expr.c (CEIL): Likewise.
16606         * stor-layout.c (CEIL): Likewise.
16607
16608 2000-01-02  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
16609
16610         * expr.c (store_constructor_field): Fix typo introduced with last
16611         gcc2 merge.
16612
16613 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
16614
16615         * tree.h (BINFO_N_BASETYPES): New macro.
16616
16617 2000-01-01  Bernd Schmidt  <bernds@cygnus.co.uk>
16618
16619         * expmed.c (emit_store_flag): Prevent losing a pending stack
16620         adjust the same way we prevent losing queued increments.
16621
16622 See ChangeLog.2 for earlier changes.