1 1.1 christos 2015-12-24 Thomas Preud'homme <thomas.preudhomme (a] arm.com> 2 1.1 christos 3 1.1 christos * config/tc-arm.c (arm_ext_v6t2_v8m): New feature for instructions 4 1.1 christos shared between ARMv6T2 and ARMv8-M. 5 1.1 christos (move_or_literal_pool): Check mov.w/mvn and movw availability against 6 1.1 christos arm_ext_v6t2 and arm_ext_v6t2_v8m respectively instead of checking 7 1.1 christos arm_arch_t2. 8 1.1 christos (do_t_branch): Error out for wide conditional branch instructions if 9 1.1 christos targetting ARMv8-M Baseline. 10 1.1 christos (non_v6t2_wide_only_insn): Add the logic for new wide-only instructions 11 1.1 christos in ARMv8-M Baseline. 12 1.1 christos (wide_insn_ok): New function. 13 1.1 christos (md_assemble): Use wide_insn_ok instead of non_v6t2_wide_only_insn and 14 1.1 christos adapt error message for unsupported wide instruction to ARMv8-M 15 1.1 christos Baseline. 16 1.1 christos (insns): Reorganize instructions shared by ARMv8-M Baseline and 17 1.1 christos ARMv6t2 architecture. 18 1.1 christos (arm_cpus): Set feature bit ARM_EXT2_V6T2_V8M for marvell-pj4 and 19 1.1 christos marvell-whitney cores. 20 1.1 christos (arm_archs): Define armv8-m.base architecture. 21 1.1 christos (cpu_arch_ver): Define ARM_ARCH_V8M_BASE architecture version. 22 1.1 christos (aeabi_set_public_attributes): Add logic to set Tag_CPU_arch to 17 for 23 1.1 christos ARMv8-M Mainline. Set Tag_DIV_use for ARMv8-M Baseline as well. 24 1.1 christos 25 1.1 christos 2015-12-24 Thomas Preud'homme <thomas.preudhomme (a] arm.com> 26 1.1 christos 27 1.1 christos * config/tc-arm.c (arm_ext_m): Include ARMv8-M. 28 1.1 christos (arm_ext_v8m): New feature for ARMv8-M. 29 1.1 christos (arm_ext_atomics): New feature for ARMv8 atomics. 30 1.1 christos (do_tt): New encoding function for TT* instructions. 31 1.1 christos (insns): Add new entries for ARMv8-M specific instructions and 32 1.1 christos reorganize the ones shared by ARMv8-M Mainline and ARMv8-A. 33 1.1 christos (arm_archs): Define armv8-m.main architecture. 34 1.1 christos (cpu_arch_ver): Define ARM_ARCH_V8M_MAIN architecture version and 35 1.1 christos clarify the ordering rule. 36 1.1 christos (aeabi_set_public_attributes): Use TAG_CPU_ARCH_* macro to refer to 37 1.1 christos Tag_CPU_arch values for ARMv7e-M detection. Add logic to keep setting 38 1.1 christos Tag_CPU_arch to ARMv8-A for -march=all. Also set Tag_CPU_arch_profile 39 1.1 christos to 'A' if extension bit for atomic instructions is set, unless it is 40 1.1 christos ARMv8-M. Set Tag_THUMB_ISA_use to 3 for ARMv8-M. Set Tag_DIV_use to 0 41 1.1 christos for ARMv8-M Mainline. 42 1.1 christos 43 1.1 christos 2015-12-24 Thomas Preud'homme <thomas.preudhomme (a] arm.com> 44 1.1 christos 45 1.1 christos * config/tc-arm.c (move_or_literal_pool): Check mov.w, mvm and movw 46 1.1 christos availability against arm_ext_v6t2 instead of checking arm_arch_t2, 47 1.1 christos fixing comments along the way. 48 1.1 christos (handle_it_state): Check arm_ext_v6t2 instead of arm_arch_t2 to 49 1.1 christos generate IT instruction. 50 1.1 christos (t1_isa_t32_only_insn): New function. 51 1.1 christos (md_assemble): Use above new function to check for invalid wide 52 1.1 christos instruction for CPU Thumb ISA and to determine what Thumb extension 53 1.1 christos bit is necessary for that instruction. 54 1.1 christos (md_apply_fix): Use arm_ext_v6t2 instead of arm_arch_t2 to decide if 55 1.1 christos branch is out of range. 56 1.1 christos 57 1.1 christos 2015-12-21 Nick Clifton <nickc (a] redhat.com> 58 1.1 christos 59 1.1 christos PR gas/19386 60 1.1 christos * doc/as.texinfo (Strings): Prepend a space to index entries that 61 1.1 christos start with a backslash. This works around a problem in the pdf 62 1.1 christos generator. 63 1.1 christos 64 1.1 christos 2015-12-18 H.J. Lu <hongjiu.lu (a] intel.com> 65 1.1 christos 66 1.1 christos * config/tc-i386.c (optimize_imm): Store 32-bit immediate in 67 1.1 christos 64-bit only for 64-bit BFD. 68 1.1 christos (optimize_disp): Optimize 64-bit displacement to 32-bit only 69 1.1 christos for 64-bit BFD. 70 1.1 christos 71 1.1 christos 2015-12-17 Ramana Radhakrishnan <ramana.radhakrishnan (a] arm.com> 72 1.1 christos 73 1.1 christos * config/tc-arm.c (aeabi_set_public_attributes): Adjust 74 1.1 christos TAG_ARCH_profile for armv8-a. 75 1.1 christos 76 1.1 christos 2015-12-16 Mickael Guene <mickael.guene (a] st.com> 77 1.1 christos 78 1.1 christos * doc/c-arm.texi: Add documentation about new directives 79 1.1 christos * config/tc-arm.c (group_reloc_table): Add mapping between gas 80 1.1 christos syntax and new relocations. 81 1.1 christos (do_t_add_sub): Keep new relocations for add operand. 82 1.1 christos (do_t_mov_cmp): Keep new relocations for mov operand. 83 1.1 christos (insns): Use 'shifter operand with possible group relocation' 84 1.1 christos operand parse code for movs operand. 85 1.1 christos (md_apply_fix): Implement mov and add encoding when new 86 1.1 christos relocations on them. 87 1.1 christos (tc_gen_reloc): Add new relocations. 88 1.1 christos (arm_fix_adjustable): Since offset has a limited range ([0:255]) 89 1.1 christos we disable adjust_reloc_syms() for new relocations. 90 1.1 christos 91 1.1 christos 2015-12-15 Nick Clifton <nickc (a] redhat.com> 92 1.1 christos 93 1.1 christos * doc/c-msp430.texi (MSP430 Options): Remove references to a 94 1.1 christos non-existant silicon errata. 95 1.1 christos * config/tc-msp430.c: Likewise. 96 1.1 christos 97 1.1 christos 2015-12-14 Matthew Wahab <matthew.wahab (a] arm.com> 98 1.1 christos 99 1.1 christos * config/tc-aarch64.c (parse_neon_type_for_operand): Adjust to 100 1.1 christos take into account new vector type 2H. 101 1.1 christos (vectype_to_qualifier): Likewise. 102 1.1 christos 103 1.1 christos 2015-12-14 Matthew Wahab <matthew.wahab (a] arm.com> 104 1.1 christos 105 1.1 christos * config/tc-aarch64.c (vectype_to_qualifier): Calculate operand 106 1.1 christos qualifier from per-type base and offet. 107 1.1 christos 108 1.1 christos 2015-12-14 Yoshinori Sato <ysato (a] users.sourceforge.jp> 109 1.1 christos 110 1.1 christos * config/rx-defs.h(rx_cpu_type): Add RXV2 type. 111 1.1 christos * config/tc-rx.c(cpu_type_list): New type lookup table. 112 1.1 christos (md_parse_option): Use lookup table for choose cpu. 113 1.1 christos (md_show_usage): Add rxv2 for mcpu option. 114 1.1 christos * doc/c-rx.texi: Likewise. 115 1.1 christos * config/rx-parse.y: Add v2 instructions and ACC register. 116 1.1 christos (rx_check_v2): check v2 type. 117 1.1 christos 118 1.1 christos 2015-12-14 Jan Beulich <jbeulich (a] suse.com> 119 1.1 christos 120 1.1 christos * dw2gencfi.c (dot_cfi_label): Free "name". 121 1.1 christos 122 1.1 christos 2015-12-11 Matthew Wahab <matthew.wahab (a] arm.com> 123 1.1 christos 124 1.1 christos * config/tc-aarch64.c (aarch64_hint_opt_hsh): New. 125 1.1 christos (parse_barrier_psb): New. 126 1.1 christos (parse_operands): Add case for AARCH64_OPND_BARRIER_PSB. 127 1.1 christos (md_begin): Set up aarch64_hint_opt_hsh. 128 1.1 christos 129 1.1 christos 2015-12-11 Matthew Wahab <matthew.wahab (a] arm.com> 130 1.1 christos 131 1.1 christos * config/tc-aarch64.c (aarch64_features): Add "profile". 132 1.1 christos * doc/c-aarch64.texi (AArch64 Extensions): Add "profile". 133 1.1 christos 134 1.1 christos 2015-12-10 Matthew Wahab <matthew.wahab (a] arm.com> 135 1.1 christos 136 1.1 christos * config/tc-aarch64.c (parse_sys_ins_reg): Add check of 137 1.1 christos architectural support for system register. 138 1.1 christos 139 1.1 christos 2015-12-10 Jose E. Marchesi <jose.marchesi (a] oracle.com> 140 1.1 christos 141 1.1 christos * doc/c-sparc.texi (Sparc-Regs): Document the %dN and %qN notation 142 1.1 christos for floating-point registers. 143 1.1 christos 144 1.1 christos 2015-12-10 Matthew Wahab <matthew.wahab (a] arm.com> 145 1.1 christos 146 1.1 christos * doc/c-aarch64.texi (AArch64 Extensions): Update entry for crc. 147 1.1 christos 148 1.1 christos 2015-12-10 Andrew Burgess <andrew.burgess (a] embecosm.com> 149 1.1 christos 150 1.1 christos * config/tc-arc.c (md_parse_option): Return 1 in order to accept 151 1.1 christos dummy arguments. 152 1.1 christos 153 1.1 christos 2015-12-09 Jose E. Marchesi <jose.marchesi (a] oracle.com> 154 1.1 christos 155 1.1 christos * config/tc-sparc.c (sparc_ip): Support %dN and %qN notation for 156 1.1 christos double and quad-precision floating-point registers. 157 1.1 christos 158 1.1 christos 2015-12-09 Nick Clifton <nickc (a] redhat.com> 159 1.1 christos 160 1.1 christos * config/tc-rx.c (rx_relax_frag): Fix compile time warning. 161 1.1 christos 162 1.1 christos 2015-12-08 Jan Beulich <jbeulich (a] suse.com> 163 1.1 christos 164 1.1 christos * read.c (in_bss): New. 165 1.1 christos (do_align): Use it to also warn for non-zero fill in .bss. 166 1.1 christos (do_org): Likewise. 167 1.1 christos (s_space): Likewise. 168 1.1 christos (s_fill): Error on bad use in .bss/.struct. 169 1.1 christos (float_cons): Likewise. 170 1.1 christos (emit_leb128_expr): Likewise. 171 1.1 christos (emit_expr_with_reloc): Defer handling use inside .struct. Also 172 1.1 christos error on non-zero item added to .bss. 173 1.1 christos (stringer_append_char): Error on non-zero character. 174 1.1 christos 175 1.1 christos 2015-12-08 Jan Beulich <jbeulich (a] suse.com> 176 1.1 christos 177 1.1 christos * read.c (stringer): Move absolute section check up. Return 178 1.1 christos right away. 179 1.1 christos 180 1.1 christos 2015-12-08 Jan Beulich <jbeulich (a] suse.com> 181 1.1 christos 182 1.1 christos * config/obj-elf.c (elf_file_symbol): Tighten condition for 183 1.1 christos moving BSF_FILE symbols. 184 1.1 christos 185 1.1 christos 2015-12-08 DJ Delorie <dj (a] redhat.com> 186 1.1 christos 187 1.1 christos * config/rl78-parse.y: Make all branches relaxable via 188 1.1 christos rl78_linkrelax_branch(). 189 1.1 christos * config/tc-rl78.c (rl78_linkrelax_branch): Mark all relaxable 190 1.1 christos branches with relocs. 191 1.1 christos (options): Add OPTION_NORELAX. 192 1.1 christos (md_longopts): Add -mnorelax. 193 1.1 christos (md_parse_option): Support OPTION_NORELAX. 194 1.1 christos (op_type_T): Add bh, sk, call, and br. 195 1.1 christos (rl78_opcode_type): Likewise. 196 1.1 christos (rl78_relax_frag): Fix not-relaxing logic. Add sk. 197 1.1 christos (md_convert_frag): Fix relocation handling. 198 1.1 christos (tc_gen_reloc): Strip relax relocs when not linker relaxing. 199 1.1 christos (md_apply_fix): Defer overflow handling for anything that needs a 200 1.1 christos PLT, to the linker. 201 1.1 christos * config/tc-rl78.h (TC_FORCE_RELOCATION): Force all relocations to 202 1.1 christos the linker when linker relaxing. 203 1.1 christos * doc/c-rl78.texi (norelax): Add. 204 1.1 christos 205 1.1 christos 2015-12-07 Alan Modra <amodra (a] gmail.com> 206 1.1 christos 207 1.1 christos * config/tc-ppc.c (md_apply_fix): Localize variables. Reduce casts. 208 1.1 christos 209 1.1 christos 2015-12-04 Nick Clifton <nickc (a] redhat.com> 210 1.1 christos 211 1.1 christos PR gas/19276 212 1.1 christos * config/tc-arm.h (SUB_SEGMENT_ALIGN): Do not define for COFF/PE 213 1.1 christos targets. 214 1.1 christos 215 1.1 christos 2015-12-04 Claudiu Zissulescu <claziss (a] synopsys.com> 216 1.1 christos 217 1.1 christos * config/tc-arc.c (arc_option): Sets all internal gas options when 218 1.1 christos parsing .cpu directive. 219 1.1 christos (declare_register_set): Declare all 64 registers. 220 1.1 christos (md_section_align): Refactor. 221 1.1 christos (md_pcrel_from_section): Remove assert. 222 1.1 christos (pseudo_operand_match): Fix pseudo operand match. 223 1.1 christos (find_reloc): Use flags filed, extend matching. 224 1.1 christos * config/tc-arc.h (TC_VALIDATE_FIX): Don't fixup any PLT 225 1.1 christos relocation. 226 1.1 christos 227 1.1 christos 2015-12-01 Alan Modra <amodra (a] gmail.com> 228 1.1 christos 229 1.1 christos * config/aout_gnu.h: Invoke aout N_* macros with pointer to 230 1.1 christos struct internal_exec. 231 1.1 christos 232 1.1 christos 2015-11-27 Matthew Wahab <matthew.wahab (a] arm.com> 233 1.1 christos 234 1.1 christos * config/tc-aarch64.c (aarch64_features): Add "fp16". 235 1.1 christos * doc/c-aarch64.texi (Architecture Extensions): Add "fp16". 236 1.1 christos 237 1.1 christos 2015-11-24 Christophe Monat <christophe.monat (a] st.com> 238 1.1 christos 239 1.1 christos * config/tc-arm.c (move_or_literal_pool): Do not transform ldr 240 1.1 christos ri,=imm into movs when ri is a high register in T1. 241 1.1 christos 242 1.1 christos 2015-11-20 Nick Clifton <nickc (a] redhat.com> 243 1.1 christos 244 1.1 christos * po/fr.po: Updated French translation. 245 1.1 christos * po/uk.po: Updated Ukraninan translation. 246 1.1 christos * po/zh_CN.po: New simplified Chinese translation. 247 1.1 christos * configure.ac (ALL_LINGUAS): Add zh_CN. 248 1.1 christos * configure: Regenerate. 249 1.1 christos 250 1.1 christos 2015-11-19 Matthew Wahab <matthew.wahab (a] arm.com> 251 1.1 christos 252 1.1 christos * config/tc-arm.c (arm_archs): Add "armv8.2-a". 253 1.1 christos * doc/c-arm.texi (-march): Add "armv8.2-a". 254 1.1 christos 255 1.1 christos 2015-11-19 Matthew Wahab <matthew.wahab (a] arm.com> 256 1.1 christos 257 1.1 christos * config/tc-aarch64.c (aarch64_archs): Add "armv8.2-a". 258 1.1 christos * doc/c-aarch64.texi (-march): Likewise. 259 1.1 christos 260 1.1 christos 2015-11-19 Alan Modra <amodra (a] gmail.com> 261 1.1 christos 262 1.1 christos * read.c (output_big_leb128): Describe "sign" parameter. 263 1.1 christos 264 1.1 christos 2015-11-19 Alan Modra <amodra (a] gmail.com> 265 1.1 christos 266 1.1 christos * config/tc-ppc.h (SUB_SEGMENT_ALIGN): Define only for ELF. 267 1.1 christos 268 1.1 christos 2015-11-16 Mike Frysinger <vapier (a] gentoo.org> 269 1.1 christos 270 1.1 christos * config/tc-microblaze.c (parse_imm): Add an offsetT cast. 271 1.1 christos 272 1.1 christos 2015-11-13 Tristan Gingold <gingold (a] adacore.com> 273 1.1 christos 274 1.1 christos * configure: Regenerate. 275 1.1 christos 276 1.1 christos 2015-11-13 Tristan Gingold <gingold (a] adacore.com> 277 1.1 christos 278 1.1 christos * NEWS: Add marker for 2.26. 279 1.1 christos 280 1.1 christos 2015-11-12 James Greenhalgh <james.greenhalgh (a] arm.com> 281 1.1 christos 282 1.1 christos * config/tc-aarch64.c (aarch64_cpus): Add cortex-a35. 283 1.1 christos * doc/c-aarch64.texi (-mcpu=): Likewise. 284 1.1 christos 285 1.1 christos 2015-11-12 James Greenhalgh <james.greenhalgh (a] arm.com> 286 1.1 christos 287 1.1 christos * config/tc-arm.c (arm_cpus): Likewise. 288 1.1 christos * doc/c-arm.texi (-mcpu=): Likewise. 289 1.1 christos 290 1.1 christos 2015-11-12 Matthew Wahab <matthew.wahab (a] arm.com> 291 1.1 christos 292 1.1 christos PR gas/19217 293 1.1 christos * config/tc-arm.c (move_or_literal_pool): Remove redundant feature 294 1.1 christos check. Fix some code formatting. Drop use of MOVT. Add some 295 1.1 christos comments. 296 1.1 christos 297 1.1 christos 2015-11-11 Alan Modra <amodra (a] gmail.com> 298 1.1 christos Peter Bergner <bergner (a] vnet.ibm.com> 299 1.1 christos 300 1.1 christos * doc/as.texinfo (Target PowerPC): Document -mpower9 and -mpwr9. 301 1.1 christos * doc/c-ppc.texi (PowerPC-Opts): Likewise. 302 1.1 christos * config/tc-ppc.c (md_show_usage): Likewise. 303 1.1 christos (md_assemble): Handle BFD_RELOC_PPC_REL16DX_HA. 304 1.1 christos (md_apply_fix): Likewise. 305 1.1 christos (ppc_handle_align): Handle power9's group ending nop. 306 1.1 christos 307 1.1 christos 2015-11-09 Jim Wilson <jim.wilson (a] linaro.org> 308 1.1 christos 309 1.1 christos * config/tc-aarch64.c (aarch64_cpus): Add qdf24xx. 310 1.1 christos * config/tc-arm.c (arm_cpus): Likewise. 311 1.1 christos * doc/c-arm.texi, doc/c-aarch64.texi: Likewise. 312 1.1 christos 313 1.1 christos 2015-11-09 Dominik Vogt <vogt (a] linux.vnet.ibm.com> 314 1.1 christos 315 1.1 christos * read.c (parse_bitfield_cons): Fix left shift of negative value. 316 1.1 christos * config/tc-xstormy16.c (md_section_align): Likewise. 317 1.1 christos * config/tc-xgate.c (md_section_align): Likewise. 318 1.1 christos * config/tc-visium.c (md_section_align): Likewise. 319 1.1 christos * config/tc-v850.c (md_section_align): Likewise. 320 1.1 christos * config/tc-tic6x.c (md_section_align): Likewise. 321 1.1 christos * config/tc-sh.c (SH64PCREL32_M, SH64PCREL48_M, SH64PCREL32_M) 322 1.1 christos (MOVI_32_M, MOVI_48_M, MOVI_32_M, md_section_align): Likewise. 323 1.1 christos * config/tc-sh64.c (shmedia_md_estimate_size_before_relax): Likewise. 324 1.1 christos * config/tc-score.c (s3_section_align): Likewise. 325 1.1 christos * config/tc-score7.c (s7_section_align): Likewise. 326 1.1 christos * config/tc-s390.c (md_section_align): Likewise. 327 1.1 christos * config/tc-rx.c (md_section_align): Likewise. 328 1.1 christos * config/tc-rl78.c (md_section_align): Likewise. 329 1.1 christos * config/tc-ppc.c (md_section_align): Likewise. 330 1.1 christos * config/tc-or1k.c (md_section_align): Likewise. 331 1.1 christos * config/tc-nds32.c (md_section_align): Likewise. 332 1.1 christos * config/tc-mt.c (md_section_align): Likewise. 333 1.1 christos * config/tc-msp430.c (md_section_align): Likewise. 334 1.1 christos * config/tc-mn10300.c (md_section_align): Likewise. 335 1.1 christos * config/tc-mn10200.c (md_section_align): Likewise. 336 1.1 christos * config/tc-mips.c (md_section_align): Likewise. 337 1.1 christos * config/tc-microblaze.c (parse_imm): Likewise. 338 1.1 christos * config/tc-mep.c (md_section_align): Likewise. 339 1.1 christos * config/tc-m68k.c (md_section_align): Likewise. 340 1.1 christos * config/tc-m68hc11.c (md_section_align): Likewise. 341 1.1 christos * config/tc-m32r.c (md_section_align): Likewise. 342 1.1 christos * config/tc-m32c.c (md_section_align): Likewise. 343 1.1 christos * config/tc-lm32.c (md_section_align): Likewise. 344 1.1 christos * config/tc-iq2000.c (md_section_align): Likewise. 345 1.1 christos * config/tc-ip2k.c (md_section_align): Likewise. 346 1.1 christos * config/tc-ia64.c (dot_save, dot_vframe): Likewise. 347 1.1 christos * config/tc-i960.c (md_number_to_field, md_section_align): Likewise. 348 1.1 christos * config/tc-i386.c (md_section_align): Likewise. 349 1.1 christos * config/tc-i370.c (md_section_align): Likewise. 350 1.1 christos * config/tc-frv.c (md_section_align): Likewise. 351 1.1 christos * config/tc-fr30.c (md_section_align): Likewise. 352 1.1 christos * config/tc-epiphany.c (md_section_align): Likewise. 353 1.1 christos * config/tc-d30v.c (md_section_align): Likewise. 354 1.1 christos * config/tc-d10v.c (md_section_align): Likewise. 355 1.1 christos * config/tc-cr16.c (l_cons): Likewise. 356 1.1 christos * config/tc-bfin.c (md_section_align): Likewise. 357 1.1 christos * config/tc-arm.c (md_section_align): Likewise. 358 1.1 christos * config/tc-arc.c (md_section_align): Likewise. 359 1.1 christos * config/bfin-parse.y (expr_1): Likewise. 360 1.1 christos 361 1.1 christos 2015-11-02 Nick Clifton <nickc (a] redhat.com> 362 1.1 christos 363 1.1 christos * config/rx-parse.y: Allow zero value for 5-bit displacements. 364 1.1 christos 365 1.1 christos 2015-11-02 Nick Clifton <nickc (a] redhat.com> 366 1.1 christos 367 1.1 christos * config/tc-rx.c (parse_rx_section): Align parameter provides a 368 1.1 christos multiple of n argument, not a power of n argument. 369 1.1 christos 370 1.1 christos 2015-10-29 Nick Clifton <nickc (a] redhat.com> 371 1.1 christos 372 1.1 christos * config/tc-aarch64.c (elf64_aarch64_target_format): Select the 373 1.1 christos cloudabi format if the TARGET_OS is cloudabi. 374 1.1 christos 375 1.1 christos 2015-10-29 Thomas Preud'homme <thomas.preudhomme (a] arm.com> 376 1.1 christos 377 1.1 christos * config/tc-arm.c (insns): Guard cps by arm_ext_v6_notm instead of 378 1.1 christos arm_ext_v6_dsp. 379 1.1 christos 380 1.1 christos 2015-10-28 Claudiu Zissulescu <claziss (a] synopsys.com> 381 1.1 christos 382 1.1 christos * config/tc-arc.c (tokenize_arguments): Avoid creating unused 383 1.1 christos symbols when parsing relocation types. 384 1.1 christos (md_apply_fix): Handle TLS relocations. Fix BFD_RELOC_ARC_32_PCREL 385 1.1 christos relocation. 386 1.1 christos (arc_check_reloc): Emit BFD_RELOC_ARC_32_PCREL relocation. 387 1.1 christos 388 1.1 christos 2015-10-27 Jim Wilson <jim.wilson (a] linaro.org> 389 1.1 christos 390 1.1 christos * config/tc-arm.c (selected_cpu_name): Increase length of array to 391 1.1 christos accomodate "Samsung Exynos M1". 392 1.1 christos (arm_parse_cpu): Add assertion and length check to prevent 393 1.1 christos overfilling selected_cpu_name. 394 1.1 christos 395 1.1 christos 2015-10-22 Nick Clifton <nickc (a] redhat.com> 396 1.1 christos 397 1.1 christos * config/tc-msp430.c (PUSH_1X_WORKAROUND): Delete. 398 1.1 christos (OPTION_SILICON_ERRATA): Define. 399 1.1 christos (OPTION_SILICON_WARN): Define. 400 1.1 christos (md_parse_opton): Handle silicon errata options. 401 1.1 christos (md_longopts): Add silicon errata options. 402 1.1 christos (ms_show_usage): Report silicon errata options. 403 1.1 christos (msp430_srcoperand): Handle silicon errata. 404 1.1 christos (msp430_operands): Likewise. Improve nop insertion. 405 1.1 christos (msp430_fix_adjustable): Update warning generation. 406 1.1 christos * doc/c-msp430.texi: Document silicon errata options. 407 1.1 christos 408 1.1 christos 2015-10-22 H.J. Lu <hongjiu.lu (a] intel.com> 409 1.1 christos 410 1.1 christos * configure.ac: Properly check 411 1.1 christos --enable-compressed-debug-sections={yes,all}. 412 1.1 christos * configure: Regenerated. 413 1.1 christos 414 1.1 christos 2015-10-22 H.J. Lu <hongjiu.lu (a] intel.com> 415 1.1 christos 416 1.1 christos PR gas/19109 417 1.1 christos * configure.ac: Handle --enable-compressed-debug-sections=*,gas,*. 418 1.1 christos * configure: Regenerated. 419 1.1 christos 420 1.1 christos 2015-10-22 H.J. Lu <hongjiu.lu (a] intel.com> 421 1.1 christos 422 1.1 christos * config/tc-i386.c (tc_i386_fix_adjustable): Handle 423 1.1 christos BFD_RELOC_X86_64_GOTPCRELX and BFD_RELOC_X86_64_REX_GOTPCRELX. 424 1.1 christos (tc_gen_reloc): Likewise. 425 1.1 christos (i386_validate_fix): Generate BFD_RELOC_X86_64_GOTPCRELX or 426 1.1 christos BFD_RELOC_X86_64_REX_GOTPCRELX if fx_tcbit2 is set. 427 1.1 christos * config/tc-i386.h (TC_FORCE_RELOCATION_LOCAL): Also return 428 1.1 christos true for BFD_RELOC_X86_64_GOTPCRELX and 429 1.1 christos BFD_RELOC_X86_64_REX_GOTPCRELX. 430 1.1 christos 431 1.1 christos 2015-10-22 H.J. Lu <hongjiu.lu (a] intel.com> 432 1.1 christos 433 1.1 christos * config/tc-i386.c (tc_i386_fix_adjustable): Handle 434 1.1 christos BFD_RELOC_386_GOT32X. 435 1.1 christos (tc_gen_reloc): Likewise. 436 1.1 christos (match_template): Force 0x8b encoding for "mov foo@GOT, %eax". 437 1.1 christos (output_disp): Check for "call/jmp *mem", "mov mem, %reg", 438 1.1 christos "test %reg, mem" and "binop mem, %reg" where binop is one of 439 1.1 christos adc, add, and, cmp, or, sbb, sub, xor instructions. Set 440 1.1 christos fx_tcbit if the REX prefix is generated. Set fx_tcbit2 if 441 1.1 christos BFD_RELOC_386_GOT32X should be generated. 442 1.1 christos (i386_validate_fix): Generate BFD_RELOC_386_GOT32X if fx_tcbit2 443 1.1 christos is set. 444 1.1 christos 445 1.1 christos 2015-10-21 Nick Clifton <nickc (a] redhat.com> 446 1.1 christos 447 1.1 christos PR gas/19109 448 1.1 christos * configure.ac: Restore --enable-compressed-debug-sections, with 449 1.1 christos options of all, none or gas. 450 1.1 christos Do not enable compressed debug sections by default for x86 Linux 451 1.1 christos targets. 452 1.1 christos * configure: Regenerate. 453 1.1 christos 454 1.1 christos 2015-10-20 H.J. Lu <hongjiu.lu (a] intel.com> 455 1.1 christos 456 1.1 christos PR gas/19109 457 1.1 christos * NEWS: Update --enable-compressed-debug-sections=. 458 1.1 christos * configure.ac: Remove --enable-compressed-debug-sections. 459 1.1 christos (DEFAULT_FLAG_COMPRESS_DEBUG): Check 460 1.1 christos --enable-compressed-debug-sections={all,gas} instead of 461 1.1 christos --enable-compressed-debug-sections. For x86 Linux targets, 462 1.1 christos default to compressing debug sections. 463 1.1 christos * configure: Regenerated. 464 1.1 christos 465 1.1 christos 2015-10-19 Nick Clifton <nickc (a] redhat.com> 466 1.1 christos 467 1.1 christos PR gas/19109 468 1.1 christos * configure.ac: Add option --enable-compressed-debug-sections. 469 1.1 christos This sets the default behaviour for compressing debug sections. 470 1.1 christos * as.c (flag_compress_debug): Define and initialise to 471 1.1 christos COMPRESS_DEBUG_GABI_ZLIB if DEFAULT_COMPRESS_DEBUG is set. 472 1.1 christos (show_usage): Indicate whether --no-compress-debug-sections 473 1.1 christos or --compress-debug-sections is the default. 474 1.1 christos * config/tc-i386.c (flag_compress_debug): Delete definition. 475 1.1 christos * doc/as.texinfo (--nocompress-debug-sectionas): Update 476 1.1 christos description. 477 1.1 christos * NEWS: Announce the new feature. 478 1.1 christos * config.in: Regenerate. 479 1.1 christos * configure: Regenerate. 480 1.1 christos 481 1.1 christos 2015-10-12 Nick Clifton <nickc (a] redhat.com> 482 1.1 christos 483 1.1 christos * config/tc-msp430.c (msp430_mcu_names): Rename to 484 1.1 christos msp430_mcu_data. Add fields for the ISA and hardware multiply 485 1.1 christos support. Update with information from the latest devices.csv 486 1.1 christos file. 487 1.1 christos (md_parse_option): Make use of the new array. 488 1.1 christos 489 1.1 christos 2015-10-12 Andrew Burgess <andrew.burgess (a] embecosm.com> 490 1.1 christos 491 1.1 christos * config/tc-avr.c (avr_output_property_record): Fix overwrite bug 492 1.1 christos for align and fill records. 493 1.1 christos (avr_handle_align): Record fill information for align frags. 494 1.1 christos (create_record_for_frag): Add next frag assertion, use correct 495 1.1 christos address for align records. 496 1.1 christos 497 1.1 christos 2015-10-10 Alan Modra <amodra (a] gmail.com> 498 1.1 christos 499 1.1 christos PR gas/19113 500 1.1 christos * read.c (next_char_of_string): Mask char after escape. Use 501 1.1 christos CHAR_MASK rather than 0xff. 502 1.1 christos 503 1.1 christos 2015-10-07 Yao Qi <yao.qi (a] linaro.org> 504 1.1 christos 505 1.1 christos * config/tc-aarch64.c (md_begin): Access field 'name' rather 506 1.1 christos than 'template'. 507 1.1 christos 508 1.1 christos 2015-10-07 Claudiu Zissulescu <claziss (a] synopsys.com> 509 1.1 christos 510 1.1 christos * config/tc-arc.c: Revamped file for ARC support. 511 1.1 christos * config/tc-arc.h: Likewise. 512 1.1 christos * doc/as.texinfo: Add new ARC options. 513 1.1 christos * doc/c-arc.texi: Likewise. 514 1.1 christos 515 1.1 christos 2015-10-02 Renlin Li <renlin.li (a] arm.com> 516 1.1 christos 517 1.1 christos * config/tc-aarch64.c (s_tlsdescadd): New. 518 1.1 christos (s_tlsdescldr): New. 519 1.1 christos (md_pseudo_table): Handle tlsdescadd and tlsdescldr pseudo ops. 520 1.1 christos (reloc_table): Add entries for BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC and 521 1.1 christos BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC. 522 1.1 christos (process_movw_reloc_info): Support AARCH64_TLSDESC_OFF_G1 and 523 1.1 christos AARCH64_TLSDESC_OFF_G0_NC. 524 1.1 christos (md_apply_fix): Likewise. 525 1.1 christos (aarch64_force_relocation): Likewise. 526 1.1 christos 527 1.1 christos 2015-10-02 Renlin Li <renlin.li (a] arm.com> 528 1.1 christos 529 1.1 christos * config/tc-aarch64.c (reloc_table): Add two entries for 530 1.1 christos gottprel_g0_nc and gottprel_g1. 531 1.1 christos (process_movw_reloc_info): Add support. 532 1.1 christos (md_apply_fix): Likewise. 533 1.1 christos (aarch64_force_relocation): Likewise. 534 1.1 christos 535 1.1 christos 2015-10-02 Renlin Li <renlin.li (a] arm.com> 536 1.1 christos 537 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifier tlsgd_g0_nc. 538 1.1 christos (process_movw_reloc_info): Support BFD_RELOC_AARCH64_TLSGD_MOVW_G1. 539 1.1 christos (md_apply_fix): Likewise. 540 1.1 christos (aarch64_force_relocation): Likewise. 541 1.1 christos 542 1.1 christos 2015-10-02 Renlin Li <renlin.li (a] arm.com> 543 1.1 christos 544 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifier tlsgd_g1. 545 1.1 christos (process_movw_reloc_info): Support BFD_RELOC_AARCH64_TLSGD_MOVW_G1. 546 1.1 christos (md_apply_fix): Likewise. 547 1.1 christos (aarch64_force_relocation): Likewise. 548 1.1 christos 549 1.1 christos 2015-10-02 Renlin Li <renlin.li (a] arm.com> 550 1.1 christos 551 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifier 552 1.1 christos gotoff_g0_nc. 553 1.1 christos (process_movw_reloc_info): Support gotoff_g0_nc. 554 1.1 christos (md_apply_fix): Likewise. 555 1.1 christos 556 1.1 christos 2015-10-02 Renlin Li <renlin.li (a] arm.com> 557 1.1 christos 558 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifier 559 1.1 christos gotoff_g1. 560 1.1 christos (process_movw_reloc_info): Support newly added modifier. 561 1.1 christos (md_apply_fix): Likewise. 562 1.1 christos 563 1.1 christos 2015-09-29 Dominik Vogt <vogt (a] linux.vnet.ibm.com> 564 1.1 christos 565 1.1 christos * doc/c-s390.texi: Add documentation. 566 1.1 christos Add missing code markup. 567 1.1 christos * config/tc-s390.c (current_flags): New static variable. 568 1.1 christos (s390_parse_cpu): Parse cpu flags a la "+nohtm" etc. 569 1.1 christos (s390_setup_opcodes): Use cpu flags to determine the set of opcodes. 570 1.1 christos Fix indentation. 571 1.1 christos (md_parse_option): Call s390_parse_cpu with the new signature. 572 1.1 christos (s390_machine): Likewise. 573 1.1 christos Keep track of current_flags. 574 1.1 christos Simplify code a bit. 575 1.1 christos undefine MAX_HISTORY at end of function. 576 1.1 christos (s390_machinemode): undefine MAX_HISTORY at end of function. 577 1.1 christos Update an error message. 578 1.1 christos 579 1.1 christos 2015-08-11 Peter Zotov <whitequark (a] whitequark.org> 580 1.1 christos 581 1.1 christos PR ld/18759 582 1.1 christos * config/tc-or1k.c (tc_gen_reloc): Correct computation of PC 583 1.1 christos relative relocs. 584 1.1 christos * config/tc-or1k.h (GAS_CGEN_PRCEL_R_TYPE): Delete. 585 1.1 christos 586 1.1 christos 2015-09-25 Ryo ONODERA <ryo_on (a] yk.rim.or.jp> 587 1.1 christos 588 1.1 christos PR 18994 589 1.1 christos * configure.ac (nds32): Don't use bash == in tests. 590 1.1 christos * configure: Regenerate. 591 1.1 christos 592 1.1 christos 2015-09-23 Nick Clifton <nickc (a] redhat.com> 593 1.1 christos 594 1.1 christos * config/tc-ppc.c (insn_validate): Cast PPC_OPSHIFT_INV to an int. 595 1.1 christos 596 1.1 christos 2015-09-22 Nick Clifton <nickc (a] redhat.com> 597 1.1 christos 598 1.1 christos * config/tc-rx.c (nop_7): Recode using MAX. 599 1.1 christos 600 1.1 christos 2015-09-05 Chen Gang <gang.chen.5i5j (a] gmail.com> 601 1.1 christos 602 1.1 christos * config/tc-avr.c (md_section_align): Append UL for -1 to avoid 603 1.1 christos the latest gcc's warning. 604 1.1 christos 605 1.1 christos 2015-08-27 Alan Modra <amodra (a] gmail.com> 606 1.1 christos 607 1.1 christos PR gas/18581 608 1.1 christos * config/tc-aarch64.h (TC_START_LABEL): Redefine. 609 1.1 christos * config/tc-arm.c (tc_start_label_without_colon): Delete params. 610 1.1 christos Use input_line_pointer directly. 611 1.1 christos * config/tc-arm.h (TC_START_LABEL): Redefine. 612 1.1 christos (TC_START_LABEL_WITHOUT_COLON): Redefine. 613 1.1 christos (tc_start_label_without_colon): Update prototype. 614 1.1 christos * config/tc-bfin.c (bfin_start_label): Delete ptr param. Check 615 1.1 christos for NUL instead. 616 1.1 christos * config/tc-bfin.h (bfin_start_label): Update prototype. 617 1.1 christos (TC_START_LABEL): Redefine. 618 1.1 christos * config/tc-d30v.h (TC_START_LABEL): Redefine. 619 1.1 christos * config/tc-fr30.c (restore_colon): Rewrite. 620 1.1 christos (fr30_is_colon_insn): Add nul_char param. Return int. Bump 621 1.1 christos i_l_p over quote. Update restore_colon calls. 622 1.1 christos * config/tc-fr30.h (TC_START_LABEL): Redefine. 623 1.1 christos (fr30_is_colon_insn): Update prototype. 624 1.1 christos * config/tc-m32c.c (restore_colon, m32c_is_colon_insn): As above. 625 1.1 christos * config/tc-m32c.h (TC_START_LABEL): Redefine. 626 1.1 christos (m32c_is_colon_insn): Update prototype. 627 1.1 christos * config/tc-m32r.h (TC_START_LABEL): Redefine. 628 1.1 christos * config/tc-mep.h (TC_START_LABEL): Redefine. 629 1.1 christos * config/tc-nds32.h (TC_START_LABEL): Redefine. 630 1.1 christos * config/tc-tic54x.c (tic54x_start_label): Replace params with 631 1.1 christos nul_char and next_char. Step over trailing quote. 632 1.1 christos * config/tc-tic54x.h (TC_START_LABEL_WITHOUT_COLON): Redefine. 633 1.1 christos (tic54x_start_label): Update prototype. 634 1.1 christos * read.c (TC_START_LABEL): Redefine. Update invocation. 635 1.1 christos (TC_START_LABEL_WITHOUT_COLON): Update invocation. 636 1.1 christos * config/tc-nios2.c (s_nios2_set): Save initial input_line_pointer 637 1.1 christos and restore if calling s_set. Don't restore delim again. 638 1.1 christos 639 1.1 christos 2015-08-26 Alan Modra <amodra (a] gmail.com> 640 1.1 christos 641 1.1 christos PR gas/18581 642 1.1 christos * config/tc-mn10200.c (md_assemble <mdr>): Move restore_line_pointer 643 1.1 christos call to where input line used to be restored. 644 1.1 christos * config/tc-mn10300.c (md_assemble <usp>): Remove redundant input 645 1.1 christos line restore. 646 1.1 christos * config/tc-tilepro.c (parse_reg_expression): Add regname var. 647 1.1 christos 648 1.1 christos 2015-08-26 Nick Clifton <nickc (a] redhat.com> 649 1.1 christos 650 1.1 christos PR gas/18842 651 1.1 christos * configure.ac (AS_CHECK_DECLS): Add asprintf. 652 1.1 christos * configure: Regenerate. 653 1.1 christos * config.in: Regenerate. 654 1.1 christos 655 1.1 christos 2015-08-25 Jose E. Marchesi <jose.marchesi (a] oracle.com> 656 1.1 christos 657 1.1 christos * config/tc-sparc.c (priv_reg_table): New privileged register 658 1.1 christos %pmcdper. 659 1.1 christos 660 1.1 christos 2015-08-21 Nick Clifton <nickc (a] redhat.com> 661 1.1 christos 662 1.1 christos PR gas/18581 663 1.1 christos * expr.c (get_symbol_end): Rename to get_symbol_name. Add a 664 1.1 christos return parameter pointing to the start of the symbol. Allow 665 1.1 christos symbol names enclosed in double quotes. 666 1.1 christos (restore_line_pointer): New function. Replace the NUL character 667 1.1 christos inserted into the input stream with the given character. If the 668 1.1 christos character was a double quote, advance the input pointer. 669 1.1 christos * expr.h (get_symbol_end): Delete. 670 1.1 christos (get_symbol_name): Add prototype. 671 1.1 christos (restore_line_pointer): Prototype. 672 1.1 christos * read.h (SKIP_WHITESPACE_AFTER_NAME): New macro. 673 1.1 christos * doc/as.texinfo (Symbol Intro): Document that symbol names can 674 1.1 christos now be enclosed in double quotes. 675 1.1 christos * cond.c (s_ifdef): Replace get_symbol_end with get_symbol_name. 676 1.1 christos Use restore_line_pointer to replace the NUL in the input stream. 677 1.1 christos Use SKIP_WHITESPACE_AFTER_NAME to skip past the end of a symbol. 678 1.1 christos Check for the use of double quoted symbol names. 679 1.1 christos * expr.c: Likewise. 680 1.1 christos * config/obj-aout.c: Likewise. 681 1.1 christos * config/obj-coff-seh.c: Likewise. 682 1.1 christos * config/obj-coff.c: Likewise. 683 1.1 christos * config/obj-elf.c: Likewise. 684 1.1 christos * config/obj-evax.c: Likewise. 685 1.1 christos * config/obj-macho.c: Likewise. 686 1.1 christos * config/obj-som.c: Likewise. 687 1.1 christos * config/tc-alpha.c: Likewise. 688 1.1 christos * config/tc-arc.c: Likewise. 689 1.1 christos * config/tc-arm.c: Likewise. 690 1.1 christos * config/tc-dlx.c: Likewise. 691 1.1 christos * config/tc-h8300.c: Likewise. 692 1.1 christos * config/tc-hppa.c: Likewise. 693 1.1 christos * config/tc-i370.c: Likewise. 694 1.1 christos * config/tc-i386-intel.c: Likewise. 695 1.1 christos * config/tc-i386.c: Likewise. 696 1.1 christos * config/tc-i960.c: Likewise. 697 1.1 christos * config/tc-ia64.c: Likewise. 698 1.1 christos * config/tc-iq2000.c: Likewise. 699 1.1 christos * config/tc-m32r.c: Likewise. 700 1.1 christos * config/tc-m68hc11.c: Likewise. 701 1.1 christos * config/tc-m68k.c: Likewise. 702 1.1 christos * config/tc-microblaze.c: Likewise. 703 1.1 christos * config/tc-mips.c: Likewise. 704 1.1 christos * config/tc-mmix.c: Likewise. 705 1.1 christos * config/tc-mn10200.c: Likewise. 706 1.1 christos * config/tc-mn10300.c: Likewise. 707 1.1 christos * config/tc-nios2.c: Likewise. 708 1.1 christos * config/tc-ppc.c: Likewise. 709 1.1 christos * config/tc-s390.c: Likewise. 710 1.1 christos * config/tc-score.c: Likewise. 711 1.1 christos * config/tc-score7.c: Likewise. 712 1.1 christos * config/tc-sparc.c: Likewise. 713 1.1 christos * config/tc-tic4x.c: Likewise. 714 1.1 christos * config/tc-tic54x.c: Likewise. 715 1.1 christos * config/tc-tic6x.c: Likewise. 716 1.1 christos * config/tc-tilegx.c: Likewise. 717 1.1 christos * config/tc-tilepro.c: Likewise. 718 1.1 christos * config/tc-v850.c: Likewise. 719 1.1 christos * config/tc-xtensa.c: Likewise. 720 1.1 christos * config/tc-z80.c: Likewise. 721 1.1 christos * dw2gencfi.c: Likewise. 722 1.1 christos * dwarf2dbgc.: Likewise. 723 1.1 christos * ecoff.c: Likewise. 724 1.1 christos * read.c: Likewise. 725 1.1 christos * stabs.c: Likewise. 726 1.1 christos 727 1.1 christos 2015-08-19 Jiong Wang <jiong.wang (a] arm.com> 728 1.1 christos 729 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation types support for 730 1.1 christos dtprel_lo12. 731 1.1 christos (ldst_lo12_determine_real_reloc_type): Support 732 1.1 christos BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12, 733 1.1 christos BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC, 734 1.1 christos BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12, 735 1.1 christos BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC, 736 1.1 christos BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12, 737 1.1 christos BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC, 738 1.1 christos BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12, 739 1.1 christos BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC. 740 1.1 christos (parse_operands): Likewise. 741 1.1 christos (md_apply_fix): Likewise. 742 1.1 christos (aarch64_force_relocation): Likewise. 743 1.1 christos (process_movw_reloc_info): Likewise. 744 1.1 christos 745 1.1 christos 2015-08-19 Jiong Wang <jiong.wang (a] arm.com> 746 1.1 christos 747 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifiers, 748 1.1 christos "dtprel_hi12", "dtprel_g0", "dtprel_g0_nc", "dtprel_g1", 749 1.1 christos "dtprel_g1_nc", "dtprel_g2". 750 1.1 christos (md_apply_fix): Support new relocation types. 751 1.1 christos (aarch64_force_relocation): Likewise. 752 1.1 christos (process_movw_reloc_info): Likewise. 753 1.1 christos 754 1.1 christos 2015-08-19 Jiong Wang <jiong.wang (a] arm.com> 755 1.1 christos 756 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifiers. 757 1.1 christos (md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC. 758 1.1 christos (aarch64_force_relocation): Likewise. 759 1.1 christos 760 1.1 christos 2015-08-17 Alan Modra <amodra (a] gmail.com> 761 1.1 christos 762 1.1 christos * config/tc-arm.c (s_align): Delete. 763 1.1 christos (md_pseudo_table): Use s_align_ptwo for "align". 764 1.1 christos * config/tc-arm.h (TC_ALIGN_ZERO_IS_DEFAULT): Define. 765 1.1 christos * read.c (s_align): Modify for TC_ALIGN_ZERO_IS_DEFAULT. 766 1.1 christos 767 1.1 christos 2015-08-13 Alan Modra <amodra (a] gmail.com> 768 1.1 christos 769 1.1 christos * expr.c (operand): Rewrite handling of operands starting with "0f". 770 1.1 christos If atof_generic only parses "-" or "+", treat as expression. 771 1.1 christos 772 1.1 christos 2015-08-13 Alan Modra <amodra (a] gmail.com> 773 1.1 christos DJ Delorie <dj (a] redhat.com> 774 1.1 christos 775 1.1 christos * expr.c (integer_constant): Return O_absent expression if eol. 776 1.1 christos (operand): For targets with both LOCAL_LABELS_FB and 777 1.1 christos NUMBERS_WITH_SUFFIX set, treat "0b" not followed by binary 778 1.1 christos digits as a local label reference. Correct handling of 0b prefix. 779 1.1 christos If a suffix is not allowed, error on 0B. 780 1.1 christos 781 1.1 christos 2015-08-13 Alan Modra <amodra (a] gmail.com> 782 1.1 christos 783 1.1 christos * doc/as.texinfo (Local Labels): Allowed range of N in local 784 1.1 christos labels is non-negative integers, not positive integers. 785 1.1 christos 786 1.1 christos 2015-08-12 David Weatherford <weath (a] cadence.com> 787 1.1 christos 788 1.1 christos * config/tc-xtensa.c (struct litpool_frag, struct litpool_seg): 789 1.1 christos New structures. 790 1.1 christos (xtensa_maybe_create_literal_pool_frag): New function. 791 1.1 christos (litpool_seg_list, auto_litpools, auto_litpool_limit) 792 1.1 christos (litpool_buf, litpool_slotbuf): New static variables. 793 1.1 christos (option_auto_litpools, option_no_auto_litpools) 794 1.1 christos (option_auto_litpool_limit): New enum identifiers. 795 1.1 christos (md_longopts): Add entries for auto-litpools, no-auto-litpools 796 1.1 christos and auto-litpool-limit. 797 1.1 christos (md_parse_option): Handle option_auto_litpools, 798 1.1 christos option_no_auto_litpools and option_auto_litpool_limit. 799 1.1 christos (md_show_usage): Add help for --[no-]auto-litpools and 800 1.1 christos --auto-litpool-limit. 801 1.1 christos (xtensa_mark_literal_pool_location): Record a place for literal 802 1.1 christos pool with a call to xtensa_maybe_create_literal_pool_frag. 803 1.1 christos (get_literal_pool_location): Find highest priority literal pool 804 1.1 christos or convert candidate to literal pool when auto-litpools are used. 805 1.1 christos (xg_assemble_vliw_tokens): Create literal pool after jump 806 1.1 christos instruction. 807 1.1 christos (xtensa_check_frag_count): Create candidate literal pool every 808 1.1 christos auto_litpool_limit frags. 809 1.1 christos (xtensa_relax_frag): Add jump around literals to non-empty 810 1.1 christos literal pool. 811 1.1 christos (xtensa_move_literals): Estimate literal pool addresses and move 812 1.1 christos unreachable literals closer to their users, converting candidate 813 1.1 christos to literal pool if needed. 814 1.1 christos (xtensa_switch_to_non_abs_literal_fragment): Only emit error 815 1.1 christos about missing .literal_position in case auto-litpools are not 816 1.1 christos used. 817 1.1 christos * config/tc-xtensa.h (xtensa_relax_statesE): New relaxation 818 1.1 christos state: RELAX_LITERAL_POOL_CANDIDATE_BEGIN. 819 1.1 christos * doc/as.texinfo (Xtensa options): Document --auto-litpools and 820 1.1 christos --no-auto-litpools options. 821 1.1 christos * doc/c-xtensa.texi (Xtensa options): Likewise. 822 1.1 christos 823 1.1 christos 2015-08-12 Simon Dardis <simon.dardis (a] imgtec.com> 824 1.1 christos 825 1.1 christos * config/tc-mips.c (move_register): Change to use 'or' only. 826 1.1 christos (s_cpload, s_cpsetup, s_cprestore, s_cpreturn): Update to 827 1.1 christos use or for move. 828 1.1 christos 829 1.1 christos 2015-08-11 Jiong Wang <jiong.wang (a] arm.com> 830 1.1 christos 831 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifiers 832 1.1 christos "dtprel_lo12". 833 1.1 christos (md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12. 834 1.1 christos (aarch64_force_relocation): Likewise. 835 1.1 christos 836 1.1 christos 2015-08-11 Jiong Wang <jiong.wang (a] arm.com> 837 1.1 christos 838 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifiers. 839 1.1 christos (md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC. 840 1.1 christos (aarch64_force_relocation): Likewise. 841 1.1 christos 842 1.1 christos 2015-08-11 Jiong Wang <jiong.wang (a] arm.com> 843 1.1 christos 844 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifiers. 845 1.1 christos (md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21. 846 1.1 christos (aarch64_force_relocation): Likewise. 847 1.1 christos 848 1.1 christos 2015-08-11 Nick Clifton <nickc (a] redhat.com> 849 1.1 christos 850 1.1 christos PR gas/18765 851 1.1 christos * config/tc-arm.c (move_or_literal_pool): Use U suffix to remove 852 1.1 christos compile time warnings about constant expressions being shifted 853 1.1 christos into bit 31. 854 1.1 christos (do_iwmmxt_wldstd): Likewise. 855 1.1 christos (do_iwmmxt_wrwrwr_or_imm5): Likewise. 856 1.1 christos (md_assemble): Likewise. 857 1.1 christos 858 1.1 christos PR gas/18574 859 1.1 christos * config/tc-msp430.c (msp430_operands): Rewrite if statements to 860 1.1 christos remove redundant checks. 861 1.1 christos (md_apply_fix): Likewise. 862 1.1 christos 863 1.1 christos PR gas/18677 864 1.1 christos * config/tc-mmix.c (md_assemble): Fix typo checking operands with 865 1.1 christos a numeric constant value. 866 1.1 christos 867 1.1 christos PR gas/18678 868 1.1 christos * config/tc-tic4x.c (tic4x_insn_check): Fix typo. 869 1.1 christos 870 1.1 christos PR gas/18679 871 1.1 christos * config/xtensa-relax.c (same_operand_name): Fix typo. 872 1.1 christos 873 1.1 christos 2015-08-08 Hans-Peter Nilsson <hp (a] axis.com> 874 1.1 christos 875 1.1 christos * tc-arm.c (double_to_single, is_double_a_single): Append ULL to 876 1.1 christos 0xFFFFFFFFFFFFF to avoid errors on 32-bit hosts. 877 1.1 christos 878 1.1 christos 2015-08-04 Thomas Preud'homme <thomas.preudhomme (a] arm.com> 879 1.1 christos 880 1.1 christos * doc/c-aarch64.texi (.xword): Document directive. 881 1.1 christos 882 1.1 christos 2015-08-03 Nick Clifton <nickc (a] redhat.com> 883 1.1 christos 884 1.1 christos * doc/as.texinfo (Overview): Add --hash-size to the synopsis and 885 1.1 christos fix typo in its entry: @kindex -> @item. 886 1.1 christos 887 1.1 christos 2015-07-28 Robert Suchanek <robert.suchanek (a] imgtec.com> 888 1.1 christos 889 1.1 christos * config/tc-mips.c (mips_cpu_info_table): Add m5100 and m5101 entries. 890 1.1 christos * doc/c-mips.texi: Document m5100 and m5101 for -march=. 891 1.1 christos 892 1.1 christos 2015-07-28 Robert Suchanek <robert.suchanek (a] imgtec.com> 893 1.1 christos 894 1.1 christos * config/tc-mips.c (mips_cpu_info_table): Add interaptiv entry. 895 1.1 christos * doc/c-mips.text: Document -march=interaptiv. 896 1.1 christos 897 1.1 christos 2015-07-27 H.J. Lu <hongjiu.lu (a] intel.com> 898 1.1 christos 899 1.1 christos * configure: Regenerated. 900 1.1 christos 901 1.1 christos 2015-07-24 Nick Clifton <nickc (a] redhat.com> 902 1.1 christos 903 1.1 christos * config/tc-rl78.c (rl78_abs_sym): New local variable. 904 1.1 christos (md_begin): Initialise the new symbol. 905 1.1 christos (OPIMM): Define the value to be relative to the new symbol and not 906 1.1 christos the absolute section symbol. 907 1.1 christos 908 1.1 christos 2015-07-22 Alan Modra <amodra (a] gmail.com> 909 1.1 christos 910 1.1 christos PR gas/18687 911 1.1 christos * input-scrub.c (input_scrub_next_buffer): Rearrange and simplify 912 1.1 christos loop. Don't drop lines at end of file lacking a newline, add a 913 1.1 christos newline instead. Ensure partial_size is zero whenever 914 1.1 christos partial_where is NULL. Adjust buffer size for extra char. 915 1.1 christos (input_scrub_push, input_scrub_begin): Adjust buffer size here too. 916 1.1 christos 917 1.1 christos 2015-07-20 Matthew Wahab <matthew.wahab (a] arm.com> 918 1.1 christos 919 1.1 christos * NEWS: Mention corrected spelling of armv6kz. 920 1.1 christos * config/tc-arm.c (arm_cpus): Replace ARM_ARCH_V6ZK with 921 1.1 christos ARM_ARCH_V6KZ. 922 1.1 christos (arm_archs): Likewise. Also add "armv6kz" and "armv6kzt2". 923 1.1 christos * doc/c-arm.texi: Replace "armv6zk" with "armv6kz". 924 1.1 christos 925 1.1 christos 2015-07-16 Jiong Wang <jiong.wang (a] arm.com> 926 1.1 christos 927 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifiers. 928 1.1 christos (md_apply_fix): Support BFD_RELOC_AARCH64_TLSLD_ADR_PREL21. 929 1.1 christos (aarch64_force_relocation): Ditto. 930 1.1 christos 931 1.1 christos 2015-07-16 Matthew Wahab <matthew.wahab (a] arm.com> 932 1.1 christos 933 1.1 christos * config/tc-arm.c (arm_fpus): Add crypto-neon-fp-armv8.1. 934 1.1 christos * doc/c-arm.texi (-mfpu=): Likewise. Correct the entry for 935 1.1 christos neon-fp-armv8.1. 936 1.1 christos 937 1.1 christos 2015-07-16 James Greenhalgh <james.greenhalgh (a] arm.com> 938 1.1 christos 939 1.1 christos * config/tc-arm.c (md_assemble): Rephrase the "selected processor does 940 1.1 christos not support ARM mode" error messages. 941 1.1 christos 942 1.1 christos 2015-07-15 H.J. Lu <hongjiu.lu (a] intel.com> 943 1.1 christos 944 1.1 christos * config/tc-i386.c (flag_compress_debug): Replace 945 1.1 christos COMPRESS_DEBUG_GNU_ZLIB with COMPRESS_DEBUG_GABI_ZLIB. 946 1.1 christos 947 1.1 christos 2015-07-14 H.J. Lu <hongjiu.lu (a] intel.com> 948 1.1 christos 949 1.1 christos * as.c (parse_args): Make --compress-debug-sections and 950 1.1 christos --compress-debug-sections=zlib the same as 951 1.1 christos --compress-debug-sections=zlib-gabi. 952 1.1 christos * doc/as.texinfo: Change --compress-debug-sections and 953 1.1 christos --compress-debug-sections=zlib to zlib-gabi. 954 1.1 christos 955 1.1 christos 2015-07-09 Catherine Moore <clm (a] codesourcery.com> 956 1.1 christos 957 1.1 christos * config/tc-mips.c (check_fpabi): Handle 958 1.1 christos VAL_GNU_MIPS_ABI_FP_NAN2008. 959 1.1 christos 960 1.1 christos 2015-07-08 Ciro Santilli <ciro.santilli (a] gmail.com> 961 1.1 christos 962 1.1 christos * doc/as.texinfo: Clarify case requirements for pseudo ops. 963 1.1 christos 964 1.1 christos 2015-07-08 Pitchumani Sivanupandi <pitchumani.s (a] atmel.com> 965 1.1 christos 966 1.1 christos * config/tc-avr.c (tc_gen_reloc): Change 32 bit relocation to 967 1.1 christos 32 bit PC relative and update offset if the fixup is pc-relative. 968 1.1 christos * config/tc-avr.h (DIFF_EXPR_OK): Define to enable PC relative diff 969 1.1 christos relocs. 970 1.1 christos 971 1.1 christos 2015-07-03 Alan Modra <amodra (a] gmail.com> 972 1.1 christos 973 1.1 christos * config/tc-ppc.c (md_show_usage): Add -m821, -m850, -m860. 974 1.1 christos * doc/c-ppc.texi (PowerPC-Opts): Likewise. 975 1.1 christos 976 1.1 christos 2015-07-01 Sandra Loosemore <sandra (a] codesourcery.com> 977 1.1 christos Cesar Philippidis <cesar (a] codesourcery.com> 978 1.1 christos 979 1.1 christos * config/tc-nios2.c (nios2_min_align): New. 980 1.1 christos (nop): Replace with.... 981 1.1 christos (nop_r1, nop_r2, nop_r2_cdx, nop32, nop16): New. 982 1.1 christos (nios2_align): Handle alignment on 2-byte boundaries when CDX 983 1.1 christos instructions may be present. 984 1.1 christos (s_nios2_align): Adjust reference to nop. 985 1.1 christos (CDXBRANCH, IS_CDXBRANCH): New. 986 1.1 christos (CDX_UBRANCH_SUBTYPE, CDX_CBRANCH_SUBTYPE): New. 987 1.1 christos (nios2_relax_subtype_size): Handle 2-byte CDX branches. 988 1.1 christos (nios2_relax_frag): Likewise. 989 1.1 christos (md_convert_frag): Handle R2 encodings. 990 1.1 christos (nios2_check_overflow): Check that low-order bits are zero 991 1.1 christos before applying rightshift from howto. 992 1.1 christos (nios2_check_overflow): Correct negative overflow calculation. 993 1.1 christos (nios2_diagnose_overflow): Handle signed_immed12_overflow. Issue 994 1.1 christos generic overflow messages for miscellaneous instruction formats. 995 1.1 christos (md_apply_fix): Recognize new R2 relocations. For pc_relative 996 1.1 christos relocations, store fixup in *valP. 997 1.1 christos (nios2_reglist_mask, nios2_reglist_dir): New. 998 1.1 christos (nios2_parse_reglist): New. 999 1.1 christos (nios2_parse_base_register): New. 1000 1.1 christos (nios2_assemble_expression): Handle constant expressions designated 1001 1.1 christos by BFD_RELOC_NONE. 1002 1.1 christos (nios2_assemble_reg3): New. 1003 1.1 christos (nios2_assemble_arg_c): Handle R2 instruction formats. 1004 1.1 christos (nios2_assemble_arg_d): Likewise. 1005 1.1 christos (nios2_assemble_arg_s): Likewise. 1006 1.1 christos (nios2_assemble_arg_t): Likewise. 1007 1.1 christos (nios2_assemble_arg_D): New. 1008 1.1 christos (nios2_assemble_arg_S): New. 1009 1.1 christos (nios2_assemble_arg_T): New. 1010 1.1 christos (nios2_assemble_arg_i): Handle R2 instruction formats. 1011 1.1 christos (nios2_assemble_arg_I): New. 1012 1.1 christos (nios2_assemble_arg_u): Handle R2 instruction formats. 1013 1.1 christos (nios2_assemble_arg_U): New. 1014 1.1 christos (nios2_assemble_arg_V): New. 1015 1.1 christos (nios2_assemble_arg_W): New. 1016 1.1 christos (nios2_assemble_arg_X): New. 1017 1.1 christos (nios2_assemble_arg_Y): New. 1018 1.1 christos (nios2_assemble_arg_o): Handle R2 instruction formats. 1019 1.1 christos (nios2_assemble_arg_O): New. 1020 1.1 christos (nios2_assemble_arg_P): New. 1021 1.1 christos (nios2_assemble_arg_j): Handle R2 instruction formats. 1022 1.1 christos (nios2_assemble_arg_k): New. 1023 1.1 christos (nios2_assemble_arg_l): Handle R2 instruction formats. 1024 1.1 christos (nios2_assemble_arg_m): Likewise. 1025 1.1 christos (nios2_assemble_arg_M): New. 1026 1.1 christos (nios2_assemble_arg_N): New. 1027 1.1 christos (nios2_assemble_arg_e): New. 1028 1.1 christos (nios2_assemble_arg_f): New. 1029 1.1 christos (nios2_assemble_arg_g): New. 1030 1.1 christos (nios2_assemble_arg_h): New. 1031 1.1 christos (nios2_assemble_arg_R): New. 1032 1.1 christos (nios2_assemble_arg_B): New. 1033 1.1 christos (nios2_assemble_args): Handle new argument letters. 1034 1.1 christos (nios2_consume_arg): Likewise. 1035 1.1 christos (nios2_translate_pseudo_insn): Avoid dereferencing null pointer 1036 1.1 christos in error message. 1037 1.1 christos (nios2_ps_insn_info_structs): Add nop.n. 1038 1.1 christos (output_ubranch): Handle CDX branches. 1039 1.1 christos (output_cbranch): Likewise. 1040 1.1 christos (output_call): Handle R2 encodings. 1041 1.1 christos (output_movia): Likewise. 1042 1.1 christos (md_begin): Initialize nios2_min_align. 1043 1.1 christos (md_assemble): Align to nios2_min_align. Adjust nios2_min_align 1044 1.1 christos if a 16-bit instruction is seen. 1045 1.1 christos (nios2_cons_align): Use appropriate nop pattern. 1046 1.1 christos 1047 1.1 christos 2015-07-01 Sandra Loosemore <sandra (a] codesourcery.com> 1048 1.1 christos Cesar Philippidis <cesar (a] codesourcery.com> 1049 1.1 christos 1050 1.1 christos * config/tc-nios2.c: Adjust includes. 1051 1.1 christos (OPTION_MARCH): Define. 1052 1.1 christos (md_longopts): Add -march option. 1053 1.1 christos (nios2_architecture): New. 1054 1.1 christos (nios2_use_arch): New. 1055 1.1 christos (md_parse_option): Handle OPTION_MARCH. 1056 1.1 christos (md_show_usage): Document -march. 1057 1.1 christos (md_begin): Set arch in BFD. 1058 1.1 christos (nios2_elf_final_processing): New. 1059 1.1 christos * config/tc-nios2.h (elf_tc_final_processing): Define. 1060 1.1 christos (nios2_elf_final_processing): New. 1061 1.1 christos * doc/c-nios2.texi (-march): Add documentation. 1062 1.1 christos 1063 1.1 christos 2015-06-30 Amit Pawar <Amit.Pawar (a] amd.com> 1064 1.1 christos 1065 1.1 christos * config/tc-i386.c (cpu_arch): Add .mwaitx. 1066 1.1 christos (process_immext): Check operands for monitorx/mwaitx instructions. 1067 1.1 christos * doc/c-i386.texi: Document mwaitx. 1068 1.1 christos 1069 1.1 christos 2015-06-28 H.J. Lu <hongjiu.lu (a] intel.com> 1070 1.1 christos 1071 1.1 christos * as.c (parse_args): Replace COMPRESS_DEBUG_ZLIB with 1072 1.1 christos COMPRESS_DEBUG_GNU_ZLIB. 1073 1.1 christos * config/tc-i386.c (flag_compress_debug): Likewise. 1074 1.1 christos 1075 1.1 christos 2015-06-24 H.J. Lu <hongjiu.lu (a] intel.com> 1076 1.1 christos 1077 1.1 christos * doc/as.texinfo (.cfi_lsda): Remove the extra @section. 1078 1.1 christos 1079 1.1 christos 2015-06-19 Peter Bergner <bergner (a] vnet.ibm.com> 1080 1.1 christos 1081 1.1 christos * config/tc-ppc.c (md_assemble): Use ppc_optional_operand_value. 1082 1.1 christos Allow for optional operands without insert functions. 1083 1.1 christos 1084 1.1 christos 2015-06-18 Nick Clifton <nickc (a] redhat.com> 1085 1.1 christos 1086 1.1 christos PR gas/18541 1087 1.1 christos * config/tc-arm.c (md_apply_fix): Add support for ADR in thumb 1088 1.1 christos mode against a nearby symbol. 1089 1.1 christos 1090 1.1 christos 2015-06-18 Nick Clifton <nickc (a] redhat.com> 1091 1.1 christos 1092 1.1 christos PR gas/18481 1093 1.1 christos * config/tc-arm.c (tc_gen_reloc): Include BFD_RELOC_ARM_TLS_LE32 1094 1.1 christos in the same case as BFD_RELOC_ARM_TLS_IS32. 1095 1.1 christos 1096 1.1 christos 2015-06-17 Nick Clifton <nickc (a] redhat.com> 1097 1.1 christos 1098 1.1 christos * config/tc-arm.c (is_double_a_single): Make conditional upon the 1099 1.1 christos availablity of a 64-bit type. Use this type for the argument and 1100 1.1 christos mantissa. 1101 1.1 christos (double_to_single): Likewise. 1102 1.1 christos * config/tc-arm.c (move_or_literal_pool): Use a 64-bit type for 1103 1.1 christos the constant value, if available. Generate a 64-bit value from a 1104 1.1 christos bignum if supported. Only perform the second optimization for 1105 1.1 christos PR 18500 if the 64-bit type is available. 1106 1.1 christos 1107 1.1 christos 2015-06-17 Alessandro Marzocchi <alessandro.marzocchi (a] gmail.com> 1108 1.1 christos 1109 1.1 christos PR gas/18500 1110 1.1 christos * config/tc-arm.c (is_double_a_single): New function. 1111 1.1 christos (double_to_single): New function. 1112 1.1 christos (move_or_literal_pool): Add support for converting VLDR to VMOV. 1113 1.1 christos 1114 1.1 christos PR gas/18499 1115 1.1 christos * config/tc-arm.c (move_or_literal_pool): Add support for LDR Rx,= 1116 1.1 christos to MOV.w or MVN.w for Thumb2. 1117 1.1 christos 1118 1.1 christos 2015-06-17 Nicolas Pitre <nico (a] linaro.org> 1119 1.1 christos 1120 1.1 christos * as.c (show_usage): Document --sectname-subst. 1121 1.1 christos (parse_args): Add --sectname-subst. 1122 1.1 christos * as.h (flag_sectname_subst): New. 1123 1.1 christos * config/obj-elf.c (obj_elf_section_name): Add %S substitution. 1124 1.1 christos * doc/as.texinfo: Document it. 1125 1.1 christos 1126 1.1 christos 2015-06-15 Renlin Li <renlin.li (a] arm.com> 1127 1.1 christos 1128 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifier. 1129 1.1 christos (md_apply_fix): Support BFD_RELOC_AARCH64_LD64_GOTOFF_LO15. 1130 1.1 christos (aarch64_force_relocation): Ditto 1131 1.1 christos 1132 1.1 christos 2015-06-13 Mark Wielaard <mjw (a] redhat.com> 1133 1.1 christos 1134 1.1 christos * dwarf2dbg.c (out_header): Document EXPR->X_add_number value, 1135 1.1 christos out_debug_aranges depends on it. 1136 1.1 christos (out_debug_aranges): Track size of header to properly pad header 1137 1.1 christos for address alignment. 1138 1.1 christos 1139 1.1 christos 2015-06-11 John David Anglin <danglin (a] gcc.gnu.org> 1140 1.1 christos 1141 1.1 christos PR gas/18427 1142 1.1 christos * config/tc-hppa.c (last_label_symbol): Declare. 1143 1.1 christos (pa_get_label): Return last label in current space/segment or NULL. 1144 1.1 christos (pa_define_label): Record last label and add to root. 1145 1.1 christos (pa_undefine_label): Remove last label from root. 1146 1.1 christos 1147 1.1 christos 2015-06-08 Nick Clifton <nickc (a] redhat.com> 1148 1.1 christos 1149 1.1 christos * config/tc-rx.c (rx_op): Correct handling of integer bignums. 1150 1.1 christos 1151 1.1 christos 2015-06-04 Matthew Wahab <matthew.wahab (a] arm.com> 1152 1.1 christos 1153 1.1 christos * NEWS: Mention ARMv8.1 support in the Aarch64 port. 1154 1.1 christos * config/tc-aarch64.c (aarch64_arch_option_table): Add "armv8.1-a". 1155 1.1 christos * doc/c-aarch64.texi (-march): Add "armv8.1-a". 1156 1.1 christos 1157 1.1 christos 2015-06-04 Renlin Li <renlin.li (a] arm.com> 1158 1.1 christos 1159 1.1 christos * config/tc-arm.c (arm_init_frag): Use frag's thumb_mode information 1160 1.1 christos when available. 1161 1.1 christos 1162 1.1 christos 2015-06-04 Nick Clifton <nickc (a] redhat.com> 1163 1.1 christos 1164 1.1 christos * config/tc-h8300.c (md_section_align): Fix compile time warning 1165 1.1 christos about left shifting a negative value. 1166 1.1 christos 1167 1.1 christos 2015-06-03 Matthew Wahab <matthew.wahab (a] arm.com> 1168 1.1 christos 1169 1.1 christos * config/tc-arm.c (arm_archs): Add "armv8.1-a". 1170 1.1 christos * doc/c-arm.texi (ARM Options, -march): Add "armv8.1-a". 1171 1.1 christos * NEWS: Mention ARMv8.1 support. 1172 1.1 christos 1173 1.1 christos 2015-06-02 Matthew Wahab <matthew.wahab (a] arm.com> 1174 1.1 christos 1175 1.1 christos * config/tc-arm.c (arm_ext_pan): New. 1176 1.1 christos (do_setpan): New, encode an ARM SETPAN instruction. 1177 1.1 christos (do_t_setpan): New, encode a Thumb SETPAN instruction. 1178 1.1 christos (insns): Add "setpan". 1179 1.1 christos (arm_extensions): Add "pan". 1180 1.1 christos * doc/c-arm.texi (ARM Options): Add "pan" to list of -mcpu processor 1181 1.1 christos extensions. 1182 1.1 christos 1183 1.1 christos 2015-06-02 Matthew Wahab <matthew.wahab (a] arm.com> 1184 1.1 christos 1185 1.1 christos * config/tc-aarch64.c (aarch64_features): Add "rdma". 1186 1.1 christos * doc/c-aarch64.texi (AArch64 Extensions): Add "rdma". 1187 1.1 christos 1188 1.1 christos 2015-06-02 Matthew Wahab <matthew.wahab (a] arm.com> 1189 1.1 christos 1190 1.1 christos * config/tc-aarch64.c (aarch64_features): Add "lor". 1191 1.1 christos * doc/c-aarch64.c (Aarch64 Extensions): Add "lor" to list of 1192 1.1 christos architecture extensions. 1193 1.1 christos 1194 1.1 christos 2015-06-01 Matthew Wahab <matthew.wahab (a] arm.com> 1195 1.1 christos 1196 1.1 christos * config/tc-aarch64.c (parse_sys_reg): New parameter. Check target 1197 1.1 christos support. Fix whitespace. 1198 1.1 christos (parse_operands): Update for parse_sys_reg changes. 1199 1.1 christos (aarch64_features): Add "pan". 1200 1.1 christos * doc/c-aarch64.texi (Aarch64 Extensions): Add "pan". 1201 1.1 christos 1202 1.1 christos 2015-06-01 Jiong Wang <jiong.wang (a] arm.com> 1203 1.1 christos 1204 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifiers. 1205 1.1 christos (md_apply_fix): Support BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14. 1206 1.1 christos (aarch64_force_relocation): Ditto. 1207 1.1 christos 1208 1.1 christos 2015-06-01 Jiong Wang <jiong.wang (a] arm.com> 1209 1.1 christos 1210 1.1 christos * config/tc-aarch64.c (reloc_table): New relocation modifiers. 1211 1.1 christos (md_apply_fix): Support BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15. 1212 1.1 christos (aarch64_force_relocation): Ditto. 1213 1.1 christos 1214 1.1 christos 2015-05-28 Catherine Moore <clm (a] codesourcery.com> 1215 1.1 christos Bernd Schmidt <bernds (a] codesourcery.com> 1216 1.1 christos Paul Brook <paul (a] codesourcery.com> 1217 1.1 christos 1218 1.1 christos * config/tc-alpha.c (all_cfi_sections): Declare. 1219 1.1 christos (s_alpha_ent): Initialize all_cfi_sections. 1220 1.1 christos (alpha_elf_md_end): Invoke cfi_set_sections. 1221 1.1 christos * config/tc-mips.c (md_apply_fix): Handle BFD_RELOC_NONE. 1222 1.1 christos (s_ehword): Use BFD_RELOC_32_PCREL. 1223 1.1 christos (mips_fix_adjustable): Handle BFD_RELOC_32_PCREL. 1224 1.1 christos (mips_cfi_reloc_for_encoding): New function. 1225 1.1 christos * tc-mips.h (DWARF2_FDE_RELOC_SIZE): Redefine. 1226 1.1 christos (DWARF2_FDE_RELOC_ENCODING): Define. 1227 1.1 christos (tc_cfi_reloc_for_encoding): Define. 1228 1.1 christos (mips_cfi_reloc_for_encoding): Define. 1229 1.1 christos (tc_compact_eh_opcode_stop): Define. 1230 1.1 christos (tc_compact_eh_opcode_pad): Define. 1231 1.1 christos * doc/as.texinfo: Document Compact EH extensions. 1232 1.1 christos * doc/internals.texi: Likewise. 1233 1.1 christos * dw2gencfi.c (EH_FRAME_LINKONCE): Redefine. 1234 1.1 christos (tc_cfi_reloc_for_encoding): Provide default. 1235 1.1 christos (compact_eh): Declare. 1236 1.1 christos (emit_expr_encoded): New function. 1237 1.1 christos (get_debugseg_name): Add Compact EH support. 1238 1.1 christos (alloc_debugseg_item): Likewise. 1239 1.1 christos (cfi_set_sections): New function. 1240 1.1 christos (dot_cfi_fde_data): New function. 1241 1.1 christos (dot_cfi_personality_id): New function. 1242 1.1 christos (dot_cfi_inline_lsda): New function. 1243 1.1 christos (cfi_pseudo_table): Add cfi_fde_data, cfi_personality_id, 1244 1.1 christos and cfi_inline_lsda. 1245 1.1 christos (dot_cfi_personality): Add Compact EH support. 1246 1.1 christos (dot_cfi_lsda): Likewise. 1247 1.1 christos (dot_cfi_sections): Likewise. 1248 1.1 christos (dot_cfi_startproc): Likewise. 1249 1.1 christos (get_cfi_seg): Likewise. 1250 1.1 christos (output_compact_unwind_data): New function. 1251 1.1 christos (output_cfi_insn): Add Compact EH support. 1252 1.1 christos (output_cie): Likewise. 1253 1.1 christos (output_fde): Likewise. 1254 1.1 christos (cfi_finish): Likewise. 1255 1.1 christos (cfi_emit_eh_header): New function. 1256 1.1 christos (output_eh_header): New function. 1257 1.1 christos * dw2gencfi.h (cfi_set_sections): Declare. 1258 1.1 christos (SUPPORT_COMPACT_EH): Define. 1259 1.1 christos (MULTIPLE_FRAME_SECTIONS): Define. 1260 1.1 christos New enumeration to describe the Compact EH header format. 1261 1.1 christos (fde_entry): Add new fields personality_id, eh_header_type, eh_data_size, 1262 1.1 christos eh_data, eh_loc and sections. 1263 1.1 christos (CFI_EMIT_eh_frame, CFI_EMIT_debug_frame, CFI_EMIT_target, 1264 1.1 christos CFI_EMIT_eh_frame_compact): Define. 1265 1.1 christos 1266 1.1 christos 2015-05-26 Max Filippov <jcmvbkbc (a] gmail.com> 1267 1.1 christos 1268 1.1 christos * config/tc-xtensa.c (xtensa_move_literals): Check that 1269 1.1 christos search_frag is non-NULL. Report error if literal frag is not 1270 1.1 christos found. 1271 1.1 christos 1272 1.1 christos 2015-05-22 Nick Clifton <nickc (a] redhat.com> 1273 1.1 christos 1274 1.1 christos PR gas/18446 1275 1.1 christos * read.c (output_big_sleb128): Use U suffix to prevent compile 1276 1.1 christos time warning. 1277 1.1 christos 1278 1.1 christos 2015-05-19 Jiong Wang <jiong.wang (a] arm.com> 1279 1.1 christos 1280 1.1 christos * config/tc-aarch64.c (process_movw_reloc_info): Sort relocation case 1281 1.1 christos labels alphabetically. 1282 1.1 christos (md_apply_fix): Ditto. 1283 1.1 christos (aarch64_force_relocation): Ditto. 1284 1.1 christos 1285 1.1 christos 2015-05-15 H.J. Lu <hongjiu.lu (a] intel.com> 1286 1.1 christos 1287 1.1 christos PR binutis/18386 1288 1.1 christos * config/tc-i386.c (OPTION_MAMD64): New. 1289 1.1 christos (OPTION_MINTEL64): Likewise. 1290 1.1 christos (md_longopts): Add -mamd64 and -mintel64. 1291 1.1 christos (md_parse_option): Handle OPTION_MAMD64 and OPTION_MINTEL64. 1292 1.1 christos (md_show_usage): Add -mamd64 and -mintel64. 1293 1.1 christos * doc/c-i386.texi: Document -mamd64 and -mintel64. 1294 1.1 christos 1295 1.1 christos 2015-05-15 H.J. Lu <hongjiu.lu (a] intel.com> 1296 1.1 christos 1297 1.1 christos * config/tc-i386.c (shared): New. 1298 1.1 christos (OPTION_MSHARED): Likewise. 1299 1.1 christos (elf_symbol_resolved_in_segment_p): Add relocation argument. 1300 1.1 christos Check PLT relocations and shared. 1301 1.1 christos (md_estimate_size_before_relax): Pass fragP->fr_var to 1302 1.1 christos elf_symbol_resolved_in_segment_p. 1303 1.1 christos (md_longopts): Add -mshared. 1304 1.1 christos (md_show_usage): Likewise. 1305 1.1 christos (md_parse_option): Handle OPTION_MSHARED. 1306 1.1 christos * doc/c-i386.texi: Document -mshared. 1307 1.1 christos 1308 1.1 christos 2015-05-14 H.J. Lu <hongjiu.lu (a] intel.com> 1309 1.1 christos 1310 1.1 christos * write.c (compress_debug): Don't write the zlib header, which 1311 1.1 christos is handled by bfd_update_compression_header. 1312 1.1 christos 1313 1.1 christos 2015-05-13 Max Filippov <jcmvbkbc (a] gmail.com> 1314 1.1 christos 1315 1.1 christos * config/tc-xtensa.c (xtensa_relax_frag): Allow trampoline to be 1316 1.1 christos closer than J_RANGE / 2 to jump frag. 1317 1.1 christos 1318 1.1 christos 2015-05-11 H.J. Lu <hongjiu.lu (a] intel.com> 1319 1.1 christos 1320 1.1 christos * configure.tgt (arch): Set to iamcu for i386-*-elfiamcu target. 1321 1.1 christos * config/tc-i386.c (i386_mach): Support iamcu. 1322 1.1 christos (i386_target_format): Likewise. 1323 1.1 christos 1324 1.1 christos 2015-05-11 H.J. Lu <hongjiu.lu (a] intel.com> 1325 1.1 christos 1326 1.1 christos * config/tc-i386.c (cpu_arch): Add iamcu. 1327 1.1 christos (i386_align_code): Handle PROCESSOR_IAMCU. 1328 1.1 christos (i386_arch): Likewise. 1329 1.1 christos (i386_mach): Likewise. 1330 1.1 christos (i386_target_format): Likewise. 1331 1.1 christos (valid_iamcu_cpu_flags): New function. 1332 1.1 christos (check_cpu_arch_compatible): Only allow Intel MCU instructions 1333 1.1 christos when targeting Intel MCU. 1334 1.1 christos (set_cpu_arch): Call valid_iamcu_cpu_flags to check if CPU flags 1335 1.1 christos are valid for Intel MCU. 1336 1.1 christos (md_parse_option): Likewise. 1337 1.1 christos * tc-i386.h (ELF_TARGET_IAMCU_FORMAT): New. 1338 1.1 christos (processor_type): Add PROCESSOR_IAMCU. 1339 1.1 christos * doc/c-i386.texi: Document iamcu. 1340 1.1 christos 1341 1.1 christos 2015-05-08 Nick Clifton <nickc (a] redhat.com> 1342 1.1 christos 1343 1.1 christos PR gas/18347 1344 1.1 christos * config/tc-arm.h (TC_EQUAL_IN_INSN): Define. 1345 1.1 christos * config/tc-arm.c (arm_tc_equal_in_insn): New function. Move 1346 1.1 christos the symbol name checking code to here from... 1347 1.1 christos (md_undefined_symbo): ... here. 1348 1.1 christos 1349 1.1 christos 2015-05-07 H.J. Lu <hongjiu.lu (a] intel.com> 1350 1.1 christos 1351 1.1 christos * config/tc-i386.c (elf_symbol_resolved_in_segment_p): New. 1352 1.1 christos (md_estimate_size_before_relax): Use it. 1353 1.1 christos 1354 1.1 christos 2015-05-06 Jose E. Marchesi <jose.marchesi (a] oracle.com> 1355 1.1 christos 1356 1.1 christos * config/tc-sparc.c: Typo in comment fixed. 1357 1.1 christos 1358 1.1 christos 2015-05-06 Jose E. Marchesi <jose.marchesi (a] oracle.com> 1359 1.1 christos 1360 1.1 christos * config/tc-sparc.c (sparc_ip): Support the %ncc "natural" 1361 1.1 christos condition codes 1362 1.1 christos * doc/c-sparc.texi (Sparc-Regs): Document %ncc. 1363 1.1 christos 1364 1.1 christos 2015-05-06 Nick Clifton <nickc (a] redhat.com> 1365 1.1 christos 1366 1.1 christos * doc/as.texinfo (Dollar Local Labels): Note that these are only 1367 1.1 christos supported on some targets. 1368 1.1 christos 1369 1.1 christos 2015-05-06 Renlin Li <renlin.li (a] arm.com> 1370 1.1 christos 1371 1.1 christos * config/tc-aarch64.c (mapping_state): Recording alignment before exit. 1372 1.1 christos 1373 1.1 christos 2015-05-05 Renlin Li <renlin.li (a] arm.com> 1374 1.1 christos 1375 1.1 christos * config/tc-aarch64.c (aarch64_init_frag): Always generate mapping 1376 1.1 christos symbols. 1377 1.1 christos 1378 1.1 christos 2015-05-05 Nick Clifton <nickc (a] redhat.com> 1379 1.1 christos 1380 1.1 christos * config/tc-msp430.c (MAX_OP_LEN): Increase to 4096. 1381 1.1 christos (msp430_make_init_symbols): New function. 1382 1.1 christos (msp430_section): Call it. 1383 1.1 christos (msp430_frob_section): Likewise. 1384 1.1 christos 1385 1.1 christos 2015-05-02 Max Filippov <jcmvbkbc (a] gmail.com> 1386 1.1 christos 1387 1.1 christos * config/tc-xtensa.c (cached_fixupS, fixup_cacheS): New typedefs. 1388 1.1 christos (struct cached_fixup, struct fixup_cache): New structures. 1389 1.1 christos (fixup_order, xtensa_make_cached_fixup), 1390 1.1 christos (xtensa_realloc_fixup_cache, xtensa_cache_relaxable_fixups), 1391 1.1 christos (xtensa_find_first_cached_fixup, xtensa_delete_cached_fixup), 1392 1.1 christos (xtensa_add_cached_fixup): New functions. 1393 1.1 christos (xtensa_relax_frag): Cache fixups pointing at potentially 1394 1.1 christos oversized jumps at the beginning of every relaxation pass. Only 1395 1.1 christos check subset of this cache in the reach of single jump from the 1396 1.1 christos trampoline frag currently being relaxed. 1397 1.1 christos 1398 1.1 christos 2015-05-01 Nick Clifton <nickc (a] redhat.com> 1399 1.1 christos 1400 1.1 christos * config/rl78-parse.y (MULU): Remove ISA_G14. 1401 1.1 christos (MULH, DIVHU, DIVWU, MACHI, MACH): Update error strings. 1402 1.1 christos 1403 1.1 christos 2015-05-01 H.J. Lu <hongjiu.lu (a] intel.com> 1404 1.1 christos 1405 1.1 christos * config/tc-i386.c (i386_elf_emit_arch_note): Removed. 1406 1.1 christos * config/tc-i386.h (md_end): Likewise. 1407 1.1 christos (i386_elf_emit_arch_note): Likewise. 1408 1.1 christos 1409 1.1 christos 2015-05-01 H.J. Lu <hongjiu.lu (a] intel.com> 1410 1.1 christos 1411 1.1 christos * configure.tgt: Support i386-*-elf*. 1412 1.1 christos 1413 1.1 christos 2015-04-30 DJ Delorie <dj (a] redhat.com> 1414 1.1 christos 1415 1.1 christos * config/rl78-defs.h (rl78_isa_g10): New. 1416 1.1 christos (rl78_isa_g13): New. 1417 1.1 christos (rl78_isa_g14): New. 1418 1.1 christos * config/rl78-parse.y (ISA_G10): New. 1419 1.1 christos (ISA_G13): New. 1420 1.1 christos (ISA_G14): New. 1421 1.1 christos (MULHU, MULH, MULU, DIVHU, DIVWU, MACHU, MACH): Use them. 1422 1.1 christos * config/tc-rl78.c (rl78_isa_g10): New. 1423 1.1 christos (rl78_isa_g13): New. 1424 1.1 christos (rl78_isa_g14): New. 1425 1.1 christos 1426 1.1 christos 2015-04-30 H.J. Lu <hongjiu.lu (a] intel.com> 1427 1.1 christos 1428 1.1 christos * config/tc-i386.c (i386_target_format): Use "else if" on 1429 1.1 christos cpu_arch_isa. 1430 1.1 christos 1431 1.1 christos 2015-04-30 Nick Clifton <nickc (a] redhat.com> 1432 1.1 christos 1433 1.1 christos PR gas/18347 1434 1.1 christos * config/tc-arm.c (md_undefined_symbol): Issue a warning message 1435 1.1 christos (if enabled) when the user creates a symbol with the same name as 1436 1.1 christos an ARM instruction. 1437 1.1 christos (flag_warn_syms): New static variable. 1438 1.1 christos (arm_opts): Add mwarn-syms and mno-warn-syms. 1439 1.1 christos * doc/c-arm.texi (ARM Options): Document the -m[no-]warn-syms 1440 1.1 christos options. 1441 1.1 christos 1442 1.1 christos PR gas/18353 1443 1.1 christos * doc/as.texinfo (Zero): Add documentation of the .zero pseudo-op. 1444 1.1 christos 1445 1.1 christos 2015-04-29 Nick Clifton <nickc (a] redhat.com> 1446 1.1 christos 1447 1.1 christos PR 18256 1448 1.1 christos * config/tc-arm.c (encode_arm_cp_address): Issue an error message 1449 1.1 christos if the operand is neither a register nor a vector. 1450 1.1 christos 1451 1.1 christos 2015-04-29 Nick Clifton <nickc (a] redhat.com> 1452 1.1 christos 1453 1.1 christos * doc/as.texinfo (Set): Note that a symbol cannot be set multiple 1454 1.1 christos times if the expression is not constant and the target uses linker 1455 1.1 christos relaxation. 1456 1.1 christos 1457 1.1 christos 2015-04-28 Renlin Li <renlin.li (a] arm.com> 1458 1.1 christos 1459 1.1 christos * config/tc-arm.c (arm_init_frag): Always emit mapping symbols. 1460 1.1 christos 1461 1.1 christos 2015-04-28 Nick Clifton <nickc (a] redhat.com> 1462 1.1 christos 1463 1.1 christos PR 18313 1464 1.1 christos * cond.c (s_if): Stop compile time warning about stopc being used 1465 1.1 christos before it is set. 1466 1.1 christos (s_ifc): Likewise. 1467 1.1 christos 1468 1.1 christos 2015-04-27 Renlin Li <renlin.li (a] arm.com> 1469 1.1 christos 1470 1.1 christos * config/tc-aarch64.c (s_aarch64_inst): Don't align code for non-text 1471 1.1 christos section. 1472 1.1 christos (md_assemble): Likewise, move the align code outside the loop. 1473 1.1 christos 1474 1.1 christos 2015-04-24 Jim Wilson <jim.wilson (a] linaro.org> 1475 1.1 christos 1476 1.1 christos * config/tc-aarch64.c (aarch64_cpus): Add CRC and CRYPTO features 1477 1.1 christos for thunderx. 1478 1.1 christos 1479 1.1 christos 2015-04-24 Richard Earnshaw <rearnsha (a] arm.com> 1480 1.1 christos 1481 1.1 christos * config/tc-arm.h (arm_min): New function. 1482 1.1 christos (SUB_SEGMENT_ALIGN): Define. 1483 1.1 christos 1484 1.1 christos 2015-04-23 Matthew Fortune <matthew.fortune (a] imgtec.com> 1485 1.1 christos 1486 1.1 christos * config/tc-mips.c (macro): State the recommended way of creating 1487 1.1 christos 32-bit or 64-bit addresses. 1488 1.1 christos 1489 1.1 christos 2015-04-23 Jan Beulich <jbeulich (a] suse.com> 1490 1.1 christos 1491 1.1 christos * config/tc-i386.c (match_mem_size): Also allow no size 1492 1.1 christos specification when broadcasting. 1493 1.1 christos 1494 1.1 christos 2015-04-20 H.J. Lu <hongjiu.lu (a] intel.com> 1495 1.1 christos 1496 1.1 christos * doc/as.texinfo (Bundle directives): Shorten menu entry and 1497 1.1 christos use @subsection. 1498 1.1 christos (CFI directives): Use @subsection. 1499 1.1 christos (SH-Dependent, SH64-Dependent): Moved after SCORE-Dependent. 1500 1.1 christos * doc/c-i386.texi (i386-Mnemonics): Use @subsection. 1501 1.1 christos 1502 1.1 christos 2015-04-17 Senthil Kumar Selvaraj <senthil_kumar.selvaraj (a] atmel.com> 1503 1.1 christos 1504 1.1 christos * config/tc-avr.c (create_record_for_frag): Rename link to 1505 1.1 christos prop_rec_link. 1506 1.1 christos 1507 1.1 christos 2015-04-15 H.J. Lu <hongjiu.lu (a] intel.com> 1508 1.1 christos 1509 1.1 christos * NEWS: Mention 1510 1.1 christos --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi]. 1511 1.1 christos 1512 1.1 christos 2015-04-14 H.J. Lu <hongjiu.lu (a] intel.com> 1513 1.1 christos 1514 1.1 christos * as.h (compressed_debug_section_type): Removed. 1515 1.1 christos 1516 1.1 christos 2015-04-14 Nick Clifton <nickc (a] redhat.com> 1517 1.1 christos 1518 1.1 christos * config/tc-rl78.h (TC_LINKRELAX_FIXUP): Define. 1519 1.1 christos (TC_FORCE_RELOCATION_SUB_SAME): Define. 1520 1.1 christos (DWARF2_USE_FIXED_ADVANCE_PC): Define. 1521 1.1 christos 1522 1.1 christos 2015-04-10 Nick Clifton <nickc (a] redhat.com> 1523 1.1 christos 1524 1.1 christos PR binutils/18198 1525 1.1 christos * doc/c-arm.texi (ARM Options): Add a note about the interaction of 1526 1.1 christos the -EB option with the linker's --be8 option. 1527 1.1 christos 1528 1.1 christos 2015-04-09 Hans-Peter Nilsson <hp (a] axis.com> 1529 1.1 christos 1530 1.1 christos * doc/c-rx.texi: Fix markup typos in last change. 1531 1.1 christos 1532 1.1 christos 2015-04-09 Nick Clifton <nickc (a] redhat.com> 1533 1.1 christos 1534 1.1 christos * config/tc-rx.c (enum options): Add OPTION_DISALLOW_STRING_INSNS. 1535 1.1 christos (md_longopts): Add -mno-allow-string-insns. 1536 1.1 christos (md_parse_option): Handle -mno-allow-string-insns. 1537 1.1 christos (md_show_usage): Mention -mno-allow-string-insns. 1538 1.1 christos (rx_note_string_insn_use): New function. Produces an error 1539 1.1 christos message if a string insn is used when it is not allowed. 1540 1.1 christos * config/rx-parse.y (SCMPU): Call rx_note_string_insn_use. 1541 1.1 christos (SMOVU, SMOVB, SMOVF, SUNTIL, SWHILE, RMPA): Likewise. 1542 1.1 christos * config/rx-defs.h (rx_note_string_insn_use): Prototype. 1543 1.1 christos * doc/c-rx.texi: Document -mno-allow-string-insns. 1544 1.1 christos 1545 1.1 christos 2015-04-08 H.J. Lu <hongjiu.lu (a] intel.com> 1546 1.1 christos 1547 1.1 christos * as.c (show_usage): Update --compress-debug-sections. 1548 1.1 christos (std_longopts): Use optional_argument on compress-debug-sections. 1549 1.1 christos (parse_args): Handle 1550 1.1 christos --compress-debug-sections={none|zlib|zlib-gnu|zlib-gabi}. 1551 1.1 christos * as.h (compressed_debug_section_type): New. 1552 1.1 christos (flag_compress_debug): Change type to compressed_debug_section_type. 1553 1.1 christos --compress-debug-sections={none|zlib|zlib-gnu|zlib-gabi}. 1554 1.1 christos * write.c (compress_debug): Set BFD_COMPRESS_GABI for 1555 1.1 christos --compress-debug-sections=zlib-gabi. Call 1556 1.1 christos bfd_get_compression_header_size to get compression header size. 1557 1.1 christos Don't rename section name for --compress-debug-sections=zlib-gabi. 1558 1.1 christos * config/tc-i386.c (compressed_debug_section_type): Set to 1559 1.1 christos COMPRESS_DEBUG_ZLIB. 1560 1.1 christos * doc/as.texinfo: Document 1561 1.1 christos --compress-debug-sections={none|zlib|zlib-gnu|zlib-gabi}. 1562 1.1 christos 1563 1.1 christos 2015-04-07 Renlin Li <renlin.li (a] arm.com> 1564 1.1 christos 1565 1.1 christos * config/tc-aarch64.c (mapping_state): Use subseg_text_p. 1566 1.1 christos (s_aarch64_inst): Likewise. 1567 1.1 christos (md_assemble): Likewise. 1568 1.1 christos 1569 1.1 christos 2015-04-06 H.J. Lu <hongjiu.lu (a] intel.com> 1570 1.1 christos 1571 1.1 christos * write.c (compress_debug): Use bfd_putb64 to write uncompressed 1572 1.1 christos section size. 1573 1.1 christos 1574 1.1 christos 2015-04-05 H.J. Lu <hongjiu.lu (a] intel.com> 1575 1.1 christos 1576 1.1 christos * write.c (compress_debug): Don't write the zlib header if 1577 1.1 christos compressed section size is the same as before compression. 1578 1.1 christos 1579 1.1 christos 2015-04-02 Nick Clifton <nickc (a] redhat.com> 1580 1.1 christos 1581 1.1 christos PR gas/18189 1582 1.1 christos * config/tc-microblaze.c (parse_imm): Use offsetT as the type for 1583 1.1 christos min and max parameters. Sign extend values before testing. 1584 1.1 christos 1585 1.1 christos 2015-04-02 Renlin Li <renlin.li (a] arm.com> 1586 1.1 christos 1587 1.1 christos * config/tc-aarch64.c (mapping_state): Emit MAP_DATA within text section in order. 1588 1.1 christos (mapping_state_2): Don't emit MAP_DATA here. 1589 1.1 christos (s_aarch64_inst): Align frag during state transition. 1590 1.1 christos (md_assemble): Likewise. 1591 1.1 christos 1592 1.1 christos 2015-04-02 Ed Maste <emaste (a] freebsd.org> 1593 1.1 christos 1594 1.1 christos * config/tc-aarch64.c (set_error_kind): Delete. 1595 1.1 christos (set_error_message): Delete. 1596 1.1 christos 1597 1.1 christos 2015-04-02 H.J. Lu <hongjiu.lu (a] intel.com> 1598 1.1 christos 1599 1.1 christos * configure: Regenerated. 1600 1.1 christos 1601 1.1 christos 2015-04-01 Evandro Menezes <e.menezes (a] samsung.com> 1602 1.1 christos 1603 1.1 christos * config/tc-aarch64.c: Add support for Samsung Exynos M1. 1604 1.1 christos * doc/c-aarch64.texi (-mcpu=): Add "exynos-m1". 1605 1.1 christos 1606 1.1 christos 2015-04-01 Evandro Menezes <e.menezes (a] samsung.com> 1607 1.1 christos 1608 1.1 christos * config/tc-arm.c: Add support for Samsung Exynos M1. 1609 1.1 christos * doc/c-arm.texi (-mcpu=): Add "exynos-m1". 1610 1.1 christos 1611 1.1 christos 2015-04-01 H.J. Lu <hongjiu.lu (a] intel.com> 1612 1.1 christos 1613 1.1 christos * configure: Regenerated. 1614 1.1 christos 1615 1.1 christos 2015-03-31 Ed Schouten <ed (a] nuxi.nl> 1616 1.1 christos 1617 1.1 christos * configure.tgt (fmt): Set to elf for *-*-cloudabi*. 1618 1.1 christos 1619 1.1 christos 2015-03-31 H.J. Lu <hongjiu.lu (a] intel.com> 1620 1.1 christos 1621 1.1 christos * configure.ac: Revert the AM_ZLIB change. 1622 1.1 christos * Makefile.in: Regenerated. 1623 1.1 christos * aclocal.m4: Likewise. 1624 1.1 christos * configure: Likewise. 1625 1.1 christos 1626 1.1 christos 2015-03-31 H.J. Lu <hongjiu.lu (a] intel.com> 1627 1.1 christos 1628 1.1 christos * Makefile.am (ZLIBINC): New. 1629 1.1 christos (AM_CFLAGS): Add $(ZLIBINC). 1630 1.1 christos * as.c: (show_usage): Don't check HAVE_ZLIB_H. 1631 1.1 christos (parse_args): Likewise. 1632 1.1 christos * compress-debug.c: Don't check HAVE_ZLIB_H to include <zlib.h>. 1633 1.1 christos (compress_init): Don't check HAVE_ZLIB_H. 1634 1.1 christos (compress_data): Likewise. 1635 1.1 christos (compress_finish): Likewise. 1636 1.1 christos * configure.ac (AM_ZLIB): Removed. 1637 1.1 christos (zlibinc): New. AC_SUBST. 1638 1.1 christos Add --with-system-zlib. 1639 1.1 christos * Makefile.in: Regenerated. 1640 1.1 christos * config.in: Likewise. 1641 1.1 christos * configure: Likewise. 1642 1.1 christos * doc/Makefile.in: Likewise. 1643 1.1 christos 1644 1.1 christos 2015-03-27 H.J. Lu <hongjiu.lu (a] intel.com> 1645 1.1 christos 1646 1.1 christos * config/tc-i386.c (cpu_flags_set): Removed. 1647 1.1 christos 1648 1.1 christos 2015-03-25 Renlin Li <renlin.li (a] arm.com> 1649 1.1 christos 1650 1.1 christos * config/tc-aarch64.c (mapping_state): Remove first MAP_DATA emitting 1651 1.1 christos code. 1652 1.1 christos (mapping_state_2): Emit first MAP_DATA symbol here. 1653 1.1 christos 1654 1.1 christos 2015-03-24 H.J. Lu <hongjiu.lu (a] intel.com> 1655 1.1 christos 1656 1.1 christos PR gas/18087 1657 1.1 christos * write.c (compress_debug): Don't write the zlib header if 1658 1.1 christos compression didn't make the section smaller. 1659 1.1 christos 1660 1.1 christos 2015-03-24 Terry Guo <terry.guo (a] arm.com> 1661 1.1 christos 1662 1.1 christos * config/tc-arm.c (no_cpu_selected): Use new macro to compare 1663 1.1 christos features. 1664 1.1 christos (parse_psr): Likewise. 1665 1.1 christos (do_t_mrs): Likewise. 1666 1.1 christos (do_t_msr): Likewise. 1667 1.1 christos (static const arm_feature_set arm_ext_*): Defined with new macros. 1668 1.1 christos (static const arm_feature_set arm_cext_*): Likewise. 1669 1.1 christos (static const arm_feature_set fpu_fpa_ext_*): Likewise. 1670 1.1 christos (static const arm_feature_set fpu_vfp_ext_*): Likewise. 1671 1.1 christos (deprecated_coproc_regs): Likewise. 1672 1.1 christos (UL_BARRIER): Likewise. 1673 1.1 christos (barrier_opt_names): Likewise. 1674 1.1 christos (arm_cpus): Likewise. 1675 1.1 christos (arm_extensions): Likewise. 1676 1.1 christos 1677 1.1 christos 2015-03-20 H.J. Lu <hongjiu.lu (a] intel.com> 1678 1.1 christos 1679 1.1 christos * config/tc-i386.c (i386_align_code): Limit multi-byte nop 1680 1.1 christos instructions to 10 bytes. 1681 1.1 christos 1682 1.1 christos 2015-03-19 Nick Clifton <nickc (a] redhat.com> 1683 1.1 christos 1684 1.1 christos * config/tc-rl78.c (enum options): Add G13 and G14. 1685 1.1 christos (md_longopts): Add -mg13 and -mg14. 1686 1.1 christos (md_parse_option): Handle -mg13 and -mg14. 1687 1.1 christos (md_show_usage): List -mg13 and -mg14. 1688 1.1 christos * doc/c-rl78.texi: Add description of -mg13 and -mg14 options. 1689 1.1 christos 1690 1.1 christos 2015-03-18 Jon Turney <jon.turney (a] dronecode.org.uk> 1691 1.1 christos Nick Clifton <nickc (a] redhat.com> 1692 1.1 christos 1693 1.1 christos PR binutils/18087 1694 1.1 christos * doc/as.texinfo: Note that when gas compresses debug sections the 1695 1.1 christos compression is only performed if it makes the section smaller. 1696 1.1 christos * write.c (compress_debug): Do not compress a debug section if 1697 1.1 christos doing so would make it larger. 1698 1.1 christos 1699 1.1 christos 2015-03-17 Ganesh Gopalasubramanian <Ganesh.Gopalasubramanian (a] amd.com> 1700 1.1 christos 1701 1.1 christos * config/tc-i386.c (cpu_arch): Add PROCESSOR_ZNVER flags. 1702 1.1 christos (i386_align_code): Add PROCESSOR_ZNVER cases. 1703 1.1 christos * config/tc-i386.h (processor_type): Add PROCESSOR_ZNVER. 1704 1.1 christos * doc/c-i386.texi: Add znver1 and clzero. 1705 1.1 christos 1706 1.1 christos 2015-03-16 Nick Clifton <nickc (a] redhat.com> 1707 1.1 christos 1708 1.1 christos * dwarf2dbg.c (out_header): Remove spurious #if 1. 1709 1.1 christos 1710 1.1 christos 2015-03-13 Jiong Wang <jiong.wang (a] arm.com> 1711 1.1 christos 1712 1.1 christos * config/tc-aarch64.c (warn_unpredictable_ldst): Don't warn on reg 1713 1.1 christos number 31. 1714 1.1 christos 1715 1.1 christos 2015-03-13 Jiong Wang <jiong.wang (a] arm.com> 1716 1.1 christos 1717 1.1 christos * config/tc-aarch64.h (SUB_SEGMENT_ALIGN): Define to be zero. 1718 1.1 christos 1719 1.1 christos 2015-03-12 Andrew Bennett <andrew.bennett (a] imgtec.com> 1720 1.1 christos 1721 1.1 christos * config/tc-mips.c (mips_cpu_info_table): Add i6400 entry. 1722 1.1 christos * doc/c-mips.texi: Document i6400 -march option. 1723 1.1 christos 1724 1.1 christos 2015-03-12 Nick Clifton <nickc (a] redhat.com> 1725 1.1 christos 1726 1.1 christos PR gas/17444 1727 1.1 christos * config/tc-arm.h (MD_APPLY_SYM_VALUE): Pass the current segment 1728 1.1 christos to arm_apply_sym_value. Update prototype. 1729 1.1 christos * config/tc-arm.c (arm_apply_sym_value): Add segment argument. 1730 1.1 christos Do not apply the value if the symbol is in a different segment to 1731 1.1 christos the current segment. 1732 1.1 christos 1733 1.1 christos 2015-03-11 Alan Modra <amodra (a] gmail.com> 1734 1.1 christos 1735 1.1 christos * config/tc-ppc.c (md_assemble): Don't abort on 8 byte insn fixups. 1736 1.1 christos (md_apply_fix): Report an error on data-only fixups used with insns. 1737 1.1 christos 1738 1.1 christos 2015-03-10 Andreas Krebbel <krebbel (a] linux.vnet.ibm.com> 1739 1.1 christos 1740 1.1 christos * config/tc-s390.c (md_gather_operands): Check for valid 1741 1.1 christos length field operands. 1742 1.1 christos 1743 1.1 christos 2015-03-10 Michael Perkins <perkinsmg75 (a] yahoo.co.uk> 1744 1.1 christos 1745 1.1 christos * config/tc-arm.c (parse_operands): Fix bug setting writeback 1746 1.1 christos values for '^' on OP_REGLSTs. 1747 1.1 christos (do_push_pop): Add new writeback constraint. 1748 1.1 christos 1749 1.1 christos 2015-03-10 Renlin Li <renlin.li (a] arm.com> 1750 1.1 christos 1751 1.1 christos * config/tc-arm.c (mapping_state): Remove first MAP_DATA emitting code. 1752 1.1 christos (mapping_state_2): Emit first MAP_DATA symbol here. 1753 1.1 christos 1754 1.1 christos 2015-03-10 Matthew Wahab <matthew.wahab (a] arm.com> 1755 1.1 christos 1756 1.1 christos * config/tc-aarch64.c (mapping_state): Set minimum alignment for 1757 1.1 christos code sections. 1758 1.1 christos 1759 1.1 christos 2015-03-10 Nick Clifton <nickc (a] redhat.com> 1760 1.1 christos 1761 1.1 christos PR gas/17852 1762 1.1 christos * config/tc-arm.c (md_begin): Ensure that selected_cpu is 1763 1.1 christos initialised when CPU_DEFAULT is defined. 1764 1.1 christos 1765 1.1 christos 2015-03-05 Nick Clifton <nickc (a] redhat.com> 1766 1.1 christos 1767 1.1 christos * config/tc-v850.c (md_parse_option): Fix code to set or clear 1768 1.1 christos EF_RH850_DATA_ALIGN8 bit in ELF header, based upon the use of the 1769 1.1 christos -m8byte-align and -m4byte-align command line options. 1770 1.1 christos 1771 1.1 christos 2015-03-04 Richard Sandiford <richard.sandiford (a] arm.com> 1772 1.1 christos 1773 1.1 christos PR gas/17843 1774 1.1 christos * config/tc-aarch64.c (process_movw_reloc_info): Allow 1775 1.1 christos R_AARCH64_TLSLE_MOVW_TPREL_G0_NC and R_AARCH64_TLSLE_MOVW_TPREL_G1_NC 1776 1.1 christos for MOVK. 1777 1.1 christos 1778 1.1 christos 2015-02-28 Alan Modra <amodra (a] gmail.com> 1779 1.1 christos 1780 1.1 christos * write.c (SUB_SEGMENT_ALIGN): Don't pad non-code sections at 1781 1.1 christos end to their alignment. 1782 1.1 christos 1783 1.1 christos 2015-02-19 Marcus Shawcroft <marcus.shawcroft (a] arm.com> 1784 1.1 christos 1785 1.1 christos * config/tc-aarch64.c (reloc_table_entry): Generate 1786 1.1 christos BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21. 1787 1.1 christos (md_apply_fix, aarch64_force_relocation): Handle 1788 1.1 christos BFD_RELOC_AARCH64_TLSGD_ADR_PREL21. 1789 1.1 christos 1790 1.1 christos 2015-02-19 Marcus Shawcroft <marcus.shawcroft (a] arm.com> 1791 1.1 christos 1792 1.1 christos * config/tc-aarch64.c (reloc_table_entry): Generate 1793 1.1 christos BFD_RELOC_AARCH64_TLSGD_ADR_PREL21. 1794 1.1 christos (md_apply_fix, aarch64_force_relocation): Handle 1795 1.1 christos BFD_RELOC_AARCH64_TLSGD_ADR_PREL21. 1796 1.1 christos 1797 1.1 christos 2015-02-19 Marcus Shawcroft <marcus.shawcroft (a] arm.com> 1798 1.1 christos 1799 1.1 christos * config/tc-aarch64.c (reloc_table_entry): Generate 1800 1.1 christos BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19. 1801 1.1 christos (md_apply_fix, aarch64_force_relocation): Handle 1802 1.1 christos BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19. 1803 1.1 christos 1804 1.1 christos 2015-02-26 Marcus Shawcroft <marcus.shawcroft (a] arm.com> 1805 1.1 christos 1806 1.1 christos * config/tc-aarch64.c (reloc_table_entry): Add ld_literal_type. 1807 1.1 christos (reloc_table): Likewise. 1808 1.1 christos (parse_address_main): Use ld_literal_type. 1809 1.1 christos 1810 1.1 christos 2015-02-26 Marcus Shawcroft <marcus.shawcroft (a] arm.com> 1811 1.1 christos 1812 1.1 christos * config/tc-aarch64.c (reloc_table_entry): Add adr_type. 1813 1.1 christos (reloc_table): Likewise. 1814 1.1 christos (parse_address_main): Use adr_type. 1815 1.1 christos 1816 1.1 christos 2015-02-26 Marcus Shawcroft <marcus.shawcroft (a] arm.com> 1817 1.1 christos 1818 1.1 christos * config/tc-aarch64.c (aarch64_arch_any, aarch64_arch_node): Remove. 1819 1.1 christos 1820 1.1 christos 2015-02-25 Andrew Burgess <andrew.burgess (a] embecosm.com> 1821 1.1 christos 1822 1.1 christos * config/tc-avr.c: Add elf32-avr.h include. 1823 1.1 christos (struct avr_property_record_link): New structure. 1824 1.1 christos (avr_output_property_section_header): New function. 1825 1.1 christos (avr_record_size): New function. 1826 1.1 christos (avr_output_property_record): New function. 1827 1.1 christos (avr_create_property_section): New function. 1828 1.1 christos (avr_handle_align): New function. 1829 1.1 christos (exclude_section_from_property_tables): New function. 1830 1.1 christos (create_record_for_frag): New function. 1831 1.1 christos (append_records_for_section): New function. 1832 1.1 christos (avr_create_and_fill_property_section): New function. 1833 1.1 christos (avr_post_relax_hook): New function. 1834 1.1 christos * config/tc-avr.h (md_post_relax_hook): Define. 1835 1.1 christos (avr_post_relax_hook): Declare. 1836 1.1 christos (HANDLE_ALIGN): Define. 1837 1.1 christos (avr_handle_align): Declare. 1838 1.1 christos (strut avr_frag_data): New structure. 1839 1.1 christos (TC_FRAG_TYPE): Define. 1840 1.1 christos 1841 1.1 christos 2015-02-25 Matthew Wahab <matthew.wahab (a] arm.com> 1842 1.1 christos 1843 1.1 christos * doc/c-arm.texi (-mcpu=): Add cortex-a53, cortex-a57 and 1844 1.1 christos cortex-a72. 1845 1.1 christos 1846 1.1 christos 2015-02-24 Nick Clifton <nickc (a] redhat.com> 1847 1.1 christos 1848 1.1 christos * config/tc-v850.c (soft_float): New variable. 1849 1.1 christos (v850_data_8): New variable. 1850 1.1 christos (md_show_usage): Add -msoft-float/-mhard-float. 1851 1.1 christos (md_parse_option): Likewise. 1852 1.1 christos (md_begin): Set the default value of soft_float. 1853 1.1 christos (v850_md_end): New function. Creates a note section. 1854 1.1 christos * config/tc-v850.h (md_end): Define. 1855 1.1 christos * doc/c-v850.texi: Document -msoft-float/-mhard-float. 1856 1.1 christos 1857 1.1 christos 2015-02-23 Yoshinori Sato <ysato (a] users.sourceforge.jp> 1858 1.1 christos 1859 1.1 christos * config/tc-h8300.c (line_separater_chars): Add a version for 1860 1.1 christos h8300-linux that includes a separator. 1861 1.1 christos (default_mach): New variable. 1862 1.1 christos (md_main): Use it. 1863 1.1 christos (md_longopts): Add '--march' option. 1864 1.1 christos (md_parse_option): Parse the new option. 1865 1.1 christos * config/tc-h8300.h (TARGET_FORMAT): Add elf32-h8300-linux. 1866 1.1 christos * configure.tgt: Add h8300-*-linux 1867 1.1 christos * doc/c-h8300.texi: Document --march. 1868 1.1 christos 1869 1.1 christos 2015-02-23 Nick Clifton <nickc (a] redhat.com> 1870 1.1 christos 1871 1.1 christos PR 17940 1872 1.1 christos * dwarf2dbg.c (out_header): When generating dwarf sections use 1873 1.1 christos real symbols not temps for the start and end symbols. 1874 1.1 christos * config/tc-msp430.h (TC_FORCE_RELOCATION_SUB_SAME): Also prevent 1875 1.1 christos adjustments to relocations in debug sections. 1876 1.1 christos (TC_LINKRELAX_FIXUP): Likewise. 1877 1.1 christos 1878 1.1 christos 2015-02-19 Alan Modra <amodra (a] gmail.com> 1879 1.1 christos 1880 1.1 christos * doc/as.texinfo (Local Symbol Names): Don't use ':' in pxref. 1881 1.1 christos * doc/c-i386.texi: Reorder i386-Bugs after i386-Arch. 1882 1.1 christos 1883 1.1 christos 2015-02-11 Matthew Wahab <matthew.wahab (a] arm.com> 1884 1.1 christos 1885 1.1 christos * config/tc-aarch64.c (aarch64_cpus): Fix code formatting. 1886 1.1 christos 1887 1.1 christos 2015-02-11 Matthew Wahab <matthew.wahab (a] arm.com> 1888 1.1 christos 1889 1.1 christos * config/tc-arm.c: Add support for Cortex-A72. 1890 1.1 christos 1891 1.1 christos 2015-02-09 Kyrylo Tkachov <kyrylo.tkachov (a] arm.com> 1892 1.1 christos 1893 1.1 christos * config/tc-arm.c (warn_deprecated_sp): Use as_tsktsk instead 1894 1.1 christos of as_warn for deprecation messages. 1895 1.1 christos (encode_arm_addr_mode_2): Likewise. 1896 1.1 christos (check_obsolete): Likewise. 1897 1.1 christos (do_rd_rm_rn): Likewise. 1898 1.1 christos (do_co_reg): Likewise. 1899 1.1 christos (do_setend): Likewise. 1900 1.1 christos (do_t_mov_cmp): Likewise. 1901 1.1 christos (do_neon_ldr_str): Likewise. 1902 1.1 christos (opcode_lookup): Likewise. 1903 1.1 christos (if_fsm_post_encode): Likewise. 1904 1.1 christos (md_assemble): Likewise. 1905 1.1 christos 1906 1.1 christos 2015-02-06 Jan Beulich <jbeulich (a] suse.com> 1907 1.1 christos 1908 1.1 christos * dw2gencfi.c (select_cie_for_fde): Also bail on CFI_label. 1909 1.1 christos (cfi_change_reg_numbers): Also do nothing for CFI_label. 1910 1.1 christos (cfi_pseudo_table): Also handle .cfi_label when not supporting 1911 1.1 christos CFI directives. 1912 1.1 christos 1913 1.1 christos 2015-02-05 Alan Modra <amodra (a] gmail.com> 1914 1.1 christos 1915 1.1 christos * config/tc-msp430.c (md_assemble): Correct size passed to 1916 1.1 christos extract_cmd. Remove index check. 1917 1.1 christos 1918 1.1 christos 2015-02-04 Matthew Wahab <matthew.wahab (a] arm.com> 1919 1.1 christos 1920 1.1 christos * config/tc-aarch64.c (aarch64_cpus): Add support for Cortex-A72. 1921 1.1 christos * doc/c-aarch64.texi (-mcpu=): Add "cortex-a72". 1922 1.1 christos 1923 1.1 christos 2015-02-04 Nick Clifton <nickc (a] redhat.com> 1924 1.1 christos 1925 1.1 christos * config/rl78-parse.y (addsubw): Fix encoding of [HL] variant of 1926 1.1 christos these instructions. 1927 1.1 christos 1928 1.1 christos 2015-02-03 Renlin Li <renlin.li (a] arm.com> 1929 1.1 christos 1930 1.1 christos * doc/c-aarch64.texi (.arch): Document the directive. 1931 1.1 christos (.arch_extension): Likewise. 1932 1.1 christos 1933 1.1 christos 2015-02-03 Nick Clifton <nickc (a] redhat.com> 1934 1.1 christos 1935 1.1 christos * config/tc-rl78.h (TC_PARSE_CONS_EXPRESSION): Define. 1936 1.1 christos 1937 1.1 christos 2015-01-28 James Bowman <james.bowman (a] ftdichip.com> 1938 1.1 christos 1939 1.1 christos * Makefile.am: Add FT32 files. 1940 1.1 christos * config/tc-ft32.c: New file. 1941 1.1 christos * config/tc-ft32.h: New file. 1942 1.1 christos * configure.tgt: Add FT32 support. 1943 1.1 christos * Makefile.in: Regenerate. 1944 1.1 christos * po/POTFILES.in: Regenerate. 1945 1.1 christos 1946 1.1 christos 2015-01-27 Kuan-Lin Chen <kuanlinchentw (a] gmail.com> 1947 1.1 christos 1948 1.1 christos * config/tc-nds32.c (do_pseudo_la_internal): Limit the second argument 1949 1.1 christos of instruction la to a symbol. 1950 1.1 christos 1951 1.1 christos 2015-01-27 Kuan-Lin Chen <kuanlinchentw (a] gmail.com> 1952 1.1 christos 1953 1.1 christos * config/tc-nds32.c (nds32_parse_name): Ignore when the input is 1954 1.1 christos section name. 1955 1.1 christos 1956 1.1 christos 2015-01-19 Alan Modra <amodra (a] gmail.com> 1957 1.1 christos 1958 1.1 christos * read.c (s_reloc): Match BFD_RELOC_NONE, BFD_RELOC{8,16,32,64}. 1959 1.1 christos * write.c (get_frag_for_reloc): Allow match just past end of frag. 1960 1.1 christos 1961 1.1 christos 2015-01-16 Andreas Krebbel <krebbel (a] linux.vnet.ibm.com> 1962 1.1 christos 1963 1.1 christos * config/tc-s390.c (struct pd_reg): Remove. 1964 1.1 christos (pre_defined_registers): Remove. 1965 1.1 christos (REG_NAME_CNT): Remove. 1966 1.1 christos (reg_name_search): Calculate the register number instead of doing 1967 1.1 christos a lookup. 1968 1.1 christos (register_name, tc_s390_regname_to_dw2regnum): Adopt to the new 1969 1.1 christos reg_name_search signature. 1970 1.1 christos (s390_parse_cpu): Support the new arch string z13. 1971 1.1 christos (s390_insert_operand): Support for vector registers with the extra 1972 1.1 christos field for the fifth bit of each vector register operand. 1973 1.1 christos (md_gather_operand): Adjust to the new handling of optional 1974 1.1 christos parameters. 1975 1.1 christos 1976 1.1 christos * doc/as.texinfo: Document the z13 cpu string. 1977 1.1 christos 1978 1.1 christos 2015-01-13 Matthew Wahab <matthew.wahab (a] arm.com> 1979 1.1 christos 1980 1.1 christos * config/tc-arm.c (parse_ifimm_zero): Accept #0x0 as a synonym for 1981 1.1 christos #0, restoring previous behaviour. 1982 1.1 christos 1983 1.1 christos 2015-01-12 Jan Beulich <jbeulich (a] suse.com> 1984 1.1 christos 1985 1.1 christos * dw2gencfi.c (cfi_add_label, dot_cfi_label): New. 1986 1.1 christos (cfi_pseudo_table): Add "cfi_label". 1987 1.1 christos (output_cfi_insn): Handle CFI_label. 1988 1.1 christos (select_cie_for_fde): Als terminate CIE when encountering 1989 1.1 christos CFI_label. 1990 1.1 christos * dw2gencfi.h (cfi_add_label): Declare. 1991 1.1 christos (struct cfi_insn_data): New member "sym_name". 1992 1.1 christos (CFI_label): New. 1993 1.1 christos * read.c (read_symbol_name): Drop "static". 1994 1.1 christos * read.h (read_symbol_name): Declare. 1995 1.1 christos 1996 1.1 christos 2015-01-12 Jan Beulich <jbeulich (a] suse.com> 1997 1.1 christos 1998 1.1 christos * config/tc-arm.c (do_neon_shl_imm): Check immediate range. 1999 1.1 christos (do_neon_qshl_imm): Likewise. 2000 1.1 christos 2001 1.1 christos 2015-01-12 Alan Modra <amodra (a] gmail.com> 2002 1.1 christos 2003 1.1 christos * read.c (s_altmacro, s_reloc): Make definition static. 2004 1.1 christos 2005 1.1 christos 2015-01-10 Andrew Burgess <andrew.burgess (a] embecosm.com> 2006 1.1 christos 2007 1.1 christos * config/tc-avr.c (md_apply_fix): Update the contents of VALP for 2008 1.1 christos diff fixups. 2009 1.1 christos 2010 1.1 christos 2015-01-09 Philipp Tomsich <philipp.tomsich (a] theobroma-systems.com> 2011 1.1 christos 2012 1.1 christos * config/tc-arm.c (arm_cpus): Add support for APM X-Gene 1 and 2013 1.1 christos X-Gene 2. 2014 1.1 christos * doc/c-arm.texi (ARM Options): Mention xgene1 and xgene2. 2015 1.1 christos 2016 1.1 christos 2015-01-07 Jan Beulich <jbeulich (a] suse.com> 2017 1.1 christos 2018 1.1 christos * config/tc-arm.c (struct arm_option_extension_value_table): 2019 1.1 christos Split field "value" into fields "merge_value" and "clear_value". 2020 1.1 christos (arm_extensions): Adjust initializer accordingly. 2021 1.1 christos 2022 1.1 christos 2015-01-01 Alan Modra <amodra (a] gmail.com> 2023 1.1 christos 2024 1.1 christos * as.c (parse_args): Just print current year. 2025 1.1 christos 2026 1.1 christos 2015-01-01 Alan Modra <amodra (a] gmail.com> 2027 1.1 christos 2028 1.1 christos Update year range in copyright notice of all files. 2029 1.1 christos 2030 1.1 christos For older changes see ChangeLog-2014 2031 1.1 christos 2033 1.1 christos Copyright (C) 2015 Free Software Foundation, Inc. 2034 1.1 christos 2035 1.1 christos Copying and distribution of this file, with or without modification, 2036 1.1 christos are permitted in any medium without royalty provided the copyright 2037 1.1 christos notice and this notice are preserved. 2038 1.1 christos 2039 1.1 christos Local Variables: 2040 1.1 christos mode: change-log 2041 1.1 christos left-margin: 8 2042 1.1 christos fill-column: 74 2043 1.1 christos version-control: never 2044 End: 2045