1991-12-06 16:00:31 -05:00
|
|
|
|
/* Register Transfer Language (RTL) definitions for GNU C-Compiler
|
cpplib.c (special_symbol): Qualify a char* with the `const' keyword.
* cpplib.c (special_symbol): Qualify a char* with the `const' keyword.
Instead of writing to const char *buf directly, use a non-const
variable `wbuf' to allocate and write a string, then set buf = wbuf.
* cppulp.c (user_label_prefix): Qualify a char* with the `const'
keyword.
* dyn-string.c (dyn_string_append): Likewise.
* dyn-string.h (dyn_string_append): Likewise.
* final.c (end_final, output_operand_lossage, asm_fprintf): Likewise.
* output.h (end_final, output_operand_lossage, asm_fprintf,
named_section, decode_reg_name, make_decl_rtl, user_label_prefix):
Likewise.
* profile.c (init_branch_prob): Likewise.
* toplev.c (set_target_switch, vmessage,
v_message_with_file_and_line, v_message_with_decl,
v_error_with_file_and_line, v_error_with_decl, v_error_for_asm,
verror, vfatal, v_warning_with_file_and_line, v_warning_with_decl,
v_warning_for_asm, vwarning, vpedwarn, v_pedwarn_with_decl,
v_pedwarn_with_file_and_line, vsorry, v_really_sorry,
open_dump_file, dump_rtl, clean_dump_file,
print_version, print_single_switch, print_switch_values,
dump_base_name, debug_args, lang_independent_options,
user_label_prefix, documented_lang_options, target_switches,
target_options, print_time, pfatal_with_name, fatal_io_error,
fatal_insn, default_print_error_function, print_error_function,
report_error_function, error_with_file_and_line, error_with_decl,
error_for_asm, error, fatal, warning_with_file_and_line,
warning_with_decl, warning_for_asm, warning, pedwarn,
pedwarn_with_decl, pedwarn_with_file_and_line, sorry,
really_sorry, botch, output_quoted_string, output_file_directive,
open_dump_file, rest_of_decl_compilation, display_help, main):
Likewise.
* toplev.h (print_time, fatal, fatal_io_error, pfatal_with_name,
fatal_insn, warning, error, pedwarn, pedwarn_with_file_and_line,
warning_with_file_and_line, error_with_file_and_line, sorry,
really_sorry, default_print_error_function, report_error_function,
rest_of_decl_compilation, pedwarn_with_decl, warning_with_decl,
error_with_decl, error_for_asm, warning_for_asm, output_quoted_string,
output_file_directive, botch): Likewise.
* tree.h (make_decl_rtl): Likewise.
* varasm.c (strip_reg_name, named_section, decode_reg_name,
make_decl_rtl): Likewise.
From-SVN: r24743
1999-01-18 03:53:41 -05:00
|
|
|
|
Copyright (C) 1987, 91-98, 1999 Free Software Foundation, Inc.
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
This file is part of GNU CC.
|
|
|
|
|
|
|
|
|
|
GNU CC is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
GNU CC is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GNU CC; see the file COPYING. If not, write to
|
1995-06-15 08:04:37 -04:00
|
|
|
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1997-12-09 03:20:07 -05:00
|
|
|
|
#ifndef _RTL_H
|
|
|
|
|
#define _RTL_H
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
#include "machmode.h"
|
|
|
|
|
|
|
|
|
|
#undef FFS /* Some systems predefine this symbol; don't let it interfere. */
|
1991-12-23 18:18:04 -05:00
|
|
|
|
#undef FLOAT /* Likewise. */
|
1993-02-09 05:46:08 -05:00
|
|
|
|
#undef ABS /* Likewise. */
|
1993-05-29 12:16:01 -04:00
|
|
|
|
#undef PC /* Likewise. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1994-04-21 15:23:14 -04:00
|
|
|
|
#ifndef TREE_CODE
|
|
|
|
|
union tree_node;
|
|
|
|
|
#endif
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* Register Transfer Language EXPRESSIONS CODES */
|
|
|
|
|
|
|
|
|
|
#define RTX_CODE enum rtx_code
|
|
|
|
|
enum rtx_code {
|
|
|
|
|
|
|
|
|
|
#define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) ENUM ,
|
|
|
|
|
#include "rtl.def" /* rtl expressions are documented here */
|
|
|
|
|
#undef DEF_RTL_EXPR
|
|
|
|
|
|
1992-05-07 02:41:23 -04:00
|
|
|
|
LAST_AND_UNUSED_RTX_CODE}; /* A convenient way to get a value for
|
1991-12-06 16:00:31 -05:00
|
|
|
|
NUM_RTX_CODE.
|
1992-05-07 02:41:23 -04:00
|
|
|
|
Assumes default enum value assignment. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
#define NUM_RTX_CODE ((int)LAST_AND_UNUSED_RTX_CODE)
|
|
|
|
|
/* The cast here, saves many elsewhere. */
|
|
|
|
|
|
|
|
|
|
extern int rtx_length[];
|
1996-07-03 18:07:53 -04:00
|
|
|
|
#define GET_RTX_LENGTH(CODE) (rtx_length[(int) (CODE)])
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
extern char *rtx_name[];
|
1996-07-03 18:07:53 -04:00
|
|
|
|
#define GET_RTX_NAME(CODE) (rtx_name[(int) (CODE)])
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
extern char *rtx_format[];
|
1996-07-03 18:07:53 -04:00
|
|
|
|
#define GET_RTX_FORMAT(CODE) (rtx_format[(int) (CODE)])
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
extern char rtx_class[];
|
1996-07-03 18:07:53 -04:00
|
|
|
|
#define GET_RTX_CLASS(CODE) (rtx_class[(int) (CODE)])
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
rtl.h (addr_diff_vec_flags): New typedef.
* rtl.h (addr_diff_vec_flags): New typedef.
(union rtunion_def): New member rt_addr_diff_vec_flags.
(ADDR_DIFF_VEC_FLAGS): New macro.
* sh.c (output_branch): Fix offset overflow problems.
* final.c (shorten_branches): Implement CASE_VECTOR_SHORTEN_MODE.
(final_scan_insn): New argument BODY for ASM_OUTPUT_ADDR_DIFF_ELT.
* rtl.def (ADDR_DIFF_VEC): Three new fields (min, max and flags).
* stmt.c (expand_end_case): Supply new arguments to
gen_rtx_ADDR_DIFF_VEC.
* 1750a.h (ASM_OUTPUT_ADDR_DIFF_ELT): New argument BODY.
* alpha.h, arc.h, clipper.h, convex.h : Likewise.
* dsp16xx.h, elxsi.h, fx80.h, gmicro.h, h8300.h : Likewise.
* i370.h, i386.h, i860.h, i960.h, m32r.h, m68k.h, m88k.h : Likewise.
* mips.h, mn10200.h, mn10300.h, ns32k.h, pa.h, pyr.h : Likewise.
* rs6000.h, sh.h, sparc.h, spur.h, tahoe.h, v850.h : Likewise.
* vax.h, we32k.h, alpha/vms.h, arm/aof.h, arm/aout.h : Likewise.
* i386/386bsd.h, i386/freebsd-elf.h : Likewise.
* i386/freebsd.h, i386/linux.h : Likewise.
* i386/netbsd.h, i386/osfrose.h, i386/ptx4-i.h, i386/sco5.h : Likewise.
* i386/sysv4.h, m68k/3b1.h, m68k/dpx2.h, m68k/hp320.h : Likewise.
* m68k/mot3300.h, m68k/sgs.h : Likewise.
* m68k/tower-as.h, ns32k/encore.h, sparc/pbd.h : Likewise.
* sh.h (INSN_ALIGN, INSN_LENGTH_ALIGNMENT): Define.
(CASE_VECTOR_SHORTEN_MODE): Define.
(short_cbranch_p, align_length, addr_diff_vec_adjust): Don't declare.
(med_branch_p, braf_branch_p): Don't declare.
(mdep_reorg_phase, barrier_align): Declare.
(ADJUST_INSN_LENGTH): Remove alignment handling.
* sh.c (uid_align, uid_align_max): Deleted.
(max_uid_before_fixup_addr_diff_vecs, branch_offset): Deleted.
(short_cbranch_p, med_branch_p, braf_branch_p, align_length): Deleted.
(cache_align_p, fixup_aligns, addr_diff_vec_adjust): Deleted.
(output_far_jump): Don't use braf_branch_p.
(output_branchy_insn): Don't use branch_offset.
(find_barrier): Remove checks for max_uid_before_fixup_addr_diff_vecs.
Remove paired barrier stuff.
Don't use cache_align_p.
Take alignment insns into account.
(fixup_addr_diff_vecs): Reduce to only fixing up the base label of
the addr_diff_vec.
(barrier_align, branch_dest): New function.
(machine_dependent_reorg, split_branches): Remove infrastructure
for branch shortening that is now provided in the backend.
* sh.md (short_cbranch_p, med_branch_p, med_cbranch_p): New attributes.
(braf_branch_p, braf_cbranch_p): Likewise.
(attribute length): Use new attributes.
(casesi_worker): Get mode and unsignednedd from ADDR_DIFF_VEC.
(addr_diff_vec_adjust): Delete.
(align_2): Now a define_expand.
(align_log): Now length 0.
From-SVN: r18433
1998-03-06 09:54:07 -05:00
|
|
|
|
/* The flags and bitfields of an ADDR_DIFF_VEC. BASE is the base label
|
|
|
|
|
relative to which the offsets are calculated, as explained in rtl.def. */
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
/* Set at the start of shorten_branches - ONLY WHEN OPTIMIZING - : */
|
|
|
|
|
unsigned min_align: 8;
|
|
|
|
|
/* Flags: */
|
|
|
|
|
unsigned base_after_vec: 1; /* BASE is after the ADDR_DIFF_VEC. */
|
|
|
|
|
unsigned min_after_vec: 1; /* minimum address target label is after the ADDR_DIFF_VEC. */
|
|
|
|
|
unsigned max_after_vec: 1; /* maximum address target label is after the ADDR_DIFF_VEC. */
|
|
|
|
|
unsigned min_after_base: 1; /* minimum address target label is after BASE. */
|
|
|
|
|
unsigned max_after_base: 1; /* maximum address target label is after BASE. */
|
|
|
|
|
/* Set by the actual branch shortening process - ONLY WHEN OPTIMIZING - : */
|
|
|
|
|
unsigned offset_unsigned: 1; /* offsets have to be treated as unsigned. */
|
|
|
|
|
unsigned : 2;
|
|
|
|
|
unsigned scale : 8;
|
|
|
|
|
} addr_diff_vec_flags;
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* Common union for an element of an rtx. */
|
|
|
|
|
|
|
|
|
|
typedef union rtunion_def
|
|
|
|
|
{
|
1992-07-06 16:04:00 -04:00
|
|
|
|
HOST_WIDE_INT rtwint;
|
1991-12-06 16:00:31 -05:00
|
|
|
|
int rtint;
|
|
|
|
|
char *rtstr;
|
|
|
|
|
struct rtx_def *rtx;
|
|
|
|
|
struct rtvec_def *rtvec;
|
|
|
|
|
enum machine_mode rttype;
|
rtl.h (addr_diff_vec_flags): New typedef.
* rtl.h (addr_diff_vec_flags): New typedef.
(union rtunion_def): New member rt_addr_diff_vec_flags.
(ADDR_DIFF_VEC_FLAGS): New macro.
* sh.c (output_branch): Fix offset overflow problems.
* final.c (shorten_branches): Implement CASE_VECTOR_SHORTEN_MODE.
(final_scan_insn): New argument BODY for ASM_OUTPUT_ADDR_DIFF_ELT.
* rtl.def (ADDR_DIFF_VEC): Three new fields (min, max and flags).
* stmt.c (expand_end_case): Supply new arguments to
gen_rtx_ADDR_DIFF_VEC.
* 1750a.h (ASM_OUTPUT_ADDR_DIFF_ELT): New argument BODY.
* alpha.h, arc.h, clipper.h, convex.h : Likewise.
* dsp16xx.h, elxsi.h, fx80.h, gmicro.h, h8300.h : Likewise.
* i370.h, i386.h, i860.h, i960.h, m32r.h, m68k.h, m88k.h : Likewise.
* mips.h, mn10200.h, mn10300.h, ns32k.h, pa.h, pyr.h : Likewise.
* rs6000.h, sh.h, sparc.h, spur.h, tahoe.h, v850.h : Likewise.
* vax.h, we32k.h, alpha/vms.h, arm/aof.h, arm/aout.h : Likewise.
* i386/386bsd.h, i386/freebsd-elf.h : Likewise.
* i386/freebsd.h, i386/linux.h : Likewise.
* i386/netbsd.h, i386/osfrose.h, i386/ptx4-i.h, i386/sco5.h : Likewise.
* i386/sysv4.h, m68k/3b1.h, m68k/dpx2.h, m68k/hp320.h : Likewise.
* m68k/mot3300.h, m68k/sgs.h : Likewise.
* m68k/tower-as.h, ns32k/encore.h, sparc/pbd.h : Likewise.
* sh.h (INSN_ALIGN, INSN_LENGTH_ALIGNMENT): Define.
(CASE_VECTOR_SHORTEN_MODE): Define.
(short_cbranch_p, align_length, addr_diff_vec_adjust): Don't declare.
(med_branch_p, braf_branch_p): Don't declare.
(mdep_reorg_phase, barrier_align): Declare.
(ADJUST_INSN_LENGTH): Remove alignment handling.
* sh.c (uid_align, uid_align_max): Deleted.
(max_uid_before_fixup_addr_diff_vecs, branch_offset): Deleted.
(short_cbranch_p, med_branch_p, braf_branch_p, align_length): Deleted.
(cache_align_p, fixup_aligns, addr_diff_vec_adjust): Deleted.
(output_far_jump): Don't use braf_branch_p.
(output_branchy_insn): Don't use branch_offset.
(find_barrier): Remove checks for max_uid_before_fixup_addr_diff_vecs.
Remove paired barrier stuff.
Don't use cache_align_p.
Take alignment insns into account.
(fixup_addr_diff_vecs): Reduce to only fixing up the base label of
the addr_diff_vec.
(barrier_align, branch_dest): New function.
(machine_dependent_reorg, split_branches): Remove infrastructure
for branch shortening that is now provided in the backend.
* sh.md (short_cbranch_p, med_branch_p, med_cbranch_p): New attributes.
(braf_branch_p, braf_cbranch_p): Likewise.
(attribute length): Use new attributes.
(casesi_worker): Get mode and unsignednedd from ADDR_DIFF_VEC.
(addr_diff_vec_adjust): Delete.
(align_2): Now a define_expand.
(align_log): Now length 0.
From-SVN: r18433
1998-03-06 09:54:07 -05:00
|
|
|
|
addr_diff_vec_flags rt_addr_diff_vec_flags;
|
Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
* Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
(rtl.o, emit-rtl.o): Add dependency on bitmap.h.
($(HOST_PREFIX_1)rtl.o): Likewise.
($(HOST_PREFIX_1)bitmap.o): New host object.
* emit-rtl.c (toplevel): Include bitmap.h.
(gen_rtx): Handle 't' and 'b' nodes.
* print-rtl.c (print_rtx): Handle printing NOTE_INSN_LIVE notes.
Print block number for block begin/end notes. Print 't' type
nodes as a pointer. Know that the 3rd argument of live range
start/stop notes is really a range_info rtx. If type is 'b', print
out argument as a bitmap.
* rtl.c: Include bitmap.c.
(copy_rtx): Copy tree nodes as is. Copy bitmaps if type is 'b'.
(note_insn_name): Add NOTE_INSN_RANGE_{START,END}, NOTE_INSN_LIVE.
* rtl.def (RANGE_LIVE): New node to hold live information while we
recalculate the basic blocks.
(RANGE_REG, RANGE_INFO): New rtl types for live range splitting.
(RANGE_VAR): New node, to hold information saved in symbol node for New
communicating live range information to the debug output functions.
* rtl.h (rtunion_def): Add rttree and rtbit fields.
(XBITMAP, XTREE): New accessor macros.
(NOTE_LIVE_INFO): Overload NOTE_SOURCE_FILE for NOTE_INSN_LIVE notes.
(NOTE_RANGE_INFO): Similarly for NOTE_INSN_RANGE_{START,END} notes.
(NOTE_BLOCK_LIVE_RANGE_BLOCK): Define.
(NOTE_INSN_RANGE_START, NOTE_INSN_RANGE_END, NOTE_INSN_LIVE): New notes.
(RANGE_LIVE_{BITMAP,ORIG_BLOCK}): New accessor macros.
(RANGE_REG_{SYMBOL,BLOCK}_NODE, RANGE_VAR_*): New accessor macros.
(RANGE_INFO_*): Likewise.
* sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* haifa-sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* tree.h (BLOCK_LIVE_RANGE_{START,END,VAR_FLAG}): New accessor macros.
(BLOCK_LIVE_RANGE_FLAG): Likewise.
(DECL_LIVE_RANGE_RTL): Likewise.
(struct tree_block): Add live_range_flag, live_range_var_flag,
live_range_start and live_range_end.
(struct tree_decl): Add live_range_rtl field.
* gengenrtl.c (type_from_format): Handle 'b' and 't'.
(accessor_from_format): Likewise.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r19727
1998-05-13 17:13:47 -04:00
|
|
|
|
struct bitmap_head_def *rtbit;
|
|
|
|
|
union tree_node *rttree;
|
1999-02-25 18:45:42 -05:00
|
|
|
|
struct basic_block_def *bb;
|
1991-12-06 16:00:31 -05:00
|
|
|
|
} rtunion;
|
|
|
|
|
|
|
|
|
|
/* RTL expression ("rtx"). */
|
|
|
|
|
|
|
|
|
|
typedef struct rtx_def
|
|
|
|
|
{
|
|
|
|
|
#ifdef ONLY_INT_FIELDS
|
1992-12-12 20:44:12 -05:00
|
|
|
|
#ifdef CODE_FIELD_BUG
|
|
|
|
|
unsigned int code : 16;
|
|
|
|
|
#else
|
1991-12-06 16:00:31 -05:00
|
|
|
|
unsigned short code;
|
1992-12-12 20:44:12 -05:00
|
|
|
|
#endif
|
1991-12-06 16:00:31 -05:00
|
|
|
|
#else
|
|
|
|
|
/* The kind of expression this is. */
|
|
|
|
|
enum rtx_code code : 16;
|
|
|
|
|
#endif
|
|
|
|
|
/* The kind of value the expression has. */
|
|
|
|
|
#ifdef ONLY_INT_FIELDS
|
|
|
|
|
int mode : 8;
|
|
|
|
|
#else
|
|
|
|
|
enum machine_mode mode : 8;
|
|
|
|
|
#endif
|
1999-04-11 06:23:56 -04:00
|
|
|
|
/* LINK_COST_ZERO in an INSN_LIST. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
unsigned int jump : 1;
|
1999-04-11 06:23:56 -04:00
|
|
|
|
/* LINK_COST_FREE in an INSN_LIST. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
unsigned int call : 1;
|
|
|
|
|
/* 1 in a MEM or REG if value of this expression will never change
|
|
|
|
|
during the current function, even though it is not
|
|
|
|
|
manifestly constant.
|
1992-09-19 15:44:05 -04:00
|
|
|
|
1 in a SUBREG if it is from a promoted variable that is unsigned.
|
1991-12-06 16:00:31 -05:00
|
|
|
|
1 in a SYMBOL_REF if it addresses something in the per-function
|
|
|
|
|
constants pool.
|
|
|
|
|
1 in a CALL_INSN if it is a const call.
|
|
|
|
|
1 in a JUMP_INSN if it is a branch that should be annulled. Valid from
|
|
|
|
|
reorg until end of compilation; cleared before used. */
|
|
|
|
|
unsigned int unchanging : 1;
|
|
|
|
|
/* 1 in a MEM expression if contents of memory are volatile.
|
|
|
|
|
1 in an INSN, CALL_INSN, JUMP_INSN, CODE_LABEL or BARRIER
|
|
|
|
|
if it is deleted.
|
|
|
|
|
1 in a REG expression if corresponds to a variable declared by the user.
|
|
|
|
|
0 for an internally generated temporary.
|
1992-10-27 00:25:18 -05:00
|
|
|
|
In a SYMBOL_REF, this flag is used for machine-specific purposes.
|
|
|
|
|
In a LABEL_REF or in a REG_LABEL note, this is LABEL_REF_NONLOCAL_P. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
unsigned int volatil : 1;
|
1998-06-10 19:39:46 -04:00
|
|
|
|
/* 1 in a MEM referring to a field of an aggregate.
|
1991-12-06 16:00:31 -05:00
|
|
|
|
0 if the MEM was a variable or the result of a * operator in C;
|
|
|
|
|
1 if it was the result of a . or -> operator (on a struct) in C.
|
|
|
|
|
1 in a REG if the register is used only in exit code a loop.
|
1992-09-19 15:44:05 -04:00
|
|
|
|
1 in a SUBREG expression if was generated from a variable with a
|
|
|
|
|
promoted mode.
|
1991-12-06 16:00:31 -05:00
|
|
|
|
1 in a CODE_LABEL if the label is used for nonlocal gotos
|
|
|
|
|
and must not be deleted even if its count is zero.
|
|
|
|
|
1 in a LABEL_REF if this is a reference to a label outside the
|
|
|
|
|
current loop.
|
|
|
|
|
1 in an INSN, JUMP_INSN, or CALL_INSN if this insn must be scheduled
|
1992-03-14 00:07:15 -05:00
|
|
|
|
together with the preceding insn. Valid only within sched.
|
1991-12-06 16:00:31 -05:00
|
|
|
|
1 in an INSN, JUMP_INSN, or CALL_INSN if insn is in a delay slot and
|
|
|
|
|
from the target of a branch. Valid from reorg until end of compilation;
|
|
|
|
|
cleared before used. */
|
|
|
|
|
unsigned int in_struct : 1;
|
|
|
|
|
/* 1 if this rtx is used. This is used for copying shared structure.
|
|
|
|
|
See `unshare_all_rtl'.
|
|
|
|
|
In a REG, this is not needed for that purpose, and used instead
|
|
|
|
|
in `leaf_renumber_regs_insn'.
|
|
|
|
|
In a SYMBOL_REF, means that emit_library_call
|
|
|
|
|
has used it as the function. */
|
|
|
|
|
unsigned int used : 1;
|
|
|
|
|
/* Nonzero if this rtx came from procedure integration.
|
|
|
|
|
In a REG, nonzero means this reg refers to the return value
|
|
|
|
|
of the current function. */
|
|
|
|
|
unsigned integrated : 1;
|
1999-03-25 07:04:22 -05:00
|
|
|
|
/* 1 in an INSN or a SET if this rtx is related to the call frame,
|
1999-01-19 05:32:33 -05:00
|
|
|
|
either changing how we compute the frame address or saving and
|
|
|
|
|
restoring registers in the prologue and epilogue.
|
|
|
|
|
1 in a MEM if the MEM refers to a scalar, rather than a member of
|
|
|
|
|
an aggregate. */
|
1996-12-12 20:31:47 -05:00
|
|
|
|
unsigned frame_related : 1;
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* The first element of the operands of this rtx.
|
|
|
|
|
The number of operands and their types are controlled
|
|
|
|
|
by the `code' field, according to rtl.def. */
|
|
|
|
|
rtunion fld[1];
|
|
|
|
|
} *rtx;
|
|
|
|
|
|
|
|
|
|
#define NULL_RTX (rtx) 0
|
|
|
|
|
|
|
|
|
|
/* Define macros to access the `code' field of the rtx. */
|
|
|
|
|
|
|
|
|
|
#ifdef SHORT_ENUM_BUG
|
|
|
|
|
#define GET_CODE(RTX) ((enum rtx_code) ((RTX)->code))
|
|
|
|
|
#define PUT_CODE(RTX, CODE) ((RTX)->code = ((short) (CODE)))
|
|
|
|
|
#else
|
|
|
|
|
#define GET_CODE(RTX) ((RTX)->code)
|
|
|
|
|
#define PUT_CODE(RTX, CODE) ((RTX)->code = (CODE))
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define GET_MODE(RTX) ((RTX)->mode)
|
|
|
|
|
#define PUT_MODE(RTX, MODE) ((RTX)->mode = (MODE))
|
|
|
|
|
|
|
|
|
|
#define RTX_INTEGRATED_P(RTX) ((RTX)->integrated)
|
|
|
|
|
#define RTX_UNCHANGING_P(RTX) ((RTX)->unchanging)
|
1996-12-12 20:31:47 -05:00
|
|
|
|
#define RTX_FRAME_RELATED_P(RTX) ((RTX)->frame_related)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* RTL vector. These appear inside RTX's when there is a need
|
|
|
|
|
for a variable number of things. The principle use is inside
|
|
|
|
|
PARALLEL expressions. */
|
|
|
|
|
|
|
|
|
|
typedef struct rtvec_def{
|
1997-11-02 16:19:36 -05:00
|
|
|
|
int num_elem; /* number of elements */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
rtunion elem[1];
|
|
|
|
|
} *rtvec;
|
|
|
|
|
|
|
|
|
|
#define NULL_RTVEC (rtvec) 0
|
|
|
|
|
|
|
|
|
|
#define GET_NUM_ELEM(RTVEC) ((RTVEC)->num_elem)
|
1997-11-02 16:19:36 -05:00
|
|
|
|
#define PUT_NUM_ELEM(RTVEC, NUM) ((RTVEC)->num_elem = (NUM))
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
#define RTVEC_ELT(RTVEC, I) ((RTVEC)->elem[(I)].rtx)
|
|
|
|
|
|
|
|
|
|
/* 1 if X is a REG. */
|
|
|
|
|
|
|
|
|
|
#define REG_P(X) (GET_CODE (X) == REG)
|
|
|
|
|
|
|
|
|
|
/* 1 if X is a constant value that is an integer. */
|
|
|
|
|
|
|
|
|
|
#define CONSTANT_P(X) \
|
|
|
|
|
(GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF \
|
|
|
|
|
|| GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST_DOUBLE \
|
1999-01-20 21:21:28 -05:00
|
|
|
|
|| GET_CODE (X) == CONST || GET_CODE (X) == HIGH \
|
|
|
|
|
|| GET_CODE (X) == CONSTANT_P_RTX)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* General accessor macros for accessing the fields of an rtx. */
|
|
|
|
|
|
|
|
|
|
#define XEXP(RTX, N) ((RTX)->fld[N].rtx)
|
|
|
|
|
#define XINT(RTX, N) ((RTX)->fld[N].rtint)
|
1992-07-06 16:04:00 -04:00
|
|
|
|
#define XWINT(RTX, N) ((RTX)->fld[N].rtwint)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
#define XSTR(RTX, N) ((RTX)->fld[N].rtstr)
|
|
|
|
|
#define XVEC(RTX, N) ((RTX)->fld[N].rtvec)
|
|
|
|
|
#define XVECLEN(RTX, N) ((RTX)->fld[N].rtvec->num_elem)
|
|
|
|
|
#define XVECEXP(RTX,N,M)((RTX)->fld[N].rtvec->elem[M].rtx)
|
Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
* Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
(rtl.o, emit-rtl.o): Add dependency on bitmap.h.
($(HOST_PREFIX_1)rtl.o): Likewise.
($(HOST_PREFIX_1)bitmap.o): New host object.
* emit-rtl.c (toplevel): Include bitmap.h.
(gen_rtx): Handle 't' and 'b' nodes.
* print-rtl.c (print_rtx): Handle printing NOTE_INSN_LIVE notes.
Print block number for block begin/end notes. Print 't' type
nodes as a pointer. Know that the 3rd argument of live range
start/stop notes is really a range_info rtx. If type is 'b', print
out argument as a bitmap.
* rtl.c: Include bitmap.c.
(copy_rtx): Copy tree nodes as is. Copy bitmaps if type is 'b'.
(note_insn_name): Add NOTE_INSN_RANGE_{START,END}, NOTE_INSN_LIVE.
* rtl.def (RANGE_LIVE): New node to hold live information while we
recalculate the basic blocks.
(RANGE_REG, RANGE_INFO): New rtl types for live range splitting.
(RANGE_VAR): New node, to hold information saved in symbol node for New
communicating live range information to the debug output functions.
* rtl.h (rtunion_def): Add rttree and rtbit fields.
(XBITMAP, XTREE): New accessor macros.
(NOTE_LIVE_INFO): Overload NOTE_SOURCE_FILE for NOTE_INSN_LIVE notes.
(NOTE_RANGE_INFO): Similarly for NOTE_INSN_RANGE_{START,END} notes.
(NOTE_BLOCK_LIVE_RANGE_BLOCK): Define.
(NOTE_INSN_RANGE_START, NOTE_INSN_RANGE_END, NOTE_INSN_LIVE): New notes.
(RANGE_LIVE_{BITMAP,ORIG_BLOCK}): New accessor macros.
(RANGE_REG_{SYMBOL,BLOCK}_NODE, RANGE_VAR_*): New accessor macros.
(RANGE_INFO_*): Likewise.
* sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* haifa-sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* tree.h (BLOCK_LIVE_RANGE_{START,END,VAR_FLAG}): New accessor macros.
(BLOCK_LIVE_RANGE_FLAG): Likewise.
(DECL_LIVE_RANGE_RTL): Likewise.
(struct tree_block): Add live_range_flag, live_range_var_flag,
live_range_start and live_range_end.
(struct tree_decl): Add live_range_rtl field.
* gengenrtl.c (type_from_format): Handle 'b' and 't'.
(accessor_from_format): Likewise.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r19727
1998-05-13 17:13:47 -04:00
|
|
|
|
#define XBITMAP(RTX, N) ((RTX)->fld[N].rtbit)
|
|
|
|
|
#define XTREE(RTX, N) ((RTX)->fld[N].rttree)
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* ACCESS MACROS for particular fields of insns. */
|
|
|
|
|
|
|
|
|
|
/* Holds a unique number for each insn.
|
|
|
|
|
These are not necessarily sequentially increasing. */
|
|
|
|
|
#define INSN_UID(INSN) ((INSN)->fld[0].rtint)
|
|
|
|
|
|
|
|
|
|
/* Chain insns together in sequence. */
|
|
|
|
|
#define PREV_INSN(INSN) ((INSN)->fld[1].rtx)
|
|
|
|
|
#define NEXT_INSN(INSN) ((INSN)->fld[2].rtx)
|
|
|
|
|
|
|
|
|
|
/* The body of an insn. */
|
|
|
|
|
#define PATTERN(INSN) ((INSN)->fld[3].rtx)
|
|
|
|
|
|
|
|
|
|
/* Code number of instruction, from when it was recognized.
|
|
|
|
|
-1 means this instruction has not been recognized yet. */
|
|
|
|
|
#define INSN_CODE(INSN) ((INSN)->fld[4].rtint)
|
|
|
|
|
|
|
|
|
|
/* Set up in flow.c; empty before then.
|
|
|
|
|
Holds a chain of INSN_LIST rtx's whose first operands point at
|
|
|
|
|
previous insns with direct data-flow connections to this one.
|
|
|
|
|
That means that those insns set variables whose next use is in this insn.
|
|
|
|
|
They are always in the same basic block as this insn. */
|
|
|
|
|
#define LOG_LINKS(INSN) ((INSN)->fld[5].rtx)
|
|
|
|
|
|
|
|
|
|
/* 1 if insn has been deleted. */
|
|
|
|
|
#define INSN_DELETED_P(INSN) ((INSN)->volatil)
|
|
|
|
|
|
|
|
|
|
/* 1 if insn is a call to a const function. */
|
|
|
|
|
#define CONST_CALL_P(INSN) ((INSN)->unchanging)
|
|
|
|
|
|
|
|
|
|
/* 1 if insn is a branch that should not unconditionally execute its
|
|
|
|
|
delay slots, i.e., it is an annulled branch. */
|
|
|
|
|
#define INSN_ANNULLED_BRANCH_P(INSN) ((INSN)->unchanging)
|
|
|
|
|
|
|
|
|
|
/* 1 if insn is in a delay slot and is from the target of the branch. If
|
1992-05-07 02:41:23 -04:00
|
|
|
|
the branch insn has INSN_ANNULLED_BRANCH_P set, this insn should only be
|
1991-12-06 16:00:31 -05:00
|
|
|
|
executed if the branch is taken. For annulled branches with this bit
|
|
|
|
|
clear, the insn should be executed only if the branch is not taken. */
|
|
|
|
|
#define INSN_FROM_TARGET_P(INSN) ((INSN)->in_struct)
|
|
|
|
|
|
|
|
|
|
/* Holds a list of notes on what this insn does to various REGs.
|
|
|
|
|
It is a chain of EXPR_LIST rtx's, where the second operand
|
|
|
|
|
is the chain pointer and the first operand is the REG being described.
|
|
|
|
|
The mode field of the EXPR_LIST contains not a real machine mode
|
|
|
|
|
but a value that says what this note says about the REG:
|
|
|
|
|
REG_DEAD means that the value in REG dies in this insn (i.e., it is
|
|
|
|
|
not needed past this insn). If REG is set in this insn, the REG_DEAD
|
|
|
|
|
note may, but need not, be omitted.
|
|
|
|
|
REG_INC means that the REG is autoincremented or autodecremented.
|
1997-03-18 15:00:38 -05:00
|
|
|
|
REG_EQUIV describes the insn as a whole; it says that the insn
|
|
|
|
|
sets a register to a constant value or to be equivalent to a memory
|
|
|
|
|
address. If the register is spilled to the stack then the constant
|
|
|
|
|
value should be substituted for it. The contents of the REG_EQUIV
|
1991-12-06 16:00:31 -05:00
|
|
|
|
is the constant value or memory address, which may be different
|
1997-03-18 15:00:38 -05:00
|
|
|
|
from the source of the SET although it has the same value. A
|
|
|
|
|
REG_EQUIV note may also appear on an insn which copies a register
|
|
|
|
|
parameter to a pseudo-register, if there is a memory address which
|
|
|
|
|
could be used to hold that pseudo-register throughout the function.
|
1991-12-06 16:00:31 -05:00
|
|
|
|
REG_EQUAL is like REG_EQUIV except that the destination
|
|
|
|
|
is only momentarily equal to the specified rtx. Therefore, it
|
|
|
|
|
cannot be used for substitution; but it can be used for cse.
|
|
|
|
|
REG_RETVAL means that this insn copies the return-value of
|
|
|
|
|
a library call out of the hard reg for return values. This note
|
|
|
|
|
is actually an INSN_LIST and it points to the first insn involved
|
|
|
|
|
in setting up arguments for the call. flow.c uses this to delete
|
|
|
|
|
the entire library call when its result is dead.
|
|
|
|
|
REG_LIBCALL is the inverse of REG_RETVAL: it goes on the first insn
|
|
|
|
|
of the library call and points at the one that has the REG_RETVAL.
|
|
|
|
|
REG_WAS_0 says that the register set in this insn held 0 before the insn.
|
|
|
|
|
The contents of the note is the insn that stored the 0.
|
|
|
|
|
If that insn is deleted or patched to a NOTE, the REG_WAS_0 is inoperative.
|
|
|
|
|
The REG_WAS_0 note is actually an INSN_LIST, not an EXPR_LIST.
|
|
|
|
|
REG_NONNEG means that the register is always nonnegative during
|
|
|
|
|
the containing loop. This is used in branches so that decrement and
|
|
|
|
|
branch instructions terminating on zero can be matched. There must be
|
|
|
|
|
an insn pattern in the md file named `decrement_and_branch_until_zero'
|
|
|
|
|
or else this will never be added to any instructions.
|
|
|
|
|
REG_NO_CONFLICT means there is no conflict *after this insn*
|
|
|
|
|
between the register in the note and the destination of this insn.
|
|
|
|
|
REG_UNUSED identifies a register set in this insn and never used.
|
|
|
|
|
REG_CC_SETTER and REG_CC_USER link a pair of insns that set and use
|
|
|
|
|
CC0, respectively. Normally, these are required to be consecutive insns,
|
|
|
|
|
but we permit putting a cc0-setting insn in the delay slot of a branch
|
|
|
|
|
as long as only one copy of the insn exists. In that case, these notes
|
|
|
|
|
point from one to the other to allow code generation to determine what
|
|
|
|
|
any require information and to properly update CC_STATUS.
|
|
|
|
|
REG_LABEL points to a CODE_LABEL. Used by non-JUMP_INSNs to
|
|
|
|
|
say that the CODE_LABEL contained in the REG_LABEL note is used
|
|
|
|
|
by the insn.
|
1992-03-14 00:07:15 -05:00
|
|
|
|
REG_DEP_ANTI is used in LOG_LINKS which represent anti (write after read)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
dependencies. REG_DEP_OUTPUT is used in LOG_LINKS which represent output
|
|
|
|
|
(write after write) dependencies. Data dependencies, which are the only
|
|
|
|
|
type of LOG_LINK created by flow, are represented by a 0 reg note kind. */
|
1997-03-28 17:39:00 -05:00
|
|
|
|
/* REG_BR_PROB is attached to JUMP_INSNs and CALL_INSNs when the flag
|
|
|
|
|
-fbranch-probabilities is given. It has an integer value. For jumps,
|
|
|
|
|
it is the probability that this is a taken branch. For calls, it is the
|
|
|
|
|
probability that this call won't return.
|
|
|
|
|
REG_EXEC_COUNT is attached to the first insn of each basic block, and
|
|
|
|
|
the first insn after each CALL_INSN. It indicates how many times this
|
1997-09-23 03:14:07 -04:00
|
|
|
|
block was executed.
|
|
|
|
|
REG_SAVE_AREA is used to optimize rtl generated by dynamic stack
|
|
|
|
|
allocations for targets where SETJMP_VIA_SAVE_AREA is true.
|
|
|
|
|
REG_BR_PRED is attached to JUMP_INSNs only, it holds the branch prediction
|
1998-09-05 17:57:56 -04:00
|
|
|
|
flags computed by get_jump_flags() after dbr scheduling is complete.
|
|
|
|
|
REG_FRAME_RELATED_EXPR is attached to insns that are RTX_FRAME_RELATED_P,
|
|
|
|
|
but are too complex for DWARF to interpret what they imply. The attached
|
|
|
|
|
rtx is used instead of intuition. */
|
1998-12-08 09:04:03 -05:00
|
|
|
|
/* REG_EH_REGION is used to indicate what exception region an INSN
|
1999-04-27 13:08:37 -04:00
|
|
|
|
belongs in. This can be used to indicate what region a call may throw
|
|
|
|
|
to. A REGION of 0 indicates that a call cannot throw at all.
|
|
|
|
|
A REGION of -1 indicates that it cannot throw, nor will it execute
|
|
|
|
|
a non-local goto.
|
1998-12-08 09:04:03 -05:00
|
|
|
|
REG_EH_RETHROW is used to indicate what that a call is actually a
|
|
|
|
|
call to rethrow, and specifies which region the rethrow is targetting.
|
|
|
|
|
This provides a way to generate the non standard flow edges required
|
1999-04-27 13:08:37 -04:00
|
|
|
|
for a rethrow. */
|
1998-12-08 09:04:03 -05:00
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
#define REG_NOTES(INSN) ((INSN)->fld[6].rtx)
|
|
|
|
|
|
rtl.h (addr_diff_vec_flags): New typedef.
* rtl.h (addr_diff_vec_flags): New typedef.
(union rtunion_def): New member rt_addr_diff_vec_flags.
(ADDR_DIFF_VEC_FLAGS): New macro.
* sh.c (output_branch): Fix offset overflow problems.
* final.c (shorten_branches): Implement CASE_VECTOR_SHORTEN_MODE.
(final_scan_insn): New argument BODY for ASM_OUTPUT_ADDR_DIFF_ELT.
* rtl.def (ADDR_DIFF_VEC): Three new fields (min, max and flags).
* stmt.c (expand_end_case): Supply new arguments to
gen_rtx_ADDR_DIFF_VEC.
* 1750a.h (ASM_OUTPUT_ADDR_DIFF_ELT): New argument BODY.
* alpha.h, arc.h, clipper.h, convex.h : Likewise.
* dsp16xx.h, elxsi.h, fx80.h, gmicro.h, h8300.h : Likewise.
* i370.h, i386.h, i860.h, i960.h, m32r.h, m68k.h, m88k.h : Likewise.
* mips.h, mn10200.h, mn10300.h, ns32k.h, pa.h, pyr.h : Likewise.
* rs6000.h, sh.h, sparc.h, spur.h, tahoe.h, v850.h : Likewise.
* vax.h, we32k.h, alpha/vms.h, arm/aof.h, arm/aout.h : Likewise.
* i386/386bsd.h, i386/freebsd-elf.h : Likewise.
* i386/freebsd.h, i386/linux.h : Likewise.
* i386/netbsd.h, i386/osfrose.h, i386/ptx4-i.h, i386/sco5.h : Likewise.
* i386/sysv4.h, m68k/3b1.h, m68k/dpx2.h, m68k/hp320.h : Likewise.
* m68k/mot3300.h, m68k/sgs.h : Likewise.
* m68k/tower-as.h, ns32k/encore.h, sparc/pbd.h : Likewise.
* sh.h (INSN_ALIGN, INSN_LENGTH_ALIGNMENT): Define.
(CASE_VECTOR_SHORTEN_MODE): Define.
(short_cbranch_p, align_length, addr_diff_vec_adjust): Don't declare.
(med_branch_p, braf_branch_p): Don't declare.
(mdep_reorg_phase, barrier_align): Declare.
(ADJUST_INSN_LENGTH): Remove alignment handling.
* sh.c (uid_align, uid_align_max): Deleted.
(max_uid_before_fixup_addr_diff_vecs, branch_offset): Deleted.
(short_cbranch_p, med_branch_p, braf_branch_p, align_length): Deleted.
(cache_align_p, fixup_aligns, addr_diff_vec_adjust): Deleted.
(output_far_jump): Don't use braf_branch_p.
(output_branchy_insn): Don't use branch_offset.
(find_barrier): Remove checks for max_uid_before_fixup_addr_diff_vecs.
Remove paired barrier stuff.
Don't use cache_align_p.
Take alignment insns into account.
(fixup_addr_diff_vecs): Reduce to only fixing up the base label of
the addr_diff_vec.
(barrier_align, branch_dest): New function.
(machine_dependent_reorg, split_branches): Remove infrastructure
for branch shortening that is now provided in the backend.
* sh.md (short_cbranch_p, med_branch_p, med_cbranch_p): New attributes.
(braf_branch_p, braf_cbranch_p): Likewise.
(attribute length): Use new attributes.
(casesi_worker): Get mode and unsignednedd from ADDR_DIFF_VEC.
(addr_diff_vec_adjust): Delete.
(align_2): Now a define_expand.
(align_log): Now length 0.
From-SVN: r18433
1998-03-06 09:54:07 -05:00
|
|
|
|
#define ADDR_DIFF_VEC_FLAGS(RTX) ((RTX)->fld[4].rt_addr_diff_vec_flags)
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* Don't forget to change reg_note_name in rtl.c. */
|
|
|
|
|
enum reg_note { REG_DEAD = 1, REG_INC = 2, REG_EQUIV = 3, REG_WAS_0 = 4,
|
|
|
|
|
REG_EQUAL = 5, REG_RETVAL = 6, REG_LIBCALL = 7,
|
|
|
|
|
REG_NONNEG = 8, REG_NO_CONFLICT = 9, REG_UNUSED = 10,
|
|
|
|
|
REG_CC_SETTER = 11, REG_CC_USER = 12, REG_LABEL = 13,
|
1997-03-28 17:39:00 -05:00
|
|
|
|
REG_DEP_ANTI = 14, REG_DEP_OUTPUT = 15, REG_BR_PROB = 16,
|
1997-09-23 03:14:07 -04:00
|
|
|
|
REG_EXEC_COUNT = 17, REG_NOALIAS = 18, REG_SAVE_AREA = 19,
|
1998-09-05 17:57:56 -04:00
|
|
|
|
REG_BR_PRED = 20, REG_EH_CONTEXT = 21,
|
1998-12-08 09:04:03 -05:00
|
|
|
|
REG_FRAME_RELATED_EXPR = 22, REG_EH_REGION = 23,
|
|
|
|
|
REG_EH_RETHROW = 24 };
|
1997-03-28 17:39:00 -05:00
|
|
|
|
/* The base value for branch probability notes. */
|
|
|
|
|
#define REG_BR_PROB_BASE 10000
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* Define macros to extract and insert the reg-note kind in an EXPR_LIST. */
|
|
|
|
|
#define REG_NOTE_KIND(LINK) ((enum reg_note) GET_MODE (LINK))
|
|
|
|
|
#define PUT_REG_NOTE_KIND(LINK,KIND) PUT_MODE(LINK, (enum machine_mode) (KIND))
|
|
|
|
|
|
|
|
|
|
/* Names for REG_NOTE's in EXPR_LIST insn's. */
|
|
|
|
|
|
|
|
|
|
extern char *reg_note_name[];
|
1996-07-03 18:07:53 -04:00
|
|
|
|
#define GET_REG_NOTE_NAME(MODE) (reg_note_name[(int) (MODE)])
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1994-05-06 17:40:25 -04:00
|
|
|
|
/* This field is only present on CALL_INSNs. It holds a chain of EXPR_LIST of
|
|
|
|
|
USE and CLOBBER expressions.
|
|
|
|
|
USE expressions list the registers filled with arguments that
|
|
|
|
|
are passed to the function.
|
|
|
|
|
CLOBBER expressions document the registers explicitly clobbered
|
|
|
|
|
by this CALL_INSN.
|
|
|
|
|
Pseudo registers can not be mentioned in this list. */
|
|
|
|
|
#define CALL_INSN_FUNCTION_USAGE(INSN) ((INSN)->fld[7].rtx)
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* The label-number of a code-label. The assembler label
|
|
|
|
|
is made from `L' and the label-number printed in decimal.
|
|
|
|
|
Label numbers are unique in a compilation. */
|
|
|
|
|
#define CODE_LABEL_NUMBER(INSN) ((INSN)->fld[3].rtint)
|
|
|
|
|
|
|
|
|
|
#define LINE_NUMBER NOTE
|
|
|
|
|
|
Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
* Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
(rtl.o, emit-rtl.o): Add dependency on bitmap.h.
($(HOST_PREFIX_1)rtl.o): Likewise.
($(HOST_PREFIX_1)bitmap.o): New host object.
* emit-rtl.c (toplevel): Include bitmap.h.
(gen_rtx): Handle 't' and 'b' nodes.
* print-rtl.c (print_rtx): Handle printing NOTE_INSN_LIVE notes.
Print block number for block begin/end notes. Print 't' type
nodes as a pointer. Know that the 3rd argument of live range
start/stop notes is really a range_info rtx. If type is 'b', print
out argument as a bitmap.
* rtl.c: Include bitmap.c.
(copy_rtx): Copy tree nodes as is. Copy bitmaps if type is 'b'.
(note_insn_name): Add NOTE_INSN_RANGE_{START,END}, NOTE_INSN_LIVE.
* rtl.def (RANGE_LIVE): New node to hold live information while we
recalculate the basic blocks.
(RANGE_REG, RANGE_INFO): New rtl types for live range splitting.
(RANGE_VAR): New node, to hold information saved in symbol node for New
communicating live range information to the debug output functions.
* rtl.h (rtunion_def): Add rttree and rtbit fields.
(XBITMAP, XTREE): New accessor macros.
(NOTE_LIVE_INFO): Overload NOTE_SOURCE_FILE for NOTE_INSN_LIVE notes.
(NOTE_RANGE_INFO): Similarly for NOTE_INSN_RANGE_{START,END} notes.
(NOTE_BLOCK_LIVE_RANGE_BLOCK): Define.
(NOTE_INSN_RANGE_START, NOTE_INSN_RANGE_END, NOTE_INSN_LIVE): New notes.
(RANGE_LIVE_{BITMAP,ORIG_BLOCK}): New accessor macros.
(RANGE_REG_{SYMBOL,BLOCK}_NODE, RANGE_VAR_*): New accessor macros.
(RANGE_INFO_*): Likewise.
* sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* haifa-sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* tree.h (BLOCK_LIVE_RANGE_{START,END,VAR_FLAG}): New accessor macros.
(BLOCK_LIVE_RANGE_FLAG): Likewise.
(DECL_LIVE_RANGE_RTL): Likewise.
(struct tree_block): Add live_range_flag, live_range_var_flag,
live_range_start and live_range_end.
(struct tree_decl): Add live_range_rtl field.
* gengenrtl.c (type_from_format): Handle 'b' and 't'.
(accessor_from_format): Likewise.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r19727
1998-05-13 17:13:47 -04:00
|
|
|
|
/* In a NOTE that is a line number, this is a string for the file name that the
|
|
|
|
|
line is in. We use the same field to record block numbers temporarily in
|
|
|
|
|
NOTE_INSN_BLOCK_BEG and NOTE_INSN_BLOCK_END notes. (We avoid lots of casts
|
|
|
|
|
between ints and pointers if we use a different macro for the block number.)
|
|
|
|
|
The NOTE_INSN_RANGE_{START,END} and NOTE_INSN_LIVE notes record their
|
|
|
|
|
information as a rtx in the field. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
#define NOTE_SOURCE_FILE(INSN) ((INSN)->fld[3].rtstr)
|
1992-08-02 21:42:35 -04:00
|
|
|
|
#define NOTE_BLOCK_NUMBER(INSN) ((INSN)->fld[3].rtint)
|
Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
* Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
(rtl.o, emit-rtl.o): Add dependency on bitmap.h.
($(HOST_PREFIX_1)rtl.o): Likewise.
($(HOST_PREFIX_1)bitmap.o): New host object.
* emit-rtl.c (toplevel): Include bitmap.h.
(gen_rtx): Handle 't' and 'b' nodes.
* print-rtl.c (print_rtx): Handle printing NOTE_INSN_LIVE notes.
Print block number for block begin/end notes. Print 't' type
nodes as a pointer. Know that the 3rd argument of live range
start/stop notes is really a range_info rtx. If type is 'b', print
out argument as a bitmap.
* rtl.c: Include bitmap.c.
(copy_rtx): Copy tree nodes as is. Copy bitmaps if type is 'b'.
(note_insn_name): Add NOTE_INSN_RANGE_{START,END}, NOTE_INSN_LIVE.
* rtl.def (RANGE_LIVE): New node to hold live information while we
recalculate the basic blocks.
(RANGE_REG, RANGE_INFO): New rtl types for live range splitting.
(RANGE_VAR): New node, to hold information saved in symbol node for New
communicating live range information to the debug output functions.
* rtl.h (rtunion_def): Add rttree and rtbit fields.
(XBITMAP, XTREE): New accessor macros.
(NOTE_LIVE_INFO): Overload NOTE_SOURCE_FILE for NOTE_INSN_LIVE notes.
(NOTE_RANGE_INFO): Similarly for NOTE_INSN_RANGE_{START,END} notes.
(NOTE_BLOCK_LIVE_RANGE_BLOCK): Define.
(NOTE_INSN_RANGE_START, NOTE_INSN_RANGE_END, NOTE_INSN_LIVE): New notes.
(RANGE_LIVE_{BITMAP,ORIG_BLOCK}): New accessor macros.
(RANGE_REG_{SYMBOL,BLOCK}_NODE, RANGE_VAR_*): New accessor macros.
(RANGE_INFO_*): Likewise.
* sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* haifa-sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* tree.h (BLOCK_LIVE_RANGE_{START,END,VAR_FLAG}): New accessor macros.
(BLOCK_LIVE_RANGE_FLAG): Likewise.
(DECL_LIVE_RANGE_RTL): Likewise.
(struct tree_block): Add live_range_flag, live_range_var_flag,
live_range_start and live_range_end.
(struct tree_decl): Add live_range_rtl field.
* gengenrtl.c (type_from_format): Handle 'b' and 't'.
(accessor_from_format): Likewise.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r19727
1998-05-13 17:13:47 -04:00
|
|
|
|
#define NOTE_RANGE_INFO(INSN) ((INSN)->fld[3].rtx)
|
|
|
|
|
#define NOTE_LIVE_INFO(INSN) ((INSN)->fld[3].rtx)
|
1999-02-25 18:45:42 -05:00
|
|
|
|
#define NOTE_BASIC_BLOCK(INSN) ((INSN)->fld[3].bb)
|
Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
* Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
(rtl.o, emit-rtl.o): Add dependency on bitmap.h.
($(HOST_PREFIX_1)rtl.o): Likewise.
($(HOST_PREFIX_1)bitmap.o): New host object.
* emit-rtl.c (toplevel): Include bitmap.h.
(gen_rtx): Handle 't' and 'b' nodes.
* print-rtl.c (print_rtx): Handle printing NOTE_INSN_LIVE notes.
Print block number for block begin/end notes. Print 't' type
nodes as a pointer. Know that the 3rd argument of live range
start/stop notes is really a range_info rtx. If type is 'b', print
out argument as a bitmap.
* rtl.c: Include bitmap.c.
(copy_rtx): Copy tree nodes as is. Copy bitmaps if type is 'b'.
(note_insn_name): Add NOTE_INSN_RANGE_{START,END}, NOTE_INSN_LIVE.
* rtl.def (RANGE_LIVE): New node to hold live information while we
recalculate the basic blocks.
(RANGE_REG, RANGE_INFO): New rtl types for live range splitting.
(RANGE_VAR): New node, to hold information saved in symbol node for New
communicating live range information to the debug output functions.
* rtl.h (rtunion_def): Add rttree and rtbit fields.
(XBITMAP, XTREE): New accessor macros.
(NOTE_LIVE_INFO): Overload NOTE_SOURCE_FILE for NOTE_INSN_LIVE notes.
(NOTE_RANGE_INFO): Similarly for NOTE_INSN_RANGE_{START,END} notes.
(NOTE_BLOCK_LIVE_RANGE_BLOCK): Define.
(NOTE_INSN_RANGE_START, NOTE_INSN_RANGE_END, NOTE_INSN_LIVE): New notes.
(RANGE_LIVE_{BITMAP,ORIG_BLOCK}): New accessor macros.
(RANGE_REG_{SYMBOL,BLOCK}_NODE, RANGE_VAR_*): New accessor macros.
(RANGE_INFO_*): Likewise.
* sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* haifa-sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* tree.h (BLOCK_LIVE_RANGE_{START,END,VAR_FLAG}): New accessor macros.
(BLOCK_LIVE_RANGE_FLAG): Likewise.
(DECL_LIVE_RANGE_RTL): Likewise.
(struct tree_block): Add live_range_flag, live_range_var_flag,
live_range_start and live_range_end.
(struct tree_decl): Add live_range_rtl field.
* gengenrtl.c (type_from_format): Handle 'b' and 't'.
(accessor_from_format): Likewise.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r19727
1998-05-13 17:13:47 -04:00
|
|
|
|
|
|
|
|
|
/* If the NOTE_BLOCK_NUMBER field gets a -1, it means create a new
|
|
|
|
|
block node for a live range block. */
|
|
|
|
|
#define NOTE_BLOCK_LIVE_RANGE_BLOCK -1
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* In a NOTE that is a line number, this is the line number.
|
|
|
|
|
Other kinds of NOTEs are identified by negative numbers here. */
|
|
|
|
|
#define NOTE_LINE_NUMBER(INSN) ((INSN)->fld[4].rtint)
|
|
|
|
|
|
|
|
|
|
/* Codes that appear in the NOTE_LINE_NUMBER field
|
1993-04-25 20:18:16 -04:00
|
|
|
|
for kinds of notes that are not line numbers.
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1993-04-25 20:18:16 -04:00
|
|
|
|
Notice that we do not try to use zero here for any of
|
|
|
|
|
the special note codes because sometimes the source line
|
|
|
|
|
actually can be zero! This happens (for example) when we
|
|
|
|
|
are generating code for the per-translation-unit constructor
|
|
|
|
|
and destructor routines for some C++ translation unit.
|
|
|
|
|
|
|
|
|
|
If you should change any of the following values, or if you
|
|
|
|
|
should add a new value here, don't forget to change the
|
|
|
|
|
note_insn_name array in rtl.c. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* This note is used to get rid of an insn
|
|
|
|
|
when it isn't safe to patch the insn out of the chain. */
|
|
|
|
|
#define NOTE_INSN_DELETED -1
|
|
|
|
|
#define NOTE_INSN_BLOCK_BEG -2
|
|
|
|
|
#define NOTE_INSN_BLOCK_END -3
|
|
|
|
|
#define NOTE_INSN_LOOP_BEG -4
|
|
|
|
|
#define NOTE_INSN_LOOP_END -5
|
|
|
|
|
/* This kind of note is generated at the end of the function body,
|
|
|
|
|
just before the return insn or return label.
|
|
|
|
|
In an optimizing compilation it is deleted by the first jump optimization,
|
|
|
|
|
after enabling that optimizer to determine whether control can fall
|
|
|
|
|
off the end of the function body without a return statement. */
|
|
|
|
|
#define NOTE_INSN_FUNCTION_END -6
|
|
|
|
|
/* This kind of note is generated just after each call to `setjmp', et al. */
|
|
|
|
|
#define NOTE_INSN_SETJMP -7
|
|
|
|
|
/* Generated at the place in a loop that `continue' jumps to. */
|
|
|
|
|
#define NOTE_INSN_LOOP_CONT -8
|
|
|
|
|
/* Generated at the start of a duplicated exit test. */
|
|
|
|
|
#define NOTE_INSN_LOOP_VTOP -9
|
1992-06-29 12:04:35 -04:00
|
|
|
|
/* This marks the point immediately after the last prologue insn. */
|
|
|
|
|
#define NOTE_INSN_PROLOGUE_END -10
|
|
|
|
|
/* This marks the point immediately prior to the first epilogue insn. */
|
|
|
|
|
#define NOTE_INSN_EPILOGUE_BEG -11
|
1992-07-04 23:31:52 -04:00
|
|
|
|
/* Generated in place of user-declared labels when they are deleted. */
|
|
|
|
|
#define NOTE_INSN_DELETED_LABEL -12
|
1993-04-25 20:18:16 -04:00
|
|
|
|
/* This note indicates the start of the real body of the function,
|
|
|
|
|
i.e. the point just after all of the parms have been moved into
|
|
|
|
|
their homes, etc. */
|
|
|
|
|
#define NOTE_INSN_FUNCTION_BEG -13
|
1996-07-23 15:58:32 -04:00
|
|
|
|
/* These note where exception handling regions begin and end. */
|
|
|
|
|
#define NOTE_INSN_EH_REGION_BEG -14
|
|
|
|
|
#define NOTE_INSN_EH_REGION_END -15
|
1997-03-28 17:39:00 -05:00
|
|
|
|
/* Generated whenever a duplicate line number note is output. For example,
|
|
|
|
|
one is output after the end of an inline function, in order to prevent
|
|
|
|
|
the line containing the inline call from being counted twice in gcov. */
|
|
|
|
|
#define NOTE_REPEATED_LINE_NUMBER -16
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
* Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
(rtl.o, emit-rtl.o): Add dependency on bitmap.h.
($(HOST_PREFIX_1)rtl.o): Likewise.
($(HOST_PREFIX_1)bitmap.o): New host object.
* emit-rtl.c (toplevel): Include bitmap.h.
(gen_rtx): Handle 't' and 'b' nodes.
* print-rtl.c (print_rtx): Handle printing NOTE_INSN_LIVE notes.
Print block number for block begin/end notes. Print 't' type
nodes as a pointer. Know that the 3rd argument of live range
start/stop notes is really a range_info rtx. If type is 'b', print
out argument as a bitmap.
* rtl.c: Include bitmap.c.
(copy_rtx): Copy tree nodes as is. Copy bitmaps if type is 'b'.
(note_insn_name): Add NOTE_INSN_RANGE_{START,END}, NOTE_INSN_LIVE.
* rtl.def (RANGE_LIVE): New node to hold live information while we
recalculate the basic blocks.
(RANGE_REG, RANGE_INFO): New rtl types for live range splitting.
(RANGE_VAR): New node, to hold information saved in symbol node for New
communicating live range information to the debug output functions.
* rtl.h (rtunion_def): Add rttree and rtbit fields.
(XBITMAP, XTREE): New accessor macros.
(NOTE_LIVE_INFO): Overload NOTE_SOURCE_FILE for NOTE_INSN_LIVE notes.
(NOTE_RANGE_INFO): Similarly for NOTE_INSN_RANGE_{START,END} notes.
(NOTE_BLOCK_LIVE_RANGE_BLOCK): Define.
(NOTE_INSN_RANGE_START, NOTE_INSN_RANGE_END, NOTE_INSN_LIVE): New notes.
(RANGE_LIVE_{BITMAP,ORIG_BLOCK}): New accessor macros.
(RANGE_REG_{SYMBOL,BLOCK}_NODE, RANGE_VAR_*): New accessor macros.
(RANGE_INFO_*): Likewise.
* sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* haifa-sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* tree.h (BLOCK_LIVE_RANGE_{START,END,VAR_FLAG}): New accessor macros.
(BLOCK_LIVE_RANGE_FLAG): Likewise.
(DECL_LIVE_RANGE_RTL): Likewise.
(struct tree_block): Add live_range_flag, live_range_var_flag,
live_range_start and live_range_end.
(struct tree_decl): Add live_range_rtl field.
* gengenrtl.c (type_from_format): Handle 'b' and 't'.
(accessor_from_format): Likewise.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r19727
1998-05-13 17:13:47 -04:00
|
|
|
|
/* Start/end of a live range region, where pseudos allocated on the stack can
|
|
|
|
|
be allocated to temporary registers. */
|
|
|
|
|
#define NOTE_INSN_RANGE_START -17
|
|
|
|
|
#define NOTE_INSN_RANGE_END -18
|
|
|
|
|
/* Record which registers are currently live. */
|
|
|
|
|
#define NOTE_INSN_LIVE -19
|
1999-02-25 18:45:42 -05:00
|
|
|
|
/* Record the struct for the following basic block. */
|
|
|
|
|
#define NOTE_INSN_BASIC_BLOCK -20
|
1992-07-12 14:05:02 -04:00
|
|
|
|
|
|
|
|
|
#if 0 /* These are not used, and I don't know what they were for. --rms. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
#define NOTE_DECL_NAME(INSN) ((INSN)->fld[3].rtstr)
|
|
|
|
|
#define NOTE_DECL_CODE(INSN) ((INSN)->fld[4].rtint)
|
|
|
|
|
#define NOTE_DECL_RTL(INSN) ((INSN)->fld[5].rtx)
|
|
|
|
|
#define NOTE_DECL_IDENTIFIER(INSN) ((INSN)->fld[6].rtint)
|
|
|
|
|
#define NOTE_DECL_TYPE(INSN) ((INSN)->fld[7].rtint)
|
1992-07-12 14:05:02 -04:00
|
|
|
|
#endif /* 0 */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* Names for NOTE insn's other than line numbers. */
|
|
|
|
|
|
|
|
|
|
extern char *note_insn_name[];
|
|
|
|
|
#define GET_NOTE_INSN_NAME(NOTE_CODE) (note_insn_name[-(NOTE_CODE)])
|
|
|
|
|
|
|
|
|
|
/* The name of a label, in case it corresponds to an explicit label
|
|
|
|
|
in the input source code. */
|
|
|
|
|
#define LABEL_NAME(LABEL) ((LABEL)->fld[4].rtstr)
|
|
|
|
|
|
|
|
|
|
/* In jump.c, each label contains a count of the number
|
|
|
|
|
of LABEL_REFs that point at it, so unused labels can be deleted. */
|
|
|
|
|
#define LABEL_NUSES(LABEL) ((LABEL)->fld[5].rtint)
|
|
|
|
|
|
1997-11-02 16:19:36 -05:00
|
|
|
|
/* The original regno this ADDRESSOF was built for. */
|
|
|
|
|
#define ADDRESSOF_REGNO(RTX) ((RTX)->fld[1].rtint)
|
|
|
|
|
|
|
|
|
|
/* The variable in the register we took the address of. */
|
|
|
|
|
#define ADDRESSOF_DECL(X) ((tree) XEXP ((X), 2))
|
|
|
|
|
#define SET_ADDRESSOF_DECL(X, T) (XEXP ((X), 2) = (rtx) (T))
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* In jump.c, each JUMP_INSN can point to a label that it can jump to,
|
|
|
|
|
so that if the JUMP_INSN is deleted, the label's LABEL_NUSES can
|
|
|
|
|
be decremented and possibly the label can be deleted. */
|
|
|
|
|
#define JUMP_LABEL(INSN) ((INSN)->fld[7].rtx)
|
|
|
|
|
|
|
|
|
|
/* Once basic blocks are found in flow.c,
|
|
|
|
|
each CODE_LABEL starts a chain that goes through
|
|
|
|
|
all the LABEL_REFs that jump to that label.
|
|
|
|
|
The chain eventually winds up at the CODE_LABEL; it is circular. */
|
1997-11-04 20:56:33 -05:00
|
|
|
|
#define LABEL_REFS(LABEL) ((LABEL)->fld[6].rtx)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* This is the field in the LABEL_REF through which the circular chain
|
|
|
|
|
of references to a particular label is linked.
|
|
|
|
|
This chain is set up in flow.c. */
|
|
|
|
|
|
|
|
|
|
#define LABEL_NEXTREF(REF) ((REF)->fld[1].rtx)
|
|
|
|
|
|
|
|
|
|
/* Once basic blocks are found in flow.c,
|
|
|
|
|
Each LABEL_REF points to its containing instruction with this field. */
|
|
|
|
|
|
|
|
|
|
#define CONTAINING_INSN(RTX) ((RTX)->fld[2].rtx)
|
|
|
|
|
|
|
|
|
|
/* For a REG rtx, REGNO extracts the register number. */
|
|
|
|
|
|
|
|
|
|
#define REGNO(RTX) ((RTX)->fld[0].rtint)
|
|
|
|
|
|
|
|
|
|
/* For a REG rtx, REG_FUNCTION_VALUE_P is nonzero if the reg
|
|
|
|
|
is the current function's return value. */
|
|
|
|
|
|
|
|
|
|
#define REG_FUNCTION_VALUE_P(RTX) ((RTX)->integrated)
|
|
|
|
|
|
|
|
|
|
/* 1 in a REG rtx if it corresponds to a variable declared by the user. */
|
|
|
|
|
#define REG_USERVAR_P(RTX) ((RTX)->volatil)
|
|
|
|
|
|
|
|
|
|
/* For a CONST_INT rtx, INTVAL extracts the integer. */
|
|
|
|
|
|
1992-07-06 16:04:00 -04:00
|
|
|
|
#define INTVAL(RTX) ((RTX)->fld[0].rtwint)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* For a SUBREG rtx, SUBREG_REG extracts the value we want a subreg of.
|
|
|
|
|
SUBREG_WORD extracts the word-number. */
|
|
|
|
|
|
|
|
|
|
#define SUBREG_REG(RTX) ((RTX)->fld[0].rtx)
|
|
|
|
|
#define SUBREG_WORD(RTX) ((RTX)->fld[1].rtint)
|
|
|
|
|
|
1992-09-19 15:44:05 -04:00
|
|
|
|
/* 1 if the REG contained in SUBREG_REG is already known to be
|
|
|
|
|
sign- or zero-extended from the mode of the SUBREG to the mode of
|
|
|
|
|
the reg. SUBREG_PROMOTED_UNSIGNED_P gives the signedness of the
|
|
|
|
|
extension.
|
|
|
|
|
|
|
|
|
|
When used as a LHS, is means that this extension must be done
|
|
|
|
|
when assigning to SUBREG_REG. */
|
|
|
|
|
|
|
|
|
|
#define SUBREG_PROMOTED_VAR_P(RTX) ((RTX)->in_struct)
|
|
|
|
|
#define SUBREG_PROMOTED_UNSIGNED_P(RTX) ((RTX)->unchanging)
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* Access various components of an ASM_OPERANDS rtx. */
|
|
|
|
|
|
|
|
|
|
#define ASM_OPERANDS_TEMPLATE(RTX) XSTR ((RTX), 0)
|
|
|
|
|
#define ASM_OPERANDS_OUTPUT_CONSTRAINT(RTX) XSTR ((RTX), 1)
|
|
|
|
|
#define ASM_OPERANDS_OUTPUT_IDX(RTX) XINT ((RTX), 2)
|
|
|
|
|
#define ASM_OPERANDS_INPUT_VEC(RTX) XVEC ((RTX), 3)
|
|
|
|
|
#define ASM_OPERANDS_INPUT_CONSTRAINT_VEC(RTX) XVEC ((RTX), 4)
|
|
|
|
|
#define ASM_OPERANDS_INPUT(RTX, N) XVECEXP ((RTX), 3, (N))
|
|
|
|
|
#define ASM_OPERANDS_INPUT_LENGTH(RTX) XVECLEN ((RTX), 3)
|
|
|
|
|
#define ASM_OPERANDS_INPUT_CONSTRAINT(RTX, N) XSTR (XVECEXP ((RTX), 4, (N)), 0)
|
|
|
|
|
#define ASM_OPERANDS_INPUT_MODE(RTX, N) GET_MODE (XVECEXP ((RTX), 4, (N)))
|
|
|
|
|
#define ASM_OPERANDS_SOURCE_FILE(RTX) XSTR ((RTX), 5)
|
|
|
|
|
#define ASM_OPERANDS_SOURCE_LINE(RTX) XINT ((RTX), 6)
|
|
|
|
|
|
|
|
|
|
/* For a MEM rtx, 1 if it's a volatile reference.
|
|
|
|
|
Also in an ASM_OPERANDS rtx. */
|
|
|
|
|
#define MEM_VOLATILE_P(RTX) ((RTX)->volatil)
|
|
|
|
|
|
1999-01-19 05:32:33 -05:00
|
|
|
|
/* For a MEM rtx, 1 if it refers to a field of an aggregate. If zero,
|
|
|
|
|
RTX may or may not refer to a field of an aggregate. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
#define MEM_IN_STRUCT_P(RTX) ((RTX)->in_struct)
|
|
|
|
|
|
1999-01-19 05:32:33 -05:00
|
|
|
|
/* For a MEM rtx, 1 if it refers to a scalar. If zero, RTX may or may
|
|
|
|
|
not refer to a scalar.*/
|
|
|
|
|
#define MEM_SCALAR_P(RTX) ((RTX)->frame_related)
|
|
|
|
|
|
|
|
|
|
/* Copy the MEM_VOLATILE_P, MEM_IN_STRUCT_P, and MEM_SCALAR_P
|
|
|
|
|
attributes from RHS to LHS. */
|
|
|
|
|
#define MEM_COPY_ATTRIBUTES(LHS, RHS) \
|
|
|
|
|
(MEM_VOLATILE_P (LHS) = MEM_VOLATILE_P (RHS), \
|
|
|
|
|
MEM_IN_STRUCT_P (LHS) = MEM_IN_STRUCT_P (RHS), \
|
1999-03-24 20:14:00 -05:00
|
|
|
|
MEM_SCALAR_P (LHS) = MEM_SCALAR_P (RHS))
|
1999-01-19 05:32:33 -05:00
|
|
|
|
|
|
|
|
|
/* If VAL is non-zero, set MEM_IN_STRUCT_P and clear MEM_SCALAR_P in
|
|
|
|
|
RTX. Otherwise, vice versa. Use this macro only when you are
|
|
|
|
|
*sure* that you know that the MEM is in a structure, or is a
|
|
|
|
|
scalar. VAL is evaluated only once. */
|
|
|
|
|
#define MEM_SET_IN_STRUCT_P(RTX, VAL) \
|
|
|
|
|
((VAL) ? (MEM_IN_STRUCT_P (RTX) = 1, MEM_SCALAR_P (RTX) = 0) \
|
|
|
|
|
: (MEM_IN_STRUCT_P (RTX) = 0, MEM_SCALAR_P (RTX) = 1))
|
|
|
|
|
|
1998-06-25 11:14:41 -04:00
|
|
|
|
/* For a MEM rtx, the alias set. If 0, this MEM is not in any alias
|
|
|
|
|
set, and may alias anything. Otherwise, the MEM can only alias
|
|
|
|
|
MEMs in the same alias set. This value is set in a
|
|
|
|
|
language-dependent manner in the front-end, and should not be
|
|
|
|
|
altered in the back-end. These set numbers are tested for zero,
|
|
|
|
|
and compared for equality; they have no other significance. In
|
|
|
|
|
some front-ends, these numbers may correspond in some way to types,
|
|
|
|
|
or other language-level entities, but they need not, and the
|
|
|
|
|
back-end makes no such assumptions. */
|
|
|
|
|
#define MEM_ALIAS_SET(RTX) (XINT (RTX, 1))
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* For a LABEL_REF, 1 means that this reference is to a label outside the
|
|
|
|
|
loop containing the reference. */
|
|
|
|
|
#define LABEL_OUTSIDE_LOOP_P(RTX) ((RTX)->in_struct)
|
|
|
|
|
|
1992-07-19 02:28:24 -04:00
|
|
|
|
/* For a LABEL_REF, 1 means it is for a nonlocal label. */
|
1992-10-27 00:25:18 -05:00
|
|
|
|
/* Likewise in an EXPR_LIST for a REG_LABEL note. */
|
1992-07-19 02:28:24 -04:00
|
|
|
|
#define LABEL_REF_NONLOCAL_P(RTX) ((RTX)->volatil)
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* For a CODE_LABEL, 1 means always consider this label to be needed. */
|
|
|
|
|
#define LABEL_PRESERVE_P(RTX) ((RTX)->in_struct)
|
|
|
|
|
|
|
|
|
|
/* For a REG, 1 means the register is used only in an exit test of a loop. */
|
|
|
|
|
#define REG_LOOP_TEST_P(RTX) ((RTX)->in_struct)
|
|
|
|
|
|
|
|
|
|
/* During sched, for an insn, 1 means that the insn must be scheduled together
|
1992-03-14 00:07:15 -05:00
|
|
|
|
with the preceding insn. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
#define SCHED_GROUP_P(INSN) ((INSN)->in_struct)
|
|
|
|
|
|
1992-08-25 16:21:53 -04:00
|
|
|
|
/* During sched, for the LOG_LINKS of an insn, these cache the adjusted
|
|
|
|
|
cost of the dependence link. The cost of executing an instruction
|
|
|
|
|
may vary based on how the results are used. LINK_COST_ZERO is 1 when
|
|
|
|
|
the cost through the link varies and is unchanged (i.e., the link has
|
|
|
|
|
zero additional cost). LINK_COST_FREE is 1 when the cost through the
|
|
|
|
|
link is zero (i.e., the link makes the cost free). In other cases,
|
|
|
|
|
the adjustment to the cost is recomputed each time it is needed. */
|
|
|
|
|
#define LINK_COST_ZERO(X) ((X)->jump)
|
|
|
|
|
#define LINK_COST_FREE(X) ((X)->call)
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* For a SET rtx, SET_DEST is the place that is set
|
|
|
|
|
and SET_SRC is the value it is set to. */
|
|
|
|
|
#define SET_DEST(RTX) ((RTX)->fld[0].rtx)
|
|
|
|
|
#define SET_SRC(RTX) ((RTX)->fld[1].rtx)
|
|
|
|
|
|
|
|
|
|
/* For a TRAP_IF rtx, TRAP_CONDITION is an expression. */
|
|
|
|
|
#define TRAP_CONDITION(RTX) ((RTX)->fld[0].rtx)
|
1998-06-17 12:14:09 -04:00
|
|
|
|
#define TRAP_CODE(RTX) (RTX)->fld[1].rtx
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* 1 in a SYMBOL_REF if it addresses this function's constants pool. */
|
|
|
|
|
#define CONSTANT_POOL_ADDRESS_P(RTX) ((RTX)->unchanging)
|
|
|
|
|
|
|
|
|
|
/* Flag in a SYMBOL_REF for machine-specific purposes. */
|
|
|
|
|
#define SYMBOL_REF_FLAG(RTX) ((RTX)->volatil)
|
|
|
|
|
|
1998-12-08 09:04:03 -05:00
|
|
|
|
/* 1 in a SYMBOL_REF if it represents a symbol which might have to change
|
|
|
|
|
if its inlined or unrolled. */
|
|
|
|
|
#define SYMBOL_REF_NEED_ADJUST(RTX) ((RTX)->in_struct)
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* 1 means a SYMBOL_REF has been the library function in emit_library_call. */
|
|
|
|
|
#define SYMBOL_REF_USED(RTX) ((RTX)->used)
|
|
|
|
|
|
|
|
|
|
/* For an INLINE_HEADER rtx, FIRST_FUNCTION_INSN is the first insn
|
|
|
|
|
of the function that is not involved in copying parameters to
|
|
|
|
|
pseudo-registers. FIRST_PARM_INSN is the very first insn of
|
|
|
|
|
the function, including the parameter copying.
|
|
|
|
|
We keep this around in case we must splice
|
|
|
|
|
this function into the assembly code at the end of the file.
|
|
|
|
|
FIRST_LABELNO is the first label number used by the function (inclusive).
|
|
|
|
|
LAST_LABELNO is the last label used by the function (exclusive).
|
|
|
|
|
MAX_REGNUM is the largest pseudo-register used by that function.
|
|
|
|
|
FUNCTION_ARGS_SIZE is the size of the argument block in the stack.
|
|
|
|
|
POPS_ARGS is the number of bytes of input arguments popped by the function
|
|
|
|
|
STACK_SLOT_LIST is the list of stack slots.
|
1995-03-08 17:29:20 -05:00
|
|
|
|
FORCED_LABELS is the list of labels whose address was taken.
|
1991-12-06 16:00:31 -05:00
|
|
|
|
FUNCTION_FLAGS are where single-bit flags are saved.
|
|
|
|
|
OUTGOING_ARGS_SIZE is the size of the largest outgoing stack parameter list.
|
|
|
|
|
ORIGINAL_ARG_VECTOR is a vector of the original DECL_RTX values
|
|
|
|
|
for the function arguments.
|
|
|
|
|
ORIGINAL_DECL_INITIAL is a pointer to the original DECL_INITIAL for the
|
|
|
|
|
function.
|
1995-12-27 15:26:07 -05:00
|
|
|
|
INLINE_REGNO_REG_RTX, INLINE_REGNO_POINTER_FLAG, and
|
|
|
|
|
INLINE_REGNO_POINTER_ALIGN are pointers to the corresponding arrays.
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
We want this to lay down like an INSN. The PREV_INSN field
|
|
|
|
|
is always NULL. The NEXT_INSN field always points to the
|
|
|
|
|
first function insn of the function being squirreled away. */
|
|
|
|
|
|
|
|
|
|
#define FIRST_FUNCTION_INSN(RTX) ((RTX)->fld[2].rtx)
|
|
|
|
|
#define FIRST_PARM_INSN(RTX) ((RTX)->fld[3].rtx)
|
|
|
|
|
#define FIRST_LABELNO(RTX) ((RTX)->fld[4].rtint)
|
|
|
|
|
#define LAST_LABELNO(RTX) ((RTX)->fld[5].rtint)
|
|
|
|
|
#define MAX_PARMREG(RTX) ((RTX)->fld[6].rtint)
|
|
|
|
|
#define MAX_REGNUM(RTX) ((RTX)->fld[7].rtint)
|
|
|
|
|
#define FUNCTION_ARGS_SIZE(RTX) ((RTX)->fld[8].rtint)
|
|
|
|
|
#define POPS_ARGS(RTX) ((RTX)->fld[9].rtint)
|
|
|
|
|
#define STACK_SLOT_LIST(RTX) ((RTX)->fld[10].rtx)
|
1995-03-08 17:29:20 -05:00
|
|
|
|
#define FORCED_LABELS(RTX) ((RTX)->fld[11].rtx)
|
|
|
|
|
#define FUNCTION_FLAGS(RTX) ((RTX)->fld[12].rtint)
|
|
|
|
|
#define OUTGOING_ARGS_SIZE(RTX) ((RTX)->fld[13].rtint)
|
|
|
|
|
#define ORIGINAL_ARG_VECTOR(RTX) ((RTX)->fld[14].rtvec)
|
|
|
|
|
#define ORIGINAL_DECL_INITIAL(RTX) ((RTX)->fld[15].rtx)
|
1995-12-27 15:26:07 -05:00
|
|
|
|
#define INLINE_REGNO_REG_RTX(RTX) ((RTX)->fld[16].rtvec)
|
1996-02-12 21:30:39 -05:00
|
|
|
|
#define INLINE_REGNO_POINTER_FLAG(RTX) ((RTX)->fld[17].rtstr)
|
|
|
|
|
#define INLINE_REGNO_POINTER_ALIGN(RTX) ((RTX)->fld[18].rtstr)
|
1997-11-02 16:19:36 -05:00
|
|
|
|
#define PARMREG_STACK_LOC(RTX) ((RTX)->fld[19].rtvec)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* In FUNCTION_FLAGS we save some variables computed when emitting the code
|
|
|
|
|
for the function and which must be `or'ed into the current flag values when
|
|
|
|
|
insns from that function are being inlined. */
|
|
|
|
|
|
|
|
|
|
/* These ought to be an enum, but non-ANSI compilers don't like that. */
|
|
|
|
|
#define FUNCTION_FLAGS_CALLS_ALLOCA 01
|
|
|
|
|
#define FUNCTION_FLAGS_CALLS_SETJMP 02
|
|
|
|
|
#define FUNCTION_FLAGS_RETURNS_STRUCT 04
|
|
|
|
|
#define FUNCTION_FLAGS_RETURNS_PCC_STRUCT 010
|
|
|
|
|
#define FUNCTION_FLAGS_NEEDS_CONTEXT 020
|
|
|
|
|
#define FUNCTION_FLAGS_HAS_NONLOCAL_LABEL 040
|
|
|
|
|
#define FUNCTION_FLAGS_RETURNS_POINTER 0100
|
|
|
|
|
#define FUNCTION_FLAGS_USES_CONST_POOL 0200
|
|
|
|
|
#define FUNCTION_FLAGS_CALLS_LONGJMP 0400
|
|
|
|
|
#define FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE 01000
|
1999-02-08 16:39:33 -05:00
|
|
|
|
#define FUNCTION_FLAGS_HAS_COMPUTED_JUMP 02000
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* Define a macro to look for REG_INC notes,
|
|
|
|
|
but save time on machines where they never exist. */
|
|
|
|
|
|
1992-03-30 17:54:10 -05:00
|
|
|
|
/* Don't continue this line--convex cc version 4.1 would lose. */
|
|
|
|
|
#if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
|
1991-12-06 16:00:31 -05:00
|
|
|
|
#define FIND_REG_INC_NOTE(insn, reg) (find_reg_note ((insn), REG_INC, (reg)))
|
|
|
|
|
#else
|
|
|
|
|
#define FIND_REG_INC_NOTE(insn, reg) 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Indicate whether the machine has any sort of auto increment addressing.
|
|
|
|
|
If not, we can avoid checking for REG_INC notes. */
|
|
|
|
|
|
1992-03-30 17:54:10 -05:00
|
|
|
|
/* Don't continue this line--convex cc version 4.1 would lose. */
|
|
|
|
|
#if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT))
|
1991-12-06 16:00:31 -05:00
|
|
|
|
#define AUTO_INC_DEC
|
|
|
|
|
#endif
|
Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
* Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
(rtl.o, emit-rtl.o): Add dependency on bitmap.h.
($(HOST_PREFIX_1)rtl.o): Likewise.
($(HOST_PREFIX_1)bitmap.o): New host object.
* emit-rtl.c (toplevel): Include bitmap.h.
(gen_rtx): Handle 't' and 'b' nodes.
* print-rtl.c (print_rtx): Handle printing NOTE_INSN_LIVE notes.
Print block number for block begin/end notes. Print 't' type
nodes as a pointer. Know that the 3rd argument of live range
start/stop notes is really a range_info rtx. If type is 'b', print
out argument as a bitmap.
* rtl.c: Include bitmap.c.
(copy_rtx): Copy tree nodes as is. Copy bitmaps if type is 'b'.
(note_insn_name): Add NOTE_INSN_RANGE_{START,END}, NOTE_INSN_LIVE.
* rtl.def (RANGE_LIVE): New node to hold live information while we
recalculate the basic blocks.
(RANGE_REG, RANGE_INFO): New rtl types for live range splitting.
(RANGE_VAR): New node, to hold information saved in symbol node for New
communicating live range information to the debug output functions.
* rtl.h (rtunion_def): Add rttree and rtbit fields.
(XBITMAP, XTREE): New accessor macros.
(NOTE_LIVE_INFO): Overload NOTE_SOURCE_FILE for NOTE_INSN_LIVE notes.
(NOTE_RANGE_INFO): Similarly for NOTE_INSN_RANGE_{START,END} notes.
(NOTE_BLOCK_LIVE_RANGE_BLOCK): Define.
(NOTE_INSN_RANGE_START, NOTE_INSN_RANGE_END, NOTE_INSN_LIVE): New notes.
(RANGE_LIVE_{BITMAP,ORIG_BLOCK}): New accessor macros.
(RANGE_REG_{SYMBOL,BLOCK}_NODE, RANGE_VAR_*): New accessor macros.
(RANGE_INFO_*): Likewise.
* sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* haifa-sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* tree.h (BLOCK_LIVE_RANGE_{START,END,VAR_FLAG}): New accessor macros.
(BLOCK_LIVE_RANGE_FLAG): Likewise.
(DECL_LIVE_RANGE_RTL): Likewise.
(struct tree_block): Add live_range_flag, live_range_var_flag,
live_range_start and live_range_end.
(struct tree_decl): Add live_range_rtl field.
* gengenrtl.c (type_from_format): Handle 'b' and 't'.
(accessor_from_format): Likewise.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r19727
1998-05-13 17:13:47 -04:00
|
|
|
|
|
1998-11-24 18:15:19 -05:00
|
|
|
|
#ifndef HAVE_PRE_INCREMENT
|
|
|
|
|
#define HAVE_PRE_INCREMENT 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_PRE_DECREMENT
|
|
|
|
|
#define HAVE_PRE_DECREMENT 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_POST_INCREMENT
|
|
|
|
|
#define HAVE_POST_INCREMENT 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef HAVE_POST_DECREMENT
|
|
|
|
|
#define HAVE_POST_DECREMENT 0
|
|
|
|
|
#endif
|
|
|
|
|
|
tm.texi (USE_LOAD_POST_DECREMENT, [...]): Document.
* tm.texi (USE_LOAD_POST_DECREMENT, USE_LOAD_PRE_DECREMENT,
USE_STORE_POST_DECREMENT, USE_STORE_PRE_DECREMENT): Document.
(USE_LOAD_POST_INCREMENT, USE_LOAD_PRE_INCREMENT,
USE_STORE_POST_INCREMENT, USE_STORE_PRE_INCREMENT): Fix documentation.
* rtl.h (USE_LOAD_POST_DECREMENT, USE_LOAD_PRE_DECREMENT,
USE_STORE_POST_DECREMENT, USE_STORE_PRE_DECREMENT,
USE_LOAD_POST_INCREMENT, USE_LOAD_PRE_INCREMENT,
USE_STORE_POST_INCREMENT, USE_STORE_PRE_INCREMENT): Provide default
definition.
* expr.c: (USE_LOAD_POST_INCREMENT, USE_LOAD_PRE_INCREMENT,
USE_STORE_POST_INCREMENT, USE_STORE_PRE_INCREMENT): Delete default
definition.
From-SVN: r26134
1999-04-02 10:39:55 -05:00
|
|
|
|
|
|
|
|
|
/* Some architectures do not have complete pre/post increment/decrement
|
|
|
|
|
instruction sets, or only move some modes efficiently. These macros
|
|
|
|
|
allow us to tune autoincrement generation. */
|
|
|
|
|
|
|
|
|
|
#ifndef USE_LOAD_POST_INCREMENT
|
|
|
|
|
#define USE_LOAD_POST_INCREMENT(MODE) HAVE_POST_INCREMENT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef USE_LOAD_POST_DECREMENT
|
|
|
|
|
#define USE_LOAD_POST_DECREMENT(MODE) HAVE_POST_DECREMENT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef USE_LOAD_PRE_INCREMENT
|
|
|
|
|
#define USE_LOAD_PRE_INCREMENT(MODE) HAVE_PRE_INCREMENT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef USE_LOAD_PRE_DECREMENT
|
|
|
|
|
#define USE_LOAD_PRE_DECREMENT(MODE) HAVE_PRE_DECREMENT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef USE_STORE_POST_INCREMENT
|
|
|
|
|
#define USE_STORE_POST_INCREMENT(MODE) HAVE_POST_INCREMENT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef USE_STORE_POST_DECREMENT
|
|
|
|
|
#define USE_STORE_POST_DECREMENT(MODE) HAVE_POST_DECREMENT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef USE_STORE_PRE_INCREMENT
|
|
|
|
|
#define USE_STORE_PRE_INCREMENT(MODE) HAVE_PRE_INCREMENT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef USE_STORE_PRE_DECREMENT
|
|
|
|
|
#define USE_STORE_PRE_DECREMENT(MODE) HAVE_PRE_DECREMENT
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
* Makefile.in (HOST_RTL): Add $(HOST_PREFIX)bitmap.o.
(rtl.o, emit-rtl.o): Add dependency on bitmap.h.
($(HOST_PREFIX_1)rtl.o): Likewise.
($(HOST_PREFIX_1)bitmap.o): New host object.
* emit-rtl.c (toplevel): Include bitmap.h.
(gen_rtx): Handle 't' and 'b' nodes.
* print-rtl.c (print_rtx): Handle printing NOTE_INSN_LIVE notes.
Print block number for block begin/end notes. Print 't' type
nodes as a pointer. Know that the 3rd argument of live range
start/stop notes is really a range_info rtx. If type is 'b', print
out argument as a bitmap.
* rtl.c: Include bitmap.c.
(copy_rtx): Copy tree nodes as is. Copy bitmaps if type is 'b'.
(note_insn_name): Add NOTE_INSN_RANGE_{START,END}, NOTE_INSN_LIVE.
* rtl.def (RANGE_LIVE): New node to hold live information while we
recalculate the basic blocks.
(RANGE_REG, RANGE_INFO): New rtl types for live range splitting.
(RANGE_VAR): New node, to hold information saved in symbol node for New
communicating live range information to the debug output functions.
* rtl.h (rtunion_def): Add rttree and rtbit fields.
(XBITMAP, XTREE): New accessor macros.
(NOTE_LIVE_INFO): Overload NOTE_SOURCE_FILE for NOTE_INSN_LIVE notes.
(NOTE_RANGE_INFO): Similarly for NOTE_INSN_RANGE_{START,END} notes.
(NOTE_BLOCK_LIVE_RANGE_BLOCK): Define.
(NOTE_INSN_RANGE_START, NOTE_INSN_RANGE_END, NOTE_INSN_LIVE): New notes.
(RANGE_LIVE_{BITMAP,ORIG_BLOCK}): New accessor macros.
(RANGE_REG_{SYMBOL,BLOCK}_NODE, RANGE_VAR_*): New accessor macros.
(RANGE_INFO_*): Likewise.
* sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* haifa-sched.c (sched_analyze): Keep live range start/stop notes.
(unlink_other_notes): Likewise.
* tree.h (BLOCK_LIVE_RANGE_{START,END,VAR_FLAG}): New accessor macros.
(BLOCK_LIVE_RANGE_FLAG): Likewise.
(DECL_LIVE_RANGE_RTL): Likewise.
(struct tree_block): Add live_range_flag, live_range_var_flag,
live_range_start and live_range_end.
(struct tree_decl): Add live_range_rtl field.
* gengenrtl.c (type_from_format): Handle 'b' and 't'.
(accessor_from_format): Likewise.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r19727
1998-05-13 17:13:47 -04:00
|
|
|
|
/* Accessors for RANGE_INFO. */
|
|
|
|
|
/* For RANGE_{START,END} notes return the RANGE_START note. */
|
|
|
|
|
#define RANGE_INFO_NOTE_START(INSN) (XEXP (INSN, 0))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes return the RANGE_START note. */
|
|
|
|
|
#define RANGE_INFO_NOTE_END(INSN) (XEXP (INSN, 1))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes, return the vector containing the registers used
|
|
|
|
|
in the range. */
|
|
|
|
|
#define RANGE_INFO_REGS(INSN) (XVEC (INSN, 2))
|
|
|
|
|
#define RANGE_INFO_REGS_REG(INSN, N) (XVECEXP (INSN, 2, N))
|
|
|
|
|
#define RANGE_INFO_NUM_REGS(INSN) (XVECLEN (INSN, 2))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes, the number of calls within the range. */
|
|
|
|
|
#define RANGE_INFO_NCALLS(INSN) (XINT (INSN, 3))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes, the number of insns within the range. */
|
|
|
|
|
#define RANGE_INFO_NINSNS(INSN) (XINT (INSN, 4))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes, a unique # to identify this range. */
|
|
|
|
|
#define RANGE_INFO_UNIQUE(INSN) (XINT (INSN, 5))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes, the basic block # the range starts with. */
|
|
|
|
|
#define RANGE_INFO_BB_START(INSN) (XINT (INSN, 6))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes, the basic block # the range ends with. */
|
|
|
|
|
#define RANGE_INFO_BB_END(INSN) (XINT (INSN, 7))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes, the loop depth the range is in. */
|
|
|
|
|
#define RANGE_INFO_LOOP_DEPTH(INSN) (XINT (INSN, 8))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes, the bitmap of live registers at the start
|
|
|
|
|
of the range. */
|
|
|
|
|
#define RANGE_INFO_LIVE_START(INSN) (XBITMAP (INSN, 9))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_{START,END} notes, the bitmap of live registers at the end
|
|
|
|
|
of the range. */
|
|
|
|
|
#define RANGE_INFO_LIVE_END(INSN) (XBITMAP (INSN, 10))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_START notes, the marker # of the start of the range. */
|
|
|
|
|
#define RANGE_INFO_MARKER_START(INSN) (XINT (INSN, 11))
|
|
|
|
|
|
|
|
|
|
/* For RANGE_START notes, the marker # of the end of the range. */
|
|
|
|
|
#define RANGE_INFO_MARKER_END(INSN) (XINT (INSN, 12))
|
|
|
|
|
|
|
|
|
|
/* Original pseudo register # for a live range note. */
|
|
|
|
|
#define RANGE_REG_PSEUDO(INSN,N) (XINT (XVECEXP (INSN, 2, N), 0))
|
|
|
|
|
|
|
|
|
|
/* Pseudo register # original register is copied into or -1. */
|
|
|
|
|
#define RANGE_REG_COPY(INSN,N) (XINT (XVECEXP (INSN, 2, N), 1))
|
|
|
|
|
|
|
|
|
|
/* How many times a register in a live range note was referenced. */
|
|
|
|
|
#define RANGE_REG_REFS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 2))
|
|
|
|
|
|
|
|
|
|
/* How many times a register in a live range note was set. */
|
|
|
|
|
#define RANGE_REG_SETS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 3))
|
|
|
|
|
|
|
|
|
|
/* How many times a register in a live range note died. */
|
|
|
|
|
#define RANGE_REG_DEATHS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 4))
|
|
|
|
|
|
|
|
|
|
/* Whether the original value is needed to be copied into the range register at
|
|
|
|
|
the start of the range. */
|
|
|
|
|
#define RANGE_REG_COPY_FLAGS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 5))
|
|
|
|
|
|
|
|
|
|
/* # of insns the register copy is live over. */
|
|
|
|
|
#define RANGE_REG_LIVE_LENGTH(INSN,N) (XINT (XVECEXP (INSN, 2, N), 6))
|
|
|
|
|
|
|
|
|
|
/* # of calls the register copy is live over. */
|
|
|
|
|
#define RANGE_REG_N_CALLS(INSN,N) (XINT (XVECEXP (INSN, 2, N), 7))
|
|
|
|
|
|
|
|
|
|
/* DECL_NODE pointer of the declaration if the register is a user defined
|
|
|
|
|
variable. */
|
|
|
|
|
#define RANGE_REG_SYMBOL_NODE(INSN,N) (XTREE (XVECEXP (INSN, 2, N), 8))
|
|
|
|
|
|
|
|
|
|
/* BLOCK_NODE pointer to the block the variable is declared in if the
|
|
|
|
|
register is a user defined variable. */
|
|
|
|
|
#define RANGE_REG_BLOCK_NODE(INSN,N) (XTREE (XVECEXP (INSN, 2, N), 9))
|
|
|
|
|
|
|
|
|
|
/* EXPR_LIST of the distinct ranges a variable is in. */
|
|
|
|
|
#define RANGE_VAR_LIST(INSN) (XEXP (INSN, 0))
|
|
|
|
|
|
|
|
|
|
/* Block a variable is declared in. */
|
|
|
|
|
#define RANGE_VAR_BLOCK(INSN) (XTREE (INSN, 1))
|
|
|
|
|
|
|
|
|
|
/* # of distinct ranges a variable is in. */
|
|
|
|
|
#define RANGE_VAR_NUM(INSN) (XINT (INSN, 2))
|
|
|
|
|
|
|
|
|
|
/* For a NOTE_INSN_LIVE note, the registers which are currently live. */
|
|
|
|
|
#define RANGE_LIVE_BITMAP(INSN) (XBITMAP (INSN, 0))
|
|
|
|
|
|
|
|
|
|
/* For a NOTE_INSN_LIVE note, the original basic block number. */
|
|
|
|
|
#define RANGE_LIVE_ORIG_BLOCK(INSN) (XINT (INSN, 1))
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* Generally useful functions. */
|
|
|
|
|
|
1992-07-06 16:04:00 -04:00
|
|
|
|
/* The following functions accept a wide integer argument. Rather than
|
|
|
|
|
having to cast on every function call, we use a macro instead, that is
|
|
|
|
|
defined here and in tree.h. */
|
|
|
|
|
|
|
|
|
|
#ifndef exact_log2
|
1997-12-09 03:20:07 -05:00
|
|
|
|
#define exact_log2(N) exact_log2_wide ((unsigned HOST_WIDE_INT) (N))
|
|
|
|
|
#define floor_log2(N) floor_log2_wide ((unsigned HOST_WIDE_INT) (N))
|
1992-07-06 16:04:00 -04:00
|
|
|
|
#endif
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern int exact_log2_wide PROTO((unsigned HOST_WIDE_INT));
|
|
|
|
|
extern int floor_log2_wide PROTO((unsigned HOST_WIDE_INT));
|
|
|
|
|
|
|
|
|
|
/* In expmed.c */
|
|
|
|
|
extern int ceil_log2 PROTO((unsigned HOST_WIDE_INT));
|
1992-07-06 16:04:00 -04:00
|
|
|
|
|
|
|
|
|
#define plus_constant(X,C) plus_constant_wide (X, (HOST_WIDE_INT) (C))
|
|
|
|
|
|
|
|
|
|
#define plus_constant_for_output(X,C) \
|
|
|
|
|
plus_constant_for_output_wide (X, (HOST_WIDE_INT) (C))
|
|
|
|
|
|
Warning fixes:
* Makefile.in (varasm.o): Depend on dbxout.h.
(cse.o): Depend on toplev.h and output.h.
(gcse.o): Depend on output.h.
* mips.c: Include system.h and toplev.h and remove redundant code.
Include output.h after tree.h so all its prototypes get activated.
* mips.md (table_jump): Remove unused variable `dest'.
* sparc.h: Add prototype for `v8plus_regcmp_op'.
* crtstuff.c (fini_dummy, init_dummy): Mark function definitions
with __attribute__ ((__unused__)).
(__frame_dummy): Provide prototype before use, wrap it with
EH_FRAME_SECTION_ASM_OP.
* cse.c: Move inclusion of <setjmp.h> above local headers.
Include toplev.h and output.h.
* dbxout.h: Add prototype for `dbxout_begin_function'.
* final.c (final_scan_insn): Wrap variable `max_skip' in macro
ASM_OUTPUT_MAX_SKIP_ALIGN.
* gcse.c: Include system.h and output.h.
(dump_cuid_table, dump_rd_table, dump_cprop_data, dump_pre_data):
Make extern instead of static.
(compute_can_copy): Only declare variables `reg' and `insn' when
AVOID_CCMODE_COPIES is not defined.
(record_set_info): Mark parameter `setter' with ATTRIBUTE_UNUSED.
(hash_scan_clobber): Likewise for `x' and `insn'.
(hash_scan_call): Likewise.
(record_last_set_info): Likewise for `setter'.
(mark_call): Likewise for `pat'.
(pre_insert_insn): Wrap variable `note' in macro HAVE_cc0.
* libgcc2.c (__bb_init_prg): Replace bzero with memset and fix the
length parameter so that it multiplies the number of elements by
the sizeof(element).
* output.h: Add prototype for `weak_finish'.
* recog.h: Likewise for `validate_replace_src'.
* rtl.h: Likewise for `optimize_save_area_alloca',
`fix_sched_param', `purge_addressof', `gcse_main',
`regmove_optimize', `dbr_schedule', `branch_prob' and
`end_branch_prob'.
* toplev.h: Likewise for `set_float_handler' and
`output_quoted_string'.
* varasm.c: Include dbxout.h.
From-SVN: r20351
1998-06-08 14:30:27 -04:00
|
|
|
|
/* In explow.c */
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx plus_constant_wide PROTO((rtx, HOST_WIDE_INT));
|
|
|
|
|
extern rtx plus_constant_for_output_wide PROTO((rtx, HOST_WIDE_INT));
|
Warning fixes:
* Makefile.in (varasm.o): Depend on dbxout.h.
(cse.o): Depend on toplev.h and output.h.
(gcse.o): Depend on output.h.
* mips.c: Include system.h and toplev.h and remove redundant code.
Include output.h after tree.h so all its prototypes get activated.
* mips.md (table_jump): Remove unused variable `dest'.
* sparc.h: Add prototype for `v8plus_regcmp_op'.
* crtstuff.c (fini_dummy, init_dummy): Mark function definitions
with __attribute__ ((__unused__)).
(__frame_dummy): Provide prototype before use, wrap it with
EH_FRAME_SECTION_ASM_OP.
* cse.c: Move inclusion of <setjmp.h> above local headers.
Include toplev.h and output.h.
* dbxout.h: Add prototype for `dbxout_begin_function'.
* final.c (final_scan_insn): Wrap variable `max_skip' in macro
ASM_OUTPUT_MAX_SKIP_ALIGN.
* gcse.c: Include system.h and output.h.
(dump_cuid_table, dump_rd_table, dump_cprop_data, dump_pre_data):
Make extern instead of static.
(compute_can_copy): Only declare variables `reg' and `insn' when
AVOID_CCMODE_COPIES is not defined.
(record_set_info): Mark parameter `setter' with ATTRIBUTE_UNUSED.
(hash_scan_clobber): Likewise for `x' and `insn'.
(hash_scan_call): Likewise.
(record_last_set_info): Likewise for `setter'.
(mark_call): Likewise for `pat'.
(pre_insert_insn): Wrap variable `note' in macro HAVE_cc0.
* libgcc2.c (__bb_init_prg): Replace bzero with memset and fix the
length parameter so that it multiplies the number of elements by
the sizeof(element).
* output.h: Add prototype for `weak_finish'.
* recog.h: Likewise for `validate_replace_src'.
* rtl.h: Likewise for `optimize_save_area_alloca',
`fix_sched_param', `purge_addressof', `gcse_main',
`regmove_optimize', `dbr_schedule', `branch_prob' and
`end_branch_prob'.
* toplev.h: Likewise for `set_float_handler' and
`output_quoted_string'.
* varasm.c: Include dbxout.h.
From-SVN: r20351
1998-06-08 14:30:27 -04:00
|
|
|
|
extern void optimize_save_area_alloca PROTO((rtx));
|
1992-07-06 16:04:00 -04:00
|
|
|
|
|
1994-03-11 07:58:05 -05:00
|
|
|
|
extern rtx gen_rtx PVPROTO((enum rtx_code,
|
|
|
|
|
enum machine_mode, ...));
|
|
|
|
|
extern rtvec gen_rtvec PVPROTO((int, ...));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
|
1997-11-02 16:19:36 -05:00
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern rtx read_rtx PROTO((FILE *));
|
|
|
|
|
#endif
|
1992-08-08 11:19:34 -04:00
|
|
|
|
|
|
|
|
|
extern char *oballoc PROTO((int));
|
|
|
|
|
extern char *permalloc PROTO((int));
|
|
|
|
|
extern rtx rtx_alloc PROTO((RTX_CODE));
|
|
|
|
|
extern rtvec rtvec_alloc PROTO((int));
|
|
|
|
|
extern rtx copy_rtx PROTO((rtx));
|
|
|
|
|
extern rtx copy_rtx_if_shared PROTO((rtx));
|
|
|
|
|
extern rtx copy_most_rtx PROTO((rtx, rtx));
|
1999-03-22 08:11:31 -05:00
|
|
|
|
extern rtx shallow_copy_rtx PROTO((rtx));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtvec gen_rtvec_v PROTO((int, rtx *));
|
1996-11-15 13:39:34 -05:00
|
|
|
|
extern rtvec gen_rtvec_vv PROTO((int, rtunion *));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx gen_reg_rtx PROTO((enum machine_mode));
|
|
|
|
|
extern rtx gen_label_rtx PROTO((void));
|
1995-03-08 17:29:20 -05:00
|
|
|
|
extern rtx gen_inline_header_rtx PROTO((rtx, rtx, int, int, int, int,
|
|
|
|
|
int, int, rtx, rtx, int, int,
|
1995-12-27 15:26:07 -05:00
|
|
|
|
rtvec, rtx,
|
1997-11-02 16:19:36 -05:00
|
|
|
|
rtvec, char *, char *, rtvec));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx gen_lowpart_common PROTO((enum machine_mode, rtx));
|
|
|
|
|
extern rtx gen_lowpart PROTO((enum machine_mode, rtx));
|
|
|
|
|
extern rtx gen_lowpart_if_possible PROTO((enum machine_mode, rtx));
|
1992-09-09 02:45:00 -04:00
|
|
|
|
extern rtx gen_highpart PROTO((enum machine_mode, rtx));
|
1992-10-03 01:35:44 -04:00
|
|
|
|
extern rtx gen_realpart PROTO((enum machine_mode, rtx));
|
|
|
|
|
extern rtx gen_imagpart PROTO((enum machine_mode, rtx));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx operand_subword PROTO((rtx, int, int, enum machine_mode));
|
|
|
|
|
extern rtx operand_subword_force PROTO((rtx, int, enum machine_mode));
|
|
|
|
|
extern int subreg_lowpart_p PROTO((rtx));
|
|
|
|
|
extern rtx make_safe_from PROTO((rtx, rtx));
|
1995-04-07 12:36:20 -04:00
|
|
|
|
extern rtx convert_memory_address PROTO((enum machine_mode, rtx));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx memory_address PROTO((enum machine_mode, rtx));
|
|
|
|
|
extern rtx get_insns PROTO((void));
|
|
|
|
|
extern rtx get_last_insn PROTO((void));
|
|
|
|
|
extern rtx get_last_insn_anywhere PROTO((void));
|
|
|
|
|
extern void start_sequence PROTO((void));
|
|
|
|
|
extern void push_to_sequence PROTO((rtx));
|
|
|
|
|
extern void end_sequence PROTO((void));
|
|
|
|
|
extern rtx gen_sequence PROTO((void));
|
|
|
|
|
extern rtx immed_double_const PROTO((HOST_WIDE_INT, HOST_WIDE_INT, enum machine_mode));
|
|
|
|
|
extern rtx force_const_mem PROTO((enum machine_mode, rtx));
|
|
|
|
|
extern rtx force_reg PROTO((enum machine_mode, rtx));
|
|
|
|
|
extern rtx get_pool_constant PROTO((rtx));
|
|
|
|
|
extern enum machine_mode get_pool_mode PROTO((rtx));
|
|
|
|
|
extern int get_pool_offset PROTO((rtx));
|
1992-10-12 04:27:35 -04:00
|
|
|
|
extern rtx simplify_subtraction PROTO((rtx));
|
1998-04-04 08:32:39 -05:00
|
|
|
|
extern rtx assign_stack_local PROTO((enum machine_mode,
|
|
|
|
|
HOST_WIDE_INT, int));
|
|
|
|
|
extern rtx assign_stack_temp PROTO((enum machine_mode,
|
|
|
|
|
HOST_WIDE_INT, int));
|
|
|
|
|
extern rtx assign_temp PROTO((union tree_node *,
|
|
|
|
|
int, int, int));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx protect_from_queue PROTO((rtx, int));
|
|
|
|
|
extern void emit_queue PROTO((void));
|
|
|
|
|
extern rtx emit_move_insn PROTO((rtx, rtx));
|
|
|
|
|
extern rtx emit_insn_before PROTO((rtx, rtx));
|
|
|
|
|
extern rtx emit_jump_insn_before PROTO((rtx, rtx));
|
|
|
|
|
extern rtx emit_call_insn_before PROTO((rtx, rtx));
|
|
|
|
|
extern rtx emit_barrier_before PROTO((rtx));
|
1999-02-25 18:45:42 -05:00
|
|
|
|
extern rtx emit_label_before PROTO((rtx, rtx));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx emit_note_before PROTO((int, rtx));
|
|
|
|
|
extern rtx emit_insn_after PROTO((rtx, rtx));
|
|
|
|
|
extern rtx emit_jump_insn_after PROTO((rtx, rtx));
|
|
|
|
|
extern rtx emit_barrier_after PROTO((rtx));
|
|
|
|
|
extern rtx emit_label_after PROTO((rtx, rtx));
|
|
|
|
|
extern rtx emit_note_after PROTO((int, rtx));
|
|
|
|
|
extern rtx emit_line_note_after PROTO((char *, int, rtx));
|
|
|
|
|
extern rtx emit_insn PROTO((rtx));
|
|
|
|
|
extern rtx emit_insns PROTO((rtx));
|
|
|
|
|
extern rtx emit_insns_before PROTO((rtx, rtx));
|
1995-03-18 16:41:25 -05:00
|
|
|
|
extern rtx emit_insns_after PROTO((rtx, rtx));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx emit_jump_insn PROTO((rtx));
|
|
|
|
|
extern rtx emit_call_insn PROTO((rtx));
|
|
|
|
|
extern rtx emit_label PROTO((rtx));
|
|
|
|
|
extern rtx emit_barrier PROTO((void));
|
|
|
|
|
extern rtx emit_line_note PROTO((char *, int));
|
|
|
|
|
extern rtx emit_note PROTO((char *, int));
|
|
|
|
|
extern rtx emit_line_note_force PROTO((char *, int));
|
|
|
|
|
extern rtx make_insn_raw PROTO((rtx));
|
|
|
|
|
extern rtx previous_insn PROTO((rtx));
|
|
|
|
|
extern rtx next_insn PROTO((rtx));
|
|
|
|
|
extern rtx prev_nonnote_insn PROTO((rtx));
|
|
|
|
|
extern rtx next_nonnote_insn PROTO((rtx));
|
|
|
|
|
extern rtx prev_real_insn PROTO((rtx));
|
|
|
|
|
extern rtx next_real_insn PROTO((rtx));
|
|
|
|
|
extern rtx prev_active_insn PROTO((rtx));
|
|
|
|
|
extern rtx next_active_insn PROTO((rtx));
|
|
|
|
|
extern rtx prev_label PROTO((rtx));
|
|
|
|
|
extern rtx next_label PROTO((rtx));
|
|
|
|
|
extern rtx next_cc0_user PROTO((rtx));
|
|
|
|
|
extern rtx prev_cc0_setter PROTO((rtx));
|
|
|
|
|
extern rtx next_nondeleted_insn PROTO((rtx));
|
|
|
|
|
extern enum rtx_code reverse_condition PROTO((enum rtx_code));
|
|
|
|
|
extern enum rtx_code swap_condition PROTO((enum rtx_code));
|
|
|
|
|
extern enum rtx_code unsigned_condition PROTO((enum rtx_code));
|
|
|
|
|
extern enum rtx_code signed_condition PROTO((enum rtx_code));
|
|
|
|
|
extern rtx find_equiv_reg PROTO((rtx, rtx, enum reg_class, int, short *, int, enum machine_mode));
|
|
|
|
|
extern rtx squeeze_notes PROTO((rtx, rtx));
|
|
|
|
|
extern rtx delete_insn PROTO((rtx));
|
|
|
|
|
extern void delete_jump PROTO((rtx));
|
|
|
|
|
extern rtx get_label_before PROTO((rtx));
|
|
|
|
|
extern rtx get_label_after PROTO((rtx));
|
|
|
|
|
extern rtx follow_jumps PROTO((rtx));
|
|
|
|
|
extern rtx adj_offsettable_operand PROTO((rtx, int));
|
|
|
|
|
extern rtx try_split PROTO((rtx, rtx, int));
|
|
|
|
|
extern rtx split_insns PROTO((rtx, rtx));
|
|
|
|
|
extern rtx simplify_unary_operation PROTO((enum rtx_code, enum machine_mode, rtx, enum machine_mode));
|
|
|
|
|
extern rtx simplify_binary_operation PROTO((enum rtx_code, enum machine_mode, rtx, rtx));
|
|
|
|
|
extern rtx simplify_ternary_operation PROTO((enum rtx_code, enum machine_mode, enum machine_mode, rtx, rtx, rtx));
|
|
|
|
|
extern rtx simplify_relational_operation PROTO((enum rtx_code, enum machine_mode, rtx, rtx));
|
|
|
|
|
extern rtx gen_move_insn PROTO((rtx, rtx));
|
|
|
|
|
extern rtx gen_jump PROTO((rtx));
|
|
|
|
|
extern rtx gen_beq PROTO((rtx));
|
|
|
|
|
extern rtx gen_bge PROTO((rtx));
|
|
|
|
|
extern rtx gen_ble PROTO((rtx));
|
1997-11-02 16:19:36 -05:00
|
|
|
|
extern rtx gen_mem_addressof PROTO((rtx, union tree_node *));
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx eliminate_constant_term PROTO((rtx, rtx *));
|
1992-10-03 10:47:33 -04:00
|
|
|
|
extern rtx expand_complex_abs PROTO((enum machine_mode, rtx, rtx, int));
|
1994-04-19 23:33:53 -04:00
|
|
|
|
extern enum machine_mode choose_hard_reg_mode PROTO((int, int));
|
1999-03-25 07:04:22 -05:00
|
|
|
|
extern void set_unique_reg_note PROTO((rtx, enum reg_note, rtx));
|
* Integrate alias analysis changes from jfc@mit.edu
* Makefile.in (OBJS): Add alias.o
(alias.o): Add dependencies.
* alias.c: New file.
* sched.c: Remove alias analysis code. It lives in alias.c now.
(reg_last_uses_size): Declare.
(sched_analyze_2): Add new arguments to true_dependence.
(sched_analyze_insn): Use reg_last_uses_size instead of max_reg.
(schedule_block): Initialize reg_last_uses_size.
(schedule_insns): Always call init_alias_analysis.
* calls.c (expand_call): Note calls to malloc, calloc, and realloc;
mark return value from such functions as a pointer and keep track of
them for alias analysis. If a return value from a function is a
pointer, mark it as such.
* combine.c (distribute_notes): Handle REG_NOALIAS.
* cse.c (struct write_data): Delete. No longer needed.
(invalidate): Don't call set_nonvarying_address_components anymore.
Use true_dependence to decide if an entry should be removed from
the hash table.
(invalidate_memory): Remove WRITES argument, simplify appropriately.
Fix all callers.
(note_mem_written): Similarly for WRITE_PTR argument.
(invalidate_from_clobbers): Similarly for W argument.
(invalidate_for_call): Remove memory elements from the hash table.
(refers_to_mem_p, cse_rtx_addr_varies_p): Deleted.
(cse_rtx_varies_p): New function. Derived from old
cse_rtx_addr_varies_p.
(cse_insn): Remove WRITES_MEMORY and INIT variables and all references.
Don't call note_mem_written anymore. Stack pushes invalidate the stack
pointer if PUSH_ROUNDING is defined. No longer need to call
cse_rtx_addr_varies_p to decide if a MEM should be invalidated.
(skipped_writes_memory): Remove variable.
(invalidate_skipped_set): Simplify and wewrite to use invalidate_memory.
(invalidate_skipped_block): Simplify for new alias analysis code.
(cse_set_around_loop): Likewise.
(cse_main): Call init_alias_analysis.
* flags.h (flag_alias_check, flag_argument_noalias): Declare.
* toplev.c (flag_alias_check, flag_argument_noalias): Define.
(f_options): Add new alias checking arguments.
(main): Set flag_alias_check when optimizing.
* local_alloc (validate_equiv_mem_from_store): Add new arguments
to true_dependence.
(memref_referenced_p): Likewise.
* loop.c (NUM_STORES): Increase to 30.
(prescan_loop): Only non-constant calls set unknown_address_altered.
(invariant_p): Add new arguments to true_dependence.
(record_giv): Initialize unrolled and shared fields.
(emit_iv_add_mult): Call record_base_value as needed.
* loop.h (struct induction): Add unrolled and shared fields.
* unroll.c (unroll_loop): Call record_base_value as needed.
(copy_loop_body): Likewise.
(final_biv_value): Likewise.
(final_giv_value): Likewise.
(find_splittable_regs): Likewise. Only create one new pseudo
if we have multiple address GIVs that were combined with the same
dst_reg GIV. Note when a new register is created due to unrolling.
* rtl.c (reg_note_name): Add REG_NOALIAS.
* rtl.h (enum reg_note): Similarly.
(rtx_varies_p, may_trap_p, side_effects_p): Declare.
(volatile_refs_p, volatile_insn_p, remove_note): Likewise.
(note_stores, refers_to_regno_p, reg_overlap_mentioned_p): Likewise.
(true_dependence, read_dependence, anti_dependence): Likewise.
(output_dependence, init_alias_analysis, end_alias_analysis): Likewise.
(mark_user_reg, mark_reg_pointer): Likewise.
jfc's alias analysis code.
From-SVN: r14768
1997-08-11 16:07:24 -04:00
|
|
|
|
|
1997-11-02 16:19:36 -05:00
|
|
|
|
/* Functions in rtlanal.c */
|
|
|
|
|
|
|
|
|
|
extern int rtx_unstable_p PROTO((rtx));
|
|
|
|
|
extern int rtx_varies_p PROTO((rtx));
|
|
|
|
|
extern int rtx_addr_varies_p PROTO((rtx));
|
|
|
|
|
extern HOST_WIDE_INT get_integer_term PROTO((rtx));
|
|
|
|
|
extern rtx get_related_value PROTO((rtx));
|
|
|
|
|
extern int reg_mentioned_p PROTO((rtx, rtx));
|
|
|
|
|
extern int reg_referenced_p PROTO((rtx, rtx));
|
|
|
|
|
extern int reg_used_between_p PROTO((rtx, rtx, rtx));
|
|
|
|
|
extern int reg_referenced_between_p PROTO((rtx, rtx, rtx));
|
|
|
|
|
extern int reg_set_between_p PROTO((rtx, rtx, rtx));
|
1998-11-25 19:21:27 -05:00
|
|
|
|
extern int regs_set_between_p PROTO((rtx, rtx, rtx));
|
1997-11-02 16:19:36 -05:00
|
|
|
|
extern int modified_between_p PROTO((rtx, rtx, rtx));
|
|
|
|
|
extern int no_labels_between_p PROTO((rtx, rtx));
|
rtl.h (insn_first_p): Declare.
* rtl.h (insn_first_p): Declare.
* rtlanal.c (insn_first_p): New function.
* loop.h (varray.h): Include.
(struct induction): Change combined_with to unsigned.
New members derived, ix and last_use.
(reg_iv_type, reg_iv_info): Now varray_type. All references changed.
(REG_IV_TYPE, REG_IV_INFO): Define.
(first_increment_giv, last_increment_giv): Declare.
* loop.c (loop_number_loop_cont): New static variable.
(loop_number_cont_dominator): Likewise.
(reg_iv_type, reg_iv_info): Now varray_type.
(first_increment_giv, last_increment_giv): New variables.
(compute_luids, verify_dominator, find_life_end): New functions.
(cmp_recombine_givs_stats, recombine_givs): Likewise.
(loop_optimize): Allocate loop_number_loop_cont and
loop_number_cont_dominator. Use compute_luids.
(find_and_verify_loops): Initialize loop_number_loop_cont and
loop_number_cont_dominator.
(strength_reduce): Try to find bivs that can be expressed as givs
of another biv, and to convert biv increments into givs.
Call recombine_givs. Handle derived givs.
(record_biv): New argument location. All callers changed.
(record_giv): Initialize derived and last_use fields.
(basic_induction_var): New argument location. All callers changed.
(combine_givs): Don't combine a DEST_REG giv with a DEST_ADDR giv.
Increment combined_with instead of setting to 1.
* unroll.c (derived_regs): New static variable.
(unroll_loop): Initialize it.
Allocate local_regno according to max_reg_num.
(copy_loop_body): Cope with derived givs.
(find_splittable_givs): Check for Givs made from biv increments.
Set derived_regs for givs.
* Makefile.in (stmt.o, loop.o, unroll.o): Depend on loop.h .
From-SVN: r24889
1999-01-27 10:45:50 -05:00
|
|
|
|
extern int no_jumps_between_p PROTO((rtx, rtx));
|
1997-11-02 16:19:36 -05:00
|
|
|
|
extern int modified_in_p PROTO((rtx, rtx));
|
|
|
|
|
extern int reg_set_p PROTO((rtx, rtx));
|
|
|
|
|
extern rtx single_set PROTO((rtx));
|
1998-12-13 19:42:38 -05:00
|
|
|
|
extern int multiple_sets PROTO((rtx));
|
1999-02-22 09:11:58 -05:00
|
|
|
|
extern rtx find_last_value PROTO((rtx, rtx *, rtx, int));
|
1997-11-02 16:19:36 -05:00
|
|
|
|
extern int refers_to_regno_p PROTO((int, int, rtx, rtx *));
|
|
|
|
|
extern int reg_overlap_mentioned_p PROTO((rtx, rtx));
|
1999-03-28 12:33:22 -05:00
|
|
|
|
extern void note_stores PROTO((rtx, void (*)(rtx, rtx)));
|
1997-11-02 16:19:36 -05:00
|
|
|
|
extern rtx reg_set_last PROTO((rtx, rtx));
|
|
|
|
|
extern int rtx_equal_p PROTO((rtx, rtx));
|
|
|
|
|
extern int dead_or_set_p PROTO((rtx, rtx));
|
|
|
|
|
extern int dead_or_set_regno_p PROTO((rtx, int));
|
|
|
|
|
extern rtx find_reg_note PROTO((rtx, enum reg_note, rtx));
|
|
|
|
|
extern rtx find_regno_note PROTO((rtx, enum reg_note, int));
|
|
|
|
|
extern int find_reg_fusage PROTO((rtx, enum rtx_code, rtx));
|
|
|
|
|
extern int find_regno_fusage PROTO((rtx, enum rtx_code, int));
|
|
|
|
|
extern void remove_note PROTO((rtx, rtx));
|
|
|
|
|
extern int side_effects_p PROTO((rtx));
|
|
|
|
|
extern int volatile_refs_p PROTO((rtx));
|
|
|
|
|
extern int volatile_insn_p PROTO((rtx));
|
|
|
|
|
extern int may_trap_p PROTO((rtx));
|
1998-10-13 19:41:11 -04:00
|
|
|
|
extern int inequality_comparisons_p PROTO ((rtx));
|
1997-11-02 16:19:36 -05:00
|
|
|
|
extern rtx replace_rtx PROTO((rtx, rtx, rtx));
|
|
|
|
|
extern rtx replace_regs PROTO((rtx, rtx *, int, int));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern int computed_jump_p PROTO((rtx));
|
1998-08-19 08:30:47 -04:00
|
|
|
|
typedef int (*rtx_function) PROTO((rtx *, void *));
|
|
|
|
|
extern int for_each_rtx PROTO((rtx *, rtx_function, void *));
|
1999-02-02 20:26:55 -05:00
|
|
|
|
extern rtx regno_use_in PROTO((int, rtx));
|
1999-03-14 20:52:49 -05:00
|
|
|
|
extern int auto_inc_p PROTO((rtx));
|
1999-04-11 22:18:55 -04:00
|
|
|
|
extern void remove_node_from_expr_list PROTO((rtx, rtx *));
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1998-10-13 19:41:11 -04:00
|
|
|
|
/* flow.c */
|
|
|
|
|
|
|
|
|
|
extern rtx find_use_as_address PROTO((rtx, rtx, HOST_WIDE_INT));
|
|
|
|
|
|
|
|
|
|
/* regclass.c */
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* Maximum number of parallel sets and clobbers in any insn in this fn.
|
|
|
|
|
Always at least 3, since the combiner could put that many togetherm
|
|
|
|
|
and we want this to remain correct for all the remaining passes. */
|
|
|
|
|
|
|
|
|
|
extern int max_parallel;
|
|
|
|
|
|
1998-10-27 19:06:22 -05:00
|
|
|
|
/* Free up register info memory. */
|
1998-10-28 05:22:48 -05:00
|
|
|
|
extern void free_reg_info PROTO((void));
|
1998-10-27 19:06:22 -05:00
|
|
|
|
|
1998-10-13 19:41:11 -04:00
|
|
|
|
/* recog.c */
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern int asm_noperands PROTO((rtx));
|
final.c (bb_str): Qualify a char* with the keyword `const'.
* final.c (bb_str): Qualify a char* with the keyword `const'.
(add_bb_string, final_scan_insn, output_asm_insn): Likewise.
* fix-header.c (read_scan_file): Likewise.
* genoutput.c (output_epilogue, process_template): Likewise.
* local-alloc.c (requires_inout, block_alloc): Likewise.
* output.h (output_asm_insn, assemble_string): Likewise.
* recog.c (recog_constraints, check_asm_operands,
decode_asm_operands, extract_insn, preprocess_constraints,
constrain_operands): Likewise.
* recog.h (operand_alternative, recog_constraints, insn_template,
insn_outfun, insn_operand_constraint, insn_name): Likewise.
* regclass.c (record_reg_classes, scan_one_insn): Likewise.
* regmove.c (find_matches): Likewise.
* reload.c (alternative_allows_memconst): Likewise.
* reload1.c (constraint_accepts_reg_p,
reload_cse_simplify_operands): Likewise.
* rtl.h (decode_asm_operands): Likewise.
* scan.h (fn_decl): Likewise.
* varasm.c (assemble_string): Likewise.
From-SVN: r24834
1999-01-23 14:45:50 -05:00
|
|
|
|
extern char *decode_asm_operands PROTO((rtx, rtx *, rtx **,
|
|
|
|
|
const char **,
|
|
|
|
|
enum machine_mode *));
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern enum reg_class reg_preferred_class PROTO((int));
|
|
|
|
|
extern enum reg_class reg_alternate_class PROTO((int));
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx get_first_nonparm_insn PROTO((void));
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1999-02-02 20:26:55 -05:00
|
|
|
|
extern void split_block_insns PROTO((int, int));
|
|
|
|
|
extern void update_flow_info PROTO((rtx, rtx, rtx, rtx));
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* Standard pieces of rtx, to be substituted directly into things. */
|
1997-12-11 19:27:40 -05:00
|
|
|
|
#define pc_rtx (&global_rtl.pc_val)
|
|
|
|
|
#define cc0_rtx (&global_rtl.cc0_val)
|
|
|
|
|
|
|
|
|
|
#define MAX_SAVED_CONST_INT 64
|
|
|
|
|
extern struct rtx_def const_int_rtx[MAX_SAVED_CONST_INT * 2 + 1];
|
|
|
|
|
|
|
|
|
|
#define const0_rtx (&const_int_rtx[MAX_SAVED_CONST_INT])
|
|
|
|
|
#define const1_rtx (&const_int_rtx[MAX_SAVED_CONST_INT+1])
|
|
|
|
|
#define const2_rtx (&const_int_rtx[MAX_SAVED_CONST_INT+2])
|
|
|
|
|
#define constm1_rtx (&const_int_rtx[MAX_SAVED_CONST_INT-1])
|
1991-12-06 16:00:31 -05:00
|
|
|
|
extern rtx const_true_rtx;
|
1992-01-15 16:58:02 -05:00
|
|
|
|
|
|
|
|
|
extern rtx const_tiny_rtx[3][(int) MAX_MACHINE_MODE];
|
|
|
|
|
|
|
|
|
|
/* Returns a constant 0 rtx in mode MODE. Integer modes are treated the
|
|
|
|
|
same as VOIDmode. */
|
|
|
|
|
|
|
|
|
|
#define CONST0_RTX(MODE) (const_tiny_rtx[0][(int) (MODE)])
|
|
|
|
|
|
|
|
|
|
/* Likewise, for the constants 1 and 2. */
|
|
|
|
|
|
|
|
|
|
#define CONST1_RTX(MODE) (const_tiny_rtx[1][(int) (MODE)])
|
|
|
|
|
#define CONST2_RTX(MODE) (const_tiny_rtx[2][(int) (MODE)])
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1997-12-11 19:27:40 -05:00
|
|
|
|
extern struct _global_rtl
|
|
|
|
|
{
|
|
|
|
|
struct rtx_def pc_val, cc0_val;
|
|
|
|
|
struct rtx_def stack_pointer_val, frame_pointer_val;
|
|
|
|
|
struct rtx_def hard_frame_pointer_val;
|
|
|
|
|
struct rtx_def arg_pointer_val;
|
|
|
|
|
struct rtx_def virtual_incoming_args_val;
|
|
|
|
|
struct rtx_def virtual_stack_vars_val;
|
|
|
|
|
struct rtx_def virtual_stack_dynamic_val;
|
|
|
|
|
struct rtx_def virtual_outgoing_args_val;
|
tree.h (BUILT_IN_CALLER_RETURN_ADDRESS): Unused.
* tree.h (BUILT_IN_CALLER_RETURN_ADDRESS): Unused. Kill.
(BUILT_IN_FP, BUILT_IN_SP, BUILT_IN_SET_RETURN_ADDR_REG): Kill.
(BUILT_IN_EH_STUB_OLD, BUILT_IN_EH_STUB, BUILT_IN_SET_EH_REGS): Kill.
(BUILT_IN_EH_RETURN, BUILT_IN_DWARF_CFA): New.
* c-decl.c (init_decl_processing): Update accordingly.
* expr.c (expand_builtin): Likewise.
* cp/decl.c (init_decl_processing): Likewise.
* rtl.h (global_rtl): Add cfa entry.
(virtual_cfa_rtx, VIRTUAL_CFA_REGNUM): New.
(LAST_VIRTUAL_REGISTER): Update.
* emit-rtl.c (global_rtl): Add cfa entry.
(init_emit): Initialize it.
* function.c (cfa_offset): New.
(instantiate_virtual_regs): Initialize it.
(instantiate_virtual_regs_1): Instantiate virtual_cfa_rtx.
(expand_function_end): Call expand_eh_return.
* tm.texi (ARG_POINTER_CFA_OFFSET): New.
* except.c (current_function_eh_stub_label): Kill.
(current_function_eh_old_stub_label): Likwise; update all references.
(expand_builtin_set_return_addr_reg): Kill.
(expand_builtin_eh_stub_old, expand_builtin_eh_stub): Kill.
(expand_builtin_set_eh_regs): Kill.
(eh_regs): Produce a third reg for the actual handler address.
(eh_return_context, eh_return_stack_adjust): New.
(eh_return_handler, eh_return_stub_label): New.
(init_eh_for_function): Initialize them.
(expand_builtin_eh_return, expand_eh_return): New.
* except.h: Update prototypes.
* flow.c (find_basic_blocks_1): Update references to the stub label.
* function.h (struct function): Kill stub label elements.
* libgcc2.c (in_reg_window): For REG_SAVED_REG, check that the
register number is one that would be in the previous window.
Provide a dummy definition for non-windowed targets.
(get_reg_addr): New function.
(get_reg, put_reg, copy_reg): Use it.
(__throw): Rely on in_reg_window, not INCOMING_REGNO. Kill stub
generating code and use __builtin_eh_return. Use __builtin_dwarf_cfa.
* alpha.c (alpha_eh_epilogue_sp_ofs): New.
(alpha_init_expanders): Initialize it.
(alpha_expand_epilogue): Use it.
* alpha.h: Declare it.
* alpha.md (eh_epilogue): New.
* m68h.h (ARG_POINTER_CFA_OFFSET): New.
* sparc.h (ARG_POINTER_CFA_OFFSET): New.
From-SVN: r22436
1998-09-15 15:19:12 -04:00
|
|
|
|
struct rtx_def virtual_cfa_val;
|
1997-12-11 19:27:40 -05:00
|
|
|
|
} global_rtl;
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* All references to certain hard regs, except those created
|
|
|
|
|
by allocating pseudo regs into them (when that's possible),
|
|
|
|
|
go through these unique rtx objects. */
|
1997-12-11 19:27:40 -05:00
|
|
|
|
#define stack_pointer_rtx (&global_rtl.stack_pointer_val)
|
|
|
|
|
#define frame_pointer_rtx (&global_rtl.frame_pointer_val)
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
extern rtx pic_offset_table_rtx;
|
|
|
|
|
extern rtx struct_value_rtx;
|
|
|
|
|
extern rtx struct_value_incoming_rtx;
|
|
|
|
|
extern rtx static_chain_rtx;
|
|
|
|
|
extern rtx static_chain_incoming_rtx;
|
1998-09-05 17:57:56 -04:00
|
|
|
|
extern rtx return_address_pointer_rtx;
|
1998-01-08 16:17:05 -05:00
|
|
|
|
|
|
|
|
|
/* Include the RTL generation functions. */
|
|
|
|
|
|
|
|
|
|
#ifndef NO_GENRTL_H
|
|
|
|
|
#include "genrtl.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
1998-06-25 11:14:41 -04:00
|
|
|
|
/* There are some RTL codes that require special attention; the
|
|
|
|
|
generation functions included above do the raw handling. If you
|
1998-06-29 05:44:08 -04:00
|
|
|
|
add to this list, modify special_rtx in gengenrtl.c as well. You
|
|
|
|
|
should also modify gen_rtx to use the special function. */
|
1998-01-08 16:17:05 -05:00
|
|
|
|
|
1999-04-01 12:06:09 -05:00
|
|
|
|
extern rtx gen_rtx_CONST_DOUBLE PROTO((enum machine_mode, rtx,
|
|
|
|
|
HOST_WIDE_INT, HOST_WIDE_INT));
|
1998-01-08 16:17:05 -05:00
|
|
|
|
extern rtx gen_rtx_CONST_INT PROTO((enum machine_mode, HOST_WIDE_INT));
|
|
|
|
|
extern rtx gen_rtx_REG PROTO((enum machine_mode, int));
|
1998-06-25 11:14:41 -04:00
|
|
|
|
extern rtx gen_rtx_MEM PROTO((enum machine_mode, rtx));
|
1998-01-08 16:17:05 -05:00
|
|
|
|
|
1998-04-01 18:18:11 -05:00
|
|
|
|
/* We need the cast here to ensure that we get the same result both with
|
|
|
|
|
and without prototypes. */
|
|
|
|
|
#define GEN_INT(N) gen_rtx_CONST_INT (VOIDmode, (HOST_WIDE_INT) (N))
|
1998-01-08 16:17:05 -05:00
|
|
|
|
|
|
|
|
|
|
1993-09-24 15:36:23 -04:00
|
|
|
|
/* If HARD_FRAME_POINTER_REGNUM is defined, then a special dummy reg
|
|
|
|
|
is used to represent the frame pointer. This is because the
|
|
|
|
|
hard frame pointer and the automatic variables are separated by an amount
|
|
|
|
|
that cannot be determined until after register allocation. We can assume
|
|
|
|
|
that in this case ELIMINABLE_REGS will be defined, one action of which
|
|
|
|
|
will be to eliminate FRAME_POINTER_REGNUM into HARD_FRAME_POINTER_REGNUM. */
|
|
|
|
|
#ifndef HARD_FRAME_POINTER_REGNUM
|
|
|
|
|
#define HARD_FRAME_POINTER_REGNUM FRAME_POINTER_REGNUM
|
|
|
|
|
#endif
|
|
|
|
|
|
1997-12-11 19:27:40 -05:00
|
|
|
|
/* For register elimination to work properly these hard_frame_pointer_rtx,
|
|
|
|
|
frame_pointer_rtx, and arg_pointer_rtx must be the same if they refer to
|
|
|
|
|
the same register. */
|
|
|
|
|
#if HARD_FRAME_POINTER_REGNUM == FRAME_POINTER_REGNUM
|
|
|
|
|
#define hard_frame_pointer_rtx (&global_rtl.frame_pointer_val)
|
|
|
|
|
#else
|
|
|
|
|
#define hard_frame_pointer_rtx (&global_rtl.hard_frame_pointer_val)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if FRAME_POINTER_REGNUM == ARG_POINTER_REGNUM
|
|
|
|
|
#define arg_pointer_rtx (&global_rtl.frame_pointer_val)
|
|
|
|
|
#else
|
1998-01-17 19:01:22 -05:00
|
|
|
|
#if HARD_FRAME_POINTER_REGNUM == ARG_POINTER_REGNUM
|
1997-12-11 19:27:40 -05:00
|
|
|
|
#define arg_pointer_rtx (&global_rtl.hard_frame_pointer_val)
|
|
|
|
|
#else
|
|
|
|
|
#define arg_pointer_rtx (&global_rtl.arg_pointer_val)
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* Virtual registers are used during RTL generation to refer to locations into
|
|
|
|
|
the stack frame when the actual location isn't known until RTL generation
|
|
|
|
|
is complete. The routine instantiate_virtual_regs replaces these with
|
|
|
|
|
the proper value, which is normally {frame,arg,stack}_pointer_rtx plus
|
|
|
|
|
a constant. */
|
|
|
|
|
|
|
|
|
|
#define FIRST_VIRTUAL_REGISTER (FIRST_PSEUDO_REGISTER)
|
|
|
|
|
|
|
|
|
|
/* This points to the first word of the incoming arguments passed on the stack,
|
|
|
|
|
either by the caller or by the callee when pretending it was passed by the
|
|
|
|
|
caller. */
|
|
|
|
|
|
1997-12-11 19:27:40 -05:00
|
|
|
|
#define virtual_incoming_args_rtx (&global_rtl.virtual_incoming_args_val)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
#define VIRTUAL_INCOMING_ARGS_REGNUM (FIRST_VIRTUAL_REGISTER)
|
|
|
|
|
|
1993-06-29 18:15:59 -04:00
|
|
|
|
/* If FRAME_GROWS_DOWNWARD, this points to immediately above the first
|
1991-12-06 16:00:31 -05:00
|
|
|
|
variable on the stack. Otherwise, it points to the first variable on
|
|
|
|
|
the stack. */
|
|
|
|
|
|
1997-12-11 19:27:40 -05:00
|
|
|
|
#define virtual_stack_vars_rtx (&global_rtl.virtual_stack_vars_val)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
#define VIRTUAL_STACK_VARS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 1)
|
|
|
|
|
|
|
|
|
|
/* This points to the location of dynamically-allocated memory on the stack
|
|
|
|
|
immediately after the stack pointer has been adjusted by the amount
|
|
|
|
|
desired. */
|
|
|
|
|
|
1997-12-11 19:27:40 -05:00
|
|
|
|
#define virtual_stack_dynamic_rtx (&global_rtl.virtual_stack_dynamic_val)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
#define VIRTUAL_STACK_DYNAMIC_REGNUM ((FIRST_VIRTUAL_REGISTER) + 2)
|
|
|
|
|
|
|
|
|
|
/* This points to the location in the stack at which outgoing arguments should
|
|
|
|
|
be written when the stack is pre-pushed (arguments pushed using push
|
|
|
|
|
insns always use sp). */
|
|
|
|
|
|
1997-12-11 19:27:40 -05:00
|
|
|
|
#define virtual_outgoing_args_rtx (&global_rtl.virtual_outgoing_args_val)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
#define VIRTUAL_OUTGOING_ARGS_REGNUM ((FIRST_VIRTUAL_REGISTER) + 3)
|
|
|
|
|
|
tree.h (BUILT_IN_CALLER_RETURN_ADDRESS): Unused.
* tree.h (BUILT_IN_CALLER_RETURN_ADDRESS): Unused. Kill.
(BUILT_IN_FP, BUILT_IN_SP, BUILT_IN_SET_RETURN_ADDR_REG): Kill.
(BUILT_IN_EH_STUB_OLD, BUILT_IN_EH_STUB, BUILT_IN_SET_EH_REGS): Kill.
(BUILT_IN_EH_RETURN, BUILT_IN_DWARF_CFA): New.
* c-decl.c (init_decl_processing): Update accordingly.
* expr.c (expand_builtin): Likewise.
* cp/decl.c (init_decl_processing): Likewise.
* rtl.h (global_rtl): Add cfa entry.
(virtual_cfa_rtx, VIRTUAL_CFA_REGNUM): New.
(LAST_VIRTUAL_REGISTER): Update.
* emit-rtl.c (global_rtl): Add cfa entry.
(init_emit): Initialize it.
* function.c (cfa_offset): New.
(instantiate_virtual_regs): Initialize it.
(instantiate_virtual_regs_1): Instantiate virtual_cfa_rtx.
(expand_function_end): Call expand_eh_return.
* tm.texi (ARG_POINTER_CFA_OFFSET): New.
* except.c (current_function_eh_stub_label): Kill.
(current_function_eh_old_stub_label): Likwise; update all references.
(expand_builtin_set_return_addr_reg): Kill.
(expand_builtin_eh_stub_old, expand_builtin_eh_stub): Kill.
(expand_builtin_set_eh_regs): Kill.
(eh_regs): Produce a third reg for the actual handler address.
(eh_return_context, eh_return_stack_adjust): New.
(eh_return_handler, eh_return_stub_label): New.
(init_eh_for_function): Initialize them.
(expand_builtin_eh_return, expand_eh_return): New.
* except.h: Update prototypes.
* flow.c (find_basic_blocks_1): Update references to the stub label.
* function.h (struct function): Kill stub label elements.
* libgcc2.c (in_reg_window): For REG_SAVED_REG, check that the
register number is one that would be in the previous window.
Provide a dummy definition for non-windowed targets.
(get_reg_addr): New function.
(get_reg, put_reg, copy_reg): Use it.
(__throw): Rely on in_reg_window, not INCOMING_REGNO. Kill stub
generating code and use __builtin_eh_return. Use __builtin_dwarf_cfa.
* alpha.c (alpha_eh_epilogue_sp_ofs): New.
(alpha_init_expanders): Initialize it.
(alpha_expand_epilogue): Use it.
* alpha.h: Declare it.
* alpha.md (eh_epilogue): New.
* m68h.h (ARG_POINTER_CFA_OFFSET): New.
* sparc.h (ARG_POINTER_CFA_OFFSET): New.
From-SVN: r22436
1998-09-15 15:19:12 -04:00
|
|
|
|
/* This points to the Canonical Frame Address of the function. This
|
|
|
|
|
should corrospond to the CFA produced by INCOMING_FRAME_SP_OFFSET,
|
|
|
|
|
but is calculated relative to the arg pointer for simplicity; the
|
|
|
|
|
frame pointer nor stack pointer are necessarily fixed relative to
|
|
|
|
|
the CFA until after reload. */
|
|
|
|
|
|
|
|
|
|
#define virtual_cfa_rtx (&global_rtl.virtual_cfa_val)
|
|
|
|
|
|
|
|
|
|
#define VIRTUAL_CFA_REGNUM ((FIRST_VIRTUAL_REGISTER) + 4)
|
|
|
|
|
|
|
|
|
|
#define LAST_VIRTUAL_REGISTER ((FIRST_VIRTUAL_REGISTER) + 4)
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
1992-08-08 11:19:34 -04:00
|
|
|
|
extern rtx find_next_ref PROTO((rtx, rtx));
|
|
|
|
|
extern rtx *find_single_use PROTO((rtx, rtx, rtx *));
|
|
|
|
|
|
1994-04-21 15:23:14 -04:00
|
|
|
|
extern rtx output_constant_def PROTO((union tree_node *));
|
|
|
|
|
extern rtx immed_real_const PROTO((union tree_node *));
|
|
|
|
|
extern union tree_node *make_tree PROTO((union tree_node *, rtx));
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
/* Define a default value for STORE_FLAG_VALUE. */
|
|
|
|
|
|
|
|
|
|
#ifndef STORE_FLAG_VALUE
|
|
|
|
|
#define STORE_FLAG_VALUE 1
|
|
|
|
|
#endif
|
|
|
|
|
|
1998-11-04 15:45:01 -05:00
|
|
|
|
/* Nonzero after the second flow pass has completed.
|
|
|
|
|
Set to 1 or 0 by toplev.c */
|
|
|
|
|
extern int flow2_completed;
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* Nonzero after end of reload pass.
|
1998-11-04 15:45:01 -05:00
|
|
|
|
Set to 1 or 0 by reload1.c. */
|
1991-12-06 16:00:31 -05:00
|
|
|
|
|
|
|
|
|
extern int reload_completed;
|
|
|
|
|
|
|
|
|
|
/* Set to 1 while reload_as_needed is operating.
|
|
|
|
|
Required by some machines to handle any generated moves differently. */
|
|
|
|
|
|
|
|
|
|
extern int reload_in_progress;
|
|
|
|
|
|
|
|
|
|
/* If this is nonzero, we do not bother generating VOLATILE
|
|
|
|
|
around volatile memory references, and we are willing to
|
|
|
|
|
output indirect addresses. If cse is to follow, we reject
|
|
|
|
|
indirect addresses so a useful potential cse is generated;
|
|
|
|
|
if it is used only once, instruction combination will produce
|
|
|
|
|
the same indirect address eventually. */
|
|
|
|
|
extern int cse_not_expected;
|
|
|
|
|
|
1998-11-25 05:31:24 -05:00
|
|
|
|
/* Set to nonzero before life analysis to indicate that it is unsafe to
|
|
|
|
|
generate any new pseudo registers. */
|
|
|
|
|
extern int no_new_pseudos;
|
|
|
|
|
|
1991-12-06 16:00:31 -05:00
|
|
|
|
/* Indexed by pseudo register number, gives the rtx for that pseudo.
|
|
|
|
|
Allocated in parallel with regno_pointer_flag. */
|
|
|
|
|
extern rtx *regno_reg_rtx;
|
1993-03-31 00:54:38 -05:00
|
|
|
|
|
1997-12-11 19:27:40 -05:00
|
|
|
|
/* Vector indexed by regno; contain the alignment in bytes and type
|
|
|
|
|
pointed to for a register that contains a pointer, if known. */
|
1996-01-31 09:45:20 -05:00
|
|
|
|
extern char *regno_pointer_align;
|
|
|
|
|
#define REGNO_POINTER_ALIGN(REGNO) regno_pointer_align[REGNO]
|
|
|
|
|
|
1993-03-31 00:54:38 -05:00
|
|
|
|
/* Translates rtx code to tree code, for those codes needed by
|
1994-04-21 15:23:14 -04:00
|
|
|
|
REAL_ARITHMETIC. The function returns an int because the caller may not
|
|
|
|
|
know what `enum tree_code' means. */
|
|
|
|
|
|
|
|
|
|
extern int rtx_to_tree_code PROTO((enum rtx_code));
|
* Integrate alias analysis changes from jfc@mit.edu
* Makefile.in (OBJS): Add alias.o
(alias.o): Add dependencies.
* alias.c: New file.
* sched.c: Remove alias analysis code. It lives in alias.c now.
(reg_last_uses_size): Declare.
(sched_analyze_2): Add new arguments to true_dependence.
(sched_analyze_insn): Use reg_last_uses_size instead of max_reg.
(schedule_block): Initialize reg_last_uses_size.
(schedule_insns): Always call init_alias_analysis.
* calls.c (expand_call): Note calls to malloc, calloc, and realloc;
mark return value from such functions as a pointer and keep track of
them for alias analysis. If a return value from a function is a
pointer, mark it as such.
* combine.c (distribute_notes): Handle REG_NOALIAS.
* cse.c (struct write_data): Delete. No longer needed.
(invalidate): Don't call set_nonvarying_address_components anymore.
Use true_dependence to decide if an entry should be removed from
the hash table.
(invalidate_memory): Remove WRITES argument, simplify appropriately.
Fix all callers.
(note_mem_written): Similarly for WRITE_PTR argument.
(invalidate_from_clobbers): Similarly for W argument.
(invalidate_for_call): Remove memory elements from the hash table.
(refers_to_mem_p, cse_rtx_addr_varies_p): Deleted.
(cse_rtx_varies_p): New function. Derived from old
cse_rtx_addr_varies_p.
(cse_insn): Remove WRITES_MEMORY and INIT variables and all references.
Don't call note_mem_written anymore. Stack pushes invalidate the stack
pointer if PUSH_ROUNDING is defined. No longer need to call
cse_rtx_addr_varies_p to decide if a MEM should be invalidated.
(skipped_writes_memory): Remove variable.
(invalidate_skipped_set): Simplify and wewrite to use invalidate_memory.
(invalidate_skipped_block): Simplify for new alias analysis code.
(cse_set_around_loop): Likewise.
(cse_main): Call init_alias_analysis.
* flags.h (flag_alias_check, flag_argument_noalias): Declare.
* toplev.c (flag_alias_check, flag_argument_noalias): Define.
(f_options): Add new alias checking arguments.
(main): Set flag_alias_check when optimizing.
* local_alloc (validate_equiv_mem_from_store): Add new arguments
to true_dependence.
(memref_referenced_p): Likewise.
* loop.c (NUM_STORES): Increase to 30.
(prescan_loop): Only non-constant calls set unknown_address_altered.
(invariant_p): Add new arguments to true_dependence.
(record_giv): Initialize unrolled and shared fields.
(emit_iv_add_mult): Call record_base_value as needed.
* loop.h (struct induction): Add unrolled and shared fields.
* unroll.c (unroll_loop): Call record_base_value as needed.
(copy_loop_body): Likewise.
(final_biv_value): Likewise.
(final_giv_value): Likewise.
(find_splittable_regs): Likewise. Only create one new pseudo
if we have multiple address GIVs that were combined with the same
dst_reg GIV. Note when a new register is created due to unrolling.
* rtl.c (reg_note_name): Add REG_NOALIAS.
* rtl.h (enum reg_note): Similarly.
(rtx_varies_p, may_trap_p, side_effects_p): Declare.
(volatile_refs_p, volatile_insn_p, remove_note): Likewise.
(note_stores, refers_to_regno_p, reg_overlap_mentioned_p): Likewise.
(true_dependence, read_dependence, anti_dependence): Likewise.
(output_dependence, init_alias_analysis, end_alias_analysis): Likewise.
(mark_user_reg, mark_reg_pointer): Likewise.
jfc's alias analysis code.
From-SVN: r14768
1997-08-11 16:07:24 -04:00
|
|
|
|
|
1997-12-09 03:20:07 -05:00
|
|
|
|
/* In tree.c */
|
|
|
|
|
extern void obfree PROTO ((char *));
|
|
|
|
|
struct obstack;
|
|
|
|
|
extern void gcc_obstack_init PROTO ((struct obstack *));
|
|
|
|
|
extern void pop_obstacks PROTO ((void));
|
|
|
|
|
extern void push_obstacks PROTO ((struct obstack *,
|
|
|
|
|
struct obstack *));
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern int read_skip_spaces PROTO ((FILE *));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* In cse.c */
|
|
|
|
|
struct cse_basic_block_data;
|
|
|
|
|
extern int rtx_cost PROTO ((rtx, enum rtx_code));
|
1998-04-10 20:28:07 -04:00
|
|
|
|
extern void delete_trivially_dead_insns PROTO ((rtx, int));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern int cse_main PROTO ((rtx, int, int, FILE *));
|
|
|
|
|
#endif
|
|
|
|
|
extern void cse_end_of_basic_block PROTO ((rtx,
|
|
|
|
|
struct cse_basic_block_data *,
|
|
|
|
|
int, int, int));
|
|
|
|
|
|
|
|
|
|
/* In jump.c */
|
|
|
|
|
extern int comparison_dominates_p PROTO ((enum rtx_code, enum rtx_code));
|
|
|
|
|
extern int condjump_p PROTO ((rtx));
|
1999-01-19 16:30:48 -05:00
|
|
|
|
extern rtx condjump_label PROTO ((rtx));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern int simplejump_p PROTO ((rtx));
|
1999-02-25 18:45:42 -05:00
|
|
|
|
extern int returnjump_p PROTO ((rtx));
|
1998-10-16 04:57:03 -04:00
|
|
|
|
extern int sets_cc0_p PROTO ((rtx));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern int invert_jump PROTO ((rtx, rtx));
|
|
|
|
|
extern int rtx_renumbered_equal_p PROTO ((rtx, rtx));
|
|
|
|
|
extern int true_regnum PROTO ((rtx));
|
|
|
|
|
extern int redirect_jump PROTO ((rtx, rtx));
|
|
|
|
|
extern void jump_optimize PROTO ((rtx, int, int, int));
|
1999-04-10 00:17:51 -04:00
|
|
|
|
extern void rebuild_jump_labels PROTO ((rtx));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern void thread_jumps PROTO ((rtx, int, int));
|
|
|
|
|
extern int redirect_exp PROTO ((rtx *, rtx, rtx, rtx));
|
|
|
|
|
extern int rtx_equal_for_thread_p PROTO ((rtx, rtx, rtx));
|
|
|
|
|
extern int invert_exp PROTO ((rtx, rtx));
|
|
|
|
|
extern int can_reverse_comparison_p PROTO ((rtx, rtx));
|
|
|
|
|
extern void delete_for_peephole PROTO ((rtx, rtx));
|
|
|
|
|
extern int condjump_in_parallel_p PROTO ((rtx));
|
|
|
|
|
|
1998-04-27 02:05:55 -04:00
|
|
|
|
/* Flags for jump_optimize() */
|
|
|
|
|
#define JUMP_CROSS_JUMP 1
|
|
|
|
|
#define JUMP_NOOP_MOVES 1
|
|
|
|
|
#define JUMP_AFTER_REGSCAN 1
|
|
|
|
|
|
1997-12-09 03:20:07 -05:00
|
|
|
|
/* In emit-rtl.c. */
|
|
|
|
|
extern int max_reg_num PROTO ((void));
|
|
|
|
|
extern int max_label_num PROTO ((void));
|
|
|
|
|
extern int get_first_label_num PROTO ((void));
|
|
|
|
|
extern void delete_insns_since PROTO ((rtx));
|
|
|
|
|
extern void mark_reg_pointer PROTO ((rtx, int));
|
|
|
|
|
extern void mark_user_reg PROTO ((rtx));
|
|
|
|
|
extern void reset_used_flags PROTO ((rtx));
|
|
|
|
|
extern void reorder_insns PROTO ((rtx, rtx, rtx));
|
|
|
|
|
extern int get_max_uid PROTO ((void));
|
|
|
|
|
extern int in_sequence_p PROTO ((void));
|
|
|
|
|
extern void force_next_line_note PROTO ((void));
|
|
|
|
|
extern void init_emit PROTO ((void));
|
|
|
|
|
extern void init_emit_once PROTO ((int));
|
|
|
|
|
extern void push_topmost_sequence PROTO ((void));
|
|
|
|
|
extern void pop_topmost_sequence PROTO ((void));
|
|
|
|
|
extern int subreg_realpart_p PROTO ((rtx));
|
|
|
|
|
extern void reverse_comparison PROTO ((rtx));
|
|
|
|
|
extern void set_new_first_and_last_insn PROTO ((rtx, rtx));
|
|
|
|
|
extern void set_new_first_and_last_label_num PROTO ((int, int));
|
|
|
|
|
extern void unshare_all_rtl PROTO ((rtx));
|
|
|
|
|
extern void set_last_insn PROTO ((rtx));
|
|
|
|
|
extern void link_cc0_insns PROTO ((rtx));
|
|
|
|
|
extern void add_insn PROTO ((rtx));
|
|
|
|
|
extern void add_insn_before PROTO ((rtx, rtx));
|
|
|
|
|
extern void add_insn_after PROTO ((rtx, rtx));
|
1999-01-29 10:25:17 -05:00
|
|
|
|
extern void remove_insn PROTO ((rtx));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern void reorder_insns_with_line_notes PROTO ((rtx, rtx, rtx));
|
|
|
|
|
extern void emit_insn_after_with_line_notes PROTO ((rtx, rtx, rtx));
|
|
|
|
|
extern enum rtx_code classify_insn PROTO ((rtx));
|
1998-09-23 19:28:17 -04:00
|
|
|
|
extern void init_virtual_regs PROTO ((void));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern rtx emit PROTO ((rtx));
|
1998-02-17 05:26:44 -05:00
|
|
|
|
/* Query and clear/ restore no_line_numbers. This is used by the
|
|
|
|
|
switch / case handling in stmt.c to give proper line numbers in
|
|
|
|
|
warnings about unreachable code. */
|
|
|
|
|
int force_line_numbers PROTO((void));
|
|
|
|
|
void restore_line_number_status PROTO((int old_value));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
|
|
|
|
|
/* In insn-emit.c */
|
|
|
|
|
extern void add_clobbers PROTO ((rtx, int));
|
|
|
|
|
|
|
|
|
|
/* In combine.c */
|
|
|
|
|
extern void combine_instructions PROTO ((rtx, int));
|
|
|
|
|
extern int extended_count PROTO ((rtx, enum machine_mode, int));
|
|
|
|
|
extern rtx remove_death PROTO ((int, rtx));
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void dump_combine_stats PROTO ((FILE *));
|
|
|
|
|
extern void dump_combine_total_stats PROTO ((FILE *));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* In sched.c. */
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void schedule_insns PROTO ((FILE *));
|
|
|
|
|
#endif
|
Warning fixes:
* Makefile.in (varasm.o): Depend on dbxout.h.
(cse.o): Depend on toplev.h and output.h.
(gcse.o): Depend on output.h.
* mips.c: Include system.h and toplev.h and remove redundant code.
Include output.h after tree.h so all its prototypes get activated.
* mips.md (table_jump): Remove unused variable `dest'.
* sparc.h: Add prototype for `v8plus_regcmp_op'.
* crtstuff.c (fini_dummy, init_dummy): Mark function definitions
with __attribute__ ((__unused__)).
(__frame_dummy): Provide prototype before use, wrap it with
EH_FRAME_SECTION_ASM_OP.
* cse.c: Move inclusion of <setjmp.h> above local headers.
Include toplev.h and output.h.
* dbxout.h: Add prototype for `dbxout_begin_function'.
* final.c (final_scan_insn): Wrap variable `max_skip' in macro
ASM_OUTPUT_MAX_SKIP_ALIGN.
* gcse.c: Include system.h and output.h.
(dump_cuid_table, dump_rd_table, dump_cprop_data, dump_pre_data):
Make extern instead of static.
(compute_can_copy): Only declare variables `reg' and `insn' when
AVOID_CCMODE_COPIES is not defined.
(record_set_info): Mark parameter `setter' with ATTRIBUTE_UNUSED.
(hash_scan_clobber): Likewise for `x' and `insn'.
(hash_scan_call): Likewise.
(record_last_set_info): Likewise for `setter'.
(mark_call): Likewise for `pat'.
(pre_insert_insn): Wrap variable `note' in macro HAVE_cc0.
* libgcc2.c (__bb_init_prg): Replace bzero with memset and fix the
length parameter so that it multiplies the number of elements by
the sizeof(element).
* output.h: Add prototype for `weak_finish'.
* recog.h: Likewise for `validate_replace_src'.
* rtl.h: Likewise for `optimize_save_area_alloca',
`fix_sched_param', `purge_addressof', `gcse_main',
`regmove_optimize', `dbr_schedule', `branch_prob' and
`end_branch_prob'.
* toplev.h: Likewise for `set_float_handler' and
`output_quoted_string'.
* varasm.c: Include dbxout.h.
From-SVN: r20351
1998-06-08 14:30:27 -04:00
|
|
|
|
#ifdef HAIFA
|
|
|
|
|
extern void fix_sched_param PROTO ((char *, char *));
|
|
|
|
|
#endif
|
1997-12-09 03:20:07 -05:00
|
|
|
|
|
|
|
|
|
/* In print-rtl.c */
|
|
|
|
|
extern void debug_rtx PROTO ((rtx));
|
|
|
|
|
extern void debug_rtx_list PROTO ((rtx, int));
|
|
|
|
|
extern rtx debug_rtx_find PROTO ((rtx, int));
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void print_rtl PROTO ((FILE *, rtx));
|
1998-10-06 05:03:38 -04:00
|
|
|
|
extern int print_rtl_single PROTO ((FILE *, rtx));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern void print_inline_rtx PROTO ((FILE *, rtx, int));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* In loop.c */
|
|
|
|
|
extern void init_loop PROTO ((void));
|
1999-02-22 09:11:58 -05:00
|
|
|
|
extern rtx libcall_other_reg PROTO ((rtx, rtx));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
#ifdef BUFSIZ
|
1998-09-18 16:55:00 -04:00
|
|
|
|
extern void loop_optimize PROTO ((rtx, FILE *, int, int));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
#endif
|
|
|
|
|
extern void record_excess_regs PROTO ((rtx, rtx, rtx *));
|
|
|
|
|
|
|
|
|
|
/* In function.c */
|
|
|
|
|
extern void reposition_prologue_and_epilogue_notes PROTO ((rtx));
|
|
|
|
|
extern void thread_prologue_and_epilogue_insns PROTO ((rtx));
|
|
|
|
|
extern void use_variable PROTO ((rtx));
|
|
|
|
|
extern HOST_WIDE_INT get_frame_size PROTO ((void));
|
|
|
|
|
extern void preserve_rtl_expr_result PROTO ((rtx));
|
|
|
|
|
extern void mark_temp_addr_taken PROTO ((rtx));
|
|
|
|
|
extern void update_temp_slot_address PROTO ((rtx, rtx));
|
|
|
|
|
extern void use_variable_after PROTO ((rtx, rtx));
|
Warning fixes:
* Makefile.in (varasm.o): Depend on dbxout.h.
(cse.o): Depend on toplev.h and output.h.
(gcse.o): Depend on output.h.
* mips.c: Include system.h and toplev.h and remove redundant code.
Include output.h after tree.h so all its prototypes get activated.
* mips.md (table_jump): Remove unused variable `dest'.
* sparc.h: Add prototype for `v8plus_regcmp_op'.
* crtstuff.c (fini_dummy, init_dummy): Mark function definitions
with __attribute__ ((__unused__)).
(__frame_dummy): Provide prototype before use, wrap it with
EH_FRAME_SECTION_ASM_OP.
* cse.c: Move inclusion of <setjmp.h> above local headers.
Include toplev.h and output.h.
* dbxout.h: Add prototype for `dbxout_begin_function'.
* final.c (final_scan_insn): Wrap variable `max_skip' in macro
ASM_OUTPUT_MAX_SKIP_ALIGN.
* gcse.c: Include system.h and output.h.
(dump_cuid_table, dump_rd_table, dump_cprop_data, dump_pre_data):
Make extern instead of static.
(compute_can_copy): Only declare variables `reg' and `insn' when
AVOID_CCMODE_COPIES is not defined.
(record_set_info): Mark parameter `setter' with ATTRIBUTE_UNUSED.
(hash_scan_clobber): Likewise for `x' and `insn'.
(hash_scan_call): Likewise.
(record_last_set_info): Likewise for `setter'.
(mark_call): Likewise for `pat'.
(pre_insert_insn): Wrap variable `note' in macro HAVE_cc0.
* libgcc2.c (__bb_init_prg): Replace bzero with memset and fix the
length parameter so that it multiplies the number of elements by
the sizeof(element).
* output.h: Add prototype for `weak_finish'.
* recog.h: Likewise for `validate_replace_src'.
* rtl.h: Likewise for `optimize_save_area_alloca',
`fix_sched_param', `purge_addressof', `gcse_main',
`regmove_optimize', `dbr_schedule', `branch_prob' and
`end_branch_prob'.
* toplev.h: Likewise for `set_float_handler' and
`output_quoted_string'.
* varasm.c: Include dbxout.h.
From-SVN: r20351
1998-06-08 14:30:27 -04:00
|
|
|
|
extern void purge_addressof PROTO ((rtx));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
|
|
|
|
|
/* In reload.c */
|
|
|
|
|
extern int operands_match_p PROTO ((rtx, rtx));
|
|
|
|
|
extern int safe_from_earlyclobber PROTO ((rtx, rtx));
|
|
|
|
|
|
|
|
|
|
/* In stmt.c */
|
Warning Fixes:
* Makefile.in (print-rtl.o): Depend on bitmap.h.
(dbxout.o): Depend on toplev.h.
($(SCHED_PREFIX)sched.o): Likewise.
($(out_object_file)): Likewise for system.h and toplev.h.
(cppmain.o): Depend on gansidecl.h.
(cpplib.o): Likewise.
(cpperror.o): Likewise.
(cppexp.o): Likewise.
(cpphash.o): Likewise.
(cppalloc.o): Likewise.
(fix-header.o): Depend on cpplib.h and cpphash.h.
(scan-decls.o): Depend on gansidecl.h.
* basic-block.h (free_regset_vector): Add prototype.
* cccp.c (check_precompiled): Mark parameter `fname' with
ATTRIBUTE_UNUSED.
(do_assert): Likewise for `op' and `keyword'.
(do_unassert): Likewise.
(do_line): Likewise for `keyword'.
(do_error): Likewise for `op' and `keyword'.
(do_warning): Likewise.
(do_ident): Likewise for `keyword'.
(do_pragma): Likewise for `limit', `op' and `keyword'.
(do_sccs): Likewise.
(do_if): Likewise for `keyword'.
(do_elif): Likewise.
(do_else): Likewise.
(do_endif): Likewise.
* collect2.c (getenv): Remove redundant prototype.
(collect_exit, collect_execute, dump_file): Likewise.
(dump_list): Wrap prototype and definition in COLLECT_EXPORT_LIST.
(dump_prefix_list): Hide prototype and definition.
* sparc.c: Include toplev.h.
(intreg_operand): Mark parameter `mode' with ATTRIBUTE_UNUSED.
(symbolic_memory_operand): Likewise.
(sp64_medium_pic_operand): Likewise.
(data_segment_operand): Likewise.
(text_segment_operand): Likewise.
(splittable_symbolic_memory_operand): Likewise.
(splittable_immediate_memory_operand): Likewise.
(eq_or_neq): Likewise.
(normal_comp_operator): Likewise.
(noov_compare_op): Likewise.
(v9_regcmp_op): Likewise.
(v8plus_regcmp_op): Likewise.
(extend_op): Likewise.
(cc_arithop): Likewise.
(cc_arithopn): Likewise.
(small_int): Likewise.
(uns_small_int): Likewise.
(clobbered_register): Likewise.
(legitimize_pic_address): Likewise.
(delay_operand): Likewise.
(sparc_builtin_saveregs): Remove unused variable `stdarg'.
* sparc.h (order_regs_for_local_alloc, eligible_for_return_delay,
sparc_issue_rate, v8plus_regcmp_p): Add prototypes.
* sparc.md (cmpdi_v8plus): Add abort for default case in switch.
* cppalloc.c: Include gansidecl.h.
* cpperror.c: Include stdarg.h/varargs.h and gansidecl.h.
(cpp_file_line_for_message): Mark parameter `pfile' with
ATTRIBUTE_UNUSED.
(v_cpp_message): New function.
(cpp_message): Use it. Also convert to variable arguments.
(cpp_fatal): Likewise.
(cpp_pfatal_with_name): Constify parameter `name'.
* cppexp.c: Move gansidecl.h before cpplib.h.
* cpphash.c: Likewise.
* cpphash.h (hashf, delete_macro): Add prototypes.
* cpplib.c: Include stdarg.h/varargs.h and move gansidecl.h before
cpplib.h. Don't include errno.h.
(update_path): Add arguments to prototype.
(cpp_fatal, cpp_file_line_for_message, cpp_message, delete_macro,
cpp_print_containing_files): Remove redundant prototypes.
(cpp_hash_cleanup, add_import, append_include_chain,
make_assertion, path_include, initialize_builtins,
initialize_char_syntax, finclude, validate_else, comp_def_part,
lookup_import, redundant_include_p, is_system_include,
read_name_map, read_filename_string, open_include_file,
check_macro_name, compare_defs, compare_token_lists,
eval_if_expression, change_newlines): Add prototype arguments.
(hashf): Remove redundant prototype.
(read_token_list, free_token_list, safe_read, xcalloc, savestring,
conditional_skip, skip_if_group): Add prototype arguments.
(fdopen): Remove redundant prototype.
(do_define, do_line, do_include, do_undef, do_error, do_pragma,
do_ident, do_if, do_xifdef, do_else, do_elif, do_endif, do_sccs,
do_once, do_assert, do_unassert, do_warning): Add prototype arguments.
(struct directive): Add prototype arguments to function pointer
member `func'.
(handle_directive): Add missing arguments to call to `do_line'.
(do_include): Mark parameters `unused1' and `unused2' with
ATTRIBUTE_UNUSED.
(do_line): Likewise for `keyword' and new parameters `unused1' and
`unused2'.
(do_error): Likewise for `keyword'.
(do_warning): Likewise. Also add missing argument `pfile' in call
to cpp_pedwarn.
(do_once): Mark parameter `keyword', `unused1' and `unused2' with
ATTRIBUTE_UNUSED.
(do_ident): Likewise for `keyword', `buf' and `limit'.
(do_pragma): Likewise. Also add missing arguments in call to do_once.
(do_sccs): Mark parameter `keyword', `buf' and `limit' with
ATTRIBUTE_UNUSED.
(do_if): Likewise for `keyword'.
(do_elif): Likewise.
(eval_if_expression): Likewise for `buf' and `length'.
(do_xifdef): Likewise for `unused1' and `unused2'.
(do_else): Likewise for `keyword', `buf' and `limit'.
(do_endif): Likewise.
(parse_name): Add missing argument `pfile' in call to cpp_pedwarn.
(cpp_handle_options): Remove superfluous NULL argument in call to
cpp_fatal.
(cpp_handle_options): Likewise.
(do_assert): Mark parameter `keyword', `buf' and `limit' with
ATTRIBUTE_UNUSED.
(do_unassert): Likewise.
(cpp_print_file_and_line): Add missing argument `pfile' in call to
cpp_file_line_for_message.
(v_cpp_error): New function.
(cpp_error): Use it. Also accept variable arguments.
(v_cpp_warning): New function.
(cpp_warning): Use it. Also accept variable arguments.
(cpp_pedwarn): Accept variable arguments.
(v_cpp_error_with_line): New function
(cpp_error_with_line): Use it. Accept variable arguments.
(v_cpp_warning_with_line): New function.
(cpp_warning_with_line): Use it. Accept variable arguments. Hide
definition.
(cpp_pedwarn_with_line): Accept variable arguments.
(cpp_pedwarn_with_file_and_line): Likewise.
(cpp_error_from_errno): Constify parameter `name'. Add missing
argument `pfile' in call to cpp_file_line_for_message.
(cpp_perror_with_name): Constify parameter `name'.
* cpplib.h: Define PARAMS() in terms of PROTO().
(fatal): Remove redundant prototype.
(cpp_error, cpp_warning, cpp_pedwarn, cpp_error_with_line,
cpp_pedwarn_with_line, cpp_pedwarn_with_file_and_line,
cpp_error_from_errno, cpp_perror_with_name, cpp_pfatal_with_name,
cpp_fatal, cpp_message, cpp_pfatal_with_name,
cpp_file_line_for_message, cpp_print_containing_files): Add
arguments to prototypes.
(scan_decls, cpp_finish): Add prototypes.
* cppmain.c: Include gansidecl.h.
(main): Remove unused variable `i'.
* dbxout.c: Include toplev.h.
* demangle.h (do_tlink, collect_execute, collect_exit,
collect_wait, dump_file, file_exists): Add prototype.
* dwarf2out.c (dwarf_type_encoding_name, decl_start_label): Hide
prototype and definition.
(gen_unspecified_parameters_die): Don't assign results of call to
function new_die() to unused variable `parm_die'.
(dwarf2out_line): Mark parameter `filename' with ATTRIBUTE_UNUSED.
(dwarf2out_define): Likewise for `lineno' and `buffer'.
* dwarfout.c (output_unsigned_leb128, output_signed_leb128): Hide
prototype and definition.
(output_die): Add prototype arguments to function pointer arg.
(output_unspecified_parameters_die): Mark parameter `arg' with
ATTRIBUTE_UNUSED.
* except.c (output_exception_table_entry): Remove unused variable
`eh_entry'.
* except.h (expand_fixup_region_start, expand_fixup_region_end):
Add prototypes.
* expr.c (do_jump_by_parts_equality_rtx): Remove prototype.
* expr.h (do_jump_by_parts_equality_rtx): Add prototype.
* fix-header.c: Include stdarg.h/varargs.h, move gansidecl.h
before cpplib.h, include cpphash.h, remove redundant prototype of
cpp_fatal, don't define `const', add a prototype for `fatal'.
(cpp_file_line_for_message): Add missing arguments `pfile'.
(v_cpp_message): New function.
(cpp_message): Use it.
(v_fatal): New function.
(fatal, cpp_fatal): Use it.
(cpp_pfatal_with_name): Constify parameter `name'.
* flow.c (free_regset_vector): Remove redundant prototype.
* function.c (round_down): Wrap prototype and definition with
macro ARGS_GROW_DOWNWARD.
(record_insns): Wrap prototype and definition with
defined (HAVE_prologue) || defined (HAVE_epilogue).
* gansidecl.h (ATTRIBUTE_PRINTF_4, ATTRIBUTE_PRINTF_5): New macros.
* gen-protos.c: Include gansidecl.h.
(hashf): Don't make it static, constify parameter `name'.
* genattrtab.c (check_attr_test): Change XEXP() to XSTR() to match
specifier %s in calls to function `fatal'.
* haifa-sched.c: Include toplev.h.
(find_rgns): Remove unused variable `j'.
* integrate.c (note_modified_parmregs): Mark parameter `x' with
ATTRIBUTE_UNUSED.
(mark_stores): Likewise.
* jump.c (mark_modified_reg): Likewise.
* output.h (insn_current_reference_address): Add prototype.
(eh_frame_section): Likewise.
* print-rtl.c: Include bitmap.h.
* reload1.c (reload): Wrap variables `note' and `next' in macro
PRESERVE_DEATH_INFO_REGNO_P.
(forget_old_reloads_1): Mark parameter `ignored' with
ATTRIBUTE_UNUSED.
(choose_reload_regs): Remove unused variable `in'.
(reload_cse_invalidate_mem): Mark parameter `ignore' with
ATTRIBUTE_UNUSED.
(reload_cse_check_clobber): Likewise.
* rtl.h (expand_null_return, reg_classes_intersect_p): Add prototype.
(mark_elimination): Fix typo in prototype.
* scan-decls.c: Include gansidecl.h.
* tree.h (using_eh_for_cleanups, supports_one_only): Add prototype.
From-SVN: r19867
1998-05-19 04:42:48 -04:00
|
|
|
|
extern void expand_null_return PROTO((void));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern void emit_jump PROTO ((rtx));
|
|
|
|
|
extern int preserve_subexpressions_p PROTO ((void));
|
|
|
|
|
|
1999-02-25 18:45:42 -05:00
|
|
|
|
/* List (chain of EXPR_LIST) of labels heading the current handlers for
|
|
|
|
|
nonlocal gotos. */
|
|
|
|
|
extern rtx nonlocal_goto_handler_labels;
|
|
|
|
|
|
1997-12-09 03:20:07 -05:00
|
|
|
|
/* In expr.c */
|
|
|
|
|
extern void init_expr_once PROTO ((void));
|
1998-08-17 12:37:49 -04:00
|
|
|
|
extern void move_by_pieces PROTO ((rtx, rtx, int, int));
|
|
|
|
|
|
1997-12-09 03:20:07 -05:00
|
|
|
|
|
|
|
|
|
/* In stupid.c */
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void stupid_life_analysis PROTO ((rtx, int, FILE *));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* In flow.c */
|
1999-03-31 07:41:03 -05:00
|
|
|
|
extern void allocate_bb_life_data PROTO ((void));
|
|
|
|
|
extern void allocate_reg_life_data PROTO ((void));
|
1998-12-12 19:59:38 -05:00
|
|
|
|
extern void recompute_reg_usage PROTO ((rtx, int));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void dump_flow_info PROTO ((FILE *));
|
|
|
|
|
#endif
|
1999-03-16 10:49:28 -05:00
|
|
|
|
extern void free_bb_mem PROTO ((void));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
|
|
|
|
|
/* In expmed.c */
|
|
|
|
|
extern void init_expmed PROTO ((void));
|
|
|
|
|
extern void expand_inc PROTO ((rtx, rtx));
|
|
|
|
|
extern void expand_dec PROTO ((rtx, rtx));
|
|
|
|
|
extern rtx expand_mult_highpart PROTO ((enum machine_mode, rtx,
|
|
|
|
|
unsigned HOST_WIDE_INT, rtx,
|
|
|
|
|
int, int));
|
|
|
|
|
|
Warning fixes:
* Makefile.in (varasm.o): Depend on dbxout.h.
(cse.o): Depend on toplev.h and output.h.
(gcse.o): Depend on output.h.
* mips.c: Include system.h and toplev.h and remove redundant code.
Include output.h after tree.h so all its prototypes get activated.
* mips.md (table_jump): Remove unused variable `dest'.
* sparc.h: Add prototype for `v8plus_regcmp_op'.
* crtstuff.c (fini_dummy, init_dummy): Mark function definitions
with __attribute__ ((__unused__)).
(__frame_dummy): Provide prototype before use, wrap it with
EH_FRAME_SECTION_ASM_OP.
* cse.c: Move inclusion of <setjmp.h> above local headers.
Include toplev.h and output.h.
* dbxout.h: Add prototype for `dbxout_begin_function'.
* final.c (final_scan_insn): Wrap variable `max_skip' in macro
ASM_OUTPUT_MAX_SKIP_ALIGN.
* gcse.c: Include system.h and output.h.
(dump_cuid_table, dump_rd_table, dump_cprop_data, dump_pre_data):
Make extern instead of static.
(compute_can_copy): Only declare variables `reg' and `insn' when
AVOID_CCMODE_COPIES is not defined.
(record_set_info): Mark parameter `setter' with ATTRIBUTE_UNUSED.
(hash_scan_clobber): Likewise for `x' and `insn'.
(hash_scan_call): Likewise.
(record_last_set_info): Likewise for `setter'.
(mark_call): Likewise for `pat'.
(pre_insert_insn): Wrap variable `note' in macro HAVE_cc0.
* libgcc2.c (__bb_init_prg): Replace bzero with memset and fix the
length parameter so that it multiplies the number of elements by
the sizeof(element).
* output.h: Add prototype for `weak_finish'.
* recog.h: Likewise for `validate_replace_src'.
* rtl.h: Likewise for `optimize_save_area_alloca',
`fix_sched_param', `purge_addressof', `gcse_main',
`regmove_optimize', `dbr_schedule', `branch_prob' and
`end_branch_prob'.
* toplev.h: Likewise for `set_float_handler' and
`output_quoted_string'.
* varasm.c: Include dbxout.h.
From-SVN: r20351
1998-06-08 14:30:27 -04:00
|
|
|
|
/* In gcse.c */
|
|
|
|
|
#ifdef BUFSIZ
|
1999-03-10 14:45:18 -05:00
|
|
|
|
extern int gcse_main PROTO ((rtx, FILE *));
|
Warning fixes:
* Makefile.in (varasm.o): Depend on dbxout.h.
(cse.o): Depend on toplev.h and output.h.
(gcse.o): Depend on output.h.
* mips.c: Include system.h and toplev.h and remove redundant code.
Include output.h after tree.h so all its prototypes get activated.
* mips.md (table_jump): Remove unused variable `dest'.
* sparc.h: Add prototype for `v8plus_regcmp_op'.
* crtstuff.c (fini_dummy, init_dummy): Mark function definitions
with __attribute__ ((__unused__)).
(__frame_dummy): Provide prototype before use, wrap it with
EH_FRAME_SECTION_ASM_OP.
* cse.c: Move inclusion of <setjmp.h> above local headers.
Include toplev.h and output.h.
* dbxout.h: Add prototype for `dbxout_begin_function'.
* final.c (final_scan_insn): Wrap variable `max_skip' in macro
ASM_OUTPUT_MAX_SKIP_ALIGN.
* gcse.c: Include system.h and output.h.
(dump_cuid_table, dump_rd_table, dump_cprop_data, dump_pre_data):
Make extern instead of static.
(compute_can_copy): Only declare variables `reg' and `insn' when
AVOID_CCMODE_COPIES is not defined.
(record_set_info): Mark parameter `setter' with ATTRIBUTE_UNUSED.
(hash_scan_clobber): Likewise for `x' and `insn'.
(hash_scan_call): Likewise.
(record_last_set_info): Likewise for `setter'.
(mark_call): Likewise for `pat'.
(pre_insert_insn): Wrap variable `note' in macro HAVE_cc0.
* libgcc2.c (__bb_init_prg): Replace bzero with memset and fix the
length parameter so that it multiplies the number of elements by
the sizeof(element).
* output.h: Add prototype for `weak_finish'.
* recog.h: Likewise for `validate_replace_src'.
* rtl.h: Likewise for `optimize_save_area_alloca',
`fix_sched_param', `purge_addressof', `gcse_main',
`regmove_optimize', `dbr_schedule', `branch_prob' and
`end_branch_prob'.
* toplev.h: Likewise for `set_float_handler' and
`output_quoted_string'.
* varasm.c: Include dbxout.h.
From-SVN: r20351
1998-06-08 14:30:27 -04:00
|
|
|
|
#endif
|
|
|
|
|
|
1997-12-09 03:20:07 -05:00
|
|
|
|
/* In global.c */
|
Warning Fixes:
* Makefile.in (print-rtl.o): Depend on bitmap.h.
(dbxout.o): Depend on toplev.h.
($(SCHED_PREFIX)sched.o): Likewise.
($(out_object_file)): Likewise for system.h and toplev.h.
(cppmain.o): Depend on gansidecl.h.
(cpplib.o): Likewise.
(cpperror.o): Likewise.
(cppexp.o): Likewise.
(cpphash.o): Likewise.
(cppalloc.o): Likewise.
(fix-header.o): Depend on cpplib.h and cpphash.h.
(scan-decls.o): Depend on gansidecl.h.
* basic-block.h (free_regset_vector): Add prototype.
* cccp.c (check_precompiled): Mark parameter `fname' with
ATTRIBUTE_UNUSED.
(do_assert): Likewise for `op' and `keyword'.
(do_unassert): Likewise.
(do_line): Likewise for `keyword'.
(do_error): Likewise for `op' and `keyword'.
(do_warning): Likewise.
(do_ident): Likewise for `keyword'.
(do_pragma): Likewise for `limit', `op' and `keyword'.
(do_sccs): Likewise.
(do_if): Likewise for `keyword'.
(do_elif): Likewise.
(do_else): Likewise.
(do_endif): Likewise.
* collect2.c (getenv): Remove redundant prototype.
(collect_exit, collect_execute, dump_file): Likewise.
(dump_list): Wrap prototype and definition in COLLECT_EXPORT_LIST.
(dump_prefix_list): Hide prototype and definition.
* sparc.c: Include toplev.h.
(intreg_operand): Mark parameter `mode' with ATTRIBUTE_UNUSED.
(symbolic_memory_operand): Likewise.
(sp64_medium_pic_operand): Likewise.
(data_segment_operand): Likewise.
(text_segment_operand): Likewise.
(splittable_symbolic_memory_operand): Likewise.
(splittable_immediate_memory_operand): Likewise.
(eq_or_neq): Likewise.
(normal_comp_operator): Likewise.
(noov_compare_op): Likewise.
(v9_regcmp_op): Likewise.
(v8plus_regcmp_op): Likewise.
(extend_op): Likewise.
(cc_arithop): Likewise.
(cc_arithopn): Likewise.
(small_int): Likewise.
(uns_small_int): Likewise.
(clobbered_register): Likewise.
(legitimize_pic_address): Likewise.
(delay_operand): Likewise.
(sparc_builtin_saveregs): Remove unused variable `stdarg'.
* sparc.h (order_regs_for_local_alloc, eligible_for_return_delay,
sparc_issue_rate, v8plus_regcmp_p): Add prototypes.
* sparc.md (cmpdi_v8plus): Add abort for default case in switch.
* cppalloc.c: Include gansidecl.h.
* cpperror.c: Include stdarg.h/varargs.h and gansidecl.h.
(cpp_file_line_for_message): Mark parameter `pfile' with
ATTRIBUTE_UNUSED.
(v_cpp_message): New function.
(cpp_message): Use it. Also convert to variable arguments.
(cpp_fatal): Likewise.
(cpp_pfatal_with_name): Constify parameter `name'.
* cppexp.c: Move gansidecl.h before cpplib.h.
* cpphash.c: Likewise.
* cpphash.h (hashf, delete_macro): Add prototypes.
* cpplib.c: Include stdarg.h/varargs.h and move gansidecl.h before
cpplib.h. Don't include errno.h.
(update_path): Add arguments to prototype.
(cpp_fatal, cpp_file_line_for_message, cpp_message, delete_macro,
cpp_print_containing_files): Remove redundant prototypes.
(cpp_hash_cleanup, add_import, append_include_chain,
make_assertion, path_include, initialize_builtins,
initialize_char_syntax, finclude, validate_else, comp_def_part,
lookup_import, redundant_include_p, is_system_include,
read_name_map, read_filename_string, open_include_file,
check_macro_name, compare_defs, compare_token_lists,
eval_if_expression, change_newlines): Add prototype arguments.
(hashf): Remove redundant prototype.
(read_token_list, free_token_list, safe_read, xcalloc, savestring,
conditional_skip, skip_if_group): Add prototype arguments.
(fdopen): Remove redundant prototype.
(do_define, do_line, do_include, do_undef, do_error, do_pragma,
do_ident, do_if, do_xifdef, do_else, do_elif, do_endif, do_sccs,
do_once, do_assert, do_unassert, do_warning): Add prototype arguments.
(struct directive): Add prototype arguments to function pointer
member `func'.
(handle_directive): Add missing arguments to call to `do_line'.
(do_include): Mark parameters `unused1' and `unused2' with
ATTRIBUTE_UNUSED.
(do_line): Likewise for `keyword' and new parameters `unused1' and
`unused2'.
(do_error): Likewise for `keyword'.
(do_warning): Likewise. Also add missing argument `pfile' in call
to cpp_pedwarn.
(do_once): Mark parameter `keyword', `unused1' and `unused2' with
ATTRIBUTE_UNUSED.
(do_ident): Likewise for `keyword', `buf' and `limit'.
(do_pragma): Likewise. Also add missing arguments in call to do_once.
(do_sccs): Mark parameter `keyword', `buf' and `limit' with
ATTRIBUTE_UNUSED.
(do_if): Likewise for `keyword'.
(do_elif): Likewise.
(eval_if_expression): Likewise for `buf' and `length'.
(do_xifdef): Likewise for `unused1' and `unused2'.
(do_else): Likewise for `keyword', `buf' and `limit'.
(do_endif): Likewise.
(parse_name): Add missing argument `pfile' in call to cpp_pedwarn.
(cpp_handle_options): Remove superfluous NULL argument in call to
cpp_fatal.
(cpp_handle_options): Likewise.
(do_assert): Mark parameter `keyword', `buf' and `limit' with
ATTRIBUTE_UNUSED.
(do_unassert): Likewise.
(cpp_print_file_and_line): Add missing argument `pfile' in call to
cpp_file_line_for_message.
(v_cpp_error): New function.
(cpp_error): Use it. Also accept variable arguments.
(v_cpp_warning): New function.
(cpp_warning): Use it. Also accept variable arguments.
(cpp_pedwarn): Accept variable arguments.
(v_cpp_error_with_line): New function
(cpp_error_with_line): Use it. Accept variable arguments.
(v_cpp_warning_with_line): New function.
(cpp_warning_with_line): Use it. Accept variable arguments. Hide
definition.
(cpp_pedwarn_with_line): Accept variable arguments.
(cpp_pedwarn_with_file_and_line): Likewise.
(cpp_error_from_errno): Constify parameter `name'. Add missing
argument `pfile' in call to cpp_file_line_for_message.
(cpp_perror_with_name): Constify parameter `name'.
* cpplib.h: Define PARAMS() in terms of PROTO().
(fatal): Remove redundant prototype.
(cpp_error, cpp_warning, cpp_pedwarn, cpp_error_with_line,
cpp_pedwarn_with_line, cpp_pedwarn_with_file_and_line,
cpp_error_from_errno, cpp_perror_with_name, cpp_pfatal_with_name,
cpp_fatal, cpp_message, cpp_pfatal_with_name,
cpp_file_line_for_message, cpp_print_containing_files): Add
arguments to prototypes.
(scan_decls, cpp_finish): Add prototypes.
* cppmain.c: Include gansidecl.h.
(main): Remove unused variable `i'.
* dbxout.c: Include toplev.h.
* demangle.h (do_tlink, collect_execute, collect_exit,
collect_wait, dump_file, file_exists): Add prototype.
* dwarf2out.c (dwarf_type_encoding_name, decl_start_label): Hide
prototype and definition.
(gen_unspecified_parameters_die): Don't assign results of call to
function new_die() to unused variable `parm_die'.
(dwarf2out_line): Mark parameter `filename' with ATTRIBUTE_UNUSED.
(dwarf2out_define): Likewise for `lineno' and `buffer'.
* dwarfout.c (output_unsigned_leb128, output_signed_leb128): Hide
prototype and definition.
(output_die): Add prototype arguments to function pointer arg.
(output_unspecified_parameters_die): Mark parameter `arg' with
ATTRIBUTE_UNUSED.
* except.c (output_exception_table_entry): Remove unused variable
`eh_entry'.
* except.h (expand_fixup_region_start, expand_fixup_region_end):
Add prototypes.
* expr.c (do_jump_by_parts_equality_rtx): Remove prototype.
* expr.h (do_jump_by_parts_equality_rtx): Add prototype.
* fix-header.c: Include stdarg.h/varargs.h, move gansidecl.h
before cpplib.h, include cpphash.h, remove redundant prototype of
cpp_fatal, don't define `const', add a prototype for `fatal'.
(cpp_file_line_for_message): Add missing arguments `pfile'.
(v_cpp_message): New function.
(cpp_message): Use it.
(v_fatal): New function.
(fatal, cpp_fatal): Use it.
(cpp_pfatal_with_name): Constify parameter `name'.
* flow.c (free_regset_vector): Remove redundant prototype.
* function.c (round_down): Wrap prototype and definition with
macro ARGS_GROW_DOWNWARD.
(record_insns): Wrap prototype and definition with
defined (HAVE_prologue) || defined (HAVE_epilogue).
* gansidecl.h (ATTRIBUTE_PRINTF_4, ATTRIBUTE_PRINTF_5): New macros.
* gen-protos.c: Include gansidecl.h.
(hashf): Don't make it static, constify parameter `name'.
* genattrtab.c (check_attr_test): Change XEXP() to XSTR() to match
specifier %s in calls to function `fatal'.
* haifa-sched.c: Include toplev.h.
(find_rgns): Remove unused variable `j'.
* integrate.c (note_modified_parmregs): Mark parameter `x' with
ATTRIBUTE_UNUSED.
(mark_stores): Likewise.
* jump.c (mark_modified_reg): Likewise.
* output.h (insn_current_reference_address): Add prototype.
(eh_frame_section): Likewise.
* print-rtl.c: Include bitmap.h.
* reload1.c (reload): Wrap variables `note' and `next' in macro
PRESERVE_DEATH_INFO_REGNO_P.
(forget_old_reloads_1): Mark parameter `ignored' with
ATTRIBUTE_UNUSED.
(choose_reload_regs): Remove unused variable `in'.
(reload_cse_invalidate_mem): Mark parameter `ignore' with
ATTRIBUTE_UNUSED.
(reload_cse_check_clobber): Likewise.
* rtl.h (expand_null_return, reg_classes_intersect_p): Add prototype.
(mark_elimination): Fix typo in prototype.
* scan-decls.c: Include gansidecl.h.
* tree.h (using_eh_for_cleanups, supports_one_only): Add prototype.
From-SVN: r19867
1998-05-19 04:42:48 -04:00
|
|
|
|
extern void mark_elimination PROTO ((int, int));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern int global_alloc PROTO ((FILE *));
|
|
|
|
|
extern void dump_global_regs PROTO ((FILE *));
|
|
|
|
|
#endif
|
1998-06-18 02:46:35 -04:00
|
|
|
|
#ifdef HARD_CONST
|
|
|
|
|
extern void retry_global_alloc PROTO ((int, HARD_REG_SET));
|
|
|
|
|
#endif
|
1997-12-09 03:20:07 -05:00
|
|
|
|
|
|
|
|
|
/* In regclass.c */
|
Warning Fixes:
* Makefile.in (print-rtl.o): Depend on bitmap.h.
(dbxout.o): Depend on toplev.h.
($(SCHED_PREFIX)sched.o): Likewise.
($(out_object_file)): Likewise for system.h and toplev.h.
(cppmain.o): Depend on gansidecl.h.
(cpplib.o): Likewise.
(cpperror.o): Likewise.
(cppexp.o): Likewise.
(cpphash.o): Likewise.
(cppalloc.o): Likewise.
(fix-header.o): Depend on cpplib.h and cpphash.h.
(scan-decls.o): Depend on gansidecl.h.
* basic-block.h (free_regset_vector): Add prototype.
* cccp.c (check_precompiled): Mark parameter `fname' with
ATTRIBUTE_UNUSED.
(do_assert): Likewise for `op' and `keyword'.
(do_unassert): Likewise.
(do_line): Likewise for `keyword'.
(do_error): Likewise for `op' and `keyword'.
(do_warning): Likewise.
(do_ident): Likewise for `keyword'.
(do_pragma): Likewise for `limit', `op' and `keyword'.
(do_sccs): Likewise.
(do_if): Likewise for `keyword'.
(do_elif): Likewise.
(do_else): Likewise.
(do_endif): Likewise.
* collect2.c (getenv): Remove redundant prototype.
(collect_exit, collect_execute, dump_file): Likewise.
(dump_list): Wrap prototype and definition in COLLECT_EXPORT_LIST.
(dump_prefix_list): Hide prototype and definition.
* sparc.c: Include toplev.h.
(intreg_operand): Mark parameter `mode' with ATTRIBUTE_UNUSED.
(symbolic_memory_operand): Likewise.
(sp64_medium_pic_operand): Likewise.
(data_segment_operand): Likewise.
(text_segment_operand): Likewise.
(splittable_symbolic_memory_operand): Likewise.
(splittable_immediate_memory_operand): Likewise.
(eq_or_neq): Likewise.
(normal_comp_operator): Likewise.
(noov_compare_op): Likewise.
(v9_regcmp_op): Likewise.
(v8plus_regcmp_op): Likewise.
(extend_op): Likewise.
(cc_arithop): Likewise.
(cc_arithopn): Likewise.
(small_int): Likewise.
(uns_small_int): Likewise.
(clobbered_register): Likewise.
(legitimize_pic_address): Likewise.
(delay_operand): Likewise.
(sparc_builtin_saveregs): Remove unused variable `stdarg'.
* sparc.h (order_regs_for_local_alloc, eligible_for_return_delay,
sparc_issue_rate, v8plus_regcmp_p): Add prototypes.
* sparc.md (cmpdi_v8plus): Add abort for default case in switch.
* cppalloc.c: Include gansidecl.h.
* cpperror.c: Include stdarg.h/varargs.h and gansidecl.h.
(cpp_file_line_for_message): Mark parameter `pfile' with
ATTRIBUTE_UNUSED.
(v_cpp_message): New function.
(cpp_message): Use it. Also convert to variable arguments.
(cpp_fatal): Likewise.
(cpp_pfatal_with_name): Constify parameter `name'.
* cppexp.c: Move gansidecl.h before cpplib.h.
* cpphash.c: Likewise.
* cpphash.h (hashf, delete_macro): Add prototypes.
* cpplib.c: Include stdarg.h/varargs.h and move gansidecl.h before
cpplib.h. Don't include errno.h.
(update_path): Add arguments to prototype.
(cpp_fatal, cpp_file_line_for_message, cpp_message, delete_macro,
cpp_print_containing_files): Remove redundant prototypes.
(cpp_hash_cleanup, add_import, append_include_chain,
make_assertion, path_include, initialize_builtins,
initialize_char_syntax, finclude, validate_else, comp_def_part,
lookup_import, redundant_include_p, is_system_include,
read_name_map, read_filename_string, open_include_file,
check_macro_name, compare_defs, compare_token_lists,
eval_if_expression, change_newlines): Add prototype arguments.
(hashf): Remove redundant prototype.
(read_token_list, free_token_list, safe_read, xcalloc, savestring,
conditional_skip, skip_if_group): Add prototype arguments.
(fdopen): Remove redundant prototype.
(do_define, do_line, do_include, do_undef, do_error, do_pragma,
do_ident, do_if, do_xifdef, do_else, do_elif, do_endif, do_sccs,
do_once, do_assert, do_unassert, do_warning): Add prototype arguments.
(struct directive): Add prototype arguments to function pointer
member `func'.
(handle_directive): Add missing arguments to call to `do_line'.
(do_include): Mark parameters `unused1' and `unused2' with
ATTRIBUTE_UNUSED.
(do_line): Likewise for `keyword' and new parameters `unused1' and
`unused2'.
(do_error): Likewise for `keyword'.
(do_warning): Likewise. Also add missing argument `pfile' in call
to cpp_pedwarn.
(do_once): Mark parameter `keyword', `unused1' and `unused2' with
ATTRIBUTE_UNUSED.
(do_ident): Likewise for `keyword', `buf' and `limit'.
(do_pragma): Likewise. Also add missing arguments in call to do_once.
(do_sccs): Mark parameter `keyword', `buf' and `limit' with
ATTRIBUTE_UNUSED.
(do_if): Likewise for `keyword'.
(do_elif): Likewise.
(eval_if_expression): Likewise for `buf' and `length'.
(do_xifdef): Likewise for `unused1' and `unused2'.
(do_else): Likewise for `keyword', `buf' and `limit'.
(do_endif): Likewise.
(parse_name): Add missing argument `pfile' in call to cpp_pedwarn.
(cpp_handle_options): Remove superfluous NULL argument in call to
cpp_fatal.
(cpp_handle_options): Likewise.
(do_assert): Mark parameter `keyword', `buf' and `limit' with
ATTRIBUTE_UNUSED.
(do_unassert): Likewise.
(cpp_print_file_and_line): Add missing argument `pfile' in call to
cpp_file_line_for_message.
(v_cpp_error): New function.
(cpp_error): Use it. Also accept variable arguments.
(v_cpp_warning): New function.
(cpp_warning): Use it. Also accept variable arguments.
(cpp_pedwarn): Accept variable arguments.
(v_cpp_error_with_line): New function
(cpp_error_with_line): Use it. Accept variable arguments.
(v_cpp_warning_with_line): New function.
(cpp_warning_with_line): Use it. Accept variable arguments. Hide
definition.
(cpp_pedwarn_with_line): Accept variable arguments.
(cpp_pedwarn_with_file_and_line): Likewise.
(cpp_error_from_errno): Constify parameter `name'. Add missing
argument `pfile' in call to cpp_file_line_for_message.
(cpp_perror_with_name): Constify parameter `name'.
* cpplib.h: Define PARAMS() in terms of PROTO().
(fatal): Remove redundant prototype.
(cpp_error, cpp_warning, cpp_pedwarn, cpp_error_with_line,
cpp_pedwarn_with_line, cpp_pedwarn_with_file_and_line,
cpp_error_from_errno, cpp_perror_with_name, cpp_pfatal_with_name,
cpp_fatal, cpp_message, cpp_pfatal_with_name,
cpp_file_line_for_message, cpp_print_containing_files): Add
arguments to prototypes.
(scan_decls, cpp_finish): Add prototypes.
* cppmain.c: Include gansidecl.h.
(main): Remove unused variable `i'.
* dbxout.c: Include toplev.h.
* demangle.h (do_tlink, collect_execute, collect_exit,
collect_wait, dump_file, file_exists): Add prototype.
* dwarf2out.c (dwarf_type_encoding_name, decl_start_label): Hide
prototype and definition.
(gen_unspecified_parameters_die): Don't assign results of call to
function new_die() to unused variable `parm_die'.
(dwarf2out_line): Mark parameter `filename' with ATTRIBUTE_UNUSED.
(dwarf2out_define): Likewise for `lineno' and `buffer'.
* dwarfout.c (output_unsigned_leb128, output_signed_leb128): Hide
prototype and definition.
(output_die): Add prototype arguments to function pointer arg.
(output_unspecified_parameters_die): Mark parameter `arg' with
ATTRIBUTE_UNUSED.
* except.c (output_exception_table_entry): Remove unused variable
`eh_entry'.
* except.h (expand_fixup_region_start, expand_fixup_region_end):
Add prototypes.
* expr.c (do_jump_by_parts_equality_rtx): Remove prototype.
* expr.h (do_jump_by_parts_equality_rtx): Add prototype.
* fix-header.c: Include stdarg.h/varargs.h, move gansidecl.h
before cpplib.h, include cpphash.h, remove redundant prototype of
cpp_fatal, don't define `const', add a prototype for `fatal'.
(cpp_file_line_for_message): Add missing arguments `pfile'.
(v_cpp_message): New function.
(cpp_message): Use it.
(v_fatal): New function.
(fatal, cpp_fatal): Use it.
(cpp_pfatal_with_name): Constify parameter `name'.
* flow.c (free_regset_vector): Remove redundant prototype.
* function.c (round_down): Wrap prototype and definition with
macro ARGS_GROW_DOWNWARD.
(record_insns): Wrap prototype and definition with
defined (HAVE_prologue) || defined (HAVE_epilogue).
* gansidecl.h (ATTRIBUTE_PRINTF_4, ATTRIBUTE_PRINTF_5): New macros.
* gen-protos.c: Include gansidecl.h.
(hashf): Don't make it static, constify parameter `name'.
* genattrtab.c (check_attr_test): Change XEXP() to XSTR() to match
specifier %s in calls to function `fatal'.
* haifa-sched.c: Include toplev.h.
(find_rgns): Remove unused variable `j'.
* integrate.c (note_modified_parmregs): Mark parameter `x' with
ATTRIBUTE_UNUSED.
(mark_stores): Likewise.
* jump.c (mark_modified_reg): Likewise.
* output.h (insn_current_reference_address): Add prototype.
(eh_frame_section): Likewise.
* print-rtl.c: Include bitmap.h.
* reload1.c (reload): Wrap variables `note' and `next' in macro
PRESERVE_DEATH_INFO_REGNO_P.
(forget_old_reloads_1): Mark parameter `ignored' with
ATTRIBUTE_UNUSED.
(choose_reload_regs): Remove unused variable `in'.
(reload_cse_invalidate_mem): Mark parameter `ignore' with
ATTRIBUTE_UNUSED.
(reload_cse_check_clobber): Likewise.
* rtl.h (expand_null_return, reg_classes_intersect_p): Add prototype.
(mark_elimination): Fix typo in prototype.
* scan-decls.c: Include gansidecl.h.
* tree.h (using_eh_for_cleanups, supports_one_only): Add prototype.
From-SVN: r19867
1998-05-19 04:42:48 -04:00
|
|
|
|
extern int reg_classes_intersect_p PROTO ((enum reg_class, enum reg_class));
|
Warning fixes:
* Makefile.in (c-lang.o): Depend on c-tree.h, c-lex.h and toplev.h.
(c-lex.o): Depend on output.h.
(c-common.o): Likewise.
(stmt.o): Likewise.
(calls.o): Likewise.
(integrate.o): Depend on toplev.h.
(regclass.o): Depend on output.h.
(final.o): Depend on reload.h.
* c-common.c: Include output.h.
(check_format_info): Remove unused variable `integral_format'.
* c-decl.c (print_lang_decl): Mark parameters `file', `node' and
`indent' with ATTRIBUTE_UNUSED.
(print_lang_type): Likewise.
(maybe_build_cleanup): Likewise for parameter `decl'.
(copy_lang_decl): Likewise for parameter `node'.
* c-lang.c: Include c-tree.h, c-lex.h and toplev.h.
(lang_print_xnode): Mark parameters `file', `node' and `indent'
with ATTRIBUTE_UNUSED.
(lookup_interface): Likewise for parameter `arg'.
(is_class_name): Likewise.
(maybe_objc_check_decl): Likewise for parameter `decl'.
(maybe_objc_comptypes): Likewise for parameters `lhs', `rhs' and
`reflexive'.
(maybe_objc_method_name): Likewise for parameter `decl'.
(build_objc_string): Likewise for parameters `len' and `str'.
* c-lex.c: Include output.h.
* c-lex.h (position_after_white_space): Correct typo in prototype.
* c-tree.h (finish_file, c_expand_start_cond, c_expand_start_else,
c_expand_end_cond, init_iterators): Add prototypes.
* caller-save.c (set_reg_live): Mark parameters `reg' and `setter'
with ATTRIBUTE_UNUSED.
* calls.c: Include output.h.
* cccp.c (pipe_closed): Mark parameter `signo' with
ATTRIBUTE_UNUSED.
* combine.c: Move inclusion of expr.h to after insn-config.h.
* iris6.h (ASM_IDENTIFY_GCC, ASM_IDENTIFY_LANGUAGE): Don't define
as empty, rather define as ((void)0).
* sparc.c (sparc_check_64): Add braces around ambiguous `else'.
Add parentheses around assignment used as truth value.
* cplus-dem.c (squangle_mop_up): Change return type to void.
(internal_cplus_demangle): Remove unused parameter `options'.
All callers changed.
(cplus_demangle_opname): Remove function wide variable `int i' and
replace with `size_t i' at each location where it is used.
(cplus_demangle_opname): change type of `i' from int to size_t.
* cppexp.c (right_shift): Mark parameter `pfile' with
ATTRIBUTE_UNUSED.
* cpphash.c (cpp_lookup): Likewise.
(cpp_hash_cleanup): Likewise.
* cpplib.c (parse_name): Add a prototype and make it static.
(null_underflow): Mark parameter `pfile' with ATTRIBUTE_UNUSED.
(null_cleanup): Likewise for parameters `pbuf' and `pfile'.
(macro_cleanup): Likewise for parameter `pfile'.
(file_cleanup): Likewise.
* cpplib.h (cpp_reader_init, cpp_options_init, cpp_start_read,
cpp_read_check_assertion, skip_rest_of_line): Add prototypes.
* crtstuff.c (force_to_data, __CTOR_LIST__, force_to_data,
__DTOR_END__, __FRAME_END__): Mark with ATTRIBUTE_UNUSED.
* cse.c (cse_check_loop_start): Mark parameter `set' with
ATTRIBUTE_UNUSED.
* dbxout.c (flag_minimal_debug, have_used_extensions,
source_label_number): Move inside macro wrapper check against
defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO).
* dwarf2out.c (gen_entry_point_die): Hide prototype and definition.
* except.h (doing_eh): Provide prototype.
* expr.c: Move inclusion of expr.h to after insn-config.h.
* final.c: Include reload.h.
(shorten_branches): Cast the first argument of bzero to char *.
* fix-header.c (cpp_print_containing_files): Mark parameter
`pfile' with ATTRIBUTE_UNUSED.
(cpp_fatal): Likewise.
* flow.c (find_basic_blocks_1): Cast the first argument of bzero
to char *.
* genattrtab.c (make_length_attrs): Change the type of variable
`i' from int to size_t.
(zero_fn): Mark parameter `exp' with ATTRIBUTE_UNUSED.
(one_fn): Likewise.
* genextract.c (main): When generating insn-extract.c, mark
variable `junk' with ATTRIBUTE_UNUSED.
* gengenrtl.c (gencode): When generating genrtl.c, cast the first
argument of bzero to char*.
* integrate.c: Include toplev.h.
* libgcc2.c: Wrap `struct exception_table' and
`find_exception_handler' in macro DWARF2_UNWIND_INFO.
* objc/Make-lang.in (objc-act.o): Depend on toplev.h.
* objc/objc-act.c: Include toplev.h.
(lang_print_xnode): Mark parameters `file', `node' and `indent'
with ATTRIBUTE_UNUSED.
(finish_protocol): Likewise for parameter `protocol'.
* output.h (declare_weak): Add prototype.
(decode_reg_name): Don't wrap with TREE_CODE macro.
(assemble_alias): Add prototype.
* regclass.c: Include output.h.
* reload.h (reloads_conflict): Add prototype.
* rtl.h (print_rtl_single, mark_elimiation, reg_class_subset_p,
output_func_start_profiler): Add prototypes.
* rtlanal.c (reg_set_p_1): Mark parameters `x' and `pat' with
ATTRIBUTE_UNUSED.
* scan-decls.c: Include scan.h.
* scan.h (recognized_function, recognized_extern): Add prototypes.
* stmt.c: Include output.h.
* toplev.c (error_for_asm, warning_for_asm): Remove prototypes.
(output_lang_identify): Hide prototype and definition.
(float_signal): Mark parameter `signo' with ATTRIBUTE_UNUSED.
(pipe_closed): Likewise.
* toplev.h (count_error, strip_off_ending, error_for_asm,
warning_for_asm): Add prototypes.
From-SVN: r19712
1998-05-13 08:40:39 -04:00
|
|
|
|
extern int reg_class_subset_p PROTO ((enum reg_class, enum reg_class));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern void globalize_reg PROTO ((int));
|
|
|
|
|
extern void init_regs PROTO ((void));
|
|
|
|
|
extern void init_reg_sets PROTO ((void));
|
|
|
|
|
extern void regset_release_memory PROTO ((void));
|
|
|
|
|
extern void regclass_init PROTO ((void));
|
|
|
|
|
extern void regclass PROTO ((rtx, int));
|
|
|
|
|
extern void reg_scan PROTO ((rtx, int, int));
|
1998-07-12 23:34:12 -04:00
|
|
|
|
extern void reg_scan_update PROTO ((rtx, rtx, int));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern void fix_register PROTO ((char *, int, int));
|
|
|
|
|
|
Warning fixes:
* Makefile.in (varasm.o): Depend on dbxout.h.
(cse.o): Depend on toplev.h and output.h.
(gcse.o): Depend on output.h.
* mips.c: Include system.h and toplev.h and remove redundant code.
Include output.h after tree.h so all its prototypes get activated.
* mips.md (table_jump): Remove unused variable `dest'.
* sparc.h: Add prototype for `v8plus_regcmp_op'.
* crtstuff.c (fini_dummy, init_dummy): Mark function definitions
with __attribute__ ((__unused__)).
(__frame_dummy): Provide prototype before use, wrap it with
EH_FRAME_SECTION_ASM_OP.
* cse.c: Move inclusion of <setjmp.h> above local headers.
Include toplev.h and output.h.
* dbxout.h: Add prototype for `dbxout_begin_function'.
* final.c (final_scan_insn): Wrap variable `max_skip' in macro
ASM_OUTPUT_MAX_SKIP_ALIGN.
* gcse.c: Include system.h and output.h.
(dump_cuid_table, dump_rd_table, dump_cprop_data, dump_pre_data):
Make extern instead of static.
(compute_can_copy): Only declare variables `reg' and `insn' when
AVOID_CCMODE_COPIES is not defined.
(record_set_info): Mark parameter `setter' with ATTRIBUTE_UNUSED.
(hash_scan_clobber): Likewise for `x' and `insn'.
(hash_scan_call): Likewise.
(record_last_set_info): Likewise for `setter'.
(mark_call): Likewise for `pat'.
(pre_insert_insn): Wrap variable `note' in macro HAVE_cc0.
* libgcc2.c (__bb_init_prg): Replace bzero with memset and fix the
length parameter so that it multiplies the number of elements by
the sizeof(element).
* output.h: Add prototype for `weak_finish'.
* recog.h: Likewise for `validate_replace_src'.
* rtl.h: Likewise for `optimize_save_area_alloca',
`fix_sched_param', `purge_addressof', `gcse_main',
`regmove_optimize', `dbr_schedule', `branch_prob' and
`end_branch_prob'.
* toplev.h: Likewise for `set_float_handler' and
`output_quoted_string'.
* varasm.c: Include dbxout.h.
From-SVN: r20351
1998-06-08 14:30:27 -04:00
|
|
|
|
/* In regmove.c */
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void regmove_optimize PROTO ((rtx, int, FILE *));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* In reorg.c */
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void dbr_schedule PROTO ((rtx, FILE *));
|
|
|
|
|
#endif
|
|
|
|
|
|
1997-12-09 03:20:07 -05:00
|
|
|
|
/* In optabs.c */
|
|
|
|
|
extern void init_optabs PROTO ((void));
|
|
|
|
|
|
|
|
|
|
/* In local-alloc.c */
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void dump_local_alloc PROTO ((FILE *));
|
|
|
|
|
#endif
|
1999-04-09 22:55:36 -04:00
|
|
|
|
extern int local_alloc PROTO ((void));
|
1998-12-01 05:00:11 -05:00
|
|
|
|
extern int function_invariant_p PROTO ((rtx));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
|
|
|
|
|
/* In reload1.c */
|
|
|
|
|
extern void reload_cse_regs PROTO ((rtx));
|
|
|
|
|
extern void init_reload PROTO ((void));
|
|
|
|
|
extern void mark_home_live PROTO ((int));
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern int reload PROTO ((rtx, int, FILE *));
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* In caller-save.c */
|
|
|
|
|
extern void init_caller_save PROTO ((void));
|
|
|
|
|
|
|
|
|
|
/* In profile.c */
|
cpplib.c (special_symbol): Qualify a char* with the `const' keyword.
* cpplib.c (special_symbol): Qualify a char* with the `const' keyword.
Instead of writing to const char *buf directly, use a non-const
variable `wbuf' to allocate and write a string, then set buf = wbuf.
* cppulp.c (user_label_prefix): Qualify a char* with the `const'
keyword.
* dyn-string.c (dyn_string_append): Likewise.
* dyn-string.h (dyn_string_append): Likewise.
* final.c (end_final, output_operand_lossage, asm_fprintf): Likewise.
* output.h (end_final, output_operand_lossage, asm_fprintf,
named_section, decode_reg_name, make_decl_rtl, user_label_prefix):
Likewise.
* profile.c (init_branch_prob): Likewise.
* toplev.c (set_target_switch, vmessage,
v_message_with_file_and_line, v_message_with_decl,
v_error_with_file_and_line, v_error_with_decl, v_error_for_asm,
verror, vfatal, v_warning_with_file_and_line, v_warning_with_decl,
v_warning_for_asm, vwarning, vpedwarn, v_pedwarn_with_decl,
v_pedwarn_with_file_and_line, vsorry, v_really_sorry,
open_dump_file, dump_rtl, clean_dump_file,
print_version, print_single_switch, print_switch_values,
dump_base_name, debug_args, lang_independent_options,
user_label_prefix, documented_lang_options, target_switches,
target_options, print_time, pfatal_with_name, fatal_io_error,
fatal_insn, default_print_error_function, print_error_function,
report_error_function, error_with_file_and_line, error_with_decl,
error_for_asm, error, fatal, warning_with_file_and_line,
warning_with_decl, warning_for_asm, warning, pedwarn,
pedwarn_with_decl, pedwarn_with_file_and_line, sorry,
really_sorry, botch, output_quoted_string, output_file_directive,
open_dump_file, rest_of_decl_compilation, display_help, main):
Likewise.
* toplev.h (print_time, fatal, fatal_io_error, pfatal_with_name,
fatal_insn, warning, error, pedwarn, pedwarn_with_file_and_line,
warning_with_file_and_line, error_with_file_and_line, sorry,
really_sorry, default_print_error_function, report_error_function,
rest_of_decl_compilation, pedwarn_with_decl, warning_with_decl,
error_with_decl, error_for_asm, warning_for_asm, output_quoted_string,
output_file_directive, botch): Likewise.
* tree.h (make_decl_rtl): Likewise.
* varasm.c (strip_reg_name, named_section, decode_reg_name,
make_decl_rtl): Likewise.
From-SVN: r24743
1999-01-18 03:53:41 -05:00
|
|
|
|
extern void init_branch_prob PROTO ((const char *));
|
Warning fixes:
* Makefile.in (varasm.o): Depend on dbxout.h.
(cse.o): Depend on toplev.h and output.h.
(gcse.o): Depend on output.h.
* mips.c: Include system.h and toplev.h and remove redundant code.
Include output.h after tree.h so all its prototypes get activated.
* mips.md (table_jump): Remove unused variable `dest'.
* sparc.h: Add prototype for `v8plus_regcmp_op'.
* crtstuff.c (fini_dummy, init_dummy): Mark function definitions
with __attribute__ ((__unused__)).
(__frame_dummy): Provide prototype before use, wrap it with
EH_FRAME_SECTION_ASM_OP.
* cse.c: Move inclusion of <setjmp.h> above local headers.
Include toplev.h and output.h.
* dbxout.h: Add prototype for `dbxout_begin_function'.
* final.c (final_scan_insn): Wrap variable `max_skip' in macro
ASM_OUTPUT_MAX_SKIP_ALIGN.
* gcse.c: Include system.h and output.h.
(dump_cuid_table, dump_rd_table, dump_cprop_data, dump_pre_data):
Make extern instead of static.
(compute_can_copy): Only declare variables `reg' and `insn' when
AVOID_CCMODE_COPIES is not defined.
(record_set_info): Mark parameter `setter' with ATTRIBUTE_UNUSED.
(hash_scan_clobber): Likewise for `x' and `insn'.
(hash_scan_call): Likewise.
(record_last_set_info): Likewise for `setter'.
(mark_call): Likewise for `pat'.
(pre_insert_insn): Wrap variable `note' in macro HAVE_cc0.
* libgcc2.c (__bb_init_prg): Replace bzero with memset and fix the
length parameter so that it multiplies the number of elements by
the sizeof(element).
* output.h: Add prototype for `weak_finish'.
* recog.h: Likewise for `validate_replace_src'.
* rtl.h: Likewise for `optimize_save_area_alloca',
`fix_sched_param', `purge_addressof', `gcse_main',
`regmove_optimize', `dbr_schedule', `branch_prob' and
`end_branch_prob'.
* toplev.h: Likewise for `set_float_handler' and
`output_quoted_string'.
* varasm.c: Include dbxout.h.
From-SVN: r20351
1998-06-08 14:30:27 -04:00
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void branch_prob PROTO ((rtx, FILE *));
|
|
|
|
|
extern void end_branch_prob PROTO ((FILE *));
|
|
|
|
|
#endif
|
Warning fixes:
* Makefile.in (c-lang.o): Depend on c-tree.h, c-lex.h and toplev.h.
(c-lex.o): Depend on output.h.
(c-common.o): Likewise.
(stmt.o): Likewise.
(calls.o): Likewise.
(integrate.o): Depend on toplev.h.
(regclass.o): Depend on output.h.
(final.o): Depend on reload.h.
* c-common.c: Include output.h.
(check_format_info): Remove unused variable `integral_format'.
* c-decl.c (print_lang_decl): Mark parameters `file', `node' and
`indent' with ATTRIBUTE_UNUSED.
(print_lang_type): Likewise.
(maybe_build_cleanup): Likewise for parameter `decl'.
(copy_lang_decl): Likewise for parameter `node'.
* c-lang.c: Include c-tree.h, c-lex.h and toplev.h.
(lang_print_xnode): Mark parameters `file', `node' and `indent'
with ATTRIBUTE_UNUSED.
(lookup_interface): Likewise for parameter `arg'.
(is_class_name): Likewise.
(maybe_objc_check_decl): Likewise for parameter `decl'.
(maybe_objc_comptypes): Likewise for parameters `lhs', `rhs' and
`reflexive'.
(maybe_objc_method_name): Likewise for parameter `decl'.
(build_objc_string): Likewise for parameters `len' and `str'.
* c-lex.c: Include output.h.
* c-lex.h (position_after_white_space): Correct typo in prototype.
* c-tree.h (finish_file, c_expand_start_cond, c_expand_start_else,
c_expand_end_cond, init_iterators): Add prototypes.
* caller-save.c (set_reg_live): Mark parameters `reg' and `setter'
with ATTRIBUTE_UNUSED.
* calls.c: Include output.h.
* cccp.c (pipe_closed): Mark parameter `signo' with
ATTRIBUTE_UNUSED.
* combine.c: Move inclusion of expr.h to after insn-config.h.
* iris6.h (ASM_IDENTIFY_GCC, ASM_IDENTIFY_LANGUAGE): Don't define
as empty, rather define as ((void)0).
* sparc.c (sparc_check_64): Add braces around ambiguous `else'.
Add parentheses around assignment used as truth value.
* cplus-dem.c (squangle_mop_up): Change return type to void.
(internal_cplus_demangle): Remove unused parameter `options'.
All callers changed.
(cplus_demangle_opname): Remove function wide variable `int i' and
replace with `size_t i' at each location where it is used.
(cplus_demangle_opname): change type of `i' from int to size_t.
* cppexp.c (right_shift): Mark parameter `pfile' with
ATTRIBUTE_UNUSED.
* cpphash.c (cpp_lookup): Likewise.
(cpp_hash_cleanup): Likewise.
* cpplib.c (parse_name): Add a prototype and make it static.
(null_underflow): Mark parameter `pfile' with ATTRIBUTE_UNUSED.
(null_cleanup): Likewise for parameters `pbuf' and `pfile'.
(macro_cleanup): Likewise for parameter `pfile'.
(file_cleanup): Likewise.
* cpplib.h (cpp_reader_init, cpp_options_init, cpp_start_read,
cpp_read_check_assertion, skip_rest_of_line): Add prototypes.
* crtstuff.c (force_to_data, __CTOR_LIST__, force_to_data,
__DTOR_END__, __FRAME_END__): Mark with ATTRIBUTE_UNUSED.
* cse.c (cse_check_loop_start): Mark parameter `set' with
ATTRIBUTE_UNUSED.
* dbxout.c (flag_minimal_debug, have_used_extensions,
source_label_number): Move inside macro wrapper check against
defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO).
* dwarf2out.c (gen_entry_point_die): Hide prototype and definition.
* except.h (doing_eh): Provide prototype.
* expr.c: Move inclusion of expr.h to after insn-config.h.
* final.c: Include reload.h.
(shorten_branches): Cast the first argument of bzero to char *.
* fix-header.c (cpp_print_containing_files): Mark parameter
`pfile' with ATTRIBUTE_UNUSED.
(cpp_fatal): Likewise.
* flow.c (find_basic_blocks_1): Cast the first argument of bzero
to char *.
* genattrtab.c (make_length_attrs): Change the type of variable
`i' from int to size_t.
(zero_fn): Mark parameter `exp' with ATTRIBUTE_UNUSED.
(one_fn): Likewise.
* genextract.c (main): When generating insn-extract.c, mark
variable `junk' with ATTRIBUTE_UNUSED.
* gengenrtl.c (gencode): When generating genrtl.c, cast the first
argument of bzero to char*.
* integrate.c: Include toplev.h.
* libgcc2.c: Wrap `struct exception_table' and
`find_exception_handler' in macro DWARF2_UNWIND_INFO.
* objc/Make-lang.in (objc-act.o): Depend on toplev.h.
* objc/objc-act.c: Include toplev.h.
(lang_print_xnode): Mark parameters `file', `node' and `indent'
with ATTRIBUTE_UNUSED.
(finish_protocol): Likewise for parameter `protocol'.
* output.h (declare_weak): Add prototype.
(decode_reg_name): Don't wrap with TREE_CODE macro.
(assemble_alias): Add prototype.
* regclass.c: Include output.h.
* reload.h (reloads_conflict): Add prototype.
* rtl.h (print_rtl_single, mark_elimiation, reg_class_subset_p,
output_func_start_profiler): Add prototypes.
* rtlanal.c (reg_set_p_1): Mark parameters `x' and `pat' with
ATTRIBUTE_UNUSED.
* scan-decls.c: Include scan.h.
* scan.h (recognized_function, recognized_extern): Add prototypes.
* stmt.c: Include output.h.
* toplev.c (error_for_asm, warning_for_asm): Remove prototypes.
(output_lang_identify): Hide prototype and definition.
(float_signal): Mark parameter `signo' with ATTRIBUTE_UNUSED.
(pipe_closed): Likewise.
* toplev.h (count_error, strip_off_ending, error_for_asm,
warning_for_asm): Add prototypes.
From-SVN: r19712
1998-05-13 08:40:39 -04:00
|
|
|
|
extern void output_func_start_profiler PROTO ((void));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
|
|
|
|
|
/* In reg-stack.c */
|
|
|
|
|
#ifdef BUFSIZ
|
|
|
|
|
extern void reg_to_stack PROTO ((rtx, FILE *));
|
|
|
|
|
#endif
|
|
|
|
|
extern int stack_regs_mentioned_p PROTO ((rtx));
|
|
|
|
|
|
|
|
|
|
/* In fold-const.c */
|
|
|
|
|
extern int add_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
|
|
|
|
|
HOST_WIDE_INT, HOST_WIDE_INT,
|
|
|
|
|
HOST_WIDE_INT *, HOST_WIDE_INT *));
|
|
|
|
|
extern int neg_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
|
|
|
|
|
HOST_WIDE_INT *, HOST_WIDE_INT *));
|
|
|
|
|
extern int mul_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
|
|
|
|
|
HOST_WIDE_INT, HOST_WIDE_INT,
|
|
|
|
|
HOST_WIDE_INT *, HOST_WIDE_INT *));
|
|
|
|
|
extern void lshift_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
|
|
|
|
|
HOST_WIDE_INT, int, HOST_WIDE_INT *,
|
|
|
|
|
HOST_WIDE_INT *, int));
|
|
|
|
|
extern void rshift_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
|
|
|
|
|
HOST_WIDE_INT, int,
|
|
|
|
|
HOST_WIDE_INT *, HOST_WIDE_INT *, int));
|
|
|
|
|
extern void lrotate_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
|
|
|
|
|
HOST_WIDE_INT, int, HOST_WIDE_INT *,
|
|
|
|
|
HOST_WIDE_INT *));
|
|
|
|
|
extern void rrotate_double PROTO ((HOST_WIDE_INT, HOST_WIDE_INT,
|
|
|
|
|
HOST_WIDE_INT, int, HOST_WIDE_INT *,
|
|
|
|
|
HOST_WIDE_INT *));
|
|
|
|
|
|
|
|
|
|
/* In calls.c */
|
|
|
|
|
/* Emit library call. */
|
|
|
|
|
extern void emit_library_call PVPROTO ((rtx, int, enum machine_mode,
|
|
|
|
|
int, ...));
|
|
|
|
|
extern rtx emit_library_call_value PVPROTO((rtx, rtx, int,
|
|
|
|
|
enum machine_mode,
|
|
|
|
|
int, ...));
|
|
|
|
|
|
|
|
|
|
/* In unroll.c */
|
|
|
|
|
extern int set_dominates_use PROTO ((int, int, int, rtx, rtx));
|
|
|
|
|
|
|
|
|
|
/* In varasm.c */
|
|
|
|
|
extern void bss_section PROTO ((void));
|
|
|
|
|
extern int in_data_section PROTO ((void));
|
|
|
|
|
extern int supports_one_only PROTO ((void));
|
|
|
|
|
|
|
|
|
|
/* In rtl.c */
|
|
|
|
|
extern void init_rtl PROTO ((void));
|
|
|
|
|
extern void rtx_free PROTO ((rtx));
|
|
|
|
|
|
|
|
|
|
/* In alias.c */
|
|
|
|
|
extern int true_dependence PROTO ((rtx, enum machine_mode, rtx,
|
|
|
|
|
int (*)(rtx)));
|
|
|
|
|
extern int read_dependence PROTO ((rtx, rtx));
|
|
|
|
|
extern int anti_dependence PROTO ((rtx, rtx));
|
|
|
|
|
extern int output_dependence PROTO ((rtx, rtx));
|
1997-12-24 16:39:44 -05:00
|
|
|
|
extern void init_alias_once PROTO ((void));
|
1997-12-09 03:20:07 -05:00
|
|
|
|
extern void init_alias_analysis PROTO ((void));
|
|
|
|
|
extern void end_alias_analysis PROTO ((void));
|
|
|
|
|
|
1998-04-25 12:09:24 -04:00
|
|
|
|
extern void record_base_value PROTO ((int, rtx, int));
|
invoke.texi: Document -flang-isoc9x.
* invoke.texi: Document -flang-isoc9x.
* Makefile.in (OBJS): Add splay-tree.o.
(c-common.o): Depend on rtl.h.
(splay-tree.o): List dependencies and provide build rule.
* rtl.h (record_alias_subset): New function.
* alias.c: Include splay-tree.h.
(alias_set_entry): New type.
(CHECK_ALIAS_SETS_FOR_CONSISTENCY): Remove.
(DIFFERENT_ALIAS_SETS_P): Use mem_in_disjoint_alias_sets_p.
(mems_in_disjoin_alias_sets_p): New function.
(alias_set_compare): Likewise.
(insert_subset_children): Likewise.
(get_alias_set_entry): Likewise.
* tree.h (TYPE_RESTRICT): New macro.
(TYPE_UNQUALIFIED): New manifest constant.
(TYPE_QUAL_CONST): Likewise
(TYPE_QUAL_VOLATILE): Likewise.
(TYPE_QUAL_RESTRICT): Likewise.
(tree_type): Add restrict_flag. Reduce count of free bits.
(DECL_POINTER_ALIAS_SET): New macro.
(DECL_POINTER_ALIAS_SET_KNOWN_P): Likewise.
(tree_decl): Add pointer_alias_set.
(build_qualified_type): New function.
(build_type_variant): Define in terms of build_qualified_type.
* tree.c (set_type_quals): New function.
(make_node): Initializae DECL_POINTER_ALIAS_SET.
(build_type_attribute_variant): Use build_qualified_type and
set_type_quals.
(build_type_variant): Rename, and modify, to become...
(build_qualified_type): New function.
(build_complex_type): Use set_type_quals.
* c-tree.h (C_TYPE_OBJECT_P): New macro.
(C_TYPE_FUNCTION_P): Likewise.
(C_TYPE_INCOMPLETE_P): Likewise.
(C_TYPE_OBJECT_OR_INCOMPLETE_P): Likewise.
(c_apply_type_quals_to_decl): New function.
(c_build_qualified_type): New function.
(c_build_type_variant): Define in terms of c_build_qualified_type.
(flag_isoc9x): Declare.
* c-typeck.c (qualify_type): Use c_build_qualified_type.
(common_type): Change to use TYPE_QUALS.
(comptypes): Likewise.
(convert_for_assignment): Likewise.
* c-aux-info.c (gen_type): Likewise. Deal with `restrict'.
* c-decl.c (flag_isoc9x): Define.
(c_decode_option): Handle -flang-isoc9x.
(grokdeclarator): Update to handle restrict. Use TYPE_QUALS,
c_build_qualified_type, etc. Use c_apply_type_quals_to_decl.
* c-lex.c (init_lex): Deal with restrict.
(init_lex): Don't treat restrict as a reserved word in
-traditional mode, or without -flang-isoc9x.
* c-lex.h (rid): Add RID_RESTRICT.
* c-parse.gperf (restrict, __restrict, __restrict__): Make
equivalent to RID_RESTRICT.
* c-parse.in (TYPE_QUAL): Update comment.
* c-common.c: Include rtl.h.
(c_find_base_decl): New function.
(c_build_type_variant): Rename, and modify, to become ...
(c_build_qualified_type): New function.
(c_apply_type_quals_to_decl): Likewise.
(c_get_alias_set): For INDIRECT_REFs, check to see if we can find
a particular alias set for the reference.
* toplev.c (documented_lang_options): Add -flang-isoc9x.
From-SVN: r23212
1998-10-21 05:53:40 -04:00
|
|
|
|
extern void record_alias_subset PROTO ((int, int));
|
1998-12-02 20:32:23 -05:00
|
|
|
|
extern rtx addr_side_effect_eval PROTO ((rtx, int, int));
|
1998-06-27 11:51:49 -04:00
|
|
|
|
|
1999-04-11 21:39:00 -04:00
|
|
|
|
#ifdef STACK_REGS
|
|
|
|
|
extern int stack_regs_mentioned PROTO((rtx insn));
|
|
|
|
|
#endif
|
|
|
|
|
|
1997-12-09 03:20:07 -05:00
|
|
|
|
#endif /* _RTL_H */
|