1999-05-03 15:29:11 +08:00
|
|
|
/* tc-i386.h -- Header file for tc-i386.c
|
2001-03-09 07:24:26 +08:00
|
|
|
Copyright 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
2012-01-24 05:42:04 +08:00
|
|
|
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
|
2001-03-09 07:24:26 +08:00
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
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
|
2007-07-03 19:01:12 +08:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1999-05-03 15:29:11 +08:00
|
|
|
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
|
2005-05-05 17:13:19 +08:00
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#ifndef TC_I386
|
|
|
|
#define TC_I386 1
|
|
|
|
|
2007-03-21 23:37:21 +08:00
|
|
|
#include "opcodes/i386-opc.h"
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
struct fix;
|
|
|
|
|
|
|
|
#define TARGET_BYTES_BIG_ENDIAN 0
|
|
|
|
|
2009-07-25 22:58:58 +08:00
|
|
|
#define TARGET_ARCH (i386_arch ())
|
2001-01-14 07:37:57 +08:00
|
|
|
#define TARGET_MACH (i386_mach ())
|
2009-07-25 22:58:58 +08:00
|
|
|
extern enum bfd_architecture i386_arch (void);
|
2004-10-01 16:38:35 +08:00
|
|
|
extern unsigned long i386_mach (void);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2001-02-19 14:40:29 +08:00
|
|
|
#ifdef TE_FreeBSD
|
|
|
|
#define AOUT_TARGET_FORMAT "a.out-i386-freebsd"
|
|
|
|
#endif
|
1999-05-03 15:29:11 +08:00
|
|
|
#ifdef TE_NetBSD
|
2000-01-27 06:48:31 +08:00
|
|
|
#define AOUT_TARGET_FORMAT "a.out-i386-netbsd"
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
|
|
|
#ifdef TE_386BSD
|
2000-01-27 06:48:31 +08:00
|
|
|
#define AOUT_TARGET_FORMAT "a.out-i386-bsd"
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
|
|
|
#ifdef TE_LINUX
|
2000-01-27 06:48:31 +08:00
|
|
|
#define AOUT_TARGET_FORMAT "a.out-i386-linux"
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
|
|
|
#ifdef TE_Mach
|
2000-01-27 06:48:31 +08:00
|
|
|
#define AOUT_TARGET_FORMAT "a.out-mach3"
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
|
|
|
#ifdef TE_DYNIX
|
2000-01-27 06:48:31 +08:00
|
|
|
#define AOUT_TARGET_FORMAT "a.out-i386-dynix"
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
2000-01-27 06:48:31 +08:00
|
|
|
#ifndef AOUT_TARGET_FORMAT
|
|
|
|
#define AOUT_TARGET_FORMAT "a.out-i386"
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
|
|
|
|
2002-09-17 10:24:40 +08:00
|
|
|
#ifdef TE_FreeBSD
|
|
|
|
#define ELF_TARGET_FORMAT "elf32-i386-freebsd"
|
2006-08-03 00:25:14 +08:00
|
|
|
#define ELF_TARGET_FORMAT64 "elf64-x86-64-freebsd"
|
2005-05-05 22:37:27 +08:00
|
|
|
#elif defined (TE_VXWORKS)
|
|
|
|
#define ELF_TARGET_FORMAT "elf32-i386-vxworks"
|
2012-01-24 05:42:04 +08:00
|
|
|
#elif defined (TE_NACL)
|
|
|
|
#define ELF_TARGET_FORMAT "elf32-i386-nacl"
|
2012-03-17 07:19:47 +08:00
|
|
|
#define ELF_TARGET_FORMAT32 "elf32-x86-64-nacl"
|
|
|
|
#define ELF_TARGET_FORMAT64 "elf64-x86-64-nacl"
|
2002-09-17 10:24:40 +08:00
|
|
|
#endif
|
2005-05-05 22:37:27 +08:00
|
|
|
|
2010-03-08 22:07:45 +08:00
|
|
|
#ifdef TE_SOLARIS
|
|
|
|
#define ELF_TARGET_FORMAT "elf32-i386-sol2"
|
|
|
|
#define ELF_TARGET_FORMAT64 "elf64-x86-64-sol2"
|
|
|
|
#endif
|
|
|
|
|
2002-09-17 10:24:40 +08:00
|
|
|
#ifndef ELF_TARGET_FORMAT
|
|
|
|
#define ELF_TARGET_FORMAT "elf32-i386"
|
|
|
|
#endif
|
|
|
|
|
2006-08-03 00:25:14 +08:00
|
|
|
#ifndef ELF_TARGET_FORMAT64
|
|
|
|
#define ELF_TARGET_FORMAT64 "elf64-x86-64"
|
|
|
|
#endif
|
|
|
|
|
2010-12-31 08:33:36 +08:00
|
|
|
#ifndef ELF_TARGET_FORMAT32
|
|
|
|
#define ELF_TARGET_FORMAT32 "elf32-x86-64"
|
|
|
|
#endif
|
|
|
|
|
2009-07-25 22:58:58 +08:00
|
|
|
#ifndef ELF_TARGET_L1OM_FORMAT
|
|
|
|
#define ELF_TARGET_L1OM_FORMAT "elf64-l1om"
|
|
|
|
#endif
|
|
|
|
|
2011-07-23 04:22:38 +08:00
|
|
|
#ifndef ELF_TARGET_K1OM_FORMAT
|
|
|
|
#define ELF_TARGET_K1OM_FORMAT "elf64-k1om"
|
|
|
|
#endif
|
|
|
|
|
* tc-i386.h (i386_target_format): Define even for ELFs.
(QWORD_MNEM_SUFFIX): New macro.
(CpuK6,CpuAthlon,CpuSledgehammer, Cpu64, CpuNo64, CpuUnknownFlags):
New macros
(CpuMMX,CpuSSE,Cpu3dnow, CpuUnknown): Renumber.
(IgnoreSize, DefaultSize, No_?Suf, FWait, IsString, regKludge, IsPrefix,
ImmExt): Renumber.
(Size64, No_qSuf, NoRex64, Rex64): New macros.
(Reg64, Imm32S, Imm64, Disp32S, Disp64): New macros.
(Imm8, Imm8S, Imm16, Imm32, Imm1, BaseIndex, Disp8, Disp16, Disp32,
InOutPortReg,ShiftCount, Control, Debug, Test, FloatReg, FloatAcc,
SReg2, SReg3, Acc, JumpAbsolute, RegMMX, RegXMM, EsSeg, InvMem): Renumber.
(Reg, WordReg): Add Reg64.
(Imm): Add Imm32S and Imm64.
(EncImm): New.
(Disp): Add Disp64 and Disp32S.
(AnyMem): Add Disp32S.
(RegRex, RegRex64): New macros.
(rex_byte): New type.
* tc-i386.c (set_16bit_code_flag): Kill.
(fits_in_unsigned_long, fits_in_signed_long): New functions.
(reloc): New parameter "signed"; support x86_64.
(set_code_flag): New.
(DEFAULT_ARCH): New macro; default to "i386".
(default_arch): New static variable.
(struct _i386_insn): New fields Operand_PCrel; rex.
(flag_16bit_code): Kill; All tests replaced to "flag_code == CODE_64BIT";
(flag_code): New enum and static variable.
(use_rela_relocations): New static variable.
(flag_code_names): New static variable.
(cpu_arch_flags): Default to CpuUnknownFlags|CpuNo64.
(cpu_arch): Add "sledgehammer"; Add CPUAthlon to Athlon and CpuK6 to
K6 and Athlon.
(i386_align_code): Return plain "nop" for x86_64.
(mode_from_disp_size): Support Disp32S.
(smallest_imm_type): Support Imm32S and Imm64.
(offset_in_range): Support size of 8.
(set_cpu_arch): Do not clobber to Cpu64/CpuNo64.
(md_pseudo_table): Add "code64"; use set_code_flat.
(md_begin): Emit sane error message on hash failure.
(tc_i386_fix_adjustable): Support x86_64 relocations.
(md_assemble): Support QWORD_MNEM_SUFFIX, REX registers,
instructions supported on particular arch just partially,
output of 64bit immediates, handling of Imm32S and Disp32S type.
(i386_immedaite): Support x86_64 relocations; support 64bit constants.
(i386_displacement): Likewise.
(i386_index_check): Cleanup; support 64bit addresses.
(md_apply_fix3): Support x86_64 relocation and rela.
(md_longopts): Add "32" and "64".
(md_parse_option): Add OPTION_32 and OPTION_64.
(i386_target_format): Call even for ELFs; choose between
elf64-x86-64 and elf32-i386.
(i386_validate_fix): Refuse GOTOFF in 64bit mode.
(tc_gen_reloc): Support rela relocations and x86_64.
(intel_e09_1): Support QWORD.
* i386.h (i386_optab): Replace "Imm" with "EncImm".
(i386_regtab): Add flags field.
2000-12-20 21:24:13 +08:00
|
|
|
#if ((defined (OBJ_MAYBE_COFF) && defined (OBJ_MAYBE_AOUT)) \
|
2009-05-20 21:48:16 +08:00
|
|
|
|| defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
|
2009-07-02 16:09:35 +08:00
|
|
|
|| defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O))
|
2007-01-04 06:36:19 +08:00
|
|
|
extern const char *i386_target_format (void);
|
2000-01-27 06:48:31 +08:00
|
|
|
#define TARGET_FORMAT i386_target_format ()
|
|
|
|
#else
|
2009-08-11 05:32:26 +08:00
|
|
|
#ifdef TE_GO32
|
|
|
|
#define TARGET_FORMAT "coff-go32"
|
|
|
|
#endif
|
2000-01-27 06:48:31 +08:00
|
|
|
#ifdef OBJ_AOUT
|
|
|
|
#define TARGET_FORMAT AOUT_TARGET_FORMAT
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2001-11-15 21:19:46 +08:00
|
|
|
#if (defined (OBJ_MAYBE_ELF) || defined (OBJ_ELF))
|
|
|
|
#define md_end i386_elf_emit_arch_note
|
2007-01-04 06:36:19 +08:00
|
|
|
extern void i386_elf_emit_arch_note (void);
|
2001-11-15 21:19:46 +08:00
|
|
|
#endif
|
|
|
|
|
2002-05-23 16:08:48 +08:00
|
|
|
#define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) 0
|
|
|
|
|
2009-03-10 02:33:42 +08:00
|
|
|
/* '$' may be used as immediate prefix. */
|
|
|
|
#undef LOCAL_LABELS_DOLLAR
|
|
|
|
#define LOCAL_LABELS_DOLLAR 0
|
|
|
|
#undef LOCAL_LABELS_FB
|
2002-08-09 20:37:41 +08:00
|
|
|
#define LOCAL_LABELS_FB 1
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
extern const char extra_symbol_chars[];
|
|
|
|
#define tc_symbol_chars extra_symbol_chars
|
|
|
|
|
2005-11-07 14:01:18 +08:00
|
|
|
extern const char *i386_comment_chars;
|
|
|
|
#define tc_comment_chars i386_comment_chars
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
/* The name of the global offset table generated by the compiler. Allow
|
2000-09-16 08:56:47 +08:00
|
|
|
this to be overridden if need be. */
|
1999-05-03 15:29:11 +08:00
|
|
|
#ifndef GLOBAL_OFFSET_TABLE_NAME
|
|
|
|
#define GLOBAL_OFFSET_TABLE_NAME "_GLOBAL_OFFSET_TABLE_"
|
|
|
|
#endif
|
|
|
|
|
2005-07-18 23:24:41 +08:00
|
|
|
#if (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)) && !defined (LEX_AT)
|
2002-08-09 20:37:41 +08:00
|
|
|
#define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) x86_cons (EXP, NBYTES)
|
2005-09-28 22:44:25 +08:00
|
|
|
#endif
|
2011-04-11 16:27:48 +08:00
|
|
|
extern void x86_cons (expressionS *, int);
|
2002-08-09 20:37:41 +08:00
|
|
|
|
|
|
|
#define TC_CONS_FIX_NEW(FRAG,OFF,LEN,EXP) x86_cons_fix_new(FRAG, OFF, LEN, EXP)
|
|
|
|
extern void x86_cons_fix_new
|
2007-01-04 06:36:19 +08:00
|
|
|
(fragS *, unsigned int, unsigned int, expressionS *);
|
2002-08-09 20:37:41 +08:00
|
|
|
|
|
|
|
#define DIFF_EXPR_OK /* foo-. gets turned into PC relative relocs */
|
|
|
|
|
|
|
|
#define NO_RELOC BFD_RELOC_NONE
|
|
|
|
|
2007-01-04 06:36:19 +08:00
|
|
|
void i386_validate_fix (struct fix *);
|
2002-09-05 08:01:18 +08:00
|
|
|
#define TC_VALIDATE_FIX(FIX,SEGTYPE,SKIP) i386_validate_fix(FIX)
|
2002-08-09 20:37:41 +08:00
|
|
|
|
|
|
|
#define tc_fix_adjustable(X) tc_i386_fix_adjustable(X)
|
2007-01-04 06:36:19 +08:00
|
|
|
extern int tc_i386_fix_adjustable (struct fix *);
|
2002-08-09 20:37:41 +08:00
|
|
|
|
gas:
* cgen.c, cgen.h, tc.h, write.c, config/obj-coff.c
* config/tc-a29k.c, config/tc-alpha.c, config/tc-alpha.h
* config/tc-arc.c, config/tc-arc.h, config/tc-arm.c
* config/tc-arm.h, config/tc-avr.c, config/tc-avr.h
* config/tc-cris.c, config/tc-crx.c, config/tc-d10v.c
* config/tc-d10v.h, config/tc-d30v.c, config/tc-d30v.h
* config/tc-dlx.c, config/tc-dlx.h, config/tc-fr30.h
* config/tc-frv.c, config/tc-frv.h, config/tc-h8300.c
* config/tc-h8500.c, config/tc-hppa.c, config/tc-hppa.h
* config/tc-i370.c, config/tc-i370.h, config/tc-i386.c
* config/tc-i386.h, config/tc-i860.c, config/tc-i860.h
* config/tc-i960.c, config/tc-i960.h, config/tc-ia64.c
* config/tc-ip2k.c, config/tc-ip2k.h, config/tc-iq2000.c
* config/tc-iq2000.h, config/tc-m32r.c, config/tc-m32r.h
* config/tc-m68hc11.c, config/tc-m68hc11.h, config/tc-m68k.c
* config/tc-m68k.h, config/tc-m88k.c, config/tc-maxq.c
* config/tc-mcore.c, config/tc-mcore.h, config/tc-mips.c
* config/tc-mips.h, config/tc-mmix.c, config/tc-mn10200.c
* config/tc-mn10300.c, config/tc-msp430.c, config/tc-ns32k.c
* config/tc-openrisc.h, config/tc-or32.c, config/tc-or32.h
* config/tc-pdp11.c, config/tc-pj.c, config/tc-pj.h
* config/tc-ppc.c, config/tc-ppc.h, config/tc-s390.c
* config/tc-s390.h, config/tc-sh64.c, config/tc-sh.c
* config/tc-sh.h, config/tc-sparc.c, config/tc-sparc.h
* config/tc-tahoe.c, config/tc-tic30.c, config/tc-tic4x.c
* config/tc-tic54x.c, config/tc-tic80.c, config/tc-v850.c
* config/tc-v850.h, config/tc-vax.c, config/tc-vax.h
* config/tc-w65.c, config/tc-xstormy16.c, config/tc-xstormy16.h
* config/tc-xtensa.c, config/tc-z8k.c:
Replace all instances of the string "_apply_fix3" with
"_apply_fix".
* po/POTFILES.in, po/gas.pot: Regenerate.
bfd:
* coff-i386.c: Change md_apply_fix3 to md_apply_fix in comment.
cgen:
* doc/porting.texi: Change all mention of md_apply_fix3 and
gas_cgen_md_apply_fix3 to md_apply_fix and gas_cgen_md_apply_fix
respectively.
2005-06-08 01:54:22 +08:00
|
|
|
/* Values passed to md_apply_fix don't include the symbol value. */
|
2002-09-05 08:01:18 +08:00
|
|
|
#define MD_APPLY_SYM_VALUE(FIX) 0
|
2002-10-15 10:20:53 +08:00
|
|
|
|
|
|
|
/* ELF wants external syms kept, as does PE COFF. */
|
2003-01-23 20:51:05 +08:00
|
|
|
#if defined (TE_PE) && defined (STRICT_PE_FORMAT)
|
|
|
|
#define EXTERN_FORCE_RELOC \
|
2002-10-15 10:20:53 +08:00
|
|
|
(OUTPUT_FLAVOR == bfd_target_elf_flavour \
|
|
|
|
|| OUTPUT_FLAVOR == bfd_target_coff_flavour)
|
|
|
|
#else
|
|
|
|
#define EXTERN_FORCE_RELOC \
|
|
|
|
(OUTPUT_FLAVOR == bfd_target_elf_flavour)
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
/* This expression evaluates to true if the relocation is for a local
|
|
|
|
object for which we still want to do the relocation at runtime.
|
|
|
|
False if we are willing to perform this relocation while building
|
2012-01-24 05:42:04 +08:00
|
|
|
the .o file. GOTOFF and GOT32 do not need to be checked here because
|
2009-09-24 11:23:52 +08:00
|
|
|
they are not pcrel. .*/
|
2002-08-09 20:37:41 +08:00
|
|
|
|
2002-09-05 08:01:18 +08:00
|
|
|
#define TC_FORCE_RELOCATION_LOCAL(FIX) \
|
|
|
|
(!(FIX)->fx_pcrel \
|
|
|
|
|| (FIX)->fx_r_type == BFD_RELOC_386_PLT32 \
|
|
|
|
|| (FIX)->fx_r_type == BFD_RELOC_386_GOTPC \
|
2009-09-24 22:36:48 +08:00
|
|
|
|| (FIX)->fx_r_type == BFD_RELOC_X86_64_GOTPCREL \
|
2002-09-05 08:01:18 +08:00
|
|
|
|| TC_FORCE_RELOCATION (FIX))
|
2002-08-09 20:37:41 +08:00
|
|
|
|
2005-10-26 20:29:44 +08:00
|
|
|
extern int i386_parse_name (char *, expressionS *, char *);
|
|
|
|
#define md_parse_name(s, e, m, c) i386_parse_name (s, e, c)
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2009-04-20 14:31:50 +08:00
|
|
|
extern operatorT i386_operator (const char *name, unsigned int operands, char *);
|
|
|
|
#define md_operator i386_operator
|
|
|
|
|
|
|
|
extern int i386_need_index_operator (void);
|
|
|
|
#define md_need_index_operator i386_need_index_operator
|
|
|
|
|
2007-09-26 16:34:24 +08:00
|
|
|
#define md_register_arithmetic 0
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
extern const struct relax_type md_relax_table[];
|
|
|
|
#define TC_GENERIC_RELAX_TABLE md_relax_table
|
|
|
|
|
2003-06-10 14:46:34 +08:00
|
|
|
extern int optimize_align_code;
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
#define md_do_align(n, fill, len, max, around) \
|
2003-06-10 14:46:34 +08:00
|
|
|
if ((n) \
|
|
|
|
&& !need_pass_2 \
|
|
|
|
&& optimize_align_code \
|
|
|
|
&& (!(fill) \
|
|
|
|
|| ((char)*(fill) == (char)0x90 && (len) == 1)) \
|
1999-06-13 00:49:51 +08:00
|
|
|
&& subseg_text_p (now_seg)) \
|
1999-05-03 15:29:11 +08:00
|
|
|
{ \
|
2000-12-28 18:07:56 +08:00
|
|
|
frag_align_code ((n), (max)); \
|
1999-05-03 15:29:11 +08:00
|
|
|
goto around; \
|
|
|
|
}
|
|
|
|
|
2007-07-24 04:03:23 +08:00
|
|
|
#define MAX_MEM_FOR_RS_ALIGN_CODE 31
|
2000-12-28 18:07:56 +08:00
|
|
|
|
2007-01-04 06:36:19 +08:00
|
|
|
extern void i386_align_code (fragS *, int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#define HANDLE_ALIGN(fragP) \
|
|
|
|
if (fragP->fr_type == rs_align_code) \
|
|
|
|
i386_align_code (fragP, (fragP->fr_next->fr_address \
|
|
|
|
- fragP->fr_address \
|
|
|
|
- fragP->fr_fix));
|
|
|
|
|
2007-01-04 06:36:19 +08:00
|
|
|
void i386_print_statistics (FILE *);
|
1999-05-03 15:29:11 +08:00
|
|
|
#define tc_print_statistics i386_print_statistics
|
|
|
|
|
2012-03-14 00:59:57 +08:00
|
|
|
extern unsigned int i386_frag_max_var (fragS *);
|
|
|
|
#define md_frag_max_var i386_frag_max_var
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
#define md_number_to_chars number_to_chars_littleendian
|
|
|
|
|
2008-10-12 20:37:09 +08:00
|
|
|
enum processor_type
|
|
|
|
{
|
|
|
|
PROCESSOR_UNKNOWN,
|
|
|
|
PROCESSOR_I386,
|
|
|
|
PROCESSOR_I486,
|
|
|
|
PROCESSOR_PENTIUM,
|
|
|
|
PROCESSOR_PENTIUMPRO,
|
|
|
|
PROCESSOR_PENTIUM4,
|
|
|
|
PROCESSOR_NOCONA,
|
|
|
|
PROCESSOR_CORE,
|
|
|
|
PROCESSOR_CORE2,
|
gas/
2009-01-10 H.J. Lu <hongjiu.lu@intel.com>
* gas/config/tc-i386.c (cpu_arch): Add corei7, .clflush and
.syscall.
(i386_align_code): Handle PROCESSOR_COREI7.
(md_show_usage): Add corei7, clflush and syscall.
(i386_target_format): Replace cpup4 with cpuclflush.
* gas/config/tc-i386.h (processor_type): Add PROCESSOR_COREI7.
* doc/c-i386.texi: Document corei7, clflush and syscall.
gas/testsuite/
2009-01-10 H.J. Lu <hongjiu.lu@intel.com>
* gas/i386/arch-10.s: Add clflush and syscall.
* gas/i386/x86-64-arch-2.s: Likewise.
* gas/i386/arch-10.d: Updated.
* gas/i386/arch-10-1.l: Likewise.
* gas/i386/arch-10-2.l: Likewise.
* gas/i386/arch-10-3.l: Likewise.
* gas/i386/arch-10-4.l: Likewise.
* gas/i386/x86-64-arch-2.d: Likewise.
opcodes/
2009-01-10 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (cpu_flag_init): Replace CpuP4 and CpuK6 with
CpuClflush and CpuSYSCALL, respectively. Remove CpuK8. Add
CPU_COREI7_FLAGS, CPU_CLFLUSH_FLAGS and CPU_SYSCALL_FLAGS.
(cpu_flags): Remove CpuP4, CpuK6 and CpuK8. Add CpuClflush
and CpuSYSCALL.
(lineno): Removed.
(set_bitfield): Take an argument, lineno. Don't report lineno
on error if it is -1.
(process_i386_cpu_flag): Take an argument, lineno.
(process_i386_opcode_modifier): Likewise.
(process_i386_operand_type): Likewise.
(output_i386_opcode): Likewise.
(opcode_hash_entry): Add lineno.
(process_i386_opcodes): Updated.
(process_i386_registers): Likewise.
(process_i386_initializers): Likewise.
* i386-opc.h (CpuP4): Removed.
(CpuK6): Likewise.
(CpuK8): Likewise.
(CpuClflush): New.
(CpuSYSCALL): Likewise.
(CpuMMX): Updated.
(i386_cpu_flags): Remove cpup4, cpuk6 and cpuk8. Add
cpuclflush and cpusyscall.
* i386-opc.tbl: Update movnti, clflush, lfence, mfence, pause,
syscall and sysret.
* i386-init.h: Regenerated.
* i386-tbl.h: Likewise.
2009-01-11 01:25:52 +08:00
|
|
|
PROCESSOR_COREI7,
|
2009-08-29 05:42:16 +08:00
|
|
|
PROCESSOR_L1OM,
|
2011-07-23 04:22:38 +08:00
|
|
|
PROCESSOR_K1OM,
|
2008-10-12 20:37:09 +08:00
|
|
|
PROCESSOR_K6,
|
|
|
|
PROCESSOR_ATHLON,
|
|
|
|
PROCESSOR_K8,
|
|
|
|
PROCESSOR_GENERIC32,
|
|
|
|
PROCESSOR_GENERIC64,
|
2010-01-07 06:52:47 +08:00
|
|
|
PROCESSOR_AMDFAM10,
|
2011-05-13 06:29:06 +08:00
|
|
|
PROCESSOR_BD
|
2008-10-12 20:37:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern enum processor_type cpu_arch_tune;
|
|
|
|
extern enum processor_type cpu_arch_isa;
|
|
|
|
extern i386_cpu_flags cpu_arch_isa_flags;
|
|
|
|
|
|
|
|
struct i386_tc_frag_data
|
|
|
|
{
|
|
|
|
enum processor_type isa;
|
|
|
|
i386_cpu_flags isa_flags;
|
|
|
|
enum processor_type tune;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* We need to emit the right NOP pattern in .align frags. This is
|
|
|
|
done after the text-to-bits assembly pass, so we need to mark it with
|
|
|
|
the isa/tune settings at the time the .align was assembled. */
|
|
|
|
#define TC_FRAG_TYPE struct i386_tc_frag_data
|
|
|
|
|
|
|
|
#define TC_FRAG_INIT(FRAGP) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
(FRAGP)->tc_frag_data.isa = cpu_arch_isa; \
|
|
|
|
(FRAGP)->tc_frag_data.isa_flags = cpu_arch_isa_flags; \
|
|
|
|
(FRAGP)->tc_frag_data.tune = cpu_arch_tune; \
|
|
|
|
} \
|
|
|
|
while (0)
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
#ifdef SCO_ELF
|
|
|
|
#define tc_init_after_args() sco_id ()
|
2007-01-04 06:36:19 +08:00
|
|
|
extern void sco_id (void);
|
1999-05-03 15:29:11 +08:00
|
|
|
#endif
|
|
|
|
|
2007-03-09 20:35:37 +08:00
|
|
|
#define WORKING_DOT_WORD 1
|
|
|
|
|
2003-05-20 15:58:07 +08:00
|
|
|
/* We want .cfi_* pseudo-ops for generating unwind info. */
|
2003-05-28 00:52:49 +08:00
|
|
|
#define TARGET_USE_CFIPOP 1
|
2003-05-20 15:58:07 +08:00
|
|
|
|
2003-05-28 00:52:49 +08:00
|
|
|
extern unsigned int x86_dwarf2_return_column;
|
|
|
|
#define DWARF2_DEFAULT_RETURN_COLUMN x86_dwarf2_return_column
|
|
|
|
|
|
|
|
extern int x86_cie_data_alignment;
|
|
|
|
#define DWARF2_CIE_DATA_ALIGNMENT x86_cie_data_alignment
|
2003-05-20 15:58:07 +08:00
|
|
|
|
2011-08-02 07:04:23 +08:00
|
|
|
extern int x86_dwarf2_addr_size (void);
|
|
|
|
#define DWARF2_ADDR_SIZE(bfd) x86_dwarf2_addr_size ()
|
|
|
|
|
2008-02-13 18:14:40 +08:00
|
|
|
#define tc_parse_to_dw2regnum tc_x86_parse_to_dw2regnum
|
|
|
|
extern void tc_x86_parse_to_dw2regnum (expressionS *);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
|
|
|
#define tc_cfi_frame_initial_instructions tc_x86_frame_initial_instructions
|
2007-01-04 06:36:19 +08:00
|
|
|
extern void tc_x86_frame_initial_instructions (void);
|
2003-05-20 15:58:07 +08:00
|
|
|
|
2004-10-08 21:55:11 +08:00
|
|
|
#define md_elf_section_type(str,len) i386_elf_section_type (str, len)
|
2007-01-04 06:36:19 +08:00
|
|
|
extern int i386_elf_section_type (const char *, size_t);
|
2004-10-08 21:55:11 +08:00
|
|
|
|
2008-10-10 01:31:43 +08:00
|
|
|
#ifdef TE_SOLARIS
|
|
|
|
#define md_fix_up_eh_frame(sec) i386_solaris_fix_up_eh_frame (sec)
|
|
|
|
extern void i386_solaris_fix_up_eh_frame (segT);
|
|
|
|
#endif
|
|
|
|
|
2005-07-25 23:41:08 +08:00
|
|
|
/* Support for SHF_X86_64_LARGE */
|
* include/elf/ia64.h (SHT_IA_64_VMS_DISPLAY_NAME_INFO,
EF_IA_64_ARCHVER_1): New macros. Minor reformatting.
* bfd/Makefile.am (BFD32_BACKENDS): Add new object vmsutil.lo
(BFD32_BACKENDS_CFILES): Add new file vmsutil.c
(vmsutil.lo): Add dependency rule
* bfd/Makefile.in: Regenerate
* bfd/config.bfd (ia64*-*-*vms*): Add case.
* bfd/configure.in (bfd_elf64_ia64_vms_vec): Add case.
* bfd/configure: Regenerate
* bfd/vmsutil.[ch]: New files
* bfd/elf-bfd.h (struct bfd_elf_special_section): Change type of
attr to bfd_vma.
* bfd/elfxx-ia64.c (elfNN_vms_post_process_headers,
elfNN_vms_section_processing, elfNN_vms_final_write_processing,
elfNN_vms_close_and_cleanup, elfNN_vms_section_from_shdr,
elfNN_vms_object_p): New functions
* bfd/targets.c (bfd_elf64_ia64_vms_vec): New target.
* gas/configure.tgt(ia64-*-*vms*): New target.
* gas/dwarf2dbg.h (dwarf2_loc_mark_labels): Make extern.
* gas/tc.h (md_number_to_chars): Declare iff undefined.
* gas/config/obj-elf.c (obj_elf_change_section): Change type of
arg attr to bfd_vma.
(obj_elf_parse_section_letters): Return a bfd_vma. Change type of
variables attr, md_attr to bfd_vma.
(obj_elf_section_word): Likewise.
(obj_elf_section): Change type of variable attr to bfd_vma
* gas/config/obj-elf.h (obj_elf_change_section): Change type of
arg attr to bfd_vma
* gas/config/tc-ia64.c (bfdver.h,time.h): Include.
(ia64_elf_section_letter): Now returns a bfd_vma.
Handle VMS specific attributes.
(ia64_elf_section_flags): Arg attr now a bfd_vma.
(ia64_init): Don't turn on dependency checking for VMS.
(ia64_target_format): Check for VMS flag bit.
(do_alias): Hande decc$ functions.
(get_vms_time): New function.
(ia64_vms_note): New function.
* gas/config/tc-ia64.h (ia64_elf_section_letter): Now returns a bfd_vma.
(ia64_elf_section_flags): Arg attr now a bfd_vma.
(tc_init_after_args): Define for VMS.
* gas/config/tc-alpha.c (alpha_elf_section_letter): Return a bfd_vma.
(alpha_elf_section_flags): Change type of arg attr to bfd_vma.
* gas/config/tc-alpha.h: Likewise.
* gas/config/tc-i386.c (x86_64_section_letter): Return a bfd_vma.
(x86_64_section_word): Return a bfd_vma.
* gas/config/tc-i386.h: Likewise.
* gas/config/tc-ip2k.c (ip2k_elf_section_flags): Change type of arg
attr to bfd_vma.
* gas/config/tc-ip2k.h: Likewise.
* gas/config/tc-mep.c (mep_elf_section_letter): Return a bfd_vma.
(mep_elf_section_flags): Change type of arg attr to bfd_vma.
* gas/config/tc-mep.h: Likewise.
* gas/config/tc-ppc.c (ppc_section_letter): Return a bfd_vma.
(ppc_section_word): Return a bfd_vma.
(ppc_section_flags): Change type of arg attr to bfd_vma.
* gas/config/tc-ppc.h: Likewise.
* gas/config/te-vms.h (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
DWAR2_FILE_TIME_NAME, DWARF2_FILE_SIZE_NAME, DWARF2_FILEN_NAME):
New file with new macros
* gas/dwarf2dbg.c (get_filenum, out_file_list): Default and call new
macros.
2009-01-15 20:42:52 +08:00
|
|
|
extern bfd_vma x86_64_section_word (char *, size_t);
|
|
|
|
extern bfd_vma x86_64_section_letter (int, char **);
|
2005-07-25 23:41:08 +08:00
|
|
|
#define md_elf_section_letter(LETTER, PTR_MSG) x86_64_section_letter (LETTER, PTR_MSG)
|
|
|
|
#define md_elf_section_word(STR, LEN) x86_64_section_word (STR, LEN)
|
|
|
|
|
2004-10-18 20:32:13 +08:00
|
|
|
#ifdef TE_PE
|
|
|
|
|
|
|
|
#define O_secrel O_md1
|
|
|
|
|
|
|
|
#define TC_DWARF2_EMIT_OFFSET tc_pe_dwarf2_emit_offset
|
|
|
|
void tc_pe_dwarf2_emit_offset (symbolS *, unsigned int);
|
|
|
|
|
|
|
|
#endif /* TE_PE */
|
|
|
|
|
2009-04-20 14:31:50 +08:00
|
|
|
/* X_add_symbol:X_op_symbol (Intel mode only) */
|
|
|
|
#define O_full_ptr O_md2
|
|
|
|
|
2012-02-21 17:13:02 +08:00
|
|
|
#ifdef OBJ_MACH_O
|
|
|
|
|
|
|
|
#define TC_FORCE_RELOCATION(FIX) (obj_mach_o_force_reloc (FIX))
|
|
|
|
|
|
|
|
#define TC_FORCE_RELOCATION_SUB_SAME(FIX,SEG) \
|
|
|
|
(obj_mach_o_force_reloc_sub_same (FIX, SEG))
|
|
|
|
|
|
|
|
#define TC_FORCE_RELOCATION_SUB_LOCAL(FIX,SEG) \
|
|
|
|
(obj_mach_o_force_reloc_sub_local (FIX, SEG))
|
|
|
|
|
|
|
|
#define TC_VALIDATE_FIX_SUB(FIX, SEG) 1
|
|
|
|
|
|
|
|
#endif /* OBJ_MACH_O */
|
|
|
|
|
2002-08-09 20:37:41 +08:00
|
|
|
#endif /* TC_I386 */
|