
Before this commit we didn't cleanly support CFI directives because the internal offsets used to get relaxed which broke them. This patch significantly reworks how we handle linker relaxations: * DWARF is now properly supported * There is a ".option norelax" to disable relaxations, for when users write assembly that can't be relaxed (if it's to be later patched up, for example). * There is an additional _RELAX relocation that specifies when previous relocations can be relaxed. We're in the process of documenting the RISC-V ELF ABI, which will include documentation of our relocations https://github.com/riscv/riscv-elf-psabi-doc/blob/master/riscv-elf.md but we expect that this relocation set will remain ABI compatible in the future (ie, it's safe to release). Thanks to Kuan-Lin Chen for figuring out how to correctly relax the debug info! include/ * elf/riscv.h: Add R_RISCV_TPREL_I through R_RISCV_SET32. bfd/ * reloc.c (BFD_RELOC_RISCV_TPREL_I): New relocation. (BFD_RELOC_RISCV_TPREL_S): Likewise. (BFD_RELOC_RISCV_RELAX): Likewise. (BFD_RELOC_RISCV_CFA): Likewise. (BFD_RELOC_RISCV_SUB6): Likewise. (BFD_RELOC_RISCV_SET8): Likewise. (BFD_RELOC_RISCV_SET8): Likewise. (BFD_RELOC_RISCV_SET16): Likewise. (BFD_RELOC_RISCV_SET32): Likewise. * elfnn-riscv.c (perform_relocation): Handle the new relocations. (_bfd_riscv_relax_tls_le): Likewise. (_bfd_riscv_relax_align): Likewise. (_bfd_riscv_relax_section): Likewise. (howto_table): Likewise. (riscv_reloc_map): Likewise. (relax_func_t): New type. (_bfd_riscv_relax_call): Add reserve_size argument, which controls the maximal offset pessimism. Correct type of max_alignment. (_bfd_riscv_relax_lui): Likewise. (_bfd_riscv_relax_tls_le): Likewise. (_bfd_riscv_relax_align): Likewise. (_bfd_riscv_relax_section): Compute the required reserve size when relocating and use it to when calling relax_func. * bfd-in2.h: Regenerate. * libbfd.h: Likewise. gas/ * config/tc-riscv.c (riscv_set_options): Add relax. (riscv_opts): Likewise. (s_riscv_option): Add relax and norelax. (riscv_apply_const_reloc): New function. (append_insn): Move constant relocation handling to riscv_apply_const_reloc. (md_pcrel_from): Likewise. (parse_relocation): Skip BFD_RELOC_UNUSED. (md_pcrel_from): Handle BFD_RELOC_RISCV_SUB6, BFD_RELOC_RISCV_RELAX, BFD_RELOC_RISCV_CFA. (md_apply_fix): Likewise. (riscv_pre_output_hook): New function. * config/tc-riscv.h (md_pre_output_hook): Define. (riscv_pre_output_hook): Declare. (DWARF_CIE_DATA_ALIGNMENT): Always -4.
106 lines
3.5 KiB
C
106 lines
3.5 KiB
C
/* tc-riscv.h -- header file for tc-riscv.c.
|
|
Copyright 2011-2016 Free Software Foundation, Inc.
|
|
|
|
Contributed by Andrew Waterman (andrew@sifive.com).
|
|
Based on MIPS target.
|
|
|
|
This file is part of GAS.
|
|
|
|
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 3, or (at your option)
|
|
any later version.
|
|
|
|
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.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; see the file COPYING3. If not,
|
|
see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef TC_RISCV
|
|
#define TC_RISCV
|
|
|
|
#include "opcode/riscv.h"
|
|
|
|
struct frag;
|
|
struct expressionS;
|
|
|
|
#define TARGET_BYTES_BIG_ENDIAN 0
|
|
|
|
#define TARGET_ARCH bfd_arch_riscv
|
|
|
|
#define WORKING_DOT_WORD 1
|
|
#define LOCAL_LABELS_FB 1
|
|
|
|
/* Symbols named FAKE_LABEL_NAME are emitted when generating DWARF, so make
|
|
sure FAKE_LABEL_NAME is printable. It still must be distinct from any
|
|
real label name. So, append a space, which other labels can't contain. */
|
|
#define FAKE_LABEL_NAME ".L0 "
|
|
|
|
#define md_relax_frag(segment, fragp, stretch) \
|
|
riscv_relax_frag (segment, fragp, stretch)
|
|
extern int riscv_relax_frag (asection *, struct frag *, long);
|
|
|
|
#define md_section_align(seg,size) (size)
|
|
#define md_undefined_symbol(name) (0)
|
|
#define md_operand(x)
|
|
|
|
/* FIXME: it is unclear if this is used, or if it is even correct. */
|
|
#define MAX_MEM_FOR_RS_ALIGN_CODE (1 + 2)
|
|
|
|
/* The ISA of the target may change based on command-line arguments. */
|
|
#define TARGET_FORMAT riscv_target_format()
|
|
extern const char * riscv_target_format (void);
|
|
|
|
#define md_after_parse_args() riscv_after_parse_args()
|
|
extern void riscv_after_parse_args (void);
|
|
|
|
#define md_parse_long_option(arg) riscv_parse_long_option (arg)
|
|
extern int riscv_parse_long_option (const char *);
|
|
|
|
#define md_pre_output_hook riscv_pre_output_hook()
|
|
extern void riscv_pre_output_hook (void);
|
|
|
|
/* Let the linker resolve all the relocs due to relaxation. */
|
|
#define tc_fix_adjustable(fixp) 0
|
|
#define md_allow_local_subtract(l,r,s) 0
|
|
|
|
/* Values passed to md_apply_fix don't include symbol values. */
|
|
#define MD_APPLY_SYM_VALUE(FIX) 0
|
|
|
|
/* Global syms must not be resolved, to support ELF shared libraries. */
|
|
#define EXTERN_FORCE_RELOC \
|
|
(OUTPUT_FLAVOR == bfd_target_elf_flavour)
|
|
|
|
/* Postpone text-section label subtraction calculation until linking, since
|
|
linker relaxations might change the deltas. */
|
|
#define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEG) ((SEG)->flags & SEC_CODE)
|
|
#define TC_FORCE_RELOCATION_SUB_LOCAL(FIX, SEG) 1
|
|
#define TC_VALIDATE_FIX_SUB(FIX, SEG) 1
|
|
#define TC_FORCE_RELOCATION_LOCAL(FIX) 1
|
|
#define DIFF_EXPR_OK 1
|
|
|
|
extern void riscv_pop_insert (void);
|
|
#define md_pop_insert() riscv_pop_insert ()
|
|
|
|
#define TARGET_USE_CFIPOP 1
|
|
|
|
#define tc_cfi_frame_initial_instructions riscv_cfi_frame_initial_instructions
|
|
extern void riscv_cfi_frame_initial_instructions (void);
|
|
|
|
#define tc_regname_to_dw2regnum tc_riscv_regname_to_dw2regnum
|
|
extern int tc_riscv_regname_to_dw2regnum (char *);
|
|
|
|
extern unsigned xlen;
|
|
#define DWARF2_DEFAULT_RETURN_COLUMN X_RA
|
|
|
|
/* Even on RV64, use 4-byte alignment, as F registers may be only 32 bits. */
|
|
#define DWARF2_CIE_DATA_ALIGNMENT -4
|
|
|
|
#define elf_tc_final_processing riscv_elf_final_processing
|
|
extern void riscv_elf_final_processing (void);
|
|
|
|
#endif /* TC_RISCV */
|