M68K TLS support.
[deliverable/binutils-gdb.git] / gas / ChangeLog
index 7740294e9da82b0eb3fda6cf19edb31d067c4b51..1c5d4c7f695fa3e2d6e5f46ced3f4618d2d8f64b 100644 (file)
@@ -1,3 +1,194 @@
+2009-02-03  Maxim Kuvyrkov  <maxim@codesourcery.com>
+
+       * config/m68k-parse.h (enum pic_relocation): Add values for TLS
+       relocations.
+       * config/m68k-parse.y (yylex): Parse TLS relocations.
+       * config/tc-m68k.c (m68k_elf_cons): New static function.
+       (md_pseudo_table): Use it.
+       (get_reloc_code, tc_m68k_fix_adjustable, tc_gen_reloc): Handle TLS
+       relocations.
+       (md_apply_fix): Fix to set thread local flag.
+       (m68k_elf_suffix): New static function; helper for m68k_elf_cons.
+
+2009-02-03  Vince Weaver <vince@csl.cornell.edu>
+
+       PR 9779
+       * config/tc-pdp11.c (parse_op_no_deferred): Fix handling of
+       indexed addressing for symbolic expressions.
+
+2009-01-29  Mark Mitchell  <mark@codesourcery.com>
+
+       * config/tc-arm.c (BAD_SP): Define.
+       (s_arm_unwind_fnstart): Use REG_SP.
+       (s_arm_unwind_setfp): Likewise.
+       (reject_bad_reg): New macro.
+       (do_co_reg): Check for bad registers.
+       (do_co_reg2c): Likewise.
+       (do_srs): Use REG_SP.
+       (do_t_add_sub): Check for bad registers.
+       (do_t_adr): Likewise.
+       (do_t_arit3): Likewise.
+       (do_t_arit3c): Likewise.
+       (do_t_bfc): Likewise.
+       (do_t_bfi): Likewise.
+       (do_t_bfx): Likewise.
+       (do_t_blx): Likewise.
+       (do_t_bx): Likewise.
+       (do_t_bxj): Likewise.
+       (do_t_clz): Likewise.
+       (do_t_div): Likewise.
+       (do_t_mla): Likewise.
+       (do_t_mlal): Likewise.
+       (do_t_mov_cmp): Likewise.
+       (do_t_mov16): Likewise.
+       (do_t_mvn_tst): Likewise.
+       (do_t_mrs): Likewise.
+       (do_t_msr): Likewise.
+       (do_t_mul): Likewise.
+       (do_t_mull): Likewise.
+       (do_t_orn): Likewise.
+       (do_t_pkhbt): Likewise.
+       (do_t_pld): Likewise.
+       (do_t_rbit): Likewise.
+       (do_t_rev): Likewise.
+       (do_t_rrx): Likewise.
+       (do_t_rsb): Likewise.
+       (do_t_shift): Likewise.
+       (do_t_simd): Likewise.
+       (do_t_ssat): Likewise.
+       (do_t_ssat16): Likewise.
+       (do_t_sxtah): Likewise.
+       (do_t_sxth): Likewise.
+       (do_t_tb): Likewise.
+       (do_t_usat): Likewise.
+       (do_t_usat16): Likewise.
+       (nysn_insert_sp): Use REG_SP.
+
+2009-01-29  Mark Mitchell  <mark@codesourcery.com>
+
+       * config/tc-arm.c (do_t_orn): New function.
+       (do_t_rrx): Likewise.
+       (insns): Add orn and rrx.
+
+2009-01-29  Mark Mitchell  <mark@codesourcery.com>
+
+       * config/tc-arm.c (insns): Add qasx, qsax, shasx, shsax, ssax,
+       uasx, uhasx, uhsx, uqasx, uqsax, usax. 
+
+2009-01-29  Mark Mitchell  <mark@codesourcery.com>
+
+       * config/tc-arm.c (insns): Correct encoding of qadd, qdadd, qsub,
+       qdsub in Thumb-2 mode.
+
+2009-01-29  Paul Brook  <paul@codesourcery.com>
+            Mark Mitchell  <mark@codesourcery.com>
+
+       * config/tc-arm.c (do_t_mul): In Thumb-2 mode, use 16-bit encoding
+       of MUL when possible.
+
+2009-01-29  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-mep.h (DIFF_EXPR_OK): Do not define.
+
+2009-01-29  Nathan Sidwell  <nathan@codesourcery.com>
+           Catherine Moore <clm@codesourcery.com?
+
+       * doc/c-arm.texi (ARM Directives): Alphabetize. Document .2byte,
+       .4byte, .8byte, .bss, .even, .extend, .ldouble, .packed, .secrel32
+       directives.
+
+2009-01-27  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-mips.c (append_insn): Cope with a complex reloc
+       sequence containing an unsupported reloc type.
+       (enum options): Replace computed #define's constants for option
+       numbers with this enum.
+       (struct md_longopts): Use the enum.  Allow OPTION_32 in a non-ELF
+       environment.
+       (md_parse_option): Allow -32 in a non-ELF environment.
+
+2009-01-26  Andrew Stubbs  <ams@codesourcery.com>
+
+       * config/tc-arm.c (attributes_set_explicitly): New array.
+       (s_arm_eabi_attribute): Check return value from s_vendor_attribute.
+       (cpu_arch): Add ARM_ARCH_V5T.
+       (aeabi_set_attribute_int): New function.
+       (aeabi_set_attribute_string): New function.
+       (aeabi_set_public_attributes): Set attributes according to the user's
+       intentions, rather than the actual state of the binary.
+       Use aeabi_set_attribute_int and aeabi_set_attribute_string instead of
+       bfd_elf_add_proc_attr_int and bfd_elf_add_proc_attr_string.
+       Support WMMXv2. Use attribute names instead of numbers.
+       * read.c (s_vendor_attribute): Change return type to int.
+       Return the tag number that was set.
+       * read.h (s_vendor_attribute): Change return type to int.
+
+2009-01-26  Eric B. Weddington  <eric.weddington@atmel.com>
+
+       PR 9789
+       * config/tc-avr.c (mcu_types): Fix typo in atmega128rfa1 name.
+       * doc/c-avr.texi: Likewise.
+
+2009-01-23  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * doc/c-arm.texi (): Document -mwarn-deprecated.
+       * config/tc-arm.c (WARN_DEPRECATED): Remove.  Replace with ...
+       (warn_on_deprecated): ... this.
+       (opcode_lookup, md_assemble): Check it before warning.
+       (arm_opts): Add m[no-]warn-deprecated.
+       (md_parse_option): Replace WARN_DEPRECATED with
+       warn_on_deprecated.
+
+2009-01-23  Andreas Schwab  <schwab@suse.de>
+
+       * config/tc-mips.c (macro) [M_DINS, M_SEQ_I, M_SNE_I]: Cast
+       arguments to macro_build to match format.
+
+       * config/obj-elf.h (LOCAL_LABEL_PREFIX): Conditionally define.
+       * config/tc-s390.h (LOCAL_LABEL_PREFIX): Don't define.
+
+2009-01-19  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-arm.h (CONVERT_SYMBOLIC_ATTRIBUTE): Only define for
+       ELF format ARM targets.
+       * config/tc-arm.c (arm_convert_symbolic_attribute): Likewise.
+
+2009-01-19  Nick Clifton  <nickc@redhat.com>
+
+       * configure.tgt: Restore alpha sorting to object format switch
+       statement.
+
+2009-01-19  Andrew Stubbs  <ams@codesourcery.com>
+
+       * read.c (s_vendor_attribute): Allow for unknown flag bits in type.
+
+2009-01-16  Mark Shinwell  <shinwell@codesourcery.com>
+
+       * config/te-armeabi.h (EABI_DEFAULT): Use EF_ARM_EABI_VER5.
+       * config/te-armlinuxeabi.h (EABI_DEFAULT): Likewise.
+
+2009-01-16  Andrew Stubbs  <ams@codesourcery.com>
+           Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * config/tc-arm.c (arm_copy_symbol_attributes): New function.
+       * config/tc-arm.h (arm_copy_symbol_attributes): New prototype.
+       (CONVERT_SYMBOLIC_ATTRIBUTE): New define.
+       * read.c (s_vendor_attribute): Add support for symbolic tag names.
+       Improve string parser.
+       * doc/c-arm.texi (ARM Machine Directives): Document
+       .eabi_attribute symbolic tag names.
+
+2009-01-16  Alan Modra  <amodra@bigpond.net.au>
+
+       * configure.in (commonbfdlib): Delete.
+       * configure: Regenerate.
+       * po/POTFILES.in: Regenerate.
+
+2009-01-15  Andrew Stubbs  <ams@codesourcery.com>
+           Julian Brown   <julian@codesourcery.com>
+
+       * config/tc-arm.c (cpu_arch): Change ARM_ARCH_V6M to 11.
+
 2009-01-15  Andrew Stubbs  <ams@codesourcery.com>
 
        * read.c (s_vendor_attribute): bfd_elf_add_obj_attr_compat ->
        * config/tc-ppc.h: Likewise.
        * config/tc-frv.h: Provide a prototype for frv_md_number_to_chars.
        * 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
-        * dwarf2dbg.c (get_filenum, out_file_list): Default and call new
-        macros.
+       DWAR2_FILE_TIME_NAME, DWARF2_FILE_SIZE_NAME, DWARF2_FILEN_NAME):
+       New file with new macros
+       * dwarf2dbg.c (get_filenum, out_file_list): Default and call new
+       macros.
 
 2009-01-15  Nick Clifton  <nickc@redhat.com>
 
        instructions before generating a Thumb2 nop.
 
 2009-01-14  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
-       
+
        * config/tc-s390.h: Define LOCAL_LABEL_PREFIX.
 
 2009-01-12  Alan Modra  <amodra@bigpond.net.au>
        * config/tc-i386.c (build_modrm_byte): Remove 5 operand instruction
        support.  Don't swap REG and NDS for FMA.
 
-2009-01-02  Matthias Klose  <doko@ubuntu.com> 
+2009-01-02  Matthias Klose  <doko@ubuntu.com>
 
-       * itbl-ops.c (itbl_disassemble): Don't rely on undefined sprintf 
-       behaviour. 
+       * itbl-ops.c (itbl_disassemble): Don't rely on undefined sprintf
+       behaviour.
 
 For older changes see ChangeLog-2008
 \f
This page took 0.026124 seconds and 4 git commands to generate.