db22231044
ommit 3ae729d5a4f63740ed9a778960b17c2912b0bbdd Author: H.J. Lu <hjl.tools@gmail.com> Date: Wed Mar 7 04:18:45 2018 -0800 x86: Rewrite NOP generation for fill and alignment increased MAX_MEM_FOR_RS_ALIGN_CODE to 4095 which resulted in increase of assembler time and memory usage by 5 times for inputs with many .p2align directives, which is typical for LTO output. This patch passes max_bytes to TC_FRAG_INIT so that MAX_MEM_FOR_RS_ALIGN_CODE can be set as needed and tracked by backend it so that HANDLE_ALIGN can check the maximum alignment for each rs_align_code frag. Wall time to assemble the same cc1plus.s: before: 423.78user 0.89system 7:05.71elapsed 99%CPU after: 102.35user 0.27system 1:42.89elapsed 99%CPU PR gas/24165 * frags.c (frag_var_init): Pass max_chars to TC_FRAG_INIT as max_bytes. * config/tc-aarch64.h (TC_FRAG_INIT): Add and pass max_bytes to aarch64_init_frag. * /config/tc-arm.h (TC_FRAG_INIT): And and pass max_bytes to arm_init_frag. * config/tc-avr.h (TC_FRAG_INIT): And and ignore max_bytes. * config/tc-ia64.h (TC_FRAG_INIT): Likewise. * config/tc-mmix.h (TC_FRAG_INIT): Likewise. * config/tc-nds32.h (TC_FRAG_INIT): Likewise. * config/tc-ns32k.h (TC_FRAG_INIT): Likewise. * config/tc-rl78.h (TC_FRAG_INIT): Likewise. * config/tc-rx.h (TC_FRAG_INIT): Likewise. * config/tc-score.h (TC_FRAG_INIT): Likewise. * config/tc-tic54x.h (TC_FRAG_INIT): Likewise. * config/tc-tic6x.h (TC_FRAG_INIT): Likewise. * config/tc-xtensa.h (TC_FRAG_INIT): Likewise. * config/tc-i386.h (MAX_MEM_FOR_RS_ALIGN_CODE): Set to (alignment ? ((1 << alignment) - 1) : 1) (i386_tc_frag_data): Add max_bytes. (TC_FRAG_INIT): Add and track max_bytes. (HANDLE_ALIGN): Replace MAX_MEM_FOR_RS_ALIGN_CODE with fragP->tc_frag_data.max_bytes. * doc/internals.texi: Update TC_FRAG_TYPE with max_bytes.
79 lines
2.5 KiB
C
79 lines
2.5 KiB
C
/* tc-score.h -- Score specific file for assembler
|
|
Copyright (C) 2006-2019 Free Software Foundation, Inc.
|
|
Contributed by:
|
|
Brain.lin (brain.lin@sunplusct.com)
|
|
Mei Ligang (ligang@sunnorth.com.cn)
|
|
Pei-Lin Tsai (pltsai@sunplus.com)
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
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 GAS; see the file COPYING. If not, write to the Free
|
|
Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
#ifndef TC_SCORE
|
|
#define TC_SCORE
|
|
|
|
#define TARGET_ARCH bfd_arch_score
|
|
#define WORKING_DOT_WORD
|
|
#define DIFF_EXPR_OK
|
|
#define RELOC_EXPANSION_POSSIBLE
|
|
#define MAX_RELOC_EXPANSION 2
|
|
#define MAX_MEM_FOR_RS_ALIGN_CODE (3 + 4)
|
|
|
|
#define md_undefined_symbol(name) NULL
|
|
|
|
#define TARGET_FORMAT (target_big_endian ? "elf32-bigscore" : "elf32-littlescore")
|
|
|
|
#define md_relax_frag(segment, fragp, stretch) score_relax_frag (segment, fragp, stretch)
|
|
extern int score_relax_frag (asection *, struct frag *, long);
|
|
|
|
/* #define md_frag_check(fragp) score_frag_check (fragp) */
|
|
extern void score_frag_check (fragS *);
|
|
|
|
#define TC_VALIDATE_FIX(FIXP, SEGTYPE, SKIP) score_validate_fix (FIXP)
|
|
extern void score_validate_fix (struct fix *);
|
|
|
|
#define TC_FORCE_RELOCATION(FIXP) score_force_relocation (FIXP)
|
|
extern int score_force_relocation (struct fix *);
|
|
|
|
#define tc_fix_adjustable(fixp) score_fix_adjustable (fixp)
|
|
extern bfd_boolean score_fix_adjustable (struct fix *);
|
|
|
|
#define elf_tc_final_processing score_elf_final_processing
|
|
extern void score_elf_final_processing (void);
|
|
|
|
struct score_tc_frag_data
|
|
{
|
|
unsigned int is_insn;
|
|
struct fix *fixp;
|
|
};
|
|
|
|
#define TC_FRAG_TYPE struct score_tc_frag_data
|
|
|
|
#define TC_FRAG_INIT(FRAGP, MAX_BYTES) \
|
|
do \
|
|
{ \
|
|
(FRAGP)->tc_frag_data.is_insn = (((FRAGP)->fr_type == rs_machine_dependent) ? 1 : 0); \
|
|
} \
|
|
while (0)
|
|
|
|
#ifdef OBJ_ELF
|
|
#define GLOBAL_OFFSET_TABLE_NAME "_GLOBAL_OFFSET_TABLE_"
|
|
#else
|
|
#define GLOBAL_OFFSET_TABLE_NAME "__GLOBAL_OFFSET_TABLE_"
|
|
#endif
|
|
|
|
#endif /*TC_SCORE */
|