1993-07-15 06:21:25 +08:00
|
|
|
/* tc-hppa.h -- Header file for the PA */
|
|
|
|
|
1993-09-04 06:36:26 +08:00
|
|
|
/* Copyright (C) 1989, 1993 Free Software Foundation, Inc.
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
This file is part of GAS, the GNU Assembler.
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
GAS 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 1, or (at your option)
|
|
|
|
any later version.
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
GAS 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.
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GAS; see the file COPYING. If not, write to
|
|
|
|
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
1993-07-15 06:21:25 +08:00
|
|
|
|
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
/* HP PA-RISC support was contributed by the Center for Software Science
|
|
|
|
at the University of Utah. */
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
/* Please refrain from exposing the world to the internals of tc-hppa.c
|
|
|
|
when this file is included. This means only declaring exported functions,
|
|
|
|
(please PARAMize them!) not exporting structures and data items which
|
|
|
|
are used solely within tc-hppa.c, etc.
|
|
|
|
|
|
|
|
Also refrain from adding any more object file dependent code, there is
|
|
|
|
already far too much object file format dependent code in this file.
|
|
|
|
In theory this file should contain only exported functions, structures
|
|
|
|
and data declarations common to all PA assemblers. */
|
|
|
|
|
1993-07-15 06:21:25 +08:00
|
|
|
#ifndef _TC_HPPA_H
|
|
|
|
#define _TC_HPPA_H
|
|
|
|
|
|
|
|
#ifndef TC_HPPA
|
|
|
|
#define TC_HPPA 1
|
|
|
|
#endif
|
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
#define TARGET_ARCH bfd_arch_hppa
|
|
|
|
|
|
|
|
/* FIXME. The lack of a place to put things which are both target cpu
|
|
|
|
and target format dependent makes hacks like this necessary. */
|
1993-09-04 06:36:26 +08:00
|
|
|
#ifdef OBJ_ELF
|
|
|
|
#include "../bfd/elf32-hppa.h"
|
1993-10-29 04:43:13 +08:00
|
|
|
#define TARGET_FORMAT "elf32-hppa"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef OBJ_SOM
|
|
|
|
#include "../bfd/som.h"
|
|
|
|
#define TARGET_FORMAT "som"
|
1993-09-04 06:36:26 +08:00
|
|
|
#endif
|
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
/* FIXME. Why oh why aren't these defined somewhere globally? */
|
|
|
|
#ifndef FALSE
|
|
|
|
#define FALSE (0)
|
|
|
|
#define TRUE (!FALSE)
|
|
|
|
#endif
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-09-04 06:36:26 +08:00
|
|
|
/* Local labels have an "L$" prefix. */
|
|
|
|
#define LOCAL_LABEL(name) ((name)[0] == 'L' && (name)[1] == '$')
|
1993-07-15 06:21:25 +08:00
|
|
|
#define ASEC_NULL (asection *)0
|
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
/* sym1 - sym2 is valid on the PA as long as sym2 is $global$. */
|
1993-07-15 06:21:25 +08:00
|
|
|
|
|
|
|
#define SEG_DIFF_ALLOWED
|
1993-10-29 04:43:13 +08:00
|
|
|
|
|
|
|
/* FIXME. */
|
1993-07-15 06:21:25 +08:00
|
|
|
#ifdef OBJ_ELF
|
1993-10-29 04:43:13 +08:00
|
|
|
extern void elf_hppa_final_processing PARAMS ((void));
|
|
|
|
extern void hppa_tc_symbol PARAMS ((bfd *, elf_symbol_type *, int));
|
1993-07-15 06:21:25 +08:00
|
|
|
#endif
|
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
extern void hppa_tc_make_sections PARAMS ((bfd *));
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
/* FIXME. This should be static and declared in tc-hppa.c, but
|
|
|
|
pa_define_label gets used outside of tc-hppa.c via tc_frob_label.
|
|
|
|
Should also be PARAMized, but symbolS isn't available here. */
|
|
|
|
extern void pa_define_label ();
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
/* FIXME. Types not available here, so they can't be PARAMized. */
|
|
|
|
extern void parse_cons_expression_hppa ();
|
|
|
|
extern void cons_fix_new_hppa ();
|
1993-07-15 06:21:25 +08:00
|
|
|
|
* config/tc-hppa.h (tc_frob_label): Define.
* config/tc-mips.c: Many changes to support simple assembler
optimization.
(insn_label, prev_insn, prev_prev_insn, dummy_opcode,
prev_insn_valid, prev_insn_frag, prev_insn_where,
prev_insn_fixp, prev_insn_is_delay_slot): New static
variables.
(insn_uses_reg, mips_no_prev_insn, mips_emit_delays,
mips_align, s_stringer, s_mips_space): New static functions.
(mips_define_label): New global function.
(md_pseudo_table): For "ascii", "asciz", "asciiz", call
s_stringer. Changed argument to float_cons from 0 or 1 to 'f'
or 'd'. For "space" call s_mips_space.
(md_begin): Call mips_no_prev_insn.
(append_insn): Only insert necessary NOP instructions.
(macro): Call mips_emit_delays before setting mips_noreorder.
Increment and decrement mips_noreorder rather than using
save_reorder_condition. Don't bother to use noreorder in
M_L_DOB and M_L_DAB, since append_insn will not insert a NOP.
(md_atof): Handle floating point numbers correctly for both
big and little endian targets.
(s_align, s_cons): Call mips_align rather than frag_align.
(s_change_seg, s_cons): Call mips_emit_delays.
(s_float_cons): Let float_cons do the work.
(s_mipsset): Call mips_emit_delays when setting noreorder.
* config/tc-mips.h (tc_frob_label): Define to be
mips_define_label.
1993-07-17 00:26:41 +08:00
|
|
|
#define tc_frob_label(sym) pa_define_label (sym)
|
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
/* The PA does not need support for either of these. */
|
|
|
|
#define tc_crawl_symbol_chain(headers) {;}
|
|
|
|
#define tc_headers_hook(headers) {;}
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
#define RELOC_EXPANSION_POSSIBLE
|
|
|
|
#define MAX_RELOC_EXPANSION 5
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
/* FIXME. More things which are both HPPA and ELF specific. There is
|
|
|
|
nowhere to put such things. */
|
|
|
|
#ifdef OBJ_ELF
|
1993-09-04 06:36:26 +08:00
|
|
|
#define elf_tc_symbol hppa_tc_symbol
|
|
|
|
#define elf_tc_make_sections hppa_tc_make_sections
|
1993-07-15 06:21:25 +08:00
|
|
|
#define elf_tc_final_processing elf_hppa_final_processing
|
1993-10-29 04:43:13 +08:00
|
|
|
#endif
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
/* The PA needs to parse field selectors in .byte, etc. */
|
1993-07-15 06:21:25 +08:00
|
|
|
|
|
|
|
#define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) \
|
1993-09-04 06:36:26 +08:00
|
|
|
parse_cons_expression_hppa (EXP)
|
1993-07-15 06:21:25 +08:00
|
|
|
#define TC_CONS_FIX_NEW cons_fix_new_hppa
|
|
|
|
|
1993-09-04 06:36:26 +08:00
|
|
|
/* On the PA, an equal sign often appears as a condition or nullification
|
|
|
|
completer in an instruction. This can be detected by checking the
|
|
|
|
previous character, if the character is a comma, then the equal is
|
|
|
|
being used as part of an instruction. */
|
|
|
|
#define TC_EQUAL_IN_INSN(C, PTR) ((C) == ',')
|
|
|
|
|
|
|
|
/* Similarly for an exclamation point. It is used in FP comparison
|
|
|
|
instructions and as an end of line marker. When used in an instruction
|
|
|
|
it will always follow a comma. */
|
|
|
|
#define TC_EOL_IN_INSN(PTR) (is_end_of_line[*(PTR)] && (PTR)[-1] == ',')
|
1993-07-15 06:21:25 +08:00
|
|
|
|
1993-10-29 04:43:13 +08:00
|
|
|
#define tc_fix_adjustable hppa_fix_adjustable
|
1993-07-15 06:21:25 +08:00
|
|
|
#endif /* _TC_HPPA_H */
|