mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-11 10:14:36 +08:00
b20032503b
* varasm.c (make_decl_rtl): Remove call to REDO_SECTION_INFO_P; invoke ENCODE_SECTION_INFO with first call flag. * config/darwin-protos.h, config/darwin.c, config/darwin.h, config/a29k/a29k.h, config/alpha/alpha-protos.h, config/alpha/alpha.c, config/alpha/alpha.h, config/arc/arc.h, config/arm/arm-protos.h, config/arm/arm.h, config/arm/pe.c, config/arm/pe.h, config/avr/avr-protos.h, config/avr/avr.c, config/avr/avr.h, config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h, config/cris/cris-protos.h, config/cris/cris.c, config/cris/cris.h, config/d30v/d30v.h, config/h8300/h8300.h, config/i370/i370.h, config/i386/cygwin.h, config/i386/i386-interix.h, config/i386/i386.h, config/i386/osfrose.h, config/i386/win32.h, config/i386/winnt.c, config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h, config/m32r/m32r-protos.h, config/m32r/m32r.c, config/m32r/m32r.h, config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c, config/m68hc11/m68hc11.h, config/m88k/m88k.h, config/mcore/mcore-protos.h, config/mcore/mcore.c, config/mcore/mcore.h, config/mips/mips.h, config/ns32k/ns32k.h, config/pa/pa.h, config/romp/romp.h, config/rs6000/linux64.h, config/rs6000/rs6000-protos.h, config/rs6000/rs6000.c, config/rs6000/sysv4.h, config/rs6000/xcoff.h, config/s390/s390.h, config/sh/sh.h, config/sparc/sparc.h, config/stormy16/stormy16-protos.h, config/stormy16/stormy16.c, config/stormy16/stormy16.h, config/v850/v850.h, config/vax/vms.h, config/xtensa/xtensa.h, doc/tm.texi: ENCODE_SECTION_INFO now takes FIRST argument. As needed, examine it and do nothing. * config/darwin.h, config/alpha/alpha.h, config/arm/pe.h, config/i386/cygwin.h, config/ia64/ia64.h, config/m68hc11/m68hc11.h, config/mcore/mcore.h: Remove REDO_SECTION_INFO_P. * config/arm/t-pe (pe.o): Add dependencies. From-SVN: r50236
77 lines
2.8 KiB
C
77 lines
2.8 KiB
C
/* Prototypes.
|
|
Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
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
|
|
the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
extern int name_needs_quotes PARAMS ((const char *));
|
|
|
|
extern void machopic_validate_stub_or_non_lazy_ptr PARAMS ((const char *, int));
|
|
|
|
extern char *machopic_function_base_name PARAMS ((void));
|
|
extern char *machopic_non_lazy_ptr_name PARAMS ((const char*));
|
|
extern char *machopic_stub_name PARAMS ((const char*));
|
|
|
|
extern void machopic_add_gc_roots PARAMS ((void));
|
|
|
|
extern void machopic_picsymbol_stub_section PARAMS ((void));
|
|
extern void machopic_symbol_stub_section PARAMS ((void));
|
|
extern void machopic_lazy_symbol_ptr_section PARAMS ((void));
|
|
extern void machopic_nl_symbol_ptr_section PARAMS ((void));
|
|
|
|
extern void constructor_section PARAMS ((void));
|
|
extern void destructor_section PARAMS ((void));
|
|
extern void mod_init_section PARAMS ((void));
|
|
extern void mod_term_section PARAMS ((void));
|
|
|
|
#ifdef RTX_CODE
|
|
|
|
extern int machopic_operand_p PARAMS ((rtx));
|
|
extern enum machopic_addr_class machopic_classify_name PARAMS ((const char*));
|
|
|
|
extern rtx machopic_indirect_data_reference PARAMS ((rtx, rtx));
|
|
extern rtx machopic_indirect_call_target PARAMS ((rtx));
|
|
extern rtx machopic_legitimize_pic_address PARAMS ((rtx, enum machine_mode, rtx));
|
|
|
|
extern void machopic_asm_out_constructor PARAMS ((rtx, int));
|
|
extern void machopic_asm_out_destructor PARAMS ((rtx, int));
|
|
#endif /* RTX_CODE */
|
|
|
|
#ifdef TREE_CODE
|
|
|
|
extern enum machopic_addr_class machopic_classify_ident PARAMS ((tree));
|
|
extern void machopic_define_ident PARAMS ((tree));
|
|
extern void machopic_define_name PARAMS ((const char*));
|
|
extern int machopic_name_defined_p PARAMS ((const char*));
|
|
extern int machopic_ident_defined_p PARAMS ((tree));
|
|
extern void darwin_encode_section_info PARAMS ((tree, int));
|
|
|
|
#endif /* TREE_CODE */
|
|
|
|
extern void machopic_finish PARAMS ((FILE *));
|
|
|
|
extern void machopic_output_possible_stub_label PARAMS ((FILE *, const char*));
|
|
|
|
extern void darwin_exception_section PARAMS ((void));
|
|
extern void darwin_eh_frame_section PARAMS ((void));
|
|
|
|
#ifdef GCC_C_PRAGMA_H
|
|
extern void darwin_pragma_ignore PARAMS ((cpp_reader *));
|
|
extern void darwin_pragma_options PARAMS ((cpp_reader *));
|
|
extern void darwin_pragma_unused PARAMS ((cpp_reader *));
|
|
#endif
|