diff options
author | jle <jle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-23 02:02:18 +0000 |
---|---|---|
committer | jle <jle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-23 02:02:18 +0000 |
commit | 8dd25e426afa10b3e79b3bc1e9c2fd8bb2b73e47 (patch) | |
tree | d3af9a9bf50559d84be1c7c057f153b1e5c86d66 /gcc/config/i860/i860-protos.h | |
parent | 54e4edf280efceddf550ff961754db2ce6239b0c (diff) | |
download | gcc-8dd25e426afa10b3e79b3bc1e9c2fd8bb2b73e47.tar.gz |
2003-08-22 Jason Eckhardt <jle@rice.edu>
ChangeLog
* MAINTAINERS: Resurrect the i860 maintainer.
gcc/ChangeLog:
* gcc/config.gcc (i860-*-sysv4*): Add target.
* config/i860/i860-protos.h: New.
* config/i860/i860.c: New.
* config/i860/i860.h: New.
* config/i860/i860.md: New.
* config/i860/sysv4.h: New.
* config/i860/varargs.asm: New.
* config/i860/x-sysv4: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70719 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i860/i860-protos.h')
-rw-r--r-- | gcc/config/i860/i860-protos.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/gcc/config/i860/i860-protos.h b/gcc/config/i860/i860-protos.h new file mode 100644 index 00000000000..42cbe184fae --- /dev/null +++ b/gcc/config/i860/i860-protos.h @@ -0,0 +1,61 @@ +/* Definitions of target machine for GNU compiler, for Intel 860. + Copyright (C) 2000 Free Software Foundation, Inc. + Hacked substantially by Ron Guilmette (rfg@monkeys.com) to cater to + the whims of the System V Release 4 assembler. + +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. */ + +/* Declare things which are defined in i860.c but called from + insn-output.c. */ + +#ifdef RTX_CODE +extern unsigned long sfmode_constant_to_ulong PARAMS ((rtx)); +extern const char *output_load PARAMS ((rtx *)); +extern const char *output_store PARAMS ((rtx *)); +extern const char *output_move_double PARAMS ((rtx *)); +extern const char *output_fp_move_double PARAMS ((rtx *)); +extern const char *output_block_move PARAMS ((rtx *)); +extern const char *output_delay_insn PARAMS ((rtx)); +#if 0 +extern const char *output_delayed_branch PARAMS ((const char *, rtx *, rtx)); +#endif +extern void output_load_address PARAMS ((rtx *)); +extern int safe_insn_src_p PARAMS ((rtx, enum machine_mode)); +extern int operand_clobbered_before_used_after PARAMS ((rtx, rtx)); +extern int single_insn_src_p PARAMS ((rtx, enum machine_mode)); +extern int reg_or_0_operand PARAMS ((rtx, enum machine_mode)); +extern int arith_operand PARAMS ((rtx, enum machine_mode)); +extern int logic_operand PARAMS ((rtx, enum machine_mode)); +extern int shift_operand PARAMS ((rtx, enum machine_mode)); +extern int compare_operand PARAMS ((rtx, enum machine_mode)); +extern int bte_operand PARAMS ((rtx, enum machine_mode)); +extern int indexed_operand PARAMS ((rtx, enum machine_mode)); +extern int load_operand PARAMS ((rtx, enum machine_mode)); +extern int small_int PARAMS ((rtx, enum machine_mode)); +extern int logic_int PARAMS ((rtx, enum machine_mode)); +extern int call_insn_operand PARAMS ((rtx, enum machine_mode)); +extern rtx i860_saveregs PARAMS ((void)); +#ifdef TREE_CODE +extern void i860_va_start PARAMS ((int, tree, rtx)); +extern rtx i860_va_arg PARAMS ((tree, tree)); +#endif /* TREE_CODE */ +#endif /* RTX_CODE */ + +#ifdef TREE_CODE +extern tree i860_build_va_list PARAMS ((void)); +#endif /* TREE_CODE */ |