Ignore:
Timestamp:
Feb 6, 2017, 1:00:00 PM (8 years ago)
Author:
Silvan Scherrer
Message:

binutils: update trunk to version 2.27

Location:
binutils/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binutils/trunk

  • TabularUnified binutils/trunk/gas/config/tc-arm.c

    r970 r1973  
    11/* tc-arm.c -- Assemble for the ARM
    2    Copyright (C) 1994-2014 Free Software Foundation, Inc.
     2   Copyright (C) 1994-2016 Free Software Foundation, Inc.
    33   Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
    44        Modified by David Taylor (dtaylor@armltd.co.uk)
     
    156156/* Constants for known architecture features.  */
    157157static const arm_feature_set fpu_default = FPU_DEFAULT;
    158 static const arm_feature_set fpu_arch_vfp_v1 = FPU_ARCH_VFP_V1;
     158static const arm_feature_set fpu_arch_vfp_v1 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V1;
    159159static const arm_feature_set fpu_arch_vfp_v2 = FPU_ARCH_VFP_V2;
    160 static const arm_feature_set fpu_arch_vfp_v3 = FPU_ARCH_VFP_V3;
    161 static const arm_feature_set fpu_arch_neon_v1 = FPU_ARCH_NEON_V1;
     160static const arm_feature_set fpu_arch_vfp_v3 ATTRIBUTE_UNUSED = FPU_ARCH_VFP_V3;
     161static const arm_feature_set fpu_arch_neon_v1 ATTRIBUTE_UNUSED = FPU_ARCH_NEON_V1;
    162162static const arm_feature_set fpu_arch_fpa = FPU_ARCH_FPA;
    163163static const arm_feature_set fpu_any_hard = FPU_ANY_HARD;
     164#ifdef OBJ_ELF
    164165static const arm_feature_set fpu_arch_maverick = FPU_ARCH_MAVERICK;
     166#endif
    165167static const arm_feature_set fpu_endian_pure = FPU_ARCH_ENDIAN_PURE;
    166168
     
    169171#endif
    170172
    171 static const arm_feature_set arm_ext_v1 = ARM_FEATURE (ARM_EXT_V1, 0);
    172 static const arm_feature_set arm_ext_v2 = ARM_FEATURE (ARM_EXT_V1, 0);
    173 static const arm_feature_set arm_ext_v2s = ARM_FEATURE (ARM_EXT_V2S, 0);
    174 static const arm_feature_set arm_ext_v3 = ARM_FEATURE (ARM_EXT_V3, 0);
    175 static const arm_feature_set arm_ext_v3m = ARM_FEATURE (ARM_EXT_V3M, 0);
    176 static const arm_feature_set arm_ext_v4 = ARM_FEATURE (ARM_EXT_V4, 0);
    177 static const arm_feature_set arm_ext_v4t = ARM_FEATURE (ARM_EXT_V4T, 0);
    178 static const arm_feature_set arm_ext_v5 = ARM_FEATURE (ARM_EXT_V5, 0);
     173static const arm_feature_set arm_ext_v1 = ARM_FEATURE_CORE_LOW (ARM_EXT_V1);
     174static const arm_feature_set arm_ext_v2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V1);
     175static const arm_feature_set arm_ext_v2s = ARM_FEATURE_CORE_LOW (ARM_EXT_V2S);
     176static const arm_feature_set arm_ext_v3 = ARM_FEATURE_CORE_LOW (ARM_EXT_V3);
     177static const arm_feature_set arm_ext_v3m = ARM_FEATURE_CORE_LOW (ARM_EXT_V3M);
     178static const arm_feature_set arm_ext_v4 = ARM_FEATURE_CORE_LOW (ARM_EXT_V4);
     179static const arm_feature_set arm_ext_v4t = ARM_FEATURE_CORE_LOW (ARM_EXT_V4T);
     180static const arm_feature_set arm_ext_v5 = ARM_FEATURE_CORE_LOW (ARM_EXT_V5);
    179181static const arm_feature_set arm_ext_v4t_5 =
    180   ARM_FEATURE (ARM_EXT_V4T | ARM_EXT_V5, 0);
    181 static const arm_feature_set arm_ext_v5t = ARM_FEATURE (ARM_EXT_V5T, 0);
    182 static const arm_feature_set arm_ext_v5e = ARM_FEATURE (ARM_EXT_V5E, 0);
    183 static const arm_feature_set arm_ext_v5exp = ARM_FEATURE (ARM_EXT_V5ExP, 0);
    184 static const arm_feature_set arm_ext_v5j = ARM_FEATURE (ARM_EXT_V5J, 0);
    185 static const arm_feature_set arm_ext_v6 = ARM_FEATURE (ARM_EXT_V6, 0);
    186 static const arm_feature_set arm_ext_v6k = ARM_FEATURE (ARM_EXT_V6K, 0);
    187 static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE (ARM_EXT_V6T2, 0);
    188 static const arm_feature_set arm_ext_v6m = ARM_FEATURE (ARM_EXT_V6M, 0);
    189 static const arm_feature_set arm_ext_v6_notm = ARM_FEATURE (ARM_EXT_V6_NOTM, 0);
    190 static const arm_feature_set arm_ext_v6_dsp = ARM_FEATURE (ARM_EXT_V6_DSP, 0);
    191 static const arm_feature_set arm_ext_barrier = ARM_FEATURE (ARM_EXT_BARRIER, 0);
    192 static const arm_feature_set arm_ext_msr = ARM_FEATURE (ARM_EXT_THUMB_MSR, 0);
    193 static const arm_feature_set arm_ext_div = ARM_FEATURE (ARM_EXT_DIV, 0);
    194 static const arm_feature_set arm_ext_v7 = ARM_FEATURE (ARM_EXT_V7, 0);
    195 static const arm_feature_set arm_ext_v7a = ARM_FEATURE (ARM_EXT_V7A, 0);
    196 static const arm_feature_set arm_ext_v7r = ARM_FEATURE (ARM_EXT_V7R, 0);
    197 static const arm_feature_set arm_ext_v7m = ARM_FEATURE (ARM_EXT_V7M, 0);
    198 static const arm_feature_set arm_ext_v8 = ARM_FEATURE (ARM_EXT_V8, 0);
     182  ARM_FEATURE_CORE_LOW (ARM_EXT_V4T | ARM_EXT_V5);
     183static const arm_feature_set arm_ext_v5t = ARM_FEATURE_CORE_LOW (ARM_EXT_V5T);
     184static const arm_feature_set arm_ext_v5e = ARM_FEATURE_CORE_LOW (ARM_EXT_V5E);
     185static const arm_feature_set arm_ext_v5exp = ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP);
     186static const arm_feature_set arm_ext_v5j = ARM_FEATURE_CORE_LOW (ARM_EXT_V5J);
     187static const arm_feature_set arm_ext_v6 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6);
     188static const arm_feature_set arm_ext_v6k = ARM_FEATURE_CORE_LOW (ARM_EXT_V6K);
     189static const arm_feature_set arm_ext_v6t2 = ARM_FEATURE_CORE_LOW (ARM_EXT_V6T2);
     190static const arm_feature_set arm_ext_v6m = ARM_FEATURE_CORE_LOW (ARM_EXT_V6M);
     191static const arm_feature_set arm_ext_v6_notm =
     192  ARM_FEATURE_CORE_LOW (ARM_EXT_V6_NOTM);
     193static const arm_feature_set arm_ext_v6_dsp =
     194  ARM_FEATURE_CORE_LOW (ARM_EXT_V6_DSP);
     195static const arm_feature_set arm_ext_barrier =
     196  ARM_FEATURE_CORE_LOW (ARM_EXT_BARRIER);
     197static const arm_feature_set arm_ext_msr =
     198  ARM_FEATURE_CORE_LOW (ARM_EXT_THUMB_MSR);
     199static const arm_feature_set arm_ext_div = ARM_FEATURE_CORE_LOW (ARM_EXT_DIV);
     200static const arm_feature_set arm_ext_v7 = ARM_FEATURE_CORE_LOW (ARM_EXT_V7);
     201static const arm_feature_set arm_ext_v7a = ARM_FEATURE_CORE_LOW (ARM_EXT_V7A);
     202static const arm_feature_set arm_ext_v7r = ARM_FEATURE_CORE_LOW (ARM_EXT_V7R);
     203#ifdef OBJ_ELF
     204static const arm_feature_set arm_ext_v7m = ARM_FEATURE_CORE_LOW (ARM_EXT_V7M);
     205#endif
     206static const arm_feature_set arm_ext_v8 = ARM_FEATURE_CORE_LOW (ARM_EXT_V8);
    199207static const arm_feature_set arm_ext_m =
    200   ARM_FEATURE (ARM_EXT_V6M | ARM_EXT_OS | ARM_EXT_V7M, 0);
    201 static const arm_feature_set arm_ext_mp = ARM_FEATURE (ARM_EXT_MP, 0);
    202 static const arm_feature_set arm_ext_sec = ARM_FEATURE (ARM_EXT_SEC, 0);
    203 static const arm_feature_set arm_ext_os = ARM_FEATURE (ARM_EXT_OS, 0);
    204 static const arm_feature_set arm_ext_adiv = ARM_FEATURE (ARM_EXT_ADIV, 0);
    205 static const arm_feature_set arm_ext_virt = ARM_FEATURE (ARM_EXT_VIRT, 0);
     208  ARM_FEATURE_CORE (ARM_EXT_V6M | ARM_EXT_OS | ARM_EXT_V7M,
     209                    ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
     210static const arm_feature_set arm_ext_mp = ARM_FEATURE_CORE_LOW (ARM_EXT_MP);
     211static const arm_feature_set arm_ext_sec = ARM_FEATURE_CORE_LOW (ARM_EXT_SEC);
     212static const arm_feature_set arm_ext_os = ARM_FEATURE_CORE_LOW (ARM_EXT_OS);
     213static const arm_feature_set arm_ext_adiv = ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV);
     214static const arm_feature_set arm_ext_virt = ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT);
     215static const arm_feature_set arm_ext_pan = ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN);
     216static const arm_feature_set arm_ext_v8m = ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M);
     217static const arm_feature_set arm_ext_v8m_main =
     218  ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M_MAIN);
     219/* Instructions in ARMv8-M only found in M profile architectures.  */
     220static const arm_feature_set arm_ext_v8m_m_only =
     221  ARM_FEATURE_CORE_HIGH (ARM_EXT2_V8M | ARM_EXT2_V8M_MAIN);
     222static const arm_feature_set arm_ext_v6t2_v8m =
     223  ARM_FEATURE_CORE_HIGH (ARM_EXT2_V6T2_V8M);
     224/* Instructions shared between ARMv8-A and ARMv8-M.  */
     225static const arm_feature_set arm_ext_atomics =
     226  ARM_FEATURE_CORE_HIGH (ARM_EXT2_ATOMICS);
     227#ifdef OBJ_ELF
     228/* DSP instructions Tag_DSP_extension refers to.  */
     229static const arm_feature_set arm_ext_dsp =
     230  ARM_FEATURE_CORE_LOW (ARM_EXT_V5E | ARM_EXT_V5ExP | ARM_EXT_V6_DSP);
     231#endif
     232static const arm_feature_set arm_ext_ras =
     233  ARM_FEATURE_CORE_HIGH (ARM_EXT2_RAS);
     234/* FP16 instructions.  */
     235static const arm_feature_set arm_ext_fp16 =
     236  ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST);
    206237
    207238static const arm_feature_set arm_arch_any = ARM_ANY;
    208 static const arm_feature_set arm_arch_full = ARM_FEATURE (-1, -1);
     239static const arm_feature_set arm_arch_full ATTRIBUTE_UNUSED = ARM_FEATURE (-1, -1, -1);
    209240static const arm_feature_set arm_arch_t2 = ARM_ARCH_THUMB2;
    210241static const arm_feature_set arm_arch_none = ARM_ARCH_NONE;
     242#ifdef OBJ_ELF
    211243static const arm_feature_set arm_arch_v6m_only = ARM_ARCH_V6M_ONLY;
     244#endif
    212245
    213246static const arm_feature_set arm_cext_iwmmxt2 =
    214   ARM_FEATURE (0, ARM_CEXT_IWMMXT2);
     247  ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2);
    215248static const arm_feature_set arm_cext_iwmmxt =
    216   ARM_FEATURE (0, ARM_CEXT_IWMMXT);
     249  ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT);
    217250static const arm_feature_set arm_cext_xscale =
    218   ARM_FEATURE (0, ARM_CEXT_XSCALE);
     251  ARM_FEATURE_COPROC (ARM_CEXT_XSCALE);
    219252static const arm_feature_set arm_cext_maverick =
    220   ARM_FEATURE (0, ARM_CEXT_MAVERICK);
    221 static const arm_feature_set fpu_fpa_ext_v1 = ARM_FEATURE (0, FPU_FPA_EXT_V1);
    222 static const arm_feature_set fpu_fpa_ext_v2 = ARM_FEATURE (0, FPU_FPA_EXT_V2);
     253  ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK);
     254static const arm_feature_set fpu_fpa_ext_v1 =
     255  ARM_FEATURE_COPROC (FPU_FPA_EXT_V1);
     256static const arm_feature_set fpu_fpa_ext_v2 =
     257  ARM_FEATURE_COPROC (FPU_FPA_EXT_V2);
    223258static const arm_feature_set fpu_vfp_ext_v1xd =
    224   ARM_FEATURE (0, FPU_VFP_EXT_V1xD);
    225 static const arm_feature_set fpu_vfp_ext_v1 = ARM_FEATURE (0, FPU_VFP_EXT_V1);
    226 static const arm_feature_set fpu_vfp_ext_v2 = ARM_FEATURE (0, FPU_VFP_EXT_V2);
    227 static const arm_feature_set fpu_vfp_ext_v3xd = ARM_FEATURE (0, FPU_VFP_EXT_V3xD);
    228 static const arm_feature_set fpu_vfp_ext_v3 = ARM_FEATURE (0, FPU_VFP_EXT_V3);
     259  ARM_FEATURE_COPROC (FPU_VFP_EXT_V1xD);
     260static const arm_feature_set fpu_vfp_ext_v1 =
     261  ARM_FEATURE_COPROC (FPU_VFP_EXT_V1);
     262static const arm_feature_set fpu_vfp_ext_v2 =
     263  ARM_FEATURE_COPROC (FPU_VFP_EXT_V2);
     264static const arm_feature_set fpu_vfp_ext_v3xd =
     265  ARM_FEATURE_COPROC (FPU_VFP_EXT_V3xD);
     266static const arm_feature_set fpu_vfp_ext_v3 =
     267  ARM_FEATURE_COPROC (FPU_VFP_EXT_V3);
    229268static const arm_feature_set fpu_vfp_ext_d32 =
    230   ARM_FEATURE (0, FPU_VFP_EXT_D32);
    231 static const arm_feature_set fpu_neon_ext_v1 = ARM_FEATURE (0, FPU_NEON_EXT_V1);
     269  ARM_FEATURE_COPROC (FPU_VFP_EXT_D32);
     270static const arm_feature_set fpu_neon_ext_v1 =
     271  ARM_FEATURE_COPROC (FPU_NEON_EXT_V1);
    232272static const arm_feature_set fpu_vfp_v3_or_neon_ext =
    233   ARM_FEATURE (0, FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
    234 static const arm_feature_set fpu_vfp_fp16 = ARM_FEATURE (0, FPU_VFP_EXT_FP16);
    235 static const arm_feature_set fpu_neon_ext_fma = ARM_FEATURE (0, FPU_NEON_EXT_FMA);
    236 static const arm_feature_set fpu_vfp_ext_fma = ARM_FEATURE (0, FPU_VFP_EXT_FMA);
     273  ARM_FEATURE_COPROC (FPU_NEON_EXT_V1 | FPU_VFP_EXT_V3);
     274#ifdef OBJ_ELF
     275static const arm_feature_set fpu_vfp_fp16 =
     276  ARM_FEATURE_COPROC (FPU_VFP_EXT_FP16);
     277static const arm_feature_set fpu_neon_ext_fma =
     278  ARM_FEATURE_COPROC (FPU_NEON_EXT_FMA);
     279#endif
     280static const arm_feature_set fpu_vfp_ext_fma =
     281  ARM_FEATURE_COPROC (FPU_VFP_EXT_FMA);
    237282static const arm_feature_set fpu_vfp_ext_armv8 =
    238   ARM_FEATURE (0, FPU_VFP_EXT_ARMV8);
     283  ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8);
     284static const arm_feature_set fpu_vfp_ext_armv8xd =
     285  ARM_FEATURE_COPROC (FPU_VFP_EXT_ARMV8xD);
    239286static const arm_feature_set fpu_neon_ext_armv8 =
    240   ARM_FEATURE (0, FPU_NEON_EXT_ARMV8);
     287  ARM_FEATURE_COPROC (FPU_NEON_EXT_ARMV8);
    241288static const arm_feature_set fpu_crypto_ext_armv8 =
    242   ARM_FEATURE (0, FPU_CRYPTO_EXT_ARMV8);
     289  ARM_FEATURE_COPROC (FPU_CRYPTO_EXT_ARMV8);
    243290static const arm_feature_set crc_ext_armv8 =
    244   ARM_FEATURE (0, CRC_EXT_ARMV8);
     291  ARM_FEATURE_COPROC (CRC_EXT_ARMV8);
     292static const arm_feature_set fpu_neon_ext_v8_1 =
     293  ARM_FEATURE_COPROC (FPU_NEON_EXT_RDMA);
    245294
    246295static int mfloat_abi_opt = -1;
     
    248297static arm_feature_set selected_cpu = ARM_ARCH_NONE;
    249298/* Must be long enough to hold any of the names in arm_cpus.  */
    250 static char selected_cpu_name[16];
     299static char selected_cpu_name[20];
    251300
    252301extern FLONUM_TYPE generic_floating_point_number;
     
    256305no_cpu_selected (void)
    257306{
    258   return selected_cpu.core == arm_arch_none.core
    259     && selected_cpu.coproc == arm_arch_none.coproc;
     307  return ARM_FEATURE_EQUAL (selected_cpu, arm_arch_none);
    260308}
    261309
     
    488536struct reloc_entry
    489537{
    490   char *                    name;
     538  const char *                    name;
    491539  bfd_reloc_code_real_type  reloc;
    492540};
     
    756804#define BAD_PC_WRITEBACK \
    757805        _("cannot use writeback with PC-relative addressing")
    758 #define BAD_RANGE     _("branch out of range")
     806#define BAD_RANGE       _("branch out of range")
     807#define BAD_FP16        _("selected processor does not support fp16 instruction")
    759808#define UNPRED_REG(R)   _("using " R " results in unpredictable behaviour")
     809#define THUMB1_RELOC_ONLY  _("relocation valid in thumb1 code only")
    760810
    761811static struct hash_control * arm_ops_hsh;
     
    10471097   ??? The format of 12 byte floats is uncertain according to gcc's arm.h.  */
    10481098
    1049 char *
     1099const char *
    10501100md_atof (int type, char * litP, int * sizeP)
    10511101{
     
    19582008  const char *const type_error = _("mismatched element/structure types in list");
    19592009  struct neon_typed_alias firsttype;
     2010  firsttype.defined = 0;
     2011  firsttype.eltype.type = NT_invtype;
     2012  firsttype.eltype.size = -1;
     2013  firsttype.index = -1;
    19602014
    19612015  if (skip_past_char (&ptr, '{') == SUCCESS)
     
    21502204
    21512205  name = xstrdup (str);
    2152   new_reg = (struct reg_entry *) xmalloc (sizeof (struct reg_entry));
     2206  new_reg = XNEW (struct reg_entry);
    21532207
    21542208  new_reg->name = name;
     
    21782232  if (atype)
    21792233    {
    2180       reg->neon = (struct neon_typed_alias *)
    2181           xmalloc (sizeof (struct neon_typed_alias));
     2234      reg->neon = XNEW (struct neon_typed_alias);
    21822235      *reg->neon = *atype;
    21832236    }
     
    22252278#endif
    22262279
    2227   nbuf = (char *) alloca (nlen + 1);
    2228   memcpy (nbuf, newname, nlen);
    2229   nbuf[nlen] = '\0';
     2280  nbuf = xmemdup0 (newname, nlen);
    22302281
    22312282  /* Create aliases under the new name as stated; an all-lowercase
     
    22492300             first .req.  */
    22502301          if (insert_reg_alias (nbuf, old->number, old->type) == NULL)
    2251             return TRUE;
     2302            {
     2303              free (nbuf);
     2304              return TRUE;
     2305            }
    22522306        }
    22532307
     
    22592313    }
    22602314
     2315  free (nbuf);
    22612316  return TRUE;
    22622317}
     
    23862441#endif
    23872442
    2388   namebuf = (char *) alloca (namelen + 1);
    2389   strncpy (namebuf, newname, namelen);
    2390   namebuf[namelen] = '\0';
     2443  namebuf = xmemdup0 (newname, namelen);
    23912444
    23922445  insert_neon_reg_alias (namebuf, basereg->number, basetype,
     
    24092462                           typeinfo.defined != 0 ? &typeinfo : NULL);
    24102463
     2464  free (namebuf);
    24112465  return TRUE;
    24122466}
     
    26312685   emit some STATE bytes to the file.  */
    26322686
     2687#define TRANSITION(from, to) (mapstate == (from) && state == (to))
    26332688void
    26342689mapping_state (enum mstate state)
    26352690{
    26362691  enum mstate mapstate = seg_info (now_seg)->tc_segment_info_data.mapstate;
    2637 
    2638 #define TRANSITION(from, to) (mapstate == (from) && state == (to))
    26392692
    26402693  if (mapstate == state)
     
    26602713
    26612714  if (TRANSITION (MAP_UNDEFINED, MAP_DATA))
    2662     /* This case will be evaluated later in the next else.  */
     2715    /* This case will be evaluated later.  */
    26632716    return;
    2664   else if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
    2665           || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
    2666     {
    2667       /* Only add the symbol if the offset is > 0:
    2668          if we're at the first frag, check it's size > 0;
    2669          if we're not at the first frag, then for sure
    2670             the offset is > 0.  */
    2671       struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
    2672       const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
    2673 
    2674       if (add_symbol)
    2675         make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
    2676     }
    26772717
    26782718  mapping_state_2 (state, 0);
    2679 #undef TRANSITION
    26802719}
    26812720
     
    26962735    return;
    26972736
     2737  if (TRANSITION (MAP_UNDEFINED, MAP_ARM)
     2738          || TRANSITION (MAP_UNDEFINED, MAP_THUMB))
     2739    {
     2740      struct frag * const frag_first = seg_info (now_seg)->frchainP->frch_root;
     2741      const int add_symbol = (frag_now != frag_first) || (frag_now_fix () > 0);
     2742
     2743      if (add_symbol)
     2744        make_mapping_symbol (MAP_DATA, (valueT) 0, frag_first);
     2745    }
     2746
    26982747  seg_info (now_seg)->tc_segment_info_data.mapstate = state;
    26992748  make_mapping_symbol (state, (valueT) frag_now_fix () - max_chars, frag_now);
    27002749}
     2750#undef TRANSITION
    27012751#else
    27022752#define mapping_state(x) ((void)0)
     
    27282778    return symbolP;
    27292779
    2730   real_start = ACONCAT ((STUB_NAME, name, NULL));
     2780  real_start = concat (STUB_NAME, name, NULL);
    27312781  new_target = symbol_find (real_start);
     2782  free (real_start);
    27322783
    27332784  if (new_target == NULL)
     
    28552906     This just grew, and could be parsed much more simply!
    28562907     Dean - in haste.  */
    2857   name      = input_line_pointer;
    2858   delim     = get_symbol_end ();
     2908  delim     = get_symbol_name (& name);
    28592909  end_name  = input_line_pointer;
    2860   *end_name = delim;
     2910  (void) restore_line_pointer (delim);
    28612911
    28622912  if (*input_line_pointer != ',')
     
    29382988  char *name, delim;
    29392989
    2940   name = input_line_pointer;
    2941   delim = get_symbol_end ();
     2990  delim = get_symbol_name (& name);
    29422991
    29432992  if (!strcasecmp (name, "unified"))
     
    29502999      return;
    29513000    }
    2952   *input_line_pointer = delim;
     3001  (void) restore_line_pointer (delim);
    29533002  demand_empty_rest_of_line ();
    29543003}
    29553004
    29563005/* Directives: sectioning and alignment.  */
    2957 
    2958 /* Same as s_align_ptwo but align 0 => align 2.  */
    2959 
    2960 static void
    2961 s_align (int unused ATTRIBUTE_UNUSED)
    2962 {
    2963   int temp;
    2964   bfd_boolean fill_p;
    2965   long temp_fill;
    2966   long max_alignment = 15;
    2967 
    2968   temp = get_absolute_expression ();
    2969   if (temp > max_alignment)
    2970     as_bad (_("alignment too large: %d assumed"), temp = max_alignment);
    2971   else if (temp < 0)
    2972     {
    2973       as_bad (_("alignment negative. 0 assumed."));
    2974       temp = 0;
    2975     }
    2976 
    2977   if (*input_line_pointer == ',')
    2978     {
    2979       input_line_pointer++;
    2980       temp_fill = get_absolute_expression ();
    2981       fill_p = TRUE;
    2982     }
    2983   else
    2984     {
    2985       fill_p = FALSE;
    2986       temp_fill = 0;
    2987     }
    2988 
    2989   if (!temp)
    2990     temp = 2;
    2991 
    2992   /* Only make a frag if we HAVE to.  */
    2993   if (temp && !need_pass_2)
    2994     {
    2995       if (!fill_p && subseg_text_p (now_seg))
    2996         frag_align_code (temp, 0);
    2997       else
    2998         frag_align (temp, (int) temp_fill, 0);
    2999     }
    3000   demand_empty_rest_of_line ();
    3001 
    3002   record_alignment (now_seg, temp);
    3003 }
    30043006
    30053007static void
     
    31553157    {
    31563158      /* Create a new pool.  */
    3157       pool = (literal_pool *) xmalloc (sizeof (* pool));
     3159      pool = XNEW (literal_pool);
    31583160      if (! pool)
    31593161        return NULL;
     
    32933295
    32943296              pool->literals[entry] = inst.reloc.exp;
     3297              pool->literals[entry].X_op = O_constant;
    32953298              pool->literals[entry].X_add_number = 0;
    32963299              pool->literals[entry++].X_md = (PADDING_SLOT << 8) | 4;
     
    33473350
    33483351bfd_boolean
    3349 tc_start_label_without_colon (char unused1 ATTRIBUTE_UNUSED, const char * rest)
     3352tc_start_label_without_colon (void)
    33503353{
    33513354  bfd_boolean ret = TRUE;
     
    33533356  if (codecomposer_syntax && asmfunc_state == WAITING_ASMFUNC_NAME)
    33543357    {
    3355       const char *label = rest;
     3358      const char *label = input_line_pointer;
    33563359
    33573360      while (!is_end_of_line[(int) label[-1]])
     
    35523555                  char *p = input_line_pointer;
    35533556                  int offset;
    3554                   char *save_buf = (char *) alloca (input_line_pointer - base);
     3557                  char *save_buf = XNEWVEC (char, input_line_pointer - base);
     3558
    35553559                  memcpy (save_buf, base, input_line_pointer - base);
    35563560                  memmove (base + (input_line_pointer - before_reloc),
     
    35663570                  fix_new_exp (frag_now, p - frag_now->fr_literal + offset,
    35673571                               size, &exp, 0, (enum bfd_reloc_code_real) reloc);
     3572                  free (save_buf);
    35683573                }
    35693574            }
     
    39143919    as_bad (_("duplicate .personality directive"));
    39153920
    3916   name = input_line_pointer;
    3917   c = get_symbol_end ();
     3921  c = get_symbol_name (& name);
    39183922  p = input_line_pointer;
     3923  if (c == '"')
     3924    ++ input_line_pointer;
    39193925  unwind.personality_routine = symbol_find_or_make (name);
    39203926  *p = c;
     
    46784684  { "unreq",       s_unreq,       0 },
    46794685  { "bss",         s_bss,         0 },
    4680   { "align",       s_align,       0 },
     4686  { "align",       s_align_ptwo,  2 },
    46814687  { "arm",         s_arm,         0 },
    46824688  { "thumb",       s_thumb,       0 },
     
    49124918      /* FIXME: 5 = X_PRECISION, should be #define'd where we can use it.
    49134919         Ditto for 15.  */
    4914       if (gen_to_words (words, 5, (long) 15) == 0)
     4920#define X_PRECISION 5
     4921#define E_PRECISION 15L
     4922      if (gen_to_words (words, X_PRECISION, E_PRECISION) == 0)
    49154923        {
    49164924          for (i = 0; i < NUM_FLOAT_VALS; i++)
     
    49614969
    49624970  ++*in;
     4971
     4972  /* Accept #0x0 as a synonym for #0.  */
     4973  if (strncmp (*in, "0x", 2) == 0)
     4974    {
     4975      int val;
     4976      if (parse_immediate (in, &val, 0, 0, TRUE) == FAIL)
     4977        return FALSE;
     4978      return TRUE;
     4979    }
     4980
    49634981  error_code = atof_generic (in, ".", EXP_CHARS,
    49644982                             &generic_floating_point_number);
     
    52975315      BFD_RELOC_ARM_LDR_SB_G2,          /* LDR */
    52985316      BFD_RELOC_ARM_LDRS_SB_G2,         /* LDRS */
    5299       BFD_RELOC_ARM_LDC_SB_G2 } };      /* LDC */
     5317      BFD_RELOC_ARM_LDC_SB_G2 },        /* LDC */
     5318    /* Absolute thumb alu relocations.  */
     5319    { "lower0_7",
     5320      BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC,/* ALU.  */
     5321      0,                                /* LDR.  */
     5322      0,                                /* LDRS.  */
     5323      0 },                              /* LDC.  */
     5324    { "lower8_15",
     5325      BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC,/* ALU.  */
     5326      0,                                /* LDR.  */
     5327      0,                                /* LDRS.  */
     5328      0 },                              /* LDC.  */
     5329    { "upper0_7",
     5330      BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC,/* ALU.  */
     5331      0,                                /* LDR.  */
     5332      0,                                /* LDRS.  */
     5333      0 },                              /* LDC.  */
     5334    { "upper8_15",
     5335      BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC,/* ALU.  */
     5336      0,                                /* LDR.  */
     5337      0,                                /* LDRS.  */
     5338      0 } };                            /* LDC.  */
    53005339
    53015340/* Given the address of a pointer pointing to the textual name of a group
     
    57635802     be TRUE, but we want to ignore it in this case as we are building for any
    57645803     CPU type, including non-m variants.  */
    5765   if (selected_cpu.core == arm_arch_any.core)
     5804  if (ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any))
    57665805    m_profile = FALSE;
    57675806
     
    60766115}
    60776116
     6117/* Record a use of the given feature.  */
     6118static void
     6119record_feature_use (const arm_feature_set *feature)
     6120{
     6121  if (thumb_mode)
     6122    ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
     6123  else
     6124    ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
     6125}
     6126
    60786127/* If the given feature available in the selected CPU, mark it as used.
    60796128   Returns TRUE iff feature is available.  */
     
    60876136  /* Add the appropriate architecture feature for the barrier option used.
    60886137     */
    6089   if (thumb_mode)
    6090     ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used, *feature);
    6091   else
    6092     ARM_MERGE_FEATURE_SETS (arm_arch_used, arm_arch_used, *feature);
     6138  record_feature_use (feature);
    60936139
    60946140  return TRUE;
     
    70327078          if (*str == '^')
    70337079            {
    7034               inst.operands[1].writeback = 1;
     7080              inst.operands[i].writeback = 1;
    70357081              str++;
    70367082            }
     
    72487294  do                                            \
    72497295    if (warn_on_deprecated && reg == REG_SP)    \
    7250        as_warn (_("use of r13 is deprecated")); \
     7296       as_tsktsk (_("use of r13 is deprecated"));       \
    72517297  while (0)
    72527298
    72537299/* Functions for operand encoding.  ARM, then Thumb.  */
    72547300
    7255 #define rotate_left(v, n) (v << n | v >> (32 - n))
     7301#define rotate_left(v, n) (v << (n & 31) | v >> ((32 - n) & 31))
     7302
     7303/* If the current inst is scalar ARMv8.2 fp16 instruction, do special encoding.
     7304
     7305   The only binary encoding difference is the Coprocessor number.  Coprocessor
     7306   9 is used for half-precision calculations or conversions.  The format of the
     7307   instruction is the same as the equivalent Coprocessor 10 instuction that
     7308   exists for Single-Precision operation.  */
     7309
     7310static void
     7311do_scalar_fp16_v82_encode (void)
     7312{
     7313  if (inst.cond != COND_ALWAYS)
     7314    as_warn (_("ARMv8.2 scalar fp16 instruction cannot be conditional,"
     7315               " the behaviour is UNPREDICTABLE"));
     7316  constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
     7317              _(BAD_FP16));
     7318
     7319  inst.instruction = (inst.instruction & 0xfffff0ff) | 0x900;
     7320  mark_feature_used (&arm_ext_fp16);
     7321}
    72567322
    72577323/* If VAL can be encoded in the immediate field of an ARM instruction,
     
    72637329  unsigned int a, i;
    72647330
    7265   for (i = 0; i < 32; i += 2)
     7331  if (val <= 0xff)
     7332    return val;
     7333
     7334  for (i = 2; i < 32; i += 2)
    72667335    if ((a = rotate_left (val, i)) <= 0xff)
    72677336      return a | (i << 7); /* 12-bit pack: [shift-cnt,const].  */
     
    74807549              && !is_load
    74817550              && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v7))
    7482             as_warn (_("use of PC in this instruction is deprecated"));
     7551            as_tsktsk (_("use of PC in this instruction is deprecated"));
    74837552        }
    74847553
     
    77287797}
    77297798
     7799#if defined BFD_HOST_64_BIT
     7800/* Returns TRUE if double precision value V may be cast
     7801   to single precision without loss of accuracy.  */
     7802
     7803static bfd_boolean
     7804is_double_a_single (bfd_int64_t v)
     7805{
     7806  int exp = (int)((v >> 52) & 0x7FF);
     7807  bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
     7808
     7809  return (exp == 0 || exp == 0x7FF
     7810          || (exp >= 1023 - 126 && exp <= 1023 + 127))
     7811    && (mantissa & 0x1FFFFFFFl) == 0;
     7812}
     7813
     7814/* Returns a double precision value casted to single precision
     7815   (ignoring the least significant bits in exponent and mantissa).  */
     7816
     7817static int
     7818double_to_single (bfd_int64_t v)
     7819{
     7820  int sign = (int) ((v >> 63) & 1l);
     7821  int exp = (int) ((v >> 52) & 0x7FF);
     7822  bfd_int64_t mantissa = (v & (bfd_int64_t)0xFFFFFFFFFFFFFULL);
     7823
     7824  if (exp == 0x7FF)
     7825    exp = 0xFF;
     7826  else
     7827    {
     7828      exp = exp - 1023 + 127;
     7829      if (exp >= 0xFF)
     7830        {
     7831          /* Infinity.  */
     7832          exp = 0x7F;
     7833          mantissa = 0;
     7834        }
     7835      else if (exp < 0)
     7836        {
     7837          /* No denormalized numbers.  */
     7838          exp = 0;
     7839          mantissa = 0;
     7840        }
     7841    }
     7842  mantissa >>= 29;
     7843  return (sign << 31) | (exp << 23) | mantissa;
     7844}
     7845#endif /* BFD_HOST_64_BIT */
     7846
    77307847enum lit_type
    77317848{
     
    77347851  CONST_VEC
    77357852};
     7853
     7854static void do_vfp_nsyn_opcode (const char *);
    77367855
    77377856/* inst.reloc.exp describes an "=expr" load pseudo-operation.
     
    77507869  bfd_boolean thumb_p = (t == CONST_THUMB);
    77517870  bfd_boolean arm_p   = (t == CONST_ARM);
    7752   bfd_boolean vec64_p = (t == CONST_VEC) && !inst.operands[i].issingle;
    77537871
    77547872  if (thumb_p)
     
    77627880      return TRUE;
    77637881    }
     7882
    77647883  if (inst.reloc.exp.X_op != O_constant
    77657884      && inst.reloc.exp.X_op != O_symbol
     
    77697888      return TRUE;
    77707889    }
    7771   if ((inst.reloc.exp.X_op == O_constant
    7772        || inst.reloc.exp.X_op == O_big)
    7773       && !inst.operands[i].issingle)
    7774     {
    7775       if (thumb_p && inst.reloc.exp.X_op == O_constant)
    7776         {
    7777           if (!unified_syntax && (inst.reloc.exp.X_add_number & ~0xFF) == 0)
     7890
     7891  if (inst.reloc.exp.X_op == O_constant
     7892      || inst.reloc.exp.X_op == O_big)
     7893    {
     7894#if defined BFD_HOST_64_BIT
     7895      bfd_int64_t v;
     7896#else
     7897      offsetT v;
     7898#endif
     7899      if (inst.reloc.exp.X_op == O_big)
     7900        {
     7901          LITTLENUM_TYPE w[X_PRECISION];
     7902          LITTLENUM_TYPE * l;
     7903
     7904          if (inst.reloc.exp.X_add_number == -1)
    77787905            {
    7779               /* This can be done with a mov(1) instruction.  */
    7780               inst.instruction  = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
    7781               inst.instruction |= inst.reloc.exp.X_add_number;
     7906              gen_to_words (w, X_PRECISION, E_PRECISION);
     7907              l = w;
     7908              /* FIXME: Should we check words w[2..5] ?  */
     7909            }
     7910          else
     7911            l = generic_bignum;
     7912
     7913#if defined BFD_HOST_64_BIT
     7914          v =
     7915            ((((((((bfd_int64_t) l[3] & LITTLENUM_MASK)
     7916                  << LITTLENUM_NUMBER_OF_BITS)
     7917                 | ((bfd_int64_t) l[2] & LITTLENUM_MASK))
     7918                << LITTLENUM_NUMBER_OF_BITS)
     7919               | ((bfd_int64_t) l[1] & LITTLENUM_MASK))
     7920              << LITTLENUM_NUMBER_OF_BITS)
     7921             | ((bfd_int64_t) l[0] & LITTLENUM_MASK));
     7922#else
     7923          v = ((l[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
     7924            |  (l[0] & LITTLENUM_MASK);
     7925#endif
     7926        }
     7927      else
     7928        v = inst.reloc.exp.X_add_number;
     7929
     7930      if (!inst.operands[i].issingle)
     7931        {
     7932          if (thumb_p)
     7933            {
     7934              /* This can be encoded only for a low register.  */
     7935              if ((v & ~0xFF) == 0 && (inst.operands[i].reg < 8))
     7936                {
     7937                  /* This can be done with a mov(1) instruction.  */
     7938                  inst.instruction = T_OPCODE_MOV_I8 | (inst.operands[i].reg << 8);
     7939                  inst.instruction |= v;
     7940                  return TRUE;
     7941                }
     7942
     7943              if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)
     7944                  || ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
     7945                {
     7946                  /* Check if on thumb2 it can be done with a mov.w, mvn or
     7947                     movw instruction.  */
     7948                  unsigned int newimm;
     7949                  bfd_boolean isNegated;
     7950
     7951                  newimm = encode_thumb32_immediate (v);
     7952                  if (newimm != (unsigned int) FAIL)
     7953                    isNegated = FALSE;
     7954                  else
     7955                    {
     7956                      newimm = encode_thumb32_immediate (~v);
     7957                      if (newimm != (unsigned int) FAIL)
     7958                        isNegated = TRUE;
     7959                    }
     7960
     7961                  /* The number can be loaded with a mov.w or mvn
     7962                     instruction.  */
     7963                  if (newimm != (unsigned int) FAIL
     7964                      && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
     7965                    {
     7966                      inst.instruction = (0xf04f0000  /*  MOV.W.  */
     7967                                          | (inst.operands[i].reg << 8));
     7968                      /* Change to MOVN.  */
     7969                      inst.instruction |= (isNegated ? 0x200000 : 0);
     7970                      inst.instruction |= (newimm & 0x800) << 15;
     7971                      inst.instruction |= (newimm & 0x700) << 4;
     7972                      inst.instruction |= (newimm & 0x0ff);
     7973                      return TRUE;
     7974                    }
     7975                  /* The number can be loaded with a movw instruction.  */
     7976                  else if ((v & ~0xFFFF) == 0
     7977                           && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2_v8m))
     7978                    {
     7979                      int imm = v & 0xFFFF;
     7980
     7981                      inst.instruction = 0xf2400000;  /* MOVW.  */
     7982                      inst.instruction |= (inst.operands[i].reg << 8);
     7983                      inst.instruction |= (imm & 0xf000) << 4;
     7984                      inst.instruction |= (imm & 0x0800) << 15;
     7985                      inst.instruction |= (imm & 0x0700) << 4;
     7986                      inst.instruction |= (imm & 0x00ff);
     7987                      return TRUE;
     7988                    }
     7989                }
     7990            }
     7991          else if (arm_p)
     7992            {
     7993              int value = encode_arm_immediate (v);
     7994
     7995              if (value != FAIL)
     7996                {
     7997                  /* This can be done with a mov instruction.  */
     7998                  inst.instruction &= LITERAL_MASK;
     7999                  inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
     8000                  inst.instruction |= value & 0xfff;
     8001                  return TRUE;
     8002                }
     8003
     8004              value = encode_arm_immediate (~ v);
     8005              if (value != FAIL)
     8006                {
     8007                  /* This can be done with a mvn instruction.  */
     8008                  inst.instruction &= LITERAL_MASK;
     8009                  inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
     8010                  inst.instruction |= value & 0xfff;
     8011                  return TRUE;
     8012                }
     8013            }
     8014          else if (t == CONST_VEC && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_neon_ext_v1))
     8015            {
     8016              int op = 0;
     8017              unsigned immbits = 0;
     8018              unsigned immlo = inst.operands[1].imm;
     8019              unsigned immhi = inst.operands[1].regisimm
     8020                ? inst.operands[1].reg
     8021                : inst.reloc.exp.X_unsigned
     8022                ? 0
     8023                : ((bfd_int64_t)((int) immlo)) >> 32;
     8024              int cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
     8025                                                   &op, 64, NT_invtype);
     8026
     8027              if (cmode == FAIL)
     8028                {
     8029                  neon_invert_size (&immlo, &immhi, 64);
     8030                  op = !op;
     8031                  cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
     8032                                                   &op, 64, NT_invtype);
     8033                }
     8034
     8035              if (cmode != FAIL)
     8036                {
     8037                  inst.instruction = (inst.instruction & VLDR_VMOV_SAME)
     8038                    | (1 << 23)
     8039                    | (cmode << 8)
     8040                    | (op << 5)
     8041                    | (1 << 4);
     8042
     8043                  /* Fill other bits in vmov encoding for both thumb and arm.  */
     8044                  if (thumb_mode)
     8045                    inst.instruction |= (0x7U << 29) | (0xF << 24);
     8046                  else
     8047                    inst.instruction |= (0xFU << 28) | (0x1 << 25);
     8048                  neon_write_immbits (immbits);
     8049                  return TRUE;
     8050                }
     8051            }
     8052        }
     8053
     8054      if (t == CONST_VEC)
     8055        {
     8056          /* Check if vldr Rx, =constant could be optimized to vmov Rx, #constant.  */
     8057          if (inst.operands[i].issingle
     8058              && is_quarter_float (inst.operands[1].imm)
     8059              && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3xd))
     8060            {
     8061              inst.operands[1].imm =
     8062                neon_qfloat_bits (v);
     8063              do_vfp_nsyn_opcode ("fconsts");
    77828064              return TRUE;
    77838065            }
    7784         }
    7785       else if (arm_p && inst.reloc.exp.X_op == O_constant)
    7786         {
    7787           int value = encode_arm_immediate (inst.reloc.exp.X_add_number);
    7788           if (value != FAIL)
     8066
     8067          /* If our host does not support a 64-bit type then we cannot perform
     8068             the following optimization.  This mean that there will be a
     8069             discrepancy between the output produced by an assembler built for
     8070             a 32-bit-only host and the output produced from a 64-bit host, but
     8071             this cannot be helped.  */
     8072#if defined BFD_HOST_64_BIT
     8073          else if (!inst.operands[1].issingle
     8074                   && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_v3))
    77898075            {
    7790               /* This can be done with a mov instruction.  */
    7791               inst.instruction &= LITERAL_MASK;
    7792               inst.instruction |= INST_IMMEDIATE | (OPCODE_MOV << DATA_OP_SHIFT);
    7793               inst.instruction |= value & 0xfff;
    7794               return TRUE;
     8076              if (is_double_a_single (v)
     8077                  && is_quarter_float (double_to_single (v)))
     8078                {
     8079                  inst.operands[1].imm =
     8080                    neon_qfloat_bits (double_to_single (v));
     8081                  do_vfp_nsyn_opcode ("fconstd");
     8082                  return TRUE;
     8083                }
    77958084            }
    7796 
    7797           value = encode_arm_immediate (~inst.reloc.exp.X_add_number);
    7798           if (value != FAIL)
    7799             {
    7800               /* This can be done with a mvn instruction.  */
    7801               inst.instruction &= LITERAL_MASK;
    7802               inst.instruction |= INST_IMMEDIATE | (OPCODE_MVN << DATA_OP_SHIFT);
    7803               inst.instruction |= value & 0xfff;
    7804               return TRUE;
    7805             }
    7806         }
    7807       else if (vec64_p)
    7808         {
    7809           int op = 0;
    7810           unsigned immbits = 0;
    7811           unsigned immlo = inst.operands[1].imm;
    7812           unsigned immhi = inst.operands[1].regisimm
    7813                            ? inst.operands[1].reg
    7814                            : inst.reloc.exp.X_unsigned
    7815                              ? 0
    7816                              : ((bfd_int64_t)((int) immlo)) >> 32;
    7817           int cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
    7818                                                &op, 64, NT_invtype);
    7819 
    7820           if (cmode == FAIL)
    7821             {
    7822               neon_invert_size (&immlo, &immhi, 64);
    7823               op = !op;
    7824               cmode = neon_cmode_for_move_imm (immlo, immhi, FALSE, &immbits,
    7825                                                &op, 64, NT_invtype);
    7826             }
    7827           if (cmode != FAIL)
    7828             {
    7829               inst.instruction = (inst.instruction & VLDR_VMOV_SAME)
    7830                                   | (1 << 23)
    7831                                   | (cmode << 8)
    7832                                   | (op << 5)
    7833                                   | (1 << 4);
    7834               /* Fill other bits in vmov encoding for both thumb and arm.  */
    7835               if (thumb_mode)
    7836                 inst.instruction |= (0x7 << 29) | (0xF << 24);
    7837               else
    7838                 inst.instruction |= (0xF << 28) | (0x1 << 25);
    7839               neon_write_immbits (immbits);
    7840               return TRUE;
    7841             }
     8085#endif
    78428086        }
    78438087    }
     
    78728116  if (!inst.operands[i].isreg)
    78738117    {
    7874       gas_assert (inst.operands[0].isvec);
     8118      /* PR 18256 */
     8119      if (! inst.operands[0].isvec)
     8120        {
     8121          inst.error = _("invalid co-processor operand");
     8122          return FAIL;
     8123        }
    78758124      if (move_or_literal_pool (0, CONST_VEC, /*mode_3=*/FALSE))
    78768125        return SUCCESS;
     
    79478196
    79488197static void
     8198do_rn (void)
     8199{
     8200  inst.instruction |= inst.operands[0].reg << 16;
     8201}
     8202
     8203static void
    79498204do_rd_rm (void)
    79508205{
     
    79748229}
    79758230
     8231static void
     8232do_tt (void)
     8233{
     8234  inst.instruction |= inst.operands[0].reg << 8;
     8235  inst.instruction |= inst.operands[1].reg << 16;
     8236}
     8237
    79768238static bfd_boolean
    79778239check_obsolete (const arm_feature_set *feature, const char *msg)
     
    79798241  if (ARM_CPU_IS_ANY (cpu_variant))
    79808242    {
    7981       as_warn ("%s", msg);
     8243      as_tsktsk ("%s", msg);
    79828244      return TRUE;
    79838245    }
     
    80078269          && warn_on_deprecated
    80088270          && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6))
    8009         as_warn (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
     8271        as_tsktsk (_("swp{b} use is deprecated for ARMv6 and ARMv7"));
    80108272    }
    80118273
     
    80898351do_arit (void)
    80908352{
     8353  constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
     8354              && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
     8355              THUMB1_RELOC_ONLY);
    80918356  if (!inst.operands[1].present)
    80928357    inst.operands[1].reg = inst.operands[0].reg;
     
    83258590{
    83268591    {15, 0, 7, 10, 5,                                   /* CP15DMB.  */
    8327      ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
     8592     ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
    83288593     DEPR_ACCESS_V8, NULL},
    83298594    {15, 0, 7, 10, 4,                                   /* CP15DSB.  */
    8330      ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
     8595     ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
    83318596     DEPR_ACCESS_V8, NULL},
    83328597    {15, 0, 7,  5, 4,                                   /* CP15ISB.  */
    8333      ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
     8598     ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
    83348599     DEPR_ACCESS_V8, NULL},
    83358600    {14, 6, 1,  0, 0,                                   /* TEEHBR.  */
    8336      ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
     8601     ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
    83378602     DEPR_ACCESS_V8, NULL},
    83388603    {14, 6, 0,  0, 0,                                   /* TEECR.  */
    8339      ARM_FEATURE (ARM_EXT_V8, 0), ARM_FEATURE (0, 0),
     8604     ARM_FEATURE_CORE_LOW (ARM_EXT_V8), ARM_ARCH_NONE,
    83408605     DEPR_ACCESS_V8, NULL},
    83418606};
     
    83848649                && warn_on_deprecated
    83858650                && ARM_CPU_HAS_FEATURE (cpu_variant, r->deprecated))
    8386               as_warn ("%s", r->dep_msg);
     8651              as_tsktsk ("%s", r->dep_msg);
    83878652          }
    83888653      }
     
    87469011do_mov (void)
    87479012{
     9013  constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
     9014              && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
     9015              THUMB1_RELOC_ONLY);
    87489016  inst.instruction |= inst.operands[0].reg << 12;
    87499017  encode_arm_shifter_operand (1);
     
    87719039    }
    87729040}
    8773 
    8774 static void do_vfp_nsyn_opcode (const char *);
    87759041
    87769042static int
     
    90309296do_push_pop (void)
    90319297{
     9298  constraint (inst.operands[0].writeback,
     9299              _("push/pop do not support {reglist}^"));
    90329300  inst.operands[1] = inst.operands[0];
    90339301  memset (&inst.operands[0], 0, sizeof inst.operands[0]);
     
    91079375  if (warn_on_deprecated
    91089376      && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
    9109       as_warn (_("setend use is deprecated for ARMv8"));
     9377      as_tsktsk (_("setend use is deprecated for ARMv8"));
    91109378
    91119379  if (inst.operands[0].imm)
     
    91539421  inst.reloc.type = BFD_RELOC_ARM_SWI;
    91549422  inst.reloc.pc_rel = 0;
     9423}
     9424
     9425static void
     9426do_setpan (void)
     9427{
     9428  constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
     9429              _("selected processor does not support SETPAN instruction"));
     9430
     9431  inst.instruction |= ((inst.operands[0].imm & 1) << 9);
     9432}
     9433
     9434static void
     9435do_t_setpan (void)
     9436{
     9437  constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_pan),
     9438              _("selected processor does not support SETPAN instruction"));
     9439
     9440  inst.instruction |= (inst.operands[0].imm << 3);
    91559441}
    91569442
     
    975310039    {
    975410040      inst.instruction &= ~0x1a000ff;
    9755       inst.instruction |= (0xf << 28);
     10041      inst.instruction |= (0xfU << 28);
    975610042      if (inst.operands[1].preind)
    975710043        inst.instruction |= PRE_INDEX;
     
    983210118    /* Map 32 -> 0, etc.  */
    983310119    inst.operands[2].imm &= 0x1f;
    9834     inst.instruction |= (0xf << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
     10120    inst.instruction |= (0xfU << 28) | ((inst.operands[2].imm & 0x10) << 4) | (inst.operands[2].imm & 0xf);
    983510121  }
    983610122}
     
    1023210518                  inst.instruction = THUMB_OP16(opcode);
    1023310519                  inst.instruction |= (Rd << 4) | Rs;
    10234                   inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
    10235                   if (inst.size_req != 2)
    10236                     inst.relax = opcode;
     10520                  if (inst.reloc.type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
     10521                      || inst.reloc.type > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
     10522                  {
     10523                    if (inst.size_req == 2)
     10524                      inst.reloc.type = BFD_RELOC_ARM_THUMB_ADD;
     10525                    else
     10526                      inst.relax = opcode;
     10527                  }
    1023710528                }
    1023810529              else
     
    1024210533              || (inst.size_req != 2 && !opcode))
    1024310534            {
     10535              constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
     10536                          && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
     10537                          THUMB1_RELOC_ONLY);
    1024410538              if (Rd == REG_PC)
    1024510539                {
     
    1071011004  int opcode;
    1071111005  int cond;
    10712   int reloc;
     11006  bfd_reloc_code_real_type reloc;
    1071311007
    1071411008  cond = inst.cond;
     
    1074011034      else
    1074111035        {
     11036          constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2),
     11037                      _("selected architecture does not support "
     11038                        "wide conditional branch instruction"));
     11039
    1074211040          gas_assert (cond != 0xF);
    1074311041          inst.instruction |= cond << 22;
     
    1155611854                      && (Rm == REG_SP || Rm == REG_PC))
    1155711855                    {
    11558                       as_warn (_("Use of r%u as a source register is "
     11856                      as_tsktsk (_("Use of r%u as a source register is "
    1155911857                                 "deprecated when r%u is the destination "
    1156011858                                 "register."), Rm, Rn);
     
    1158211880              inst.instruction = THUMB_OP16 (opcode);
    1158311881              inst.instruction |= Rn << 8;
    11584               if (inst.size_req == 2)
    11585                 inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
    11586               else
    11587                 inst.relax = opcode;
     11882              if (inst.reloc.type < BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
     11883                  || inst.reloc.type > BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
     11884                {
     11885                  if (inst.size_req == 2)
     11886                    inst.reloc.type = BFD_RELOC_ARM_THUMB_IMM;
     11887                  else
     11888                    inst.relax = opcode;
     11889                }
    1158811890            }
    1158911891          else
    1159011892            {
     11893              constraint (inst.reloc.type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
     11894                          && inst.reloc.type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC ,
     11895                          THUMB1_RELOC_ONLY);
     11896
    1159111897              inst.instruction = THUMB_OP32 (inst.instruction);
    1159211898              inst.instruction = (inst.instruction & 0xe1ffffff) | 0x10000000;
     
    1191812224             If the user has specified -march=all, we want to ignore it as
    1191912225             we are building for any CPU type, including non-m variants.  */
    11920           bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
     12226          bfd_boolean m_profile =
     12227            !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
    1192112228          constraint ((flags != 0) && m_profile, _("selected processor does "
    1192212229                                                   "not support requested special purpose register"));
     
    1195812265         If the user has specified -march=all, we want to ignore it as
    1195912266         we are building for any CPU type, including non-m variants.  */
    11960       bfd_boolean m_profile = selected_cpu.core != arm_arch_any.core;
     12267      bfd_boolean m_profile =
     12268        !ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any);
    1196112269      constraint (((ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v6_dsp)
    1196212270           && (bits & ~(PSR_s | PSR_f)) != 0)
     
    1224112549    inst.instruction = THUMB_OP16 (inst.instruction) | mask;
    1224212550  else if (inst.size_req != 4
    12243            && (mask & ~0xff) == (1 << (inst.instruction == T_MNEM_push
     12551           && (mask & ~0xff) == (1U << (inst.instruction == T_MNEM_push
    1224412552                                       ? REG_LR : REG_PC)))
    1224512553    {
     
    1238012688  if (warn_on_deprecated
    1238112689      && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v8))
    12382       as_warn (_("setend use is deprecated for ARMv8"));
     12690      as_tsktsk (_("setend use is deprecated for ARMv8"));
    1238312691
    1238412692  set_it_insn_type (OUTSIDE_IT_INSN);
     
    1287513183  X(vqdmulh,    0x0000b00, N_INV,     0x0800c40),       \
    1287613184  X(vqrdmulh,   0x1000b00, N_INV,     0x0800d40),       \
     13185  X(vqrdmlah,   0x3000b10, N_INV,     0x0800e40),       \
     13186  X(vqrdmlsh,   0x3000c10, N_INV,     0x0800f40),       \
    1287713187  X(vshl,       0x0000400, N_INV,     0x0800510),       \
    1287813188  X(vqshl,      0x0000410, N_INV,     0x0800710),       \
     
    1302813338  X(2, (R, S), SINGLE),                 \
    1302913339  X(2, (F, R), SINGLE),                 \
    13030   X(2, (R, F), SINGLE)
     13340  X(2, (R, F), SINGLE),                 \
     13341/* Half float shape supported so far.  */\
     13342  X (2, (H, D), MIXED),                 \
     13343  X (2, (D, H), MIXED),                 \
     13344  X (2, (H, F), MIXED),                 \
     13345  X (2, (F, H), MIXED),                 \
     13346  X (2, (H, H), HALF),                  \
     13347  X (2, (H, R), HALF),                  \
     13348  X (2, (R, H), HALF),                  \
     13349  X (2, (H, I), HALF),                  \
     13350  X (3, (H, H, H), HALF),               \
     13351  X (3, (H, F, I), MIXED),              \
     13352  X (3, (F, H, I), MIXED)
    1303113353
    1303213354#define S2(A,B)         NS_##A##B
     
    1304913371enum neon_shape_class
    1305013372{
     13373  SC_HALF,
    1305113374  SC_SINGLE,
    1305213375  SC_DOUBLE,
     
    1306613389enum neon_shape_el
    1306713390{
     13391  SE_H,
    1306813392  SE_F,
    1306913393  SE_D,
     
    1307813402static unsigned neon_shape_el_size[] =
    1307913403{
     13404  16,
    1308013405  32,
    1308113406  64,
     
    1315913484#define N_SU_32    (N_S8 | N_S16 | N_S32 | N_U8 | N_U16 | N_U32)
    1316013485#define N_SU_16_64 (N_S16 | N_S32 | N_S64 | N_U16 | N_U32 | N_U64)
    13161 #define N_SUF_32   (N_SU_32 | N_F32)
     13486#define N_S_32     (N_S8 | N_S16 | N_S32)
     13487#define N_F_16_32  (N_F16 | N_F32)
     13488#define N_SUF_32   (N_SU_32 | N_F_16_32)
    1316213489#define N_I_ALL    (N_I8 | N_I16 | N_I32 | N_I64)
    13163 #define N_IF_32    (N_I8 | N_I16 | N_I32 | N_F32)
     13490#define N_IF_32    (N_I8 | N_I16 | N_I32 | N_F16 | N_F32)
     13491#define N_F_ALL    (N_F16 | N_F32 | N_F64)
    1316413492
    1316513493/* Pass this as the first type argument to neon_check_type to ignore types
     
    1320313531          switch (neon_shape_tab[shape].el[j])
    1320413532            {
     13533              /* If a  .f16,  .16,  .u16,  .s16 type specifier is given over
     13534                 a VFP single precision register operand, it's essentially
     13535                 means only half of the register is used.
     13536
     13537                 If the type specifier is given after the mnemonics, the
     13538                 information is stored in inst.vectype.  If the type specifier
     13539                 is given after register operand, the information is stored
     13540                 in inst.operands[].vectype.
     13541
     13542                 When there is only one type specifier, and all the register
     13543                 operands are the same type of hardware register, the type
     13544                 specifier applies to all register operands.
     13545
     13546                 If no type specifier is given, the shape is inferred from
     13547                 operand information.
     13548
     13549                 for example:
     13550                 vadd.f16 s0, s1, s2:           NS_HHH
     13551                 vabs.f16 s0, s1:               NS_HH
     13552                 vmov.f16 s0, r1:               NS_HR
     13553                 vmov.f16 r0, s1:               NS_RH
     13554                 vcvt.f16 r0, s1:               NS_RH
     13555                 vcvt.f16.s32   s2, s2, #29:    NS_HFI
     13556                 vcvt.f16.s32   s2, s2:         NS_HF
     13557              */
     13558            case SE_H:
     13559              if (!(inst.operands[j].isreg
     13560                    && inst.operands[j].isvec
     13561                    && inst.operands[j].issingle
     13562                    && !inst.operands[j].isquad
     13563                    && ((inst.vectype.elems == 1
     13564                         && inst.vectype.el[0].size == 16)
     13565                        || (inst.vectype.elems > 1
     13566                            && inst.vectype.el[j].size == 16)
     13567                        || (inst.vectype.elems == 0
     13568                            && inst.operands[j].vectype.type != NT_invtype
     13569                            && inst.operands[j].vectype.size == 16))))
     13570                matches = 0;
     13571              break;
     13572
    1320513573            case SE_F:
    1320613574              if (!(inst.operands[j].isreg
    1320713575                    && inst.operands[j].isvec
    1320813576                    && inst.operands[j].issingle
    13209                     && !inst.operands[j].isquad))
     13577                    && !inst.operands[j].isquad
     13578                    && ((inst.vectype.elems == 1 && inst.vectype.el[0].size == 32)
     13579                        || (inst.vectype.elems > 1 && inst.vectype.el[j].size == 32)
     13580                        || (inst.vectype.elems == 0
     13581                            && (inst.operands[j].vectype.size == 32
     13582                                || inst.operands[j].vectype.type == NT_invtype)))))
    1321013583                matches = 0;
    1321113584              break;
     
    1342313796  else if ((mask & (N_P8 | N_P16 | N_P64)) != 0)
    1342413797    *type = NT_poly;
    13425   else if ((mask & (N_F16 | N_F32 | N_F64)) != 0)
     13798  else if ((mask & (N_F_ALL)) != 0)
    1342613799    *type = NT_float;
    1342713800  else
     
    1358513958                  k_size = g_size;
    1358613959                  key_allowed = thisarg & ~N_KEY;
     13960
     13961                  /* Check architecture constraint on FP16 extension.  */
     13962                  if (k_size == 16
     13963                      && k_type == NT_float
     13964                      && ! ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
     13965                    {
     13966                      inst.error = _(BAD_FP16);
     13967                      return badtype;
     13968                    }
    1358713969                }
    1358813970            }
     
    1361013992                  else
    1361113993                    match = g_size;
     13994
     13995                  /* FP16 will use a single precision register.  */
     13996                  if (regwidth == 32 && match == 16)
     13997                    {
     13998                      if (ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16))
     13999                        match = regwidth;
     14000                      else
     14001                        {
     14002                          inst.error = _(BAD_FP16);
     14003                          return badtype;
     14004                        }
     14005                    }
    1361214006
    1361314007                  if (regwidth != match)
     
    1370214096  int is_add = (inst.instruction & 0x0fffffff) == N_MNEM_vadd;
    1370314097
    13704   if (rs == NS_FFF)
     14098  if (rs == NS_FFF || rs == NS_HHH)
    1370514099    {
    1370614100      if (is_add)
     
    1370814102      else
    1370914103        do_vfp_nsyn_opcode ("fsubs");
     14104
     14105      /* ARMv8.2 fp16 instruction.  */
     14106      if (rs == NS_HHH)
     14107        do_scalar_fp16_v82_encode ();
    1371014108    }
    1371114109  else
     
    1373014128    {
    1373114129    case 2:
    13732       rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
    13733       et = neon_check_type (2, rs,
    13734         N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
     14130      rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
     14131      et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
    1373514132      break;
    1373614133
    1373714134    case 3:
    13738       rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
    13739       et = neon_check_type (3, rs,
    13740         N_EQK | N_VFP, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
     14135      rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
     14136      et = neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
     14137                            N_F_ALL | N_KEY | N_VFP);
    1374114138      break;
    1374214139
     
    1376014157  int is_mla = (inst.instruction & 0x0fffffff) == N_MNEM_vmla;
    1376114158
    13762   if (rs == NS_FFF)
     14159  if (rs == NS_FFF || rs == NS_HHH)
    1376314160    {
    1376414161      if (is_mla)
     
    1376614163      else
    1376714164        do_vfp_nsyn_opcode ("fnmacs");
     14165
     14166      /* ARMv8.2 fp16 instruction.  */
     14167      if (rs == NS_HHH)
     14168        do_scalar_fp16_v82_encode ();
    1376814169    }
    1376914170  else
     
    1378114182  int is_fma = (inst.instruction & 0x0fffffff) == N_MNEM_vfma;
    1378214183
    13783   if (rs == NS_FFF)
     14184  if (rs == NS_FFF || rs == NS_HHH)
    1378414185    {
    1378514186      if (is_fma)
     
    1378714188      else
    1378814189        do_vfp_nsyn_opcode ("ffnmas");
     14190
     14191      /* ARMv8.2 fp16 instruction.  */
     14192      if (rs == NS_HHH)
     14193        do_scalar_fp16_v82_encode ();
    1378914194    }
    1379014195  else
     
    1380014205do_vfp_nsyn_mul (enum neon_shape rs)
    1380114206{
    13802   if (rs == NS_FFF)
    13803     do_vfp_nsyn_opcode ("fmuls");
     14207  if (rs == NS_FFF || rs == NS_HHH)
     14208    {
     14209      do_vfp_nsyn_opcode ("fmuls");
     14210
     14211      /* ARMv8.2 fp16 instruction.  */
     14212      if (rs == NS_HHH)
     14213        do_scalar_fp16_v82_encode ();
     14214    }
    1380414215  else
    1380514216    do_vfp_nsyn_opcode ("fmuld");
     
    1381014221{
    1381114222  int is_neg = (inst.instruction & 0x80) != 0;
    13812   neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_VFP | N_KEY);
    13813 
    13814   if (rs == NS_FF)
     14223  neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_VFP | N_KEY);
     14224
     14225  if (rs == NS_FF || rs == NS_HH)
    1381514226    {
    1381614227      if (is_neg)
     
    1381814229      else
    1381914230        do_vfp_nsyn_opcode ("fabss");
     14231
     14232      /* ARMv8.2 fp16 instruction.  */
     14233      if (rs == NS_HH)
     14234        do_scalar_fp16_v82_encode ();
    1382014235    }
    1382114236  else
     
    1385414269do_vfp_nsyn_sqrt (void)
    1385514270{
    13856   enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
    13857   neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
    13858 
    13859   if (rs == NS_FF)
    13860     do_vfp_nsyn_opcode ("fsqrts");
     14271  enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
     14272  neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
     14273
     14274  if (rs == NS_FF || rs == NS_HH)
     14275    {
     14276      do_vfp_nsyn_opcode ("fsqrts");
     14277
     14278      /* ARMv8.2 fp16 instruction.  */
     14279      if (rs == NS_HH)
     14280        do_scalar_fp16_v82_encode ();
     14281    }
    1386114282  else
    1386214283    do_vfp_nsyn_opcode ("fsqrtd");
     
    1386614287do_vfp_nsyn_div (void)
    1386714288{
    13868   enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
     14289  enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
    1386914290  neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
    13870     N_F32 | N_F64 | N_KEY | N_VFP);
    13871 
    13872   if (rs == NS_FFF)
    13873     do_vfp_nsyn_opcode ("fdivs");
     14291                   N_F_ALL | N_KEY | N_VFP);
     14292
     14293  if (rs == NS_FFF || rs == NS_HHH)
     14294    {
     14295      do_vfp_nsyn_opcode ("fdivs");
     14296
     14297      /* ARMv8.2 fp16 instruction.  */
     14298      if (rs == NS_HHH)
     14299        do_scalar_fp16_v82_encode ();
     14300    }
    1387414301  else
    1387514302    do_vfp_nsyn_opcode ("fdivd");
     
    1387914306do_vfp_nsyn_nmul (void)
    1388014307{
    13881   enum neon_shape rs = neon_select_shape (NS_FFF, NS_DDD, NS_NULL);
     14308  enum neon_shape rs = neon_select_shape (NS_HHH, NS_FFF, NS_DDD, NS_NULL);
    1388214309  neon_check_type (3, rs, N_EQK | N_VFP, N_EQK | N_VFP,
    13883     N_F32 | N_F64 | N_KEY | N_VFP);
    13884 
    13885   if (rs == NS_FFF)
     14310                   N_F_ALL | N_KEY | N_VFP);
     14311
     14312  if (rs == NS_FFF || rs == NS_HHH)
    1388614313    {
    1388714314      NEON_ENCODE (SINGLE, inst);
    1388814315      do_vfp_sp_dyadic ();
     14316
     14317      /* ARMv8.2 fp16 instruction.  */
     14318      if (rs == NS_HHH)
     14319        do_scalar_fp16_v82_encode ();
    1388914320    }
    1389014321  else
     
    1389414325    }
    1389514326  do_vfp_cond_or_thumb ();
     14327
    1389614328}
    1389714329
     
    1389914331do_vfp_nsyn_cmp (void)
    1390014332{
     14333  enum neon_shape rs;
    1390114334  if (inst.operands[1].isreg)
    1390214335    {
    13903       enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_NULL);
    13904       neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
    13905 
    13906       if (rs == NS_FF)
     14336      rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_NULL);
     14337      neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY | N_VFP);
     14338
     14339      if (rs == NS_FF || rs == NS_HH)
    1390714340        {
    1390814341          NEON_ENCODE (SINGLE, inst);
     
    1391714350  else
    1391814351    {
    13919       enum neon_shape rs = neon_select_shape (NS_FI, NS_DI, NS_NULL);
    13920       neon_check_type (2, rs, N_F32 | N_F64 | N_KEY | N_VFP, N_EQK);
     14352      rs = neon_select_shape (NS_HI, NS_FI, NS_DI, NS_NULL);
     14353      neon_check_type (2, rs, N_F_ALL | N_KEY | N_VFP, N_EQK);
    1392114354
    1392214355      switch (inst.instruction & 0x0fffffff)
     
    1393214365        }
    1393314366
    13934       if (rs == NS_FI)
     14367      if (rs == NS_FI || rs == NS_HI)
    1393514368        {
    1393614369          NEON_ENCODE (SINGLE, inst);
     
    1394414377    }
    1394514378  do_vfp_cond_or_thumb ();
     14379
     14380  /* ARMv8.2 fp16 instruction.  */
     14381  if (rs == NS_HI || rs == NS_HH)
     14382    do_scalar_fp16_v82_encode ();
    1394614383}
    1394714384
     
    1410814545      enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
    1410914546      struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_KEY | N_I_ALL);
     14547      int imm = inst.operands[2].imm;
     14548
     14549      constraint (imm < 0 || (unsigned)imm >= et.size,
     14550                  _("immediate out of range for shift"));
    1411014551      NEON_ENCODE (IMMED, inst);
    14111       neon_imm_shift (FALSE, 0, neon_quad (rs), et, inst.operands[2].imm);
     14552      neon_imm_shift (FALSE, 0, neon_quad (rs), et, imm);
    1411214553    }
    1411314554  else
     
    1414014581      enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_NULL);
    1414114582      struct neon_type_el et = neon_check_type (2, rs, N_EQK, N_SU_ALL | N_KEY);
    14142 
     14583      int imm = inst.operands[2].imm;
     14584
     14585      constraint (imm < 0 || (unsigned)imm >= et.size,
     14586                  _("immediate out of range for shift"));
    1414314587      NEON_ENCODE (IMMED, inst);
    14144       neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et,
    14145                       inst.operands[2].imm);
     14588      neon_imm_shift (TRUE, et.type == NT_unsigned, neon_quad (rs), et, imm);
    1414614589    }
    1414714590  else
     
    1433514778    {
    1433614779      NEON_ENCODE (FLOAT, inst);
    14337       neon_three_same (neon_quad (rs), 0, -1);
     14780      neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
    1433814781    }
    1433914782  else
     
    1445014893neon_exchange_operands (void)
    1445114894{
    14452   void *scratch = alloca (sizeof (inst.operands[0]));
    1445314895  if (inst.operands[1].present)
    1445414896    {
     14897      void *scratch = xmalloc (sizeof (inst.operands[0]));
     14898
    1445514899      /* Swap operands[1] and operands[2].  */
    1445614900      memcpy (scratch, &inst.operands[1], sizeof (inst.operands[0]));
    1445714901      inst.operands[1] = inst.operands[2];
    1445814902      memcpy (&inst.operands[2], scratch, sizeof (inst.operands[0]));
     14903      free (scratch);
    1445914904    }
    1446014905  else
     
    1449614941do_neon_cmp (void)
    1449714942{
    14498   neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, FALSE);
     14943  neon_compare (N_SUF_32, N_S_32 | N_F_16_32, FALSE);
    1449914944}
    1450014945
     
    1450214947do_neon_cmp_inv (void)
    1450314948{
    14504   neon_compare (N_SUF_32, N_S8 | N_S16 | N_S32 | N_F32, TRUE);
     14949  neon_compare (N_SUF_32, N_S_32 | N_F_16_32, TRUE);
    1450514950}
    1450614951
     
    1458115026      enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
    1458215027      struct neon_type_el et = neon_check_type (3, rs,
    14583         N_EQK, N_EQK, N_I16 | N_I32 | N_F32 | N_KEY);
     15028        N_EQK, N_EQK, N_I16 | N_I32 | N_F_16_32 | N_KEY);
    1458415029      NEON_ENCODE (SCALAR, inst);
    1458515030      neon_mul_mac (et, neon_quad (rs));
     
    1463015075    do_neon_mac_maybe_scalar ();
    1463115076  else
    14632     neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F32 | N_P8, 0);
     15077    neon_dyadic_misc (NT_poly, N_I8 | N_I16 | N_I32 | N_F16 | N_F32 | N_P8, 0);
    1463315078}
    1463415079
     
    1465615101
    1465715102static void
     15103do_neon_qrdmlah (void)
     15104{
     15105  /* Check we're on the correct architecture.  */
     15106  if (!mark_feature_used (&fpu_neon_ext_armv8))
     15107    inst.error =
     15108      _("instruction form not available on this architecture.");
     15109  else if (!mark_feature_used (&fpu_neon_ext_v8_1))
     15110    {
     15111      as_warn (_("this instruction implies use of ARMv8.1 AdvSIMD."));
     15112      record_feature_use (&fpu_neon_ext_v8_1);
     15113    }
     15114
     15115  if (inst.operands[2].isscalar)
     15116    {
     15117      enum neon_shape rs = neon_select_shape (NS_DDS, NS_QQS, NS_NULL);
     15118      struct neon_type_el et = neon_check_type (3, rs,
     15119        N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
     15120      NEON_ENCODE (SCALAR, inst);
     15121      neon_mul_mac (et, neon_quad (rs));
     15122    }
     15123  else
     15124    {
     15125      enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
     15126      struct neon_type_el et = neon_check_type (3, rs,
     15127        N_EQK, N_EQK, N_S16 | N_S32 | N_KEY);
     15128      NEON_ENCODE (INTEGER, inst);
     15129      /* The U bit (rounding) comes from bit mask.  */
     15130      neon_three_same (neon_quad (rs), 0, et.size);
     15131    }
     15132}
     15133
     15134static void
    1465815135do_neon_fcmp_absolute (void)
    1465915136{
    1466015137  enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
    14661   neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
     15138  struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
     15139                                            N_F_16_32 | N_KEY);
    1466215140  /* Size field comes from bit mask.  */
    14663   neon_three_same (neon_quad (rs), 1, -1);
     15141  neon_three_same (neon_quad (rs), 1, et.size == 16 ? (int) et.size : -1);
    1466415142}
    1466515143
     
    1467515153{
    1467615154  enum neon_shape rs = neon_select_shape (NS_DDD, NS_QQQ, NS_NULL);
    14677   neon_check_type (3, rs, N_EQK, N_EQK, N_F32 | N_KEY);
    14678   neon_three_same (neon_quad (rs), 0, -1);
     15155  struct neon_type_el et = neon_check_type (3, rs, N_EQK, N_EQK,
     15156                                            N_F_16_32 | N_KEY);
     15157  neon_three_same (neon_quad (rs), 0, et.size == 16 ? (int) et.size : -1);
    1467915158}
    1468015159
     
    1469215171
    1469315172  rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
    14694   et = neon_check_type (2, rs, N_EQK, N_S8 | N_S16 | N_S32 | N_F32 | N_KEY);
     15173  et = neon_check_type (2, rs, N_EQK, N_S_32 | N_F_16_32 | N_KEY);
    1469515174
    1469615175  inst.instruction |= LOW4 (inst.operands[0].reg) << 12;
     
    1490115380  CVT_VAR (f32_u32, N_F32, N_U32, whole_reg,   "fultos", "fuitos", NULL)      \
    1490215381  /* Half-precision conversions.  */                                          \
     15382  CVT_VAR (s16_f16, N_S16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL)        \
     15383  CVT_VAR (u16_f16, N_U16, N_F16 | N_KEY, whole_reg, NULL, NULL, NULL)        \
     15384  CVT_VAR (f16_s16, N_F16 | N_KEY, N_S16, whole_reg, NULL, NULL, NULL)        \
     15385  CVT_VAR (f16_u16, N_F16 | N_KEY, N_U16, whole_reg, NULL, NULL, NULL)        \
    1490315386  CVT_VAR (f32_f16, N_F32, N_F16, whole_reg,   NULL,     NULL,     NULL)      \
    1490415387  CVT_VAR (f16_f32, N_F16, N_F32, whole_reg,   NULL,     NULL,     NULL)      \
     15388  /* New VCVT instructions introduced by ARMv8.2 fp16 extension.              \
     15389     Compared with single/double precision variants, only the co-processor    \
     15390     field is different, so the encoding flow is reused here.  */             \
     15391  CVT_VAR (f16_s32, N_F16 | N_KEY, N_S32, N_VFP, "fsltos", "fsitos", NULL)    \
     15392  CVT_VAR (f16_u32, N_F16 | N_KEY, N_U32, N_VFP, "fultos", "fuitos", NULL)    \
     15393  CVT_VAR (u32_f16, N_U32, N_F16 | N_KEY, N_VFP, "ftouls", "ftouis", "ftouizs")\
     15394  CVT_VAR (s32_f16, N_S32, N_F16 | N_KEY, N_VFP, "ftosls", "ftosis", "ftosizs")\
    1490515395  /* VFP instructions.  */                                                    \
    1490615396  CVT_VAR (f32_f64, N_F32, N_F64, N_VFP,       NULL,     "fcvtsd", NULL)      \
     
    1497715467  const char *opname = 0;
    1497815468
    14979   if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI)
     15469  if (rs == NS_DDI || rs == NS_QQI || rs == NS_FFI
     15470      || rs == NS_FHI || rs == NS_HFI)
    1498015471    {
    1498115472      /* Conversions with immediate bitshift.  */
     
    1501415505  if (opname)
    1501515506    do_vfp_nsyn_opcode (opname);
     15507
     15508  /* ARMv8.2 fp16 VCVT instruction.  */
     15509  if (flavour == neon_cvt_flavour_s32_f16
     15510      || flavour == neon_cvt_flavour_u32_f16
     15511      || flavour == neon_cvt_flavour_f16_u32
     15512      || flavour == neon_cvt_flavour_f16_s32)
     15513    do_scalar_fp16_v82_encode ();
    1501615514}
    1501715515
     
    1501915517do_vfp_nsyn_cvtz (void)
    1502015518{
    15021   enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_NULL);
     15519  enum neon_shape rs = neon_select_shape (NS_FH, NS_FF, NS_FD, NS_NULL);
    1502215520  enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
    1502315521  const char *enc[] =
     
    1504015538  int rm;
    1504115539
     15540  /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
     15541     D register operands.  */
     15542  if (flavour == neon_cvt_flavour_s32_f64
     15543      || flavour == neon_cvt_flavour_u32_f64)
     15544    constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
     15545                _(BAD_FPU));
     15546
     15547  if (flavour == neon_cvt_flavour_s32_f16
     15548      || flavour == neon_cvt_flavour_u32_f16)
     15549    constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16),
     15550                _(BAD_FP16));
     15551
    1504215552  set_it_insn_type (OUTSIDE_IT_INSN);
    1504315553
     
    1504915559      break;
    1505015560    case neon_cvt_flavour_s32_f32:
     15561      sz = 0;
     15562      op = 1;
     15563      break;
     15564    case neon_cvt_flavour_s32_f16:
    1505115565      sz = 0;
    1505215566      op = 1;
     
    1506015574      op = 0;
    1506115575      break;
     15576    case neon_cvt_flavour_u32_f16:
     15577      sz = 0;
     15578      op = 0;
     15579      break;
    1506215580    default:
    1506315581      first_error (_("invalid instruction shape"));
     
    1507815596  encode_arm_vfp_reg (inst.operands[1].reg, sz == 1 ? VFP_REG_Dm : VFP_REG_Sm);
    1507915597  inst.instruction |= sz << 8;
     15598
     15599  /* ARMv8.2 fp16 VCVT instruction.  */
     15600  if (flavour == neon_cvt_flavour_s32_f16
     15601      ||flavour == neon_cvt_flavour_u32_f16)
     15602    do_scalar_fp16_v82_encode ();
    1508015603  inst.instruction |= op << 7;
    1508115604  inst.instruction |= rm << 16;
     
    1508815611{
    1508915612  enum neon_shape rs = neon_select_shape (NS_DDI, NS_QQI, NS_FFI, NS_DD, NS_QQ,
    15090     NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ, NS_NULL);
     15613                                          NS_FD, NS_DF, NS_FF, NS_QD, NS_DQ,
     15614                                          NS_FH, NS_HF, NS_FHI, NS_HFI,
     15615                                          NS_NULL);
    1509115616  enum neon_cvt_flavour flavour = get_neon_cvt_flavour (rs);
     15617
     15618  if (flavour == neon_cvt_flavour_invalid)
     15619    return;
    1509215620
    1509315621  /* PR11109: Handle round-to-zero for VCVT conversions.  */
    1509415622  if (mode == neon_cvt_mode_z
    1509515623      && ARM_CPU_HAS_FEATURE (cpu_variant, fpu_arch_vfp_v2)
    15096       && (flavour == neon_cvt_flavour_s32_f32
     15624      && (flavour == neon_cvt_flavour_s16_f16
     15625          || flavour == neon_cvt_flavour_u16_f16
     15626          || flavour == neon_cvt_flavour_s32_f32
    1509715627          || flavour == neon_cvt_flavour_u32_f32
    1509815628          || flavour == neon_cvt_flavour_s32_f64
     
    1510415634    }
    1510515635
     15636  /* ARMv8.2 fp16 VCVT conversions.  */
     15637  if (mode == neon_cvt_mode_z
     15638      && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_fp16)
     15639      && (flavour == neon_cvt_flavour_s32_f16
     15640          || flavour == neon_cvt_flavour_u32_f16)
     15641      && (rs == NS_FH))
     15642    {
     15643      do_vfp_nsyn_cvtz ();
     15644      do_scalar_fp16_v82_encode ();
     15645      return;
     15646    }
     15647
    1510615648  /* VFP rather than Neon conversions.  */
    1510715649  if (flavour >= neon_cvt_flavour_first_fp)
     
    1512115663      {
    1512215664        unsigned immbits;
    15123         unsigned enctab[] = { 0x0000100, 0x1000100, 0x0, 0x1000000 };
     15665        unsigned enctab[] = {0x0000100, 0x1000100, 0x0, 0x1000000,
     15666                             0x0000100, 0x1000100, 0x0, 0x1000000};
    1512415667
    1512515668        if (vfp_or_neon_is_neon (NEON_CHECK_CC | NEON_CHECK_ARCH) == FAIL)
     
    1513015673        if (inst.operands[2].present && inst.operands[2].imm == 0)
    1513115674          goto int_encode;
    15132        immbits = 32 - inst.operands[2].imm;
    1513315675        NEON_ENCODE (IMMED, inst);
    1513415676        if (flavour != neon_cvt_flavour_invalid)
     
    1514015682        inst.instruction |= neon_quad (rs) << 6;
    1514115683        inst.instruction |= 1 << 21;
    15142         inst.instruction |= immbits << 16;
     15684        if (flavour < neon_cvt_flavour_s16_f16)
     15685          {
     15686            inst.instruction |= 1 << 21;
     15687            immbits = 32 - inst.operands[2].imm;
     15688            inst.instruction |= immbits << 16;
     15689          }
     15690        else
     15691          {
     15692            inst.instruction |= 3 << 20;
     15693            immbits = 16 - inst.operands[2].imm;
     15694            inst.instruction |= immbits << 16;
     15695            inst.instruction &= ~(1 << 9);
     15696          }
    1514315697
    1514415698        neon_dp_fixup (&inst);
     
    1516115715          inst.instruction |= HI1 (inst.operands[1].reg) << 5;
    1516215716          inst.instruction |= neon_quad (rs) << 6;
    15163           inst.instruction |= (flavour == neon_cvt_flavour_u32_f32) << 7;
     15717          inst.instruction |= (flavour == neon_cvt_flavour_u16_f16
     15718                               || flavour == neon_cvt_flavour_u32_f32) << 7;
    1516415719          inst.instruction |= mode << 8;
     15720          if (flavour == neon_cvt_flavour_u16_f16
     15721              || flavour == neon_cvt_flavour_s16_f16)
     15722            /* Mask off the original size bits and reencode them.  */
     15723            inst.instruction = ((inst.instruction & 0xfff3ffff) | (1 << 18));
     15724
    1516515725          if (thumb_mode)
    1516615726            inst.instruction |= 0xfc000000;
     
    1517215732    int_encode:
    1517315733          {
    15174             unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080 };
     15734            unsigned enctab[] = { 0x100, 0x180, 0x0, 0x080,
     15735                                  0x100, 0x180, 0x0, 0x080};
    1517515736
    1517615737            NEON_ENCODE (INTEGER, inst);
     
    1518715748            inst.instruction |= HI1 (inst.operands[1].reg) << 5;
    1518815749            inst.instruction |= neon_quad (rs) << 6;
    15189             inst.instruction |= 2 << 18;
     15750            if (flavour >= neon_cvt_flavour_s16_f16
     15751                && flavour <= neon_cvt_flavour_f16_u16)
     15752              /* Half precision.  */
     15753              inst.instruction |= 1 << 18;
     15754            else
     15755              inst.instruction |= 2 << 18;
    1519015756
    1519115757            neon_dp_fixup (&inst);
     
    1528815854do_neon_cvttb_1 (bfd_boolean t)
    1528915855{
    15290   enum neon_shape rs = neon_select_shape (NS_FF, NS_FD, NS_DF, NS_NULL);
     15856  enum neon_shape rs = neon_select_shape (NS_HF, NS_HD, NS_FH, NS_FF, NS_FD,
     15857                                          NS_DF, NS_DH, NS_NULL);
    1529115858
    1529215859  if (rs == NS_NULL)
     
    1530415871  else if (neon_check_type (2, rs, N_F16, N_F64 | N_VFP).type != NT_invtype)
    1530515872    {
     15873      /* The VCVTB and VCVTT instructions with D-register operands
     15874         don't work for SP only targets.  */
     15875      constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
     15876                  _(BAD_FPU));
     15877
    1530615878      inst.error = NULL;
    1530715879      do_neon_cvttb_2 (t, /*to=*/TRUE, /*is_double=*/TRUE);
     
    1530915881  else if (neon_check_type (2, rs, N_F64 | N_VFP, N_F16).type != NT_invtype)
    1531015882    {
     15883      /* The VCVTB and VCVTT instructions with D-register operands
     15884         don't work for SP only targets.  */
     15885      constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
     15886                  _(BAD_FPU));
     15887
    1531115888      inst.error = NULL;
    1531215889      do_neon_cvttb_2 (t, /*to=*/FALSE, /*is_double=*/TRUE);
     
    1565816235{
    1565916236  enum neon_shape rs = neon_select_shape (NS_RRFF, NS_FFRR, NS_DRR, NS_RRD,
    15660     NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR, NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
    15661     NS_NULL);
     16237                                          NS_QQ, NS_DD, NS_QI, NS_DI, NS_SR,
     16238                                          NS_RS, NS_FF, NS_FI, NS_RF, NS_FR,
     16239                                          NS_HR, NS_RH, NS_HI, NS_NULL);
    1566216240  struct neon_type_el et;
    1566316241  const char *ldconst = 0;
     
    1583716415      break;
    1583816416
     16417    case NS_HI:
    1583916418    case NS_FI:  /* case 10 (fconsts).  */
    1584016419      ldconst = "fconsts";
     
    1584416423          inst.operands[1].imm = neon_qfloat_bits (inst.operands[1].imm);
    1584516424          do_vfp_nsyn_opcode (ldconst);
     16425
     16426          /* ARMv8.2 fp16 vmov.f16 instruction.  */
     16427          if (rs == NS_HI)
     16428            do_scalar_fp16_v82_encode ();
    1584616429        }
    1584716430      else
     
    1584916432      break;
    1585016433
     16434    case NS_RH:
    1585116435    case NS_RF:  /* case 12 (fmrs).  */
    1585216436      do_vfp_nsyn_opcode ("fmrs");
     16437      /* ARMv8.2 fp16 vmov.f16 instruction.  */
     16438      if (rs == NS_RH)
     16439        do_scalar_fp16_v82_encode ();
    1585316440      break;
    1585416441
     16442    case NS_HR:
    1585516443    case NS_FR:  /* case 13 (fmsr).  */
    1585616444      do_vfp_nsyn_opcode ("fmsr");
     16445      /* ARMv8.2 fp16 vmov.f16 instruction.  */
     16446      if (rs == NS_HR)
     16447        do_scalar_fp16_v82_encode ();
    1585716448      break;
    1585816449
     
    1591116502
    1591216503static void
     16504do_neon_movhf (void)
     16505{
     16506  enum neon_shape rs = neon_select_shape (NS_HH, NS_NULL);
     16507  constraint (rs != NS_HH, _("invalid suffix"));
     16508
     16509  constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
     16510              _(BAD_FPU));
     16511
     16512  do_vfp_sp_monadic ();
     16513
     16514  inst.is_neon = 1;
     16515  inst.instruction |= 0xf0000000;
     16516}
     16517
     16518static void
    1591316519do_neon_movl (void)
    1591416520{
     
    1597016576  enum neon_shape rs = neon_select_shape (NS_DD, NS_QQ, NS_NULL);
    1597116577  struct neon_type_el et = neon_check_type (2, rs,
    15972     N_EQK | N_FLT, N_F32 | N_U32 | N_KEY);
     16578    N_EQK | N_FLT, N_F_16_32 | N_U32 | N_KEY);
    1597316579  inst.instruction |= (et.type == NT_float) << 8;
    1597416580  neon_two_same (neon_quad (rs), 1, et.size);
     
    1607716683        inst.error = _("Use of PC here is UNPREDICTABLE");
    1607816684      else if (warn_on_deprecated)
    16079         as_warn (_("Use of PC here is deprecated"));
     16685        as_tsktsk (_("Use of PC here is deprecated"));
    1608016686    }
    1608116687
     
    1608616692      else
    1608716693        do_vfp_nsyn_opcode ("fsts");
     16694
     16695      /* ARMv8.2 vldr.16/vstr.16 instruction.  */
     16696      if (inst.vectype.el[0].size == 16)
     16697        do_scalar_fp16_v82_encode ();
    1608816698    }
    1608916699  else
     
    1617116781
    1617216782static int
    16173 neon_alignment_bit (int size, int align, int *do_align, ...)
     16783neon_alignment_bit (int size, int align, int *do_alignment, ...)
    1617416784{
    1617516785  va_list ap;
     
    1617816788  if (!inst.operands[1].immisalign)
    1617916789    {
    16180       *do_align = 0;
     16790      *do_alignment = 0;
    1618116791      return SUCCESS;
    1618216792    }
    1618316793
    16184   va_start (ap, do_align);
     16794  va_start (ap, do_alignment);
    1618516795
    1618616796  do
     
    1619916809
    1620016810  if (result == SUCCESS)
    16201     *do_align = 1;
     16811    *do_alignment = 1;
    1620216812  else
    1620316813    first_error (_("unsupported alignment for instruction"));
     
    1621016820{
    1621116821  struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
    16212   int align_good, do_align = 0;
     16822  int align_good, do_alignment = 0;
    1621316823  int logsize = neon_logbits (et.size);
    1621416824  int align = inst.operands[1].imm >> 8;
     
    1623016840    {
    1623116841    case 0:  /* VLD1 / VST1.  */
    16232       align_good = neon_alignment_bit (et.size, align, &do_align, 16, 16,
     16842      align_good = neon_alignment_bit (et.size, align, &do_alignment, 16, 16,
    1623316843                                       32, 32, -1);
    1623416844      if (align_good == FAIL)
    1623516845        return;
    16236       if (do_align)
     16846      if (do_alignment)
    1623716847        {
    1623816848          unsigned alignbits = 0;
     
    1624816858
    1624916859    case 1:  /* VLD2 / VST2.  */
    16250       align_good = neon_alignment_bit (et.size, align, &do_align, 8, 16, 16, 32,
    16251                                       32, 64, -1);
     16860      align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 16,
     16861                      16, 32, 32, 64, -1);
    1625216862      if (align_good == FAIL)
    1625316863        return;
    16254       if (do_align)
     16864      if (do_alignment)
    1625516865        inst.instruction |= 1 << 4;
    1625616866      break;
     
    1626216872
    1626316873    case 3:  /* VLD4 / VST4.  */
    16264       align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
     16874      align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
    1626516875                                       16, 64, 32, 64, 32, 128, -1);
    1626616876      if (align_good == FAIL)
    1626716877        return;
    16268       if (do_align)
     16878      if (do_alignment)
    1626916879        {
    1627016880          unsigned alignbits = 0;
     
    1629716907{
    1629816908  struct neon_type_el et = neon_check_type (1, NS_NULL, N_8 | N_16 | N_32);
    16299   int align_good, do_align = 0;
     16909  int align_good, do_alignment = 0;
    1630016910
    1630116911  if (et.type == NT_invtype)
     
    1630716917      gas_assert (NEON_REG_STRIDE (inst.operands[0].imm) != 2);
    1630816918      align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
    16309                                        &do_align, 16, 16, 32, 32, -1);
     16919                                       &do_alignment, 16, 16, 32, 32, -1);
    1631016920      if (align_good == FAIL)
    1631116921        return;
     
    1632116931    case 1:  /* VLD2.  */
    1632216932      align_good = neon_alignment_bit (et.size, inst.operands[1].imm >> 8,
    16323                                        &do_align, 8, 16, 16, 32, 32, 64, -1);
     16933                                       &do_alignment, 8, 16, 16, 32, 32, 64,
     16934                                       -1);
    1632416935      if (align_good == FAIL)
    1632516936        return;
     
    1634416955      {
    1634516956        int align = inst.operands[1].imm >> 8;
    16346         align_good = neon_alignment_bit (et.size, align, &do_align, 8, 32,
     16957        align_good = neon_alignment_bit (et.size, align, &do_alignment, 8, 32,
    1634716958                                         16, 64, 32, 64, 32, 128, -1);
    1634816959        if (align_good == FAIL)
     
    1636216973    }
    1636316974
    16364   inst.instruction |= do_align << 4;
     16975  inst.instruction |= do_alignment << 4;
    1636516976}
    1636616977
     
    1643517046do_vfp_nsyn_fpv8 (enum neon_shape rs)
    1643617047{
     17048  /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
     17049     D register operands.  */
     17050  if (neon_shape_class[rs] == SC_DOUBLE)
     17051    constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
     17052                _(BAD_FPU));
     17053
    1643717054  NEON_ENCODE (FPV8, inst);
    1643817055
    16439   if (rs == NS_FFF)
    16440     do_vfp_sp_dyadic ();
     17056  if (rs == NS_FFF || rs == NS_HHH)
     17057    {
     17058      do_vfp_sp_dyadic ();
     17059
     17060      /* ARMv8.2 fp16 instruction.  */
     17061      if (rs == NS_HHH)
     17062        do_scalar_fp16_v82_encode ();
     17063    }
    1644117064  else
    1644217065    do_vfp_dp_rd_rn_rm ();
     
    1646817091    return;
    1646917092
    16470   neon_dyadic_misc (NT_untyped, N_F32, 0);
     17093  neon_dyadic_misc (NT_untyped, N_F_16_32, 0);
    1647117094}
    1647217095
     
    1647417097do_vrint_1 (enum neon_cvt_mode mode)
    1647517098{
    16476   enum neon_shape rs = neon_select_shape (NS_FF, NS_DD, NS_QQ, NS_NULL);
     17099  enum neon_shape rs = neon_select_shape (NS_HH, NS_FF, NS_DD, NS_QQ, NS_NULL);
    1647717100  struct neon_type_el et;
    1647817101
     
    1648017103    return;
    1648117104
    16482   et = neon_check_type (2, rs, N_EQK | N_VFP, N_F32 | N_F64 | N_KEY | N_VFP);
     17105  /* Targets like FPv5-SP-D16 don't support FP v8 instructions with
     17106     D register operands.  */
     17107  if (neon_shape_class[rs] == SC_DOUBLE)
     17108    constraint (!ARM_CPU_HAS_FEATURE (cpu_variant, fpu_vfp_ext_armv8),
     17109                _(BAD_FPU));
     17110
     17111  et = neon_check_type (2, rs, N_EQK | N_VFP, N_F_ALL | N_KEY
     17112                        | N_VFP);
    1648317113  if (et.type != NT_invtype)
    1648417114    {
     
    1648917119
    1649017120      NEON_ENCODE (FPV8, inst);
    16491       if (rs == NS_FF)
     17121      if (rs == NS_FF || rs == NS_HH)
    1649217122        do_vfp_sp_monadic ();
    1649317123      else
     
    1650817138      inst.instruction |= (rs == NS_DD) << 8;
    1650917139      do_vfp_cond_or_thumb ();
     17140
     17141      /* ARMv8.2 fp16 vrint instruction.  */
     17142      if (rs == NS_HH)
     17143      do_scalar_fp16_v82_encode ();
    1651017144    }
    1651117145  else
     
    1651317147      /* Neon encodings (or something broken...).  */
    1651417148      inst.error = NULL;
    16515       et = neon_check_type (2, rs, N_EQK, N_F32 | N_KEY);
     17149      et = neon_check_type (2, rs, N_EQK, N_F_16_32 | N_KEY);
    1651617150
    1651717151      if (et.type == NT_invtype)
     
    1652917163      inst.instruction |= HI1 (inst.operands[1].reg) << 5;
    1653017164      inst.instruction |= neon_quad (rs) << 6;
     17165      /* Mask off the original size bits and reencode them.  */
     17166      inst.instruction = ((inst.instruction & 0xfff3ffff)
     17167                          | neon_logbits (et.size) << 18);
     17168
    1653117169      switch (mode)
    1653217170        {
     
    1709317731
    1709417732      if (warn_on_deprecated && unified_syntax)
    17095         as_warn (_("conditional infixes are deprecated in unified syntax"));
     17733        as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
    1709617734      affix = base + (opcode->tag - OT_odd_infix_0);
    1709717735      cond = (const struct asm_cond *) hash_find_n (arm_cond_hsh, affix, 2);
     
    1717917817          && (opcode->tag == OT_cinfix3
    1718017818              || opcode->tag == OT_cinfix3_deprecated))
    17181         as_warn (_("conditional infixes are deprecated in unified syntax"));
     17819        as_tsktsk (_("conditional infixes are deprecated in unified syntax"));
    1718217820
    1718317821      inst.cond = cond->value;
     
    1733617974            {
    1733717975              if ((implicit_it_mode & IMPLICIT_IT_MODE_THUMB)
    17338                   && ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2))
     17976                  && ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2))
    1733917977                {
    1734017978                  /* Automatically generate the IT instruction.  */
     
    1750918147      if (inst.instruction >= 0x10000)
    1751018148        {
    17511           as_warn (_("IT blocks containing 32-bit Thumb instructions are "
     18149          as_tsktsk (_("IT blocks containing 32-bit Thumb instructions are "
    1751218150                     "deprecated in ARMv8"));
    1751318151          now_it.warn_deprecated = TRUE;
     
    1752118159              if ((inst.instruction & p->mask) == p->pattern)
    1752218160                {
    17523                   as_warn (_("IT blocks containing 16-bit Thumb instructions "
     18161                  as_tsktsk (_("IT blocks containing 16-bit Thumb instructions "
    1752418162                             "of the following class are deprecated in ARMv8: "
    1752518163                             "%s"), p->description);
     
    1753418172      if (now_it.block_length > 1)
    1753518173        {
    17536           as_warn (_("IT blocks containing more than one conditional "
     18174          as_tsktsk (_("IT blocks containing more than one conditional "
    1753718175                     "instruction are deprecated in ARMv8"));
    1753818176          now_it.warn_deprecated = TRUE;
     
    1756618204
    1756718205  return now_it.state != OUTSIDE_IT_BLOCK;
     18206}
     18207
     18208/* Whether OPCODE only has T32 encoding.  Since this function is only used by
     18209   t32_insn_ok, OPCODE enabled by v6t2 extension bit do not need to be listed
     18210   here, hence the "known" in the function name.  */
     18211
     18212static bfd_boolean
     18213known_t32_only_insn (const struct asm_opcode *opcode)
     18214{
     18215  /* Original Thumb-1 wide instruction.  */
     18216  if (opcode->tencode == do_t_blx
     18217      || opcode->tencode == do_t_branch23
     18218      || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
     18219      || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier))
     18220    return TRUE;
     18221
     18222  /* Wide-only instruction added to ARMv8-M Baseline.  */
     18223  if (ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v8m_m_only)
     18224      || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_atomics)
     18225      || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_v6t2_v8m)
     18226      || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_div))
     18227    return TRUE;
     18228
     18229  return FALSE;
     18230}
     18231
     18232/* Whether wide instruction variant can be used if available for a valid OPCODE
     18233   in ARCH.  */
     18234
     18235static bfd_boolean
     18236t32_insn_ok (arm_feature_set arch, const struct asm_opcode *opcode)
     18237{
     18238  if (known_t32_only_insn (opcode))
     18239    return TRUE;
     18240
     18241  /* Instruction with narrow and wide encoding added to ARMv8-M.  Availability
     18242     of variant T3 of B.W is checked in do_t_branch.  */
     18243  if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v8m)
     18244      && opcode->tencode == do_t_branch)
     18245    return TRUE;
     18246
     18247  /* Wide instruction variants of all instructions with narrow *and* wide
     18248     variants become available with ARMv6t2.  Other opcodes are either
     18249     narrow-only or wide-only and are thus available if OPCODE is valid.  */
     18250  if (ARM_CPU_HAS_FEATURE (arch, arm_ext_v6t2))
     18251    return TRUE;
     18252
     18253  /* OPCODE with narrow only instruction variant or wide variant not
     18254     available.  */
     18255  return FALSE;
    1756818256}
    1756918257
     
    1759818286
    1759918287  if (warn_on_deprecated && opcode->tag == OT_cinfix3_deprecated)
    17600     as_warn (_("s suffix on comparison instruction is deprecated"));
     18288    as_tsktsk (_("s suffix on comparison instruction is deprecated"));
    1760118289
    1760218290  /* The value which unconditional instructions should have in place of the
     
    1761718305              && !ARM_CPU_HAS_FEATURE (variant, *opcode->tvariant)))
    1761818306        {
    17619           as_bad (_("selected processor does not support Thumb mode `%s'"), str);
     18307          as_bad (_("selected processor does not support `%s' in Thumb mode"), str);
    1762018308          return;
    1762118309        }
     
    1762718315        }
    1762818316
    17629       if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2))
    17630         {
    17631           if (opcode->tencode != do_t_blx && opcode->tencode != do_t_branch23
    17632               && !(ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_msr)
    17633                    || ARM_CPU_HAS_FEATURE(*opcode->tvariant, arm_ext_barrier)))
     18317      /* Two things are addressed here:
     18318         1) Implicit require narrow instructions on Thumb-1.
     18319            This avoids relaxation accidentally introducing Thumb-2
     18320            instructions.
     18321         2) Reject wide instructions in non Thumb-2 cores.
     18322
     18323         Only instructions with narrow and wide variants need to be handled
     18324         but selecting all non wide-only instructions is easier.  */
     18325      if (!ARM_CPU_HAS_FEATURE (variant, arm_ext_v6t2)
     18326          && !t32_insn_ok (variant, opcode))
     18327        {
     18328          if (inst.size_req == 0)
     18329            inst.size_req = 2;
     18330          else if (inst.size_req == 4)
    1763418331            {
    17635               /* Two things are addressed here.
    17636                  1) Implicit require narrow instructions on Thumb-1.
    17637                     This avoids relaxation accidentally introducing Thumb-2
    17638                      instructions.
    17639                  2) Reject wide instructions in non Thumb-2 cores.  */
    17640               if (inst.size_req == 0)
    17641                 inst.size_req = 2;
    17642               else if (inst.size_req == 4)
    17643                 {
    17644                   as_bad (_("selected processor does not support Thumb-2 mode `%s'"), str);
    17645                   return;
    17646                 }
     18332              if (ARM_CPU_HAS_FEATURE (variant, arm_ext_v8m))
     18333                as_bad (_("selected processor does not support 32bit wide "
     18334                          "variant of instruction `%s'"), str);
     18335              else
     18336                as_bad (_("selected processor does not support `%s' in "
     18337                          "Thumb-2 mode"), str);
     18338              return;
    1764718339            }
    1764818340        }
     
    1767918371                              *opcode->tvariant);
    1768018372      /* Many Thumb-2 instructions also have Thumb-1 variants, so explicitly
    17681          set those bits when Thumb-2 32-bit instructions are seen.  ie.
    17682          anything other than bl/blx and v6-M instructions.
    17683          This is overly pessimistic for relaxable instructions.  */
    17684       if (((inst.size == 4 && (inst.instruction & 0xf800e800) != 0xf000e800)
    17685            || inst.relax)
    17686           && !(ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_msr)
    17687                || ARM_CPU_HAS_FEATURE (*opcode->tvariant, arm_ext_barrier)))
     18373         set those bits when Thumb-2 32-bit instructions are seen.  The impact
     18374         of relaxable instructions will be considered later after we finish all
     18375         relaxation.  */
     18376      if (ARM_FEATURE_CORE_EQUAL (cpu_variant, arm_arch_any))
     18377        variant = arm_arch_none;
     18378      else
     18379        variant = cpu_variant;
     18380      if (inst.size == 4 && !t32_insn_ok (variant, opcode))
    1768818381        ARM_MERGE_FEATURE_SETS (thumb_arch_used, thumb_arch_used,
    1768918382                                arm_ext_v6t2);
     
    1770818401               ARM_CPU_HAS_FEATURE (cpu_variant, *opcode->avariant)))
    1770918402        {
    17710           as_bad (_("selected processor does not support ARM mode `%s'"), str);
     18403          as_bad (_("selected processor does not support `%s' in ARM mode"), str);
    1771118404          return;
    1771218405        }
     
    1771918412      inst.instruction = opcode->avalue;
    1772018413      if (opcode->tag == OT_unconditionalF)
    17721         inst.instruction |= 0xF << 28;
     18414        inst.instruction |= 0xFU << 28;
    1772218415      else
    1772318416        inst.instruction |= inst.cond << 28;
     
    1810518798  {"epsr",        6 }, {"EPSR",         6 },
    1810618799  {"iepsr",       7 }, {"IEPSR",        7 },
    18107   {"msp",         8 }, {"MSP",          8 },
    18108   {"psp",         9 }, {"PSP",          9 },
     18800  {"msp",         8 }, {"MSP",          8 }, {"msp_s",     8 }, {"MSP_S",     8 },
     18801  {"psp",         9 }, {"PSP",          9 }, {"psp_s",     9 }, {"PSP_S",     9 },
    1810918802  {"primask",     16}, {"PRIMASK",      16},
    1811018803  {"basepri",     17}, {"BASEPRI",      17},
     
    1811218805  {"basepri_max", 18}, {"BASEPRI_MASK", 18}, /* Typo, preserved for backwards compatibility.  */
    1811318806  {"faultmask",   19}, {"FAULTMASK",    19},
    18114   {"control",     20}, {"CONTROL",      20}
     18807  {"control",     20}, {"CONTROL",      20},
     18808  {"msp_ns",    0x88}, {"MSP_NS",     0x88},
     18809  {"psp_ns",    0x89}, {"PSP_NS",     0x89}
    1811518810};
    1811618811
     
    1817218867
    1817318868#define UL_BARRIER(L,U,CODE,FEAT) \
    18174   { L, CODE, ARM_FEATURE (FEAT, 0) }, \
    18175   { U, CODE, ARM_FEATURE (FEAT, 0) }
     18869  { L, CODE, ARM_FEATURE_CORE_LOW (FEAT) }, \
     18870  { U, CODE, ARM_FEATURE_CORE_LOW (FEAT) }
    1817618871
    1817718872static struct asm_barrier_opt barrier_opt_names[] =
     
    1840919104
    1841019105 tCE("mov",     1a00000, _mov,     2, (RR, SH),      mov,  t_mov_cmp),
    18411  tC3("movs",    1b00000, _movs,    2, (RR, SH),      mov,  t_mov_cmp),
     19106 tC3("movs",    1b00000, _movs,    2, (RR, SHG),     mov,  t_mov_cmp),
    1841219107 tCE("mvn",     1e00000, _mvn,     2, (RR, SH),      mov,  t_mvn_tst),
    1841319108 tC3("mvns",    1f00000, _mvns,    2, (RR, SH),      mov,  t_mvn_tst),
     
    1865319348
    1865419349#undef  THUMB_VARIANT
    18655 #define THUMB_VARIANT  & arm_ext_v6t2
     19350#define THUMB_VARIANT  & arm_ext_v6t2_v8m
    1865619351
    1865719352 TCE("ldrex",   1900f9f, e8500f00, 2, (RRnpc_npcsp, ADDR),        ldrex, t_ldrex),
    1865819353 TCE("strex",   1800f90, e8400000, 3, (RRnpc_npcsp, RRnpc_npcsp, ADDR),
    1865919354                                      strex,  t_strex),
     19355#undef  THUMB_VARIANT
     19356#define THUMB_VARIANT  & arm_ext_v6t2
     19357
    1866019358 TUF("mcrr2",   c400000, fc400000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
    1866119359 TUF("mrrc2",   c500000, fc500000, 5, (RCP, I15b, RRnpc, RRnpc, RCN), co_reg2c, co_reg2c),
     
    1868519383 TUF("srsdb",   9400500, e800c000, 2, (oRRw, I31w),                srs,  srs),
    1868619384 TUF("srsfd",   9400500, e800c000, 2, (oRRw, I31w),                srs,  srs),
     19385 TUF("cps",     1020000, f3af8100, 1, (I31b),                     imm0, t_cps),
    1868719386
    1868819387/*  ARM V6 not included in V7M (eg. integer SIMD).  */
    1868919388#undef  THUMB_VARIANT
    1869019389#define THUMB_VARIANT  & arm_ext_v6_dsp
    18691  TUF("cps",     1020000, f3af8100, 1, (I31b),                     imm0, t_cps),
    1869219390 TCE("pkhbt",   6800010, eac00000, 4, (RRnpc, RRnpc, RRnpc, oSHll),   pkhbt, t_pkhbt),
    1869319391 TCE("pkhtb",   6800050, eac00020, 4, (RRnpc, RRnpc, RRnpc, oSHar),   pkhtb, t_pkhtb),
     
    1880319501
    1880419502#undef  THUMB_VARIANT
    18805 #define THUMB_VARIANT  & arm_ext_v6t2
     19503#define THUMB_VARIANT  & arm_ext_v6t2_v8m
    1880619504 TCE("ldrexb",  1d00f9f, e8d00f4f, 2, (RRnpc_npcsp,RRnpcb),
    1880719505     rd_rn,  rd_rn),
     
    1882919527 TCE("eret",    160006e, f3de8f00, 0, (), noargs, noargs),
    1883019528
     19529#undef  ARM_VARIANT
     19530#define ARM_VARIANT    & arm_ext_pan
     19531#undef  THUMB_VARIANT
     19532#define THUMB_VARIANT  & arm_ext_pan
     19533
     19534 TUF("setpan",  1100000, b610, 1, (I7), setpan, t_setpan),
     19535
    1883119536#undef  ARM_VARIANT
    1883219537#define ARM_VARIANT    & arm_ext_v6t2
     
    1884019545
    1884119546 TCE("mls",     0600090, fb000010, 4, (RRnpc, RRnpc, RRnpc, RRnpc), mlas, t_mla),
    18842  TCE("movw",    3000000, f2400000, 2, (RRnpc, HALF),                mov16, t_mov16),
    18843  TCE("movt",    3400000, f2c00000, 2, (RRnpc, HALF),                mov16, t_mov16),
    1884419547 TCE("rbit",    6ff0f30, fa90f0a0, 2, (RR, RR),                     rd_rm, t_rbit),
    1884519548
     
    1884819551 TC3("ldrsbt",  03000d0, f9100e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
    1884919552 TC3("strht",   02000b0, f8200e00, 2, (RRnpc_npcsp, ADDR), ldsttv4, t_ldstt),
     19553
     19554#undef  THUMB_VARIANT
     19555#define THUMB_VARIANT  & arm_ext_v6t2_v8m
     19556 TCE("movw",    3000000, f2400000, 2, (RRnpc, HALF),                mov16, t_mov16),
     19557 TCE("movt",    3400000, f2c00000, 2, (RRnpc, HALF),                mov16, t_mov16),
    1885019558
    1885119559 /* Thumb-only instructions.  */
     
    1886019568#undef  ARM_VARIANT
    1886119569#define ARM_VARIANT  & arm_ext_v1
     19570#undef  THUMB_VARIANT
     19571#define THUMB_VARIANT  & arm_ext_v6t2
    1886219572
    1886319573 TUE("it",        bf08,        bf08,     1, (COND),   it,    t_it),
     
    1892919639#undef  ARM_VARIANT
    1893019640#define ARM_VARIANT   & arm_ext_v8
     19641
     19642/* Instructions shared between armv8-a and armv8-m.  */
    1893119643#undef  THUMB_VARIANT
    18932 #define THUMB_VARIANT & arm_ext_v8
    18933 
    18934  tCE("sevl",    320f005, _sevl,    0, (),               noargs, t_hint),
    18935  TUE("hlt",     1000070, ba80,     1, (oIffffb),        bkpt,   t_hlt),
    18936  TCE("ldaex",   1900e9f, e8d00fef, 2, (RRnpc, RRnpcb),  rd_rn,  rd_rn),
    18937  TCE("ldaexd",  1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
    18938                                                         ldrexd, t_ldrexd),
    18939  TCE("ldaexb",  1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb),   rd_rn,  rd_rn),
    18940  TCE("ldaexh",  1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb),  rd_rn,  rd_rn),
    18941  TCE("stlex",   1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
    18942                                                         stlex,  t_stlex),
    18943  TCE("stlexd",  1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
    18944                                                         strexd, t_strexd),
    18945  TCE("stlexb",  1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
    18946                                                         stlex, t_stlex),
    18947  TCE("stlexh",  1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
    18948                                                         stlex, t_stlex),
     19644#define THUMB_VARIANT & arm_ext_atomics
     19645
    1894919646 TCE("lda",     1900c9f, e8d00faf, 2, (RRnpc, RRnpcb),  rd_rn,  rd_rn),
    1895019647 TCE("ldab",    1d00c9f, e8d00f8f, 2, (RRnpc, RRnpcb),  rd_rn,  rd_rn),
     
    1895319650 TCE("stlb",    1c0fc90, e8c00f8f, 2, (RRnpc, RRnpcb),  rm_rn,  rd_rn),
    1895419651 TCE("stlh",    1e0fc90, e8c00f9f, 2, (RRnpc, RRnpcb),  rm_rn,  rd_rn),
    18955 
     19652 TCE("ldaex",   1900e9f, e8d00fef, 2, (RRnpc, RRnpcb),  rd_rn,  rd_rn),
     19653 TCE("ldaexb",  1d00e9f, e8d00fcf, 2, (RRnpc,RRnpcb),   rd_rn,  rd_rn),
     19654 TCE("ldaexh",  1f00e9f, e8d00fdf, 2, (RRnpc, RRnpcb),  rd_rn,  rd_rn),
     19655 TCE("stlex",   1800e90, e8c00fe0, 3, (RRnpc, RRnpc, RRnpcb),
     19656                                                        stlex,  t_stlex),
     19657 TCE("stlexb",  1c00e90, e8c00fc0, 3, (RRnpc, RRnpc, RRnpcb),
     19658                                                        stlex, t_stlex),
     19659 TCE("stlexh",  1e00e90, e8c00fd0, 3, (RRnpc, RRnpc, RRnpcb),
     19660                                                        stlex, t_stlex),
     19661#undef  THUMB_VARIANT
     19662#define THUMB_VARIANT & arm_ext_v8
     19663
     19664 tCE("sevl",    320f005, _sevl,    0, (),               noargs, t_hint),
     19665 TUE("hlt",     1000070, ba80,     1, (oIffffb),        bkpt,   t_hlt),
     19666 TCE("ldaexd",  1b00e9f, e8d000ff, 3, (RRnpc, oRRnpc, RRnpcb),
     19667                                                        ldrexd, t_ldrexd),
     19668 TCE("stlexd",  1a00e90, e8c000f0, 4, (RRnpc, RRnpc, oRRnpc, RRnpcb),
     19669                                                        strexd, t_strexd),
    1895619670 /* ARMv8 T32 only.  */
    1895719671#undef  ARM_VARIANT
     
    1896319677  /* FP for ARMv8.  */
    1896419678#undef  ARM_VARIANT
    18965 #define ARM_VARIANT   & fpu_vfp_ext_armv8
     19679#define ARM_VARIANT   & fpu_vfp_ext_armv8xd
    1896619680#undef  THUMB_VARIANT
    18967 #define THUMB_VARIANT & fpu_vfp_ext_armv8
     19681#define THUMB_VARIANT & fpu_vfp_ext_armv8xd
    1896819682
    1896919683  nUF(vseleq, _vseleq, 3, (RVSD, RVSD, RVSD),           vsel),
     
    1901619730  TUEc("crc32ch",1200240, fad0f090, 3, (RR, oRR, RR), crc32ch),
    1901719731  TUEc("crc32cw",1400240, fad0f0a0, 3, (RR, oRR, RR), crc32cw),
     19732
     19733 /* ARMv8.2 RAS extension.  */
     19734#undef  ARM_VARIANT
     19735#define ARM_VARIANT   & arm_ext_ras
     19736#undef  THUMB_VARIANT
     19737#define THUMB_VARIANT & arm_ext_ras
     19738 TUE ("esb", 320f010, f3af8010, 0, (), noargs,  noargs),
    1901819739
    1901919740#undef  ARM_VARIANT
     
    1963220353 NCE(vmov,      0,       1, (VMOV), neon_mov),
    1963320354 NCE(vmovq,     0,       1, (VMOV), neon_mov),
     20355
     20356#undef  ARM_VARIANT
     20357#define ARM_VARIANT    & arm_ext_fp16
     20358#undef  THUMB_VARIANT
     20359#define THUMB_VARIANT  & arm_ext_fp16
     20360 /* New instructions added from v8.2, allowing the extraction and insertion of
     20361    the upper 16 bits of a 32-bit vector register.  */
     20362 NCE (vmovx,     eb00a40,       2, (RVS, RVS), neon_movhf),
     20363 NCE (vins,      eb00ac0,       2, (RVS, RVS), neon_movhf),
    1963420364
    1963520365#undef  THUMB_VARIANT
     
    1968220412 NUF(vbif,      1300110, 3, (RNDQ, RNDQ, RNDQ), neon_bitfield),
    1968320413 NUF(vbifq,     1300110, 3, (RNQ,  RNQ,  RNQ),  neon_bitfield),
    19684   /* Int and float variants, types S8 S16 S32 U8 U16 U32 F32.  */
     20414  /* Int and float variants, types S8 S16 S32 U8 U16 U32 F16 F32.  */
    1968520415 nUF(vabd,      _vabd,    3, (RNDQ, oRNDQ, RNDQ), neon_dyadic_if_su),
    1968620416 nUF(vabdq,     _vabd,    3, (RNQ,  oRNQ,  RNQ),  neon_dyadic_if_su),
     
    1973420464 NUF(vrsqrts,   0200f10,  3, (RNDQ, oRNDQ, RNDQ), neon_step),
    1973520465 NUF(vrsqrtsq,  0200f10,  3, (RNQ,  oRNQ,  RNQ),  neon_step),
     20466 /* ARM v8.1 extension.  */
     20467 nUF (vqrdmlah,  _vqrdmlah, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qrdmlah),
     20468 nUF (vqrdmlahq, _vqrdmlah, 3, (RNQ,  oRNQ,  RNDQ_RNSC), neon_qrdmlah),
     20469 nUF (vqrdmlsh,  _vqrdmlsh, 3, (RNDQ, oRNDQ, RNDQ_RNSC), neon_qrdmlah),
     20470 nUF (vqrdmlshq, _vqrdmlsh, 3, (RNQ,  oRNQ,  RNDQ_RNSC), neon_qrdmlah),
    1973620471
    1973720472  /* Two address, int/float. Types S8 S16 S32 F32.  */
     
    1984020575 NUF(vpaddl,    1b00200, 2, (RNDQ, RNDQ),     neon_pair_long),
    1984120576 NUF(vpaddlq,   1b00200, 2, (RNQ,  RNQ),      neon_pair_long),
    19842   /* Reciprocal estimates. Types U32 F32.  */
     20577  /* Reciprocal estimates.  Types U32 F16 F32.  */
    1984320578 NUF(vrecpe,    1b30400, 2, (RNDQ, RNDQ),     neon_recip_est),
    1984420579 NUF(vrecpeq,   1b30400, 2, (RNQ,  RNQ),      neon_recip_est),
     
    2024620981 cCE("cfmadda32", e200600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
    2024720982 cCE("cfmsuba32", e300600, 4, (RMAX, RMAX, RMFX, RMFX), mav_quad),
     20983
     20984 /* ARMv8-M instructions.  */
     20985#undef  ARM_VARIANT
     20986#define ARM_VARIANT NULL
     20987#undef  THUMB_VARIANT
     20988#define THUMB_VARIANT & arm_ext_v8m
     20989 TUE("sg", 0, e97fe97f, 0, (), 0, noargs),
     20990 TUE("blxns", 0, 4784, 1, (RRnpc), 0, t_blx),
     20991 TUE("bxns", 0, 4704, 1, (RRnpc), 0, t_bx),
     20992 TUE("tt", 0, e840f000, 2, (RRnpc, RRnpc), 0, tt),
     20993 TUE("ttt", 0, e840f040, 2, (RRnpc, RRnpc), 0, tt),
     20994 TUE("tta", 0, e840f080, 2, (RRnpc, RRnpc), 0, tt),
     20995 TUE("ttat", 0, e840f0c0, 2, (RRnpc, RRnpc), 0, tt),
     20996
     20997 /* FP for ARMv8-M Mainline.  Enabled for ARMv8-M Mainline because the
     20998    instructions behave as nop if no VFP is present.  */
     20999#undef  THUMB_VARIANT
     21000#define THUMB_VARIANT & arm_ext_v8m_main
     21001 TUEc("vlldm",  0,       ec300a00, 1, (RRnpc),  rn),
     21002 TUEc("vlstm",  0,       ec200a00, 1, (RRnpc),  rn),
    2024821003};
    2024921004#undef ARM_VARIANT
     
    2051921274  fixp->fx_line = fragp->fr_line;
    2052021275  fragp->fr_fix += fragp->fr_var;
     21276
     21277  /* Set whether we use thumb-2 ISA based on final relaxation results.  */
     21278  if (thumb_mode && fragp->fr_var == 4 && no_cpu_selected ()
     21279      && !ARM_CPU_HAS_FEATURE (thumb_arch_used, arm_arch_t2))
     21280    ARM_MERGE_FEATURE_SETS (arm_arch_used, thumb_arch_used, arm_ext_v6t2);
    2052121281}
    2052221282
     
    2079621556
    2079721557      align = bfd_get_section_alignment (stdoutput, segment);
    20798       size = ((size + (1 << align) - 1) & ((valueT) -1 << align));
     21558      size = ((size + (1 << align) - 1) & (-((valueT) 1 << align)));
    2079921559    }
    2080021560#endif
     
    2080921569arm_handle_align (fragS * fragP)
    2081021570{
    20811   static char const arm_noop[2][2][4] =
     21571  static unsigned char const arm_noop[2][2][4] =
    2081221572    {
    2081321573      {  /* ARMv1 */
     
    2082021580      },
    2082121581    };
    20822   static char const thumb_noop[2][2][2] =
     21582  static unsigned char const thumb_noop[2][2][2] =
    2082321583    {
    2082421584      {  /* Thumb-1 */
     
    2083121591      }
    2083221592    };
    20833   static char const wide_thumb_noop[2][4] =
     21593  static unsigned char const wide_thumb_noop[2][4] =
    2083421594    {  /* Wide Thumb-2 */
    2083521595      {0xaf, 0xf3, 0x00, 0x80},  /* LE */
     
    2083921599  unsigned bytes, fix, noop_size;
    2084021600  char * p;
    20841   const char * noop;
    20842   const char *narrow_noop = NULL;
     21601  const unsigned char * noop;
     21602  const unsigned char *narrow_noop = NULL;
    2084321603#ifdef OBJ_ELF
    2084421604  enum mstate state;
     
    2097121731arm_init_frag (fragS * fragP, int max_chars)
    2097221732{
     21733  int frag_thumb_mode;
     21734
    2097321735  /* If the current ARM vs THUMB mode has not already
    2097421736     been recorded into this frag then do so now.  */
    2097521737  if ((fragP->tc_frag_data.thumb_mode & MODE_RECORDED) == 0)
    20976     {
    20977       fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
    20978 
    20979       /* Record a mapping symbol for alignment frags.  We will delete this
    20980          later if the alignment ends up empty.  */
    20981       switch (fragP->fr_type)
    20982         {
    20983           case rs_align:
    20984           case rs_align_test:
    20985           case rs_fill:
    20986             mapping_state_2 (MAP_DATA, max_chars);
    20987             break;
    20988           case rs_align_code:
    20989             mapping_state_2 (thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
    20990             break;
    20991           default:
    20992             break;
    20993         }
     21738    fragP->tc_frag_data.thumb_mode = thumb_mode | MODE_RECORDED;
     21739
     21740  frag_thumb_mode = fragP->tc_frag_data.thumb_mode ^ MODE_RECORDED;
     21741
     21742  /* Record a mapping symbol for alignment frags.  We will delete this
     21743     later if the alignment ends up empty.  */
     21744  switch (fragP->fr_type)
     21745    {
     21746    case rs_align:
     21747    case rs_align_test:
     21748    case rs_fill:
     21749      mapping_state_2 (MAP_DATA, max_chars);
     21750      break;
     21751    case rs_align_code:
     21752      mapping_state_2 (frag_thumb_mode ? MAP_THUMB : MAP_ARM, max_chars);
     21753      break;
     21754    default:
     21755      break;
    2099421756    }
    2099521757}
     
    2105021812      unwind.opcode_alloc += ARM_OPCODE_CHUNK_SIZE;
    2105121813      if (unwind.opcodes)
    21052         unwind.opcodes = (unsigned char *) xrealloc (unwind.opcodes,
    21053                                                      unwind.opcode_alloc);
     21814        unwind.opcodes = XRESIZEVEC (unsigned char, unwind.opcodes,
     21815                                     unwind.opcode_alloc);
    2105421816      else
    21055         unwind.opcodes = (unsigned char *) xmalloc (unwind.opcode_alloc);
     21817        unwind.opcodes = XNEWVEC (unsigned char, unwind.opcode_alloc);
    2105621818    }
    2105721819  while (length > 0)
     
    2115721919  const char * prefix_once;
    2115821920  const char * group_name;
    21159   size_t prefix_len;
    21160   size_t text_len;
    2116121921  char * sec_name;
    21162   size_t sec_name_len;
    2116321922  int type;
    2116421923  int flags;
     
    2118921948    }
    2119021949
    21191   prefix_len = strlen (prefix);
    21192   text_len = strlen (text_name);
    21193   sec_name_len = prefix_len + text_len;
    21194   sec_name = (char *) xmalloc (sec_name_len + 1);
    21195   memcpy (sec_name, prefix, prefix_len);
    21196   memcpy (sec_name + prefix_len, text_name, text_len);
    21197   sec_name[prefix_len + text_len] = '\0';
     21950  sec_name = concat (prefix, text_name, (char *) NULL);
    2119821951
    2119921952  flags = SHF_ALLOC;
     
    2156522318      return base;
    2156622319    }
     22320}
     22321
     22322static bfd_boolean flag_warn_syms = TRUE;
     22323
     22324bfd_boolean
     22325arm_tc_equal_in_insn (int c ATTRIBUTE_UNUSED, char * name)
     22326{
     22327  /* PR 18347 - Warn if the user attempts to create a symbol with the same
     22328     name as an ARM instruction.  Whilst strictly speaking it is allowed, it
     22329     does mean that the resulting code might be very confusing to the reader.
     22330     Also this warning can be triggered if the user omits an operand before
     22331     an immediate address, eg:
     22332
     22333       LDR =foo
     22334
     22335     GAS treats this as an assignment of the value of the symbol foo to a
     22336     symbol LDR, and so (without this code) it will not issue any kind of
     22337     warning or error message.
     22338
     22339     Note - ARM instructions are case-insensitive but the strings in the hash
     22340     table are all stored in lower case, so we must first ensure that name is
     22341     lower case too.  */
     22342  if (flag_warn_syms && arm_ops_hsh)
     22343    {
     22344      char * nbuf = strdup (name);
     22345      char * p;
     22346
     22347      for (p = nbuf; *p; p++)
     22348        *p = TOLOWER (*p);
     22349      if (hash_find (arm_ops_hsh, nbuf) != NULL)
     22350        {
     22351          static struct hash_control * already_warned = NULL;
     22352
     22353          if (already_warned == NULL)
     22354            already_warned = hash_new ();
     22355          /* Only warn about the symbol once.  To keep the code
     22356             simple we let hash_insert do the lookup for us.  */
     22357          if (hash_insert (already_warned, name, NULL) == NULL)
     22358            as_warn (_("[-mwarn-syms]: Assignment makes a symbol match an ARM instruction: %s"), name);
     22359        }
     22360      else
     22361        free (nbuf);
     22362    }
     22363
     22364  return FALSE;
    2156722365}
    2156822366
     
    2259223390      if ((value & ~0x3fffff) && ((value & ~0x3fffff) != ~0x3fffff))
    2259323391        {
    22594           if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_arch_t2)))
     23392          if (!(ARM_CPU_HAS_FEATURE (cpu_variant, arm_ext_v6t2)))
    2259523393            as_bad_where (fixP->fx_file, fixP->fx_line, BAD_RANGE);
    2259623394          else if ((value & ~0x1ffffff)
     
    2269123489    case BFD_RELOC_ARM_CP_OFF_IMM:
    2269223490    case BFD_RELOC_ARM_T32_CP_OFF_IMM:
    22693       if (value < -1023 || value > 1023 || (value & 3))
     23491      if (fixP->fx_r_type == BFD_RELOC_ARM_CP_OFF_IMM)
     23492        newval = md_chars_to_number (buf, INSN_SIZE);
     23493      else
     23494        newval = get_thumb32_insn (buf);
     23495      if ((newval & 0x0f200f00) == 0x0d000900)
     23496        {
     23497          /* This is a fp16 vstr/vldr.  The immediate offset in the mnemonic
     23498             has permitted values that are multiples of 2, in the range 0
     23499             to 510.  */
     23500          if (value < -510 || value > 510 || (value & 1))
     23501            as_bad_where (fixP->fx_file, fixP->fx_line,
     23502                          _("co-processor offset out of range"));
     23503        }
     23504      else if (value < -1023 || value > 1023 || (value & 3))
    2269423505        as_bad_where (fixP->fx_file, fixP->fx_line,
    2269523506                      _("co-processor offset out of range"));
     
    2270823519        {
    2270923520          newval &= 0xff7fff00;
     23521          if ((newval & 0x0f200f00) == 0x0d000900)
     23522            {
     23523              /* This is a fp16 vstr/vldr.
     23524
     23525                 It requires the immediate offset in the instruction is shifted
     23526                 left by 1 to be a half-word offset.
     23527
     23528                 Here, left shift by 1 first, and later right shift by 2
     23529                 should get the right offset.  */
     23530              value <<= 1;
     23531            }
    2271023532          newval |= (value >> 2) | (sign ? INDEX_UP : 0);
    2271123533        }
     
    2283323655        if (rd == REG_SP)
    2283423656          {
    22835             if (value & ~0x1fc)
     23657            if (value & ~0x1fc)
    2283623658              as_bad_where (fixP->fx_file, fixP->fx_line,
    2283723659                            _("invalid immediate for stack address calculation"));
     
    2284123663        else if (rs == REG_PC || rs == REG_SP)
    2284223664          {
     23665            /* PR gas/18541.  If the addition is for a defined symbol
     23666               within range of an ADR instruction then accept it.  */
     23667            if (subtract
     23668                && value == 4
     23669                && fixP->fx_addsy != NULL)
     23670              {
     23671                subtract = 0;
     23672
     23673                if (! S_IS_DEFINED (fixP->fx_addsy)
     23674                    || S_GET_SEGMENT (fixP->fx_addsy) != seg
     23675                    || S_IS_WEAK (fixP->fx_addsy))
     23676                  {
     23677                    as_bad_where (fixP->fx_file, fixP->fx_line,
     23678                                  _("address calculation needs a strongly defined nearby symbol"));
     23679                  }
     23680                else
     23681                  {
     23682                    offsetT v = fixP->fx_where + fixP->fx_frag->fr_address;
     23683
     23684                    /* Round up to the next 4-byte boundary.  */
     23685                    if (v & 3)
     23686                      v = (v + 3) & ~ 3;
     23687                    else
     23688                      v += 4;
     23689                    v = S_GET_VALUE (fixP->fx_addsy) - v;
     23690
     23691                    if (v & ~0x3fc)
     23692                      {
     23693                        as_bad_where (fixP->fx_file, fixP->fx_line,
     23694                                      _("symbol too far away"));
     23695                      }
     23696                    else
     23697                      {
     23698                        fixP->fx_done = 1;
     23699                        value = v;
     23700                      }
     23701                  }
     23702              }
     23703
    2284323704            if (subtract || value & ~0x3fc)
    2284423705              as_bad_where (fixP->fx_file, fixP->fx_line,
    2284523706                            _("invalid immediate for address calculation (value = 0x%08lX)"),
    22846                             (unsigned long) value);
     23707                            (unsigned long) (subtract ? - value : value));
    2284723708            newval = (rs == REG_PC ? T_OPCODE_ADD_PC : T_OPCODE_ADD_SP);
    2284823709            newval |= rd << 8;
     
    2294223803      return;
    2294323804
     23805   case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
     23806   case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
     23807   case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
     23808   case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
     23809      gas_assert (!fixP->fx_done);
     23810      {
     23811        bfd_vma insn;
     23812        bfd_boolean is_mov;
     23813        bfd_vma encoded_addend = value;
     23814
     23815        /* Check that addend can be encoded in instruction.  */
     23816        if (!seg->use_rela_p && (value < 0 || value > 255))
     23817          as_bad_where (fixP->fx_file, fixP->fx_line,
     23818                        _("the offset 0x%08lX is not representable"),
     23819                        (unsigned long) encoded_addend);
     23820
     23821        /* Extract the instruction.  */
     23822        insn = md_chars_to_number (buf, THUMB_SIZE);
     23823        is_mov = (insn & 0xf800) == 0x2000;
     23824
     23825        /* Encode insn.  */
     23826        if (is_mov)
     23827          {
     23828            if (!seg->use_rela_p)
     23829              insn |= encoded_addend;
     23830          }
     23831        else
     23832          {
     23833            int rd, rs;
     23834
     23835            /* Extract the instruction.  */
     23836             /* Encoding is the following
     23837                0x8000  SUB
     23838                0x00F0  Rd
     23839                0x000F  Rs
     23840             */
     23841             /* The following conditions must be true :
     23842                - ADD
     23843                - Rd == Rs
     23844                - Rd <= 7
     23845             */
     23846            rd = (insn >> 4) & 0xf;
     23847            rs = insn & 0xf;
     23848            if ((insn & 0x8000) || (rd != rs) || rd > 7)
     23849              as_bad_where (fixP->fx_file, fixP->fx_line,
     23850                        _("Unable to process relocation for thumb opcode: %lx"),
     23851                        (unsigned long) insn);
     23852
     23853            /* Encode as ADD immediate8 thumb 1 code.  */
     23854            insn = 0x3000 | (rd << 8);
     23855
     23856            /* Place the encoded addend into the first 8 bits of the
     23857               instruction.  */
     23858            if (!seg->use_rela_p)
     23859              insn |= encoded_addend;
     23860          }
     23861
     23862        /* Update the instruction.  */
     23863        md_number_to_chars (buf, insn, THUMB_SIZE);
     23864      }
     23865      break;
     23866
    2294423867   case BFD_RELOC_ARM_ALU_PC_G0_NC:
    2294523868   case BFD_RELOC_ARM_ALU_PC_G0:
     
    2313224055  bfd_reloc_code_real_type code;
    2313324056
    23134   reloc = (arelent *) xmalloc (sizeof (arelent));
    23135 
    23136   reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
     24057  reloc = XNEW (arelent);
     24058
     24059  reloc->sym_ptr_ptr = XNEW (asymbol *);
    2313724060  *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
    2313824061  reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
     
    2324724170    case BFD_RELOC_ARM_PREL31:
    2324824171    case BFD_RELOC_ARM_TARGET2:
    23249     case BFD_RELOC_ARM_TLS_LE32:
    2325024172    case BFD_RELOC_ARM_TLS_LDO32:
    2325124173    case BFD_RELOC_ARM_PCREL_CALL:
     
    2328024202    case BFD_RELOC_ARM_LDC_SB_G2:
    2328124203    case BFD_RELOC_ARM_V4BX:
     24204    case BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC:
     24205    case BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC:
     24206    case BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC:
     24207    case BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC:
    2328224208      code = fixp->fx_r_type;
    2328324209      break;
     
    2328524211    case BFD_RELOC_ARM_TLS_GOTDESC:
    2328624212    case BFD_RELOC_ARM_TLS_GD32:
     24213    case BFD_RELOC_ARM_TLS_LE32:
    2328724214    case BFD_RELOC_ARM_TLS_IE32:
    2328824215    case BFD_RELOC_ARM_TLS_LDM32:
     
    2332824255    default:
    2332924256      {
    23330         char * type;
     24257        const char * type;
    2333124258
    2333224259        switch (fixp->fx_r_type)
     
    2358124508    return FALSE;
    2358224509
     24510  /* BFD_RELOC_ARM_THUMB_ALU_ABS_Gx_NC relocations have VERY limited
     24511     offsets, so keep these symbols.  */
     24512  if (fixP->fx_r_type >= BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC
     24513      && fixP->fx_r_type <= BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC)
     24514    return FALSE;
     24515
    2358324516  return TRUE;
    2358424517}
     
    2358624519
    2358724520#ifdef OBJ_ELF
    23588 
    2358924521const char *
    2359024522elf32_arm_target_format (void)
     
    2377224704                 otherwise tag label as .code 16.  */
    2377324705              if (THUMB_IS_FUNC (sym))
    23774                 elf_sym->internal_elf_sym.st_target_internal
    23775                   = ST_BRANCH_TO_THUMB;
     24706                ARM_SET_SYM_BRANCH_TYPE (elf_sym->internal_elf_sym.st_target_internal,
     24707                                         ST_BRANCH_TO_THUMB);
    2377624708              else if (EF_ARM_EABI_VERSION (meabi_flags) < EF_ARM_EABI_VER4)
    2377724709                elf_sym->internal_elf_sym.st_info =
     
    2391124843      selected_cpu = cpu_default;
    2391224844    }
     24845  else if (no_cpu_selected ())
     24846    selected_cpu = cpu_default;
    2391324847#else
    2391424848  if (mcpu_cpu_opt)
     
    2405824992
    2405924993              -m[no-]warn-deprecated     Warn about deprecated features
     24994              -m[no-]warn-syms           Warn when symbols match instructions
    2406024995
    2406124996      For now we will also provide support for:
     
    2412625061};
    2412725062
     25063
    2412825064size_t md_longopts_size = sizeof (md_longopts);
    2412925065
    2413025066struct arm_option_table
    2413125067{
    24132   char *option;         /* Option name to match.  */
    24133   char *help;           /* Help information.  */
     25068  const char *option;           /* Option name to match.  */
     25069  const char *help;             /* Help information.  */
    2413425070  int  *var;            /* Variable to change.  */
    2413525071  int   value;          /* What to change it to.  */
    24136   char *deprecated;     /* If non-null, print this message.  */
     25072  const char *deprecated;       /* If non-null, print this message.  */
    2413725073};
    2413825074
     
    2416025096  {"mno-warn-deprecated", N_("do not warn on use of deprecated feature"),
    2416125097   &warn_on_deprecated, 0, NULL},
     25098  {"mwarn-syms", N_("warn about symbols that match instruction names [default]"), (int *) (& flag_warn_syms), TRUE, NULL},
     25099  {"mno-warn-syms", N_("disable warnings about symobls that match instructions"), (int *) (& flag_warn_syms), FALSE, NULL},
    2416225100  {NULL, NULL, NULL, 0, NULL}
    2416325101};
     
    2416525103struct arm_legacy_option_table
    2416625104{
    24167   char *option;                         /* Option name to match.  */
     25105  const char *option;                           /* Option name to match.  */
    2416825106  const arm_feature_set **var;          /* Variable to change.  */
    2416925107  const arm_feature_set value;          /* What to change it to.  */
    24170   char *deprecated;                     /* If non-null, print this message.  */
     25108  const char *deprecated;                       /* If non-null, print this message.  */
    2417125109};
    2417225110
     
    2428625224struct arm_cpu_option_table
    2428725225{
    24288   char *name;
     25226  const char *name;
    2428925227  size_t name_len;
    2429025228  const arm_feature_set value;
     
    2438625324  ARM_CPU_OPT ("arm1156t2-s",   ARM_ARCH_V6T2,   FPU_NONE,        NULL),
    2438725325  ARM_CPU_OPT ("arm1156t2f-s",  ARM_ARCH_V6T2,   FPU_ARCH_VFP_V2, NULL),
    24388   ARM_CPU_OPT ("arm1176jz-s",   ARM_ARCH_V6ZK,   FPU_NONE,        NULL),
    24389   ARM_CPU_OPT ("arm1176jzf-s",  ARM_ARCH_V6ZK,   FPU_ARCH_VFP_V2, NULL),
     25326  ARM_CPU_OPT ("arm1176jz-s",   ARM_ARCH_V6KZ,   FPU_NONE,        NULL),
     25327  ARM_CPU_OPT ("arm1176jzf-s",  ARM_ARCH_V6KZ,   FPU_ARCH_VFP_V2, NULL),
    2439025328  ARM_CPU_OPT ("cortex-a5",     ARM_ARCH_V7A_MP_SEC,
    2439125329                                                 FPU_NONE,        "Cortex-A5"),
     
    2439325331                                                                  "Cortex-A7"),
    2439425332  ARM_CPU_OPT ("cortex-a8",     ARM_ARCH_V7A_SEC,
    24395                                                  ARM_FEATURE (0, FPU_VFP_V3
     25333                                                 ARM_FEATURE_COPROC (FPU_VFP_V3
    2439625334                                                        | FPU_NEON_EXT_V1),
    2439725335                                                                  "Cortex-A8"),
    2439825336  ARM_CPU_OPT ("cortex-a9",     ARM_ARCH_V7A_MP_SEC,
    24399                                                  ARM_FEATURE (0, FPU_VFP_V3
     25337                                                 ARM_FEATURE_COPROC (FPU_VFP_V3
    2440025338                                                        | FPU_NEON_EXT_V1),
    2440125339                                                                  "Cortex-A9"),
     
    2440625344  ARM_CPU_OPT ("cortex-a17",    ARM_ARCH_V7VE,   FPU_ARCH_NEON_VFP_V4,
    2440725345                                                                  "Cortex-A17"),
     25346  ARM_CPU_OPT ("cortex-a32",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
     25347                                                                  "Cortex-A32"),
     25348  ARM_CPU_OPT ("cortex-a35",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
     25349                                                                  "Cortex-A35"),
    2440825350  ARM_CPU_OPT ("cortex-a53",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
    2440925351                                                                  "Cortex-A53"),
    2441025352  ARM_CPU_OPT ("cortex-a57",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
    2441125353                                                                  "Cortex-A57"),
     25354  ARM_CPU_OPT ("cortex-a72",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
     25355                                                                  "Cortex-A72"),
     25356  ARM_CPU_OPT ("cortex-a73",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
     25357                                                                  "Cortex-A73"),
    2441225358  ARM_CPU_OPT ("cortex-r4",     ARM_ARCH_V7R,    FPU_NONE,        "Cortex-R4"),
    2441325359  ARM_CPU_OPT ("cortex-r4f",    ARM_ARCH_V7R,    FPU_ARCH_VFP_V3D16,
     
    2441825364                                                 FPU_ARCH_VFP_V3D16,
    2441925365                                                                  "Cortex-R7"),
     25366  ARM_CPU_OPT ("cortex-r8",     ARM_ARCH_V7R_IDIV,
     25367                                                 FPU_ARCH_VFP_V3D16,
     25368                                                                  "Cortex-R8"),
     25369  ARM_CPU_OPT ("cortex-m7",     ARM_ARCH_V7EM,   FPU_NONE,        "Cortex-M7"),
    2442025370  ARM_CPU_OPT ("cortex-m4",     ARM_ARCH_V7EM,   FPU_NONE,        "Cortex-M4"),
    2442125371  ARM_CPU_OPT ("cortex-m3",     ARM_ARCH_V7M,    FPU_NONE,        "Cortex-M3"),
     
    2442325373  ARM_CPU_OPT ("cortex-m0",     ARM_ARCH_V6SM,   FPU_NONE,        "Cortex-M0"),
    2442425374  ARM_CPU_OPT ("cortex-m0plus", ARM_ARCH_V6SM,   FPU_NONE,        "Cortex-M0+"),
     25375  ARM_CPU_OPT ("exynos-m1",     ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
     25376                                                                  "Samsung " \
     25377                                                                  "Exynos M1"),
     25378  ARM_CPU_OPT ("qdf24xx",       ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
     25379                                                                  "Qualcomm "
     25380                                                                  "QDF24XX"),
     25381
    2442525382  /* ??? XSCALE is really an architecture.  */
    2442625383  ARM_CPU_OPT ("xscale",        ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
     
    2443025387  ARM_CPU_OPT ("i80200",        ARM_ARCH_XSCALE, FPU_ARCH_VFP_V2, NULL),
    2443125388  /* Maverick */
    24432   ARM_CPU_OPT ("ep9312",        ARM_FEATURE (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
     25389  ARM_CPU_OPT ("ep9312",        ARM_FEATURE_LOW (ARM_AEXT_V4T, ARM_CEXT_MAVERICK),
    2443325390                                                 FPU_ARCH_MAVERICK, "ARM920T"),
    2443425391  /* Marvell processors.  */
    24435   ARM_CPU_OPT ("marvell-pj4",   ARM_FEATURE (ARM_AEXT_V7A | ARM_EXT_MP | ARM_EXT_SEC, 0),
     25392  ARM_CPU_OPT ("marvell-pj4",   ARM_FEATURE_CORE (ARM_AEXT_V7A | ARM_EXT_MP
     25393                                                  | ARM_EXT_SEC,
     25394                                                  ARM_EXT2_V6T2_V8M),
    2443625395                                                FPU_ARCH_VFP_V3D16, NULL),
     25396  ARM_CPU_OPT ("marvell-whitney", ARM_FEATURE_CORE (ARM_AEXT_V7A | ARM_EXT_MP
     25397                                                    | ARM_EXT_SEC,
     25398                                                    ARM_EXT2_V6T2_V8M),
     25399                                               FPU_ARCH_NEON_VFP_V4, NULL),
     25400  /* APM X-Gene family.  */
     25401  ARM_CPU_OPT ("xgene1",        ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
     25402                                                                  "APM X-Gene 1"),
     25403  ARM_CPU_OPT ("xgene2",        ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
     25404                                                                  "APM X-Gene 2"),
    2443725405
    2443825406  { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, NULL }
     
    2444225410struct arm_arch_option_table
    2444325411{
    24444   char *name;
     25412  const char *name;
    2444525413  size_t name_len;
    2444625414  const arm_feature_set value;
     
    2447425442  ARM_ARCH_OPT ("armv6k",       ARM_ARCH_V6K,    FPU_ARCH_VFP),
    2447525443  ARM_ARCH_OPT ("armv6z",       ARM_ARCH_V6Z,    FPU_ARCH_VFP),
    24476   ARM_ARCH_OPT ("armv6zk",      ARM_ARCH_V6ZK,   FPU_ARCH_VFP),
     25444  /* The official spelling of this variant is ARMv6KZ, the name "armv6zk" is
     25445     kept to preserve existing behaviour.  */
     25446  ARM_ARCH_OPT ("armv6kz",      ARM_ARCH_V6KZ,   FPU_ARCH_VFP),
     25447  ARM_ARCH_OPT ("armv6zk",      ARM_ARCH_V6KZ,   FPU_ARCH_VFP),
    2447725448  ARM_ARCH_OPT ("armv6t2",      ARM_ARCH_V6T2,   FPU_ARCH_VFP),
    2447825449  ARM_ARCH_OPT ("armv6kt2",     ARM_ARCH_V6KT2,  FPU_ARCH_VFP),
    2447925450  ARM_ARCH_OPT ("armv6zt2",     ARM_ARCH_V6ZT2,  FPU_ARCH_VFP),
    24480   ARM_ARCH_OPT ("armv6zkt2",    ARM_ARCH_V6ZKT2, FPU_ARCH_VFP),
     25451  /* The official spelling of this variant is ARMv6KZ, the name "armv6zkt2" is
     25452     kept to preserve existing behaviour.  */
     25453  ARM_ARCH_OPT ("armv6kzt2",    ARM_ARCH_V6KZT2, FPU_ARCH_VFP),
     25454  ARM_ARCH_OPT ("armv6zkt2",    ARM_ARCH_V6KZT2, FPU_ARCH_VFP),
    2448125455  ARM_ARCH_OPT ("armv6-m",      ARM_ARCH_V6M,    FPU_ARCH_VFP),
    2448225456  ARM_ARCH_OPT ("armv6s-m",     ARM_ARCH_V6SM,   FPU_ARCH_VFP),
     
    2449225466  ARM_ARCH_OPT ("armv7-m",      ARM_ARCH_V7M,    FPU_ARCH_VFP),
    2449325467  ARM_ARCH_OPT ("armv7e-m",     ARM_ARCH_V7EM,   FPU_ARCH_VFP),
     25468  ARM_ARCH_OPT ("armv8-m.base", ARM_ARCH_V8M_BASE, FPU_ARCH_VFP),
     25469  ARM_ARCH_OPT ("armv8-m.main", ARM_ARCH_V8M_MAIN, FPU_ARCH_VFP),
    2449425470  ARM_ARCH_OPT ("armv8-a",      ARM_ARCH_V8A,    FPU_ARCH_VFP),
     25471  ARM_ARCH_OPT ("armv8.1-a",    ARM_ARCH_V8_1A,  FPU_ARCH_VFP),
     25472  ARM_ARCH_OPT ("armv8.2-a",    ARM_ARCH_V8_2A,  FPU_ARCH_VFP),
    2449525473  ARM_ARCH_OPT ("xscale",       ARM_ARCH_XSCALE, FPU_ARCH_VFP),
    2449625474  ARM_ARCH_OPT ("iwmmxt",       ARM_ARCH_IWMMXT, FPU_ARCH_VFP),
     
    2450325481struct arm_option_extension_value_table
    2450425482{
    24505   char *name;
     25483  const char *name;
    2450625484  size_t name_len;
    24507   const arm_feature_set value;
    24508   const arm_feature_set allowed_archs;
     25485  const arm_feature_set merge_value;
     25486  const arm_feature_set clear_value;
     25487  /* List of architectures for which an extension is available.  ARM_ARCH_NONE
     25488     indicates that an extension is available for all architectures while
     25489     ARM_ANY marks an empty entry.  */
     25490  const arm_feature_set allowed_archs[2];
    2450925491};
    2451025492
    2451125493/* The following table must be in alphabetical order with a NULL last entry.
    2451225494   */
    24513 #define ARM_EXT_OPT(N, V, AA) { N, sizeof (N) - 1, V, AA }
     25495#define ARM_EXT_OPT(N, M, C, AA) { N, sizeof (N) - 1, M, C, { AA, ARM_ANY } }
     25496#define ARM_EXT_OPT2(N, M, C, AA1, AA2) { N, sizeof (N) - 1, M, C, {AA1, AA2} }
    2451425497static const struct arm_option_extension_value_table arm_extensions[] =
    2451525498{
    24516   ARM_EXT_OPT ("crc",  ARCH_CRC_ARMV8, ARM_FEATURE (ARM_EXT_V8, 0)),
     25499  ARM_EXT_OPT ("crc",  ARCH_CRC_ARMV8, ARM_FEATURE_COPROC (CRC_EXT_ARMV8),
     25500                         ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
    2451725501  ARM_EXT_OPT ("crypto", FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
    24518                                    ARM_FEATURE (ARM_EXT_V8, 0)),
    24519   ARM_EXT_OPT ("fp",     FPU_ARCH_VFP_ARMV8,
    24520                                    ARM_FEATURE (ARM_EXT_V8, 0)),
    24521   ARM_EXT_OPT ("idiv",  ARM_FEATURE (ARM_EXT_ADIV | ARM_EXT_DIV, 0),
    24522                                    ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
    24523   ARM_EXT_OPT ("iwmmxt",ARM_FEATURE (0, ARM_CEXT_IWMMXT),       ARM_ANY),
    24524   ARM_EXT_OPT ("iwmmxt2",
    24525                         ARM_FEATURE (0, ARM_CEXT_IWMMXT2),      ARM_ANY),
    24526   ARM_EXT_OPT ("maverick",
    24527                         ARM_FEATURE (0, ARM_CEXT_MAVERICK),     ARM_ANY),
    24528   ARM_EXT_OPT ("mp",    ARM_FEATURE (ARM_EXT_MP, 0),
    24529                                    ARM_FEATURE (ARM_EXT_V7A | ARM_EXT_V7R, 0)),
    24530   ARM_EXT_OPT ("simd",   FPU_ARCH_NEON_VFP_ARMV8,
    24531                                    ARM_FEATURE (ARM_EXT_V8, 0)),
    24532   ARM_EXT_OPT ("os",    ARM_FEATURE (ARM_EXT_OS, 0),
    24533                                    ARM_FEATURE (ARM_EXT_V6M, 0)),
    24534   ARM_EXT_OPT ("sec",   ARM_FEATURE (ARM_EXT_SEC, 0),
    24535                                    ARM_FEATURE (ARM_EXT_V6K | ARM_EXT_V7A, 0)),
    24536   ARM_EXT_OPT ("virt",  ARM_FEATURE (ARM_EXT_VIRT | ARM_EXT_ADIV
    24537                                      | ARM_EXT_DIV, 0),
    24538                                    ARM_FEATURE (ARM_EXT_V7A, 0)),
    24539   ARM_EXT_OPT ("xscale",ARM_FEATURE (0, ARM_CEXT_XSCALE),       ARM_ANY),
    24540   { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE }
     25502                         ARM_FEATURE_COPROC (FPU_CRYPTO_ARMV8),
     25503                                   ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
     25504  ARM_EXT_OPT ("dsp",   ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
     25505                        ARM_FEATURE_CORE_LOW (ARM_EXT_V5ExP | ARM_EXT_V6_DSP),
     25506                        ARM_FEATURE_CORE (ARM_EXT_V7M, ARM_EXT2_V8M)),
     25507  ARM_EXT_OPT ("fp",     FPU_ARCH_VFP_ARMV8, ARM_FEATURE_COPROC (FPU_VFP_ARMV8),
     25508                                   ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
     25509  ARM_EXT_OPT ("fp16",  ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
     25510                        ARM_FEATURE_CORE_HIGH (ARM_EXT2_FP16_INST),
     25511                        ARM_ARCH_V8_2A),
     25512  ARM_EXT_OPT2 ("idiv", ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
     25513                        ARM_FEATURE_CORE_LOW (ARM_EXT_ADIV | ARM_EXT_DIV),
     25514                        ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
     25515                        ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
     25516  ARM_EXT_OPT ("iwmmxt",ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT),
     25517                        ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT), ARM_ARCH_NONE),
     25518  ARM_EXT_OPT ("iwmmxt2", ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2),
     25519                        ARM_FEATURE_COPROC (ARM_CEXT_IWMMXT2), ARM_ARCH_NONE),
     25520  ARM_EXT_OPT ("maverick", ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK),
     25521                        ARM_FEATURE_COPROC (ARM_CEXT_MAVERICK), ARM_ARCH_NONE),
     25522  ARM_EXT_OPT2 ("mp",   ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
     25523                        ARM_FEATURE_CORE_LOW (ARM_EXT_MP),
     25524                        ARM_FEATURE_CORE_LOW (ARM_EXT_V7A),
     25525                        ARM_FEATURE_CORE_LOW (ARM_EXT_V7R)),
     25526  ARM_EXT_OPT ("os",    ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
     25527                        ARM_FEATURE_CORE_LOW (ARM_EXT_OS),
     25528                                   ARM_FEATURE_CORE_LOW (ARM_EXT_V6M)),
     25529  ARM_EXT_OPT ("pan",   ARM_FEATURE_CORE_HIGH (ARM_EXT2_PAN),
     25530                        ARM_FEATURE (ARM_EXT_V8, ARM_EXT2_PAN, 0),
     25531                        ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
     25532  ARM_EXT_OPT ("ras",   ARM_FEATURE_CORE_HIGH (ARM_EXT2_RAS),
     25533                        ARM_FEATURE (ARM_EXT_V8, ARM_EXT2_RAS, 0),
     25534                        ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
     25535  ARM_EXT_OPT ("rdma",  FPU_ARCH_NEON_VFP_ARMV8_1,
     25536                        ARM_FEATURE_COPROC (FPU_NEON_ARMV8 | FPU_NEON_EXT_RDMA),
     25537                        ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
     25538  ARM_EXT_OPT2 ("sec",  ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
     25539                        ARM_FEATURE_CORE_LOW (ARM_EXT_SEC),
     25540                        ARM_FEATURE_CORE_LOW (ARM_EXT_V6K),
     25541                        ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
     25542  ARM_EXT_OPT ("simd",  FPU_ARCH_NEON_VFP_ARMV8,
     25543                        ARM_FEATURE_COPROC (FPU_NEON_ARMV8),
     25544                        ARM_FEATURE_CORE_LOW (ARM_EXT_V8)),
     25545  ARM_EXT_OPT ("virt",  ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT | ARM_EXT_ADIV
     25546                                     | ARM_EXT_DIV),
     25547                        ARM_FEATURE_CORE_LOW (ARM_EXT_VIRT),
     25548                                   ARM_FEATURE_CORE_LOW (ARM_EXT_V7A)),
     25549  ARM_EXT_OPT ("xscale",ARM_FEATURE_COPROC (ARM_CEXT_XSCALE),
     25550                        ARM_FEATURE_COPROC (ARM_CEXT_XSCALE), ARM_ARCH_NONE),
     25551  { NULL, 0, ARM_ARCH_NONE, ARM_ARCH_NONE, { ARM_ARCH_NONE, ARM_ARCH_NONE } }
    2454125552};
    2454225553#undef ARM_EXT_OPT
     
    2454525556struct arm_option_fpu_value_table
    2454625557{
    24547   char *name;
     25558  const char *name;
    2454825559  const arm_feature_set value;
    2454925560};
     
    2458625597  {"vfpv4-d16",         FPU_ARCH_VFP_V4D16},
    2458725598  {"fpv4-sp-d16",       FPU_ARCH_VFP_V4_SP_D16},
     25599  {"fpv5-d16",          FPU_ARCH_VFP_V5D16},
     25600  {"fpv5-sp-d16",       FPU_ARCH_VFP_V5_SP_D16},
    2458825601  {"neon-vfpv4",        FPU_ARCH_NEON_VFP_V4},
    2458925602  {"fp-armv8",          FPU_ARCH_VFP_ARMV8},
     
    2459125604  {"crypto-neon-fp-armv8",
    2459225605                        FPU_ARCH_CRYPTO_NEON_VFP_ARMV8},
     25606  {"neon-fp-armv8.1",   FPU_ARCH_NEON_VFP_ARMV8_1},
     25607  {"crypto-neon-fp-armv8.1",
     25608                        FPU_ARCH_CRYPTO_NEON_VFP_ARMV8_1},
    2459325609  {NULL,                ARM_ARCH_NONE}
    2459425610};
     
    2459625612struct arm_option_value_table
    2459725613{
    24598   char *name;
     25614  const char *name;
    2459925615  long value;
    2460025616};
     
    2462125637struct arm_long_option_table
    2462225638{
    24623   char * option;                /* Substring to match.  */
    24624   char * help;                  /* Help information.  */
    24625   int (* func) (char * subopt); /* Function to decode sub-option.  */
    24626   char * deprecated;            /* If non-null, print this message.  */
     25639  const char * option;          /* Substring to match.  */
     25640  const char * help;                    /* Help information.  */
     25641  int (* func) (const char * subopt);   /* Function to decode sub-option.  */
     25642  const char * deprecated;              /* If non-null, print this message.  */
    2462725643};
    2462825644
    2462925645static bfd_boolean
    24630 arm_parse_extension (char *str, const arm_feature_set **opt_p)
    24631 {
    24632   arm_feature_set *ext_set = (arm_feature_set *)
    24633       xmalloc (sizeof (arm_feature_set));
     25646arm_parse_extension (const char *str, const arm_feature_set **opt_p)
     25647{
     25648  arm_feature_set *ext_set = XNEW (arm_feature_set);
    2463425649
    2463525650  /* We insist on extensions being specified in alphabetical order, and with
     
    2464025655     -1 -> 1 -> 0.  */
    2464125656  const struct arm_option_extension_value_table * opt = NULL;
     25657  const arm_feature_set arm_any = ARM_ANY;
    2464225658  int adding_value = -1;
    2464325659
     
    2464825664  while (str != NULL && *str != 0)
    2464925665    {
    24650       char *ext;
     25666      const char *ext;
    2465125667      size_t len;
    2465225668
     
    2470425720        if (opt->name_len == len && strncmp (opt->name, str, len) == 0)
    2470525721          {
     25722            int i, nb_allowed_archs =
     25723              sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[0]);
    2470625724            /* Check we can apply the extension to this architecture.  */
    24707             if (!ARM_CPU_HAS_FEATURE (*ext_set, opt->allowed_archs))
     25725            for (i = 0; i < nb_allowed_archs; i++)
     25726              {
     25727                /* Empty entry.  */
     25728                if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_any))
     25729                  continue;
     25730                if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *ext_set))
     25731                  break;
     25732              }
     25733            if (i == nb_allowed_archs)
    2470825734              {
    2470925735                as_bad (_("extension does not apply to the base architecture"));
     
    2471325739            /* Add or remove the extension.  */
    2471425740            if (adding_value)
    24715               ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->value);
     25741              ARM_MERGE_FEATURE_SETS (*ext_set, *ext_set, opt->merge_value);
    2471625742            else
    24717               ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->value);
     25743              ARM_CLEAR_FEATURE (*ext_set, *ext_set, opt->clear_value);
    2471825744
    2471925745            break;
     
    2475125777
    2475225778static bfd_boolean
    24753 arm_parse_cpu (char *str)
     25779arm_parse_cpu (const char *str)
    2475425780{
    2475525781  const struct arm_cpu_option_table *opt;
    24756   char *ext = strchr (str, '+');
     25782  const char *ext = strchr (str, '+');
    2475725783  size_t len;
    2475825784
     
    2477425800        mcpu_fpu_opt = &opt->default_fpu;
    2477525801        if (opt->canonical_name)
    24776           strcpy (selected_cpu_name, opt->canonical_name);
     25802          {
     25803            gas_assert (sizeof selected_cpu_name > strlen (opt->canonical_name));
     25804            strcpy (selected_cpu_name, opt->canonical_name);
     25805          }
    2477725806        else
    2477825807          {
    2477925808            size_t i;
     25809
     25810            if (len >= sizeof selected_cpu_name)
     25811              len = (sizeof selected_cpu_name) - 1;
    2478025812
    2478125813            for (i = 0; i < len; i++)
     
    2479525827
    2479625828static bfd_boolean
    24797 arm_parse_arch (char *str)
     25829arm_parse_arch (const char *str)
    2479825830{
    2479925831  const struct arm_arch_option_table *opt;
    24800   char *ext = strchr (str, '+');
     25832  const char *ext = strchr (str, '+');
    2480125833  size_t len;
    2480225834
     
    2483025862
    2483125863static bfd_boolean
    24832 arm_parse_fpu (char * str)
     25864arm_parse_fpu (const char * str)
    2483325865{
    2483425866  const struct arm_option_fpu_value_table * opt;
     
    2484625878
    2484725879static bfd_boolean
    24848 arm_parse_float_abi (char * str)
     25880arm_parse_float_abi (const char * str)
    2484925881{
    2485025882  const struct arm_option_value_table * opt;
     
    2486325895#ifdef OBJ_ELF
    2486425896static bfd_boolean
    24865 arm_parse_eabi (char * str)
     25897arm_parse_eabi (const char * str)
    2486625898{
    2486725899  const struct arm_option_value_table *opt;
     
    2487925911
    2488025912static bfd_boolean
    24881 arm_parse_it_mode (char * str)
     25913arm_parse_it_mode (const char * str)
    2488225914{
    2488325915  bfd_boolean ret = TRUE;
     
    2490225934
    2490325935static bfd_boolean
    24904 arm_ccs_mode (char * unused ATTRIBUTE_UNUSED)
     25936arm_ccs_mode (const char * unused ATTRIBUTE_UNUSED)
    2490525937{
    2490625938  codecomposer_syntax = TRUE;
     
    2493225964
    2493325965int
    24934 md_parse_option (int c, char * arg)
     25966md_parse_option (int c, const char * arg)
    2493525967{
    2493625968  struct arm_option_table *opt;
     
    2506026092} cpu_arch_ver_table;
    2506126093
    25062 /* Mapping from CPU features to EABI CPU arch values.  Table must be sorted
    25063    least features first.  */
     26094/* Mapping from CPU features to EABI CPU arch values.  As a general rule, table
     26095   must be sorted least features first but some reordering is needed, eg. for
     26096   Thumb-2 instructions to be detected as coming from ARMv6T2.  */
    2506426097static const cpu_arch_ver_table cpu_arch_ver[] =
    2506526098{
     
    2508026113    {10, ARM_ARCH_V7M},
    2508126114    {14, ARM_ARCH_V8A},
     26115    {16, ARM_ARCH_V8M_BASE},
     26116    {17, ARM_ARCH_V8M_MAIN},
    2508226117    {0, ARM_ARCH_NONE}
    2508326118};
     
    2510326138
    2510426139/* Set the public EABI object attributes.  */
    25105 static void
     26140void
    2510626141aeabi_set_public_attributes (void)
    2510726142{
     
    2511026145  int virt_sec = 0;
    2511126146  int fp16_optional = 0;
     26147  arm_feature_set arm_arch = ARM_ARCH_NONE;
    2511226148  arm_feature_set flags;
    2511326149  arm_feature_set tmp;
     26150  arm_feature_set arm_arch_v8m_base = ARM_ARCH_V8M_BASE;
    2511426151  const cpu_arch_ver_table *p;
    2511526152
     
    2514826185        {
    2514926186          arch = p->val;
     26187          arm_arch = p->flags;
    2515026188          ARM_CLEAR_FEATURE (tmp, tmp, p->flags);
    2515126189        }
     
    2516026198     and implicit cases.  Avoid taking this path for -march=all by
    2516126199     checking for contradictory v7-A / v7-M features.  */
    25162   if (arch == 10
     26200  if (arch == TAG_CPU_ARCH_V7
    2516326201      && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
    2516426202      && ARM_CPU_HAS_FEATURE (flags, arm_ext_v7m)
    2516526203      && ARM_CPU_HAS_FEATURE (flags, arm_ext_v6_dsp))
    25166     arch = 13;
     26204    {
     26205      arch = TAG_CPU_ARCH_V7E_M;
     26206      arm_arch = (arm_feature_set) ARM_ARCH_V7EM;
     26207    }
     26208
     26209  ARM_CLEAR_FEATURE (tmp, flags, arm_arch_v8m_base);
     26210  if (arch == TAG_CPU_ARCH_V8M_BASE && ARM_CPU_HAS_FEATURE (tmp, arm_arch_any))
     26211    {
     26212      arch = TAG_CPU_ARCH_V8M_MAIN;
     26213      arm_arch = (arm_feature_set) ARM_ARCH_V8M_MAIN;
     26214    }
     26215
     26216  /* In cpu_arch_ver ARMv8-A is before ARMv8-M for atomics to be detected as
     26217     coming from ARMv8-A.  However, since ARMv8-A has more instructions than
     26218     ARMv8-M, -march=all must be detected as ARMv8-A.  */
     26219  if (arch == TAG_CPU_ARCH_V8M_MAIN
     26220      && ARM_FEATURE_CORE_EQUAL (selected_cpu, arm_arch_any))
     26221    {
     26222      arch = TAG_CPU_ARCH_V8;
     26223      arm_arch = (arm_feature_set) ARM_ARCH_V8A;
     26224    }
    2516726225
    2516826226  /* Tag_CPU_name.  */
     
    2518726245
    2518826246  /* Tag_CPU_arch_profile.  */
    25189   if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a))
     26247  if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7a)
     26248      || ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
     26249      || (ARM_CPU_HAS_FEATURE (flags, arm_ext_atomics)
     26250          && !ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m_m_only)))
    2519026251    profile = 'A';
    2519126252  else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v7r))
     
    2519926260    aeabi_set_attribute_int (Tag_CPU_arch_profile, profile);
    2520026261
     26262  /* Tag_DSP_extension.  */
     26263  if (ARM_CPU_HAS_FEATURE (flags, arm_ext_dsp))
     26264    {
     26265      arm_feature_set ext;
     26266
     26267      /* DSP instructions not in architecture.  */
     26268      ARM_CLEAR_FEATURE (ext, flags, arm_arch);
     26269      if (ARM_CPU_HAS_FEATURE (ext, arm_ext_dsp))
     26270        aeabi_set_attribute_int (Tag_DSP_extension, 1);
     26271    }
     26272
    2520126273  /* Tag_ARM_ISA_use.  */
    2520226274  if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v1)
     
    2520726279  if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v4t)
    2520826280      || arch == 0)
    25209     aeabi_set_attribute_int (Tag_THUMB_ISA_use,
    25210         ARM_CPU_HAS_FEATURE (flags, arm_arch_t2) ? 2 : 1);
     26281    {
     26282      int thumb_isa_use;
     26283
     26284      if (!ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
     26285          && ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m_m_only))
     26286        thumb_isa_use = 3;
     26287      else if (ARM_CPU_HAS_FEATURE (flags, arm_arch_t2))
     26288        thumb_isa_use = 2;
     26289      else
     26290        thumb_isa_use = 1;
     26291      aeabi_set_attribute_int (Tag_THUMB_ISA_use, thumb_isa_use);
     26292    }
    2521126293
    2521226294  /* Tag_VFP_arch.  */
    25213   if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8))
    25214     aeabi_set_attribute_int (Tag_VFP_arch, 7);
     26295  if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_armv8xd))
     26296    aeabi_set_attribute_int (Tag_VFP_arch,
     26297                             ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_d32)
     26298                             ? 7 : 8);
    2521526299  else if (ARM_CPU_HAS_FEATURE (flags, fpu_vfp_ext_fma))
    2521626300    aeabi_set_attribute_int (Tag_VFP_arch,
     
    2524526329
    2524626330  /* Tag_Advanced_SIMD_arch (formerly Tag_NEON_arch).  */
    25247   if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
     26331  if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v8_1))
     26332    aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 4);
     26333  else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_armv8))
    2524826334    aeabi_set_attribute_int (Tag_Advanced_SIMD_arch, 3);
    2524926335  else if (ARM_CPU_HAS_FEATURE (flags, fpu_neon_ext_v1))
     
    2527026356     but we have no architecture profile set, nor have we any ARM instructions.
    2527126357
    25272      For ARMv8 we set the tag to 0 as integer divide is implied by the base
    25273      architecture.
     26358     For ARMv8-A and ARMv8-M we set the tag to 0 as integer divide is implied
     26359     by the base architecture.
    2527426360
    2527526361     For new architectures we will have to check these tests.  */
    25276   gas_assert (arch <= TAG_CPU_ARCH_V8);
    25277   if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8))
     26362  gas_assert (arch <= TAG_CPU_ARCH_V8
     26363              || (arch >= TAG_CPU_ARCH_V8M_BASE
     26364                  && arch <= TAG_CPU_ARCH_V8M_MAIN));
     26365  if (ARM_CPU_HAS_FEATURE (flags, arm_ext_v8)
     26366      || ARM_CPU_HAS_FEATURE (flags, arm_ext_v8m))
    2527826367    aeabi_set_attribute_int (Tag_DIV_use, 0);
    2527926368  else if (ARM_CPU_HAS_FEATURE (flags, arm_ext_adiv)
     
    2542026509{
    2542126510  const struct arm_option_extension_value_table *opt;
     26511  const arm_feature_set arm_any = ARM_ANY;
    2542226512  char saved_char;
    2542326513  char *name;
     
    2544026530    if (streq (opt->name, name))
    2544126531      {
    25442         if (!ARM_CPU_HAS_FEATURE (*mcpu_cpu_opt, opt->allowed_archs))
     26532        int i, nb_allowed_archs =
     26533          sizeof (opt->allowed_archs) / sizeof (opt->allowed_archs[i]);
     26534        for (i = 0; i < nb_allowed_archs; i++)
     26535          {
     26536            /* Empty entry.  */
     26537            if (ARM_FEATURE_EQUAL (opt->allowed_archs[i], arm_any))
     26538              continue;
     26539            if (ARM_FSET_CPU_SUBSET (opt->allowed_archs[i], *mcpu_cpu_opt))
     26540              break;
     26541          }
     26542
     26543        if (i == nb_allowed_archs)
    2544326544          {
    2544426545            as_bad (_("architectural extension `%s' is not allowed for the "
     
    2544826549
    2544926550        if (adding_value)
    25450           ARM_MERGE_FEATURE_SETS (selected_cpu, selected_cpu, opt->value);
     26551          ARM_MERGE_FEATURE_SETS (selected_cpu, selected_cpu,
     26552                                  opt->merge_value);
    2545126553        else
    25452           ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, opt->value);
     26554          ARM_CLEAR_FEATURE (selected_cpu, selected_cpu, opt->clear_value);
    2545326555
    2545426556        mcpu_cpu_opt = &selected_cpu;
     
    2556426666      T (Tag_T2EE_use),
    2556526667      T (Tag_Virtualization_use),
     26668      T (Tag_DSP_extension),
    2556626669      /* We deliberately do not include Tag_MPextension_use_legacy.  */
    2556726670#undef T
     
    2558026683
    2558126684
    25582 /* Apply sym value for relocations only in the case that
    25583    they are for local symbols and you have the respective
    25584    architectural feature for blx and simple switches.  */
     26685/* Apply sym value for relocations only in the case that they are for
     26686   local symbols in the same segment as the fixup and you have the
     26687   respective architectural feature for blx and simple switches.  */
    2558526688int
    25586 arm_apply_sym_value (struct fix * fixP)
     26689arm_apply_sym_value (struct fix * fixP, segT this_seg)
    2558726690{
    2558826691  if (fixP->fx_addsy
    2558926692      && ARM_CPU_HAS_FEATURE (selected_cpu, arm_ext_v5t)
     26693      /* PR 17444: If the local symbol is in a different section then a reloc
     26694         will always be generated for it, so applying the symbol value now
     26695         will result in a double offset being stored in the relocation.  */
     26696      && (S_GET_SEGMENT (fixP->fx_addsy) == this_seg)
    2559026697      && !S_FORCE_RELOC (fixP->fx_addsy, TRUE))
    2559126698    {
     
    2560126708        case BFD_RELOC_THUMB_PCREL_BLX:
    2560226709          if (THUMB_IS_FUNC (fixP->fx_addsy))
    25603               return 1;
     26710            return 1;
    2560426711          break;
    2560526712
Note: See TracChangeset for help on using the changeset viewer.