Home | History | Annotate | Line # | Download | only in config
tc-spu.c revision 1.1.1.7.2.1
      1 /* spu.c -- Assembler for the IBM Synergistic Processing Unit (SPU)
      2 
      3    Copyright (C) 2006-2024 Free Software Foundation, Inc.
      4 
      5    This file is part of GAS, the GNU Assembler.
      6 
      7    GAS is free software; you can redistribute it and/or modify
      8    it under the terms of the GNU General Public License as published by
      9    the Free Software Foundation; either version 3, or (at your option)
     10    any later version.
     11 
     12    GAS is distributed in the hope that it will be useful,
     13    but WITHOUT ANY WARRANTY; without even the implied warranty of
     14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15    GNU General Public License for more details.
     16 
     17    You should have received a copy of the GNU General Public License
     18    along with GAS; see the file COPYING.  If not, write to the Free
     19    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
     20    02110-1301, USA.  */
     21 
     22 #include "as.h"
     23 #include "safe-ctype.h"
     24 #include "subsegs.h"
     25 #include "dwarf2dbg.h"
     26 
     27 const struct spu_opcode spu_opcodes[] = {
     28 #define APUOP(TAG,MACFORMAT,OPCODE,MNEMONIC,ASMFORMAT,DEP,PIPE) \
     29 	{ MACFORMAT, (OPCODE ## u) << (32-11), MNEMONIC, ASMFORMAT },
     30 #define APUOPFB(TAG,MACFORMAT,OPCODE,FB,MNEMONIC,ASMFORMAT,DEP,PIPE) \
     31 	{ MACFORMAT, ((OPCODE) << (32-11)) | ((FB) << (32-18)), MNEMONIC, ASMFORMAT },
     32 #include "opcode/spu-insns.h"
     33 #undef APUOP
     34 #undef APUOPFB
     35 };
     36 
     37 static const int spu_num_opcodes =
     38   sizeof (spu_opcodes) / sizeof (spu_opcodes[0]);
     39 
     40 #define MAX_RELOCS 2
     41 
     42 struct spu_insn
     43 {
     44   unsigned int opcode;
     45   expressionS exp[MAX_RELOCS];
     46   int reloc_arg[MAX_RELOCS];
     47   bfd_reloc_code_real_type reloc[MAX_RELOCS];
     48   enum spu_insns tag;
     49 };
     50 
     51 static const char *get_imm (const char *param, struct spu_insn *insn, int arg);
     52 static const char *get_reg (const char *param, struct spu_insn *insn, int arg,
     53 			    int accept_expr);
     54 static int calcop (struct spu_opcode *format, const char *param,
     55 		   struct spu_insn *insn);
     56 static void spu_brinfo (int);
     57 static void spu_cons (int);
     58 
     59 extern char *myname;
     60 static htab_t op_hash = NULL;
     61 
     62 /* These bits should be turned off in the first address of every segment */
     63 int md_seg_align = 7;
     64 
     65 /* These chars start a comment anywhere in a source file (except inside
     66    another comment */
     67 const char comment_chars[] = "#";
     68 
     69 /* These chars only start a comment at the beginning of a line.  */
     70 const char line_comment_chars[] = "#";
     71 
     72 /* gods own line continuation char */
     73 const char line_separator_chars[] = ";";
     74 
     75 /* Chars that can be used to separate mant from exp in floating point nums */
     76 const char EXP_CHARS[] = "eE";
     77 
     78 /* Chars that mean this number is a floating point constant */
     79 /* as in 0f123.456 */
     80 /* or    0H1.234E-12 (see exp chars above) */
     81 const char FLT_CHARS[] = "dDfF";
     82 
     83 const pseudo_typeS md_pseudo_table[] =
     84 {
     85   {"align", s_align_ptwo, 4},
     86   {"brinfo", spu_brinfo, 0},
     87   {"bss", s_lcomm_bytes, 1},
     88   {"def", s_set, 0},
     89   {"dfloat", float_cons, 'd'},
     90   {"ffloat", float_cons, 'f'},
     91   {"global", s_globl, 0},
     92   {"half", cons, 2},
     93   {"int", spu_cons, 4},
     94   {"long", spu_cons, 4},
     95   {"quad", spu_cons, 8},
     96   {"string", stringer, 8 + 1},
     97   {"word", spu_cons, 4},
     98   /* Force set to be treated as an instruction.  */
     99   {"set", NULL, 0},
    100   {".set", s_set, 0},
    101   /* Likewise for eqv.  */
    102   {"eqv", NULL, 0},
    103   {".eqv", s_set, -1},
    104   {0,0,0}
    105 };
    106 
    107 /* Bits plugged into branch instruction offset field.  */
    108 unsigned int brinfo;
    109 
    110 void
    111 md_begin (void)
    112 {
    113   int i;
    114 
    115   op_hash = str_htab_create ();
    116 
    117   /* Hash each mnemonic and record its position.  There are
    118      duplicates, keep just the first.  */
    119   for (i = 0; i < spu_num_opcodes; i++)
    120     str_hash_insert (op_hash, spu_opcodes[i].mnemonic, &spu_opcodes[i], 0);
    121 }
    122 
    123 const char *md_shortopts = "";
    125 struct option md_longopts[] = {
    126 #define OPTION_APUASM (OPTION_MD_BASE)
    127   {"apuasm", no_argument, NULL, OPTION_APUASM},
    128 #define OPTION_DD2 (OPTION_MD_BASE+1)
    129   {"mdd2.0", no_argument, NULL, OPTION_DD2},
    130 #define OPTION_DD1 (OPTION_MD_BASE+2)
    131   {"mdd1.0", no_argument, NULL, OPTION_DD1},
    132 #define OPTION_DD3 (OPTION_MD_BASE+3)
    133   {"mdd3.0", no_argument, NULL, OPTION_DD3},
    134   { NULL, no_argument, NULL, 0 }
    135 };
    136 size_t md_longopts_size = sizeof (md_longopts);
    137 
    138 /* When set (by -apuasm) our assembler emulates the behaviour of apuasm.
    139  * e.g. don't add bias to float conversion and don't right shift
    140  * immediate values. */
    141 static int emulate_apuasm;
    142 
    143 /* Use the dd2.0 instructions set.  The only differences are some new
    144  * register names and the orx insn */
    145 static int use_dd2 = 1;
    146 
    147 int
    148 md_parse_option (int c, const char *arg ATTRIBUTE_UNUSED)
    149 {
    150   switch (c)
    151     {
    152     case OPTION_APUASM:
    153       emulate_apuasm = 1;
    154       break;
    155     case OPTION_DD3:
    156       use_dd2 = 1;
    157       break;
    158     case OPTION_DD2:
    159       use_dd2 = 1;
    160       break;
    161     case OPTION_DD1:
    162       use_dd2 = 0;
    163       break;
    164     default:
    165       return 0;
    166     }
    167   return 1;
    168 }
    169 
    170 void
    171 md_show_usage (FILE *stream)
    172 {
    173   fputs (_("\
    174 SPU options:\n\
    175   --apuasm		  emulate behaviour of apuasm\n"),
    176 	stream);
    177 }
    178 
    179 
    181 struct arg_encode {
    182   int size;
    183   int pos;
    184   int rshift;
    185   int lo, hi;
    186   int wlo, whi;
    187   bfd_reloc_code_real_type reloc;
    188 };
    189 
    190 static struct arg_encode arg_encode[A_MAX] = {
    191   {  7,  0, 0,       0,    127,    0,   -1,  0 }, /* A_T */
    192   {  7,  7, 0,       0,    127,    0,   -1,  0 }, /* A_A */
    193   {  7, 14, 0,       0,    127,    0,   -1,  0 }, /* A_B */
    194   {  7, 21, 0,       0,    127,    0,   -1,  0 }, /* A_C */
    195   {  7,  7, 0,       0,    127,    0,   -1,  0 }, /* A_S */
    196   {  7,  7, 0,       0,    127,    0,   -1,  0 }, /* A_H */
    197   {  0,  0, 0,       0,     -1,    0,   -1,  0 }, /* A_P */
    198   {  7, 14, 0,       0,     -1,    0,   -1,  BFD_RELOC_SPU_IMM7 }, /* A_S3 */
    199   {  7, 14, 0,     -32,     31,  -31,    0,  BFD_RELOC_SPU_IMM7 }, /* A_S6 */
    200   {  7, 14, 0,       0,     -1,    0,   -1,  BFD_RELOC_SPU_IMM7 }, /* A_S7N */
    201   {  7, 14, 0,     -64,     63,  -63,    0,  BFD_RELOC_SPU_IMM7 }, /* A_S7 */
    202   {  8, 14, 0,       0,    127,    0,   -1,  BFD_RELOC_SPU_IMM8 }, /* A_U7A */
    203   {  8, 14, 0,       0,    127,    0,   -1,  BFD_RELOC_SPU_IMM8 }, /* A_U7B */
    204   { 10, 14, 0,    -512,    511, -128,  255,  BFD_RELOC_SPU_IMM10 }, /* A_S10B */
    205   { 10, 14, 0,    -512,    511,    0,   -1,  BFD_RELOC_SPU_IMM10 }, /* A_S10 */
    206   {  2, 23, 9,   -1024,   1023,    0,   -1,  BFD_RELOC_SPU_PCREL9a }, /* A_S11 */
    207   {  2, 14, 9,   -1024,   1023,    0,   -1,  BFD_RELOC_SPU_PCREL9b }, /* A_S11I */
    208   { 10, 14, 4,   -8192,   8191,    0,   -1,  BFD_RELOC_SPU_IMM10W }, /* A_S14 */
    209   { 16,  7, 0,  -32768,  32767,    0,   -1,  BFD_RELOC_SPU_IMM16 }, /* A_S16 */
    210   { 16,  7, 2, -131072, 262143,    0,   -1,  BFD_RELOC_SPU_IMM16W }, /* A_S18 */
    211   { 16,  7, 2, -262144, 262143,    0,   -1,  BFD_RELOC_SPU_PCREL16 }, /* A_R18 */
    212   {  7, 14, 0,       0,     -1,    0,   -1,  BFD_RELOC_SPU_IMM7 }, /* A_U3 */
    213   {  7, 14, 0,       0,    127,    0,   31,  BFD_RELOC_SPU_IMM7 }, /* A_U5 */
    214   {  7, 14, 0,       0,    127,    0,   63,  BFD_RELOC_SPU_IMM7 }, /* A_U6 */
    215   {  7, 14, 0,       0,     -1,    0,   -1,  BFD_RELOC_SPU_IMM7 }, /* A_U7 */
    216   { 14,  0, 0,       0,  16383,    0,   -1,  0 }, /* A_U14 */
    217   { 16,  7, 0,  -32768,  65535,    0,   -1,  BFD_RELOC_SPU_IMM16 }, /* A_X16 */
    218   { 18,  7, 0,       0, 262143,    0,   -1,  BFD_RELOC_SPU_IMM18 }, /* A_U18 */
    219 };
    220 
    221 /* Some flags for handling errors.  This is very hackish and added after
    222  * the fact. */
    223 static int syntax_error_arg;
    224 static const char *syntax_error_param;
    225 static int syntax_reg;
    226 
    227 static char *
    228 insn_fmt_string (struct spu_opcode *format)
    229 {
    230   static char buf[64];
    231   int len = 0;
    232   int i;
    233 
    234   len += sprintf (&buf[len], "%s\t", format->mnemonic);
    235   for (i = 1; i <= format->arg[0]; i++)
    236     {
    237       int arg = format->arg[i];
    238       const char *exp;
    239       if (i > 1 && arg != A_P && format->arg[i-1] != A_P)
    240 	buf[len++] =  ',';
    241       if (arg == A_P)
    242 	exp = "(";
    243       else if (arg < A_P)
    244 	exp = i == syntax_error_arg ? "REG" : "reg";
    245       else
    246 	exp = i == syntax_error_arg ? "IMM" : "imm";
    247       len += sprintf (&buf[len], "%s", exp);
    248       if (i > 1 && format->arg[i-1] == A_P)
    249 	buf[len++] =  ')';
    250     }
    251   buf[len] = 0;
    252   return buf;
    253 }
    254 
    255 void
    256 md_assemble (char *op)
    257 {
    258   char *param, *thisfrag;
    259   char c;
    260   struct spu_opcode *format;
    261   struct spu_insn insn;
    262   int i;
    263 
    264   gas_assert (op);
    265 
    266   /* skip over instruction to find parameters */
    267 
    268   for (param = op; *param != 0 && !ISSPACE (*param); param++)
    269     ;
    270   c = *param;
    271   *param = 0;
    272 
    273   if (c != 0 && c != '\n')
    274     param++;
    275 
    276   /* try to find the instruction in the hash table */
    277 
    278   if ((format = (struct spu_opcode *) str_hash_find (op_hash, op)) == NULL)
    279     {
    280       as_bad (_("Invalid mnemonic '%s'"), op);
    281       return;
    282     }
    283 
    284   if (!use_dd2 && strcmp (format->mnemonic, "orx") == 0)
    285     {
    286       as_bad (_("'%s' is only available in DD2.0 or higher."), op);
    287       return;
    288     }
    289 
    290   while (1)
    291     {
    292       /* try parsing this instruction into insn */
    293       for (i = 0; i < MAX_RELOCS; i++)
    294 	{
    295 	  insn.exp[i].X_add_symbol = 0;
    296 	  insn.exp[i].X_op_symbol = 0;
    297 	  insn.exp[i].X_add_number = 0;
    298 	  insn.exp[i].X_op = O_illegal;
    299 	  insn.reloc_arg[i] = -1;
    300 	  insn.reloc[i] = BFD_RELOC_NONE;
    301 	}
    302       insn.opcode = format->opcode;
    303       insn.tag = (enum spu_insns) (format - spu_opcodes);
    304 
    305       syntax_error_arg = 0;
    306       syntax_error_param = 0;
    307       syntax_reg = 0;
    308       if (calcop (format, param, &insn))
    309 	break;
    310 
    311       /* if it doesn't parse try the next instruction */
    312       if (!strcmp (format[0].mnemonic, format[1].mnemonic))
    313 	format++;
    314       else
    315 	{
    316 	  int parg = format[0].arg[syntax_error_arg-1];
    317 
    318 	  as_fatal (_("Error in argument %d.  Expecting:  \"%s\""),
    319 		    syntax_error_arg - (parg == A_P),
    320 		    insn_fmt_string (format));
    321 	  return;
    322 	}
    323     }
    324 
    325   if ((syntax_reg & 4)
    326       && ! (insn.tag == M_RDCH
    327 	    || insn.tag == M_RCHCNT
    328 	    || insn.tag == M_WRCH))
    329     as_warn (_("Mixing register syntax, with and without '$'."));
    330   if (syntax_error_param)
    331     {
    332       const char *d = syntax_error_param;
    333       while (*d != '$')
    334 	d--;
    335       as_warn (_("Treating '%-*s' as a symbol."), (int)(syntax_error_param - d), d);
    336     }
    337 
    338   if (brinfo != 0
    339       && (insn.tag <= M_BRASL
    340 	  || (insn.tag >= M_BRZ && insn.tag <= M_BRHNZ))
    341       && (insn.opcode & 0x7ff80) == 0
    342       && (insn.reloc_arg[0] == A_R18
    343 	  || insn.reloc_arg[0] == A_S18
    344 	  || insn.reloc_arg[1] == A_R18
    345 	  || insn.reloc_arg[1] == A_S18))
    346     insn.opcode |= brinfo << 7;
    347 
    348   /* grow the current frag and plop in the opcode */
    349 
    350   thisfrag = frag_more (4);
    351   md_number_to_chars (thisfrag, insn.opcode, 4);
    352 
    353   /* if this instruction requires labels mark it for later */
    354 
    355   for (i = 0; i < MAX_RELOCS; i++)
    356     if (insn.reloc_arg[i] >= 0)
    357       {
    358         fixS *fixP;
    359         bfd_reloc_code_real_type reloc = insn.reloc[i];
    360 	int pcrel = 0;
    361 
    362 	if (reloc == BFD_RELOC_SPU_PCREL9a
    363 	    || reloc == BFD_RELOC_SPU_PCREL9b
    364 	    || reloc == BFD_RELOC_SPU_PCREL16)
    365 	  pcrel = 1;
    366 	fixP = fix_new_exp (frag_now,
    367 			    thisfrag - frag_now->fr_literal,
    368 			    4,
    369 			    &insn.exp[i],
    370 			    pcrel,
    371 			    reloc);
    372 	fixP->tc_fix_data.arg_format = insn.reloc_arg[i];
    373 	fixP->tc_fix_data.insn_tag = insn.tag;
    374       }
    375   dwarf2_emit_insn (4);
    376 
    377   /* .brinfo lasts exactly one instruction.  */
    378   brinfo = 0;
    379 }
    380 
    381 static int
    382 calcop (struct spu_opcode *format, const char *param, struct spu_insn *insn)
    383 {
    384   int i;
    385   int paren = 0;
    386   int arg;
    387 
    388   for (i = 1; i <= format->arg[0]; i++)
    389     {
    390       arg = format->arg[i];
    391       syntax_error_arg = i;
    392 
    393       while (ISSPACE (*param))
    394         param++;
    395       if (*param == 0 || *param == ',')
    396 	return 0;
    397       if (arg < A_P)
    398         param = get_reg (param, insn, arg, 1);
    399       else if (arg > A_P)
    400         param = get_imm (param, insn, arg);
    401       else if (arg == A_P)
    402 	{
    403 	  paren++;
    404 	  if ('(' != *param++)
    405 	    return 0;
    406 	}
    407 
    408       if (!param)
    409 	return 0;
    410 
    411       while (ISSPACE (*param))
    412         param++;
    413 
    414       if (arg != A_P && paren)
    415 	{
    416 	  paren--;
    417 	  if (')' != *param++)
    418 	    return 0;
    419 	}
    420       else if (i < format->arg[0]
    421 	       && format->arg[i] != A_P
    422 	       && format->arg[i+1] != A_P)
    423 	{
    424 	  if (',' != *param++)
    425 	    {
    426 	      syntax_error_arg++;
    427 	      return 0;
    428 	    }
    429 	}
    430     }
    431   while (ISSPACE (*param))
    432     param++;
    433   return !paren && (*param == 0 || *param == '\n');
    434 }
    435 
    436 struct reg_name {
    437     unsigned int regno;
    438     unsigned int length;
    439     char name[32];
    440 };
    441 
    442 #define REG_NAME(NO,NM) { NO, sizeof (NM) - 1, NM }
    443 
    444 static struct reg_name reg_name[] = {
    445   REG_NAME (0, "lr"),  /* link register */
    446   REG_NAME (1, "sp"),  /* stack pointer */
    447   REG_NAME (0, "rp"),  /* link register */
    448   REG_NAME (127, "fp"),  /* frame pointer */
    449 };
    450 
    451 static struct reg_name sp_reg_name[] = {
    452 };
    453 
    454 static struct reg_name ch_reg_name[] = {
    455   REG_NAME (  0, "SPU_RdEventStat"),
    456   REG_NAME (  1, "SPU_WrEventMask"),
    457   REG_NAME (  2, "SPU_WrEventAck"),
    458   REG_NAME (  3, "SPU_RdSigNotify1"),
    459   REG_NAME (  4, "SPU_RdSigNotify2"),
    460   REG_NAME (  7, "SPU_WrDec"),
    461   REG_NAME (  8, "SPU_RdDec"),
    462   REG_NAME ( 11, "SPU_RdEventMask"), /* DD2.0 only */
    463   REG_NAME ( 13, "SPU_RdMachStat"),
    464   REG_NAME ( 14, "SPU_WrSRR0"),
    465   REG_NAME ( 15, "SPU_RdSRR0"),
    466   REG_NAME ( 28, "SPU_WrOutMbox"),
    467   REG_NAME ( 29, "SPU_RdInMbox"),
    468   REG_NAME ( 30, "SPU_WrOutIntrMbox"),
    469   REG_NAME (  9, "MFC_WrMSSyncReq"),
    470   REG_NAME ( 12, "MFC_RdTagMask"),   /* DD2.0 only */
    471   REG_NAME ( 16, "MFC_LSA"),
    472   REG_NAME ( 17, "MFC_EAH"),
    473   REG_NAME ( 18, "MFC_EAL"),
    474   REG_NAME ( 19, "MFC_Size"),
    475   REG_NAME ( 20, "MFC_TagID"),
    476   REG_NAME ( 21, "MFC_Cmd"),
    477   REG_NAME ( 22, "MFC_WrTagMask"),
    478   REG_NAME ( 23, "MFC_WrTagUpdate"),
    479   REG_NAME ( 24, "MFC_RdTagStat"),
    480   REG_NAME ( 25, "MFC_RdListStallStat"),
    481   REG_NAME ( 26, "MFC_WrListStallAck"),
    482   REG_NAME ( 27, "MFC_RdAtomicStat"),
    483 };
    484 #undef REG_NAME
    485 
    486 static const char *
    487 get_reg (const char *param, struct spu_insn *insn, int arg, int accept_expr)
    488 {
    489   unsigned regno;
    490   int saw_prefix = 0;
    491 
    492   if (*param == '$')
    493     {
    494       saw_prefix = 1;
    495       param++;
    496     }
    497 
    498   if (arg == A_H) /* Channel */
    499     {
    500       if ((param[0] == 'c' || param[0] == 'C')
    501 	  && (param[1] == 'h' || param[1] == 'H')
    502 	  && ISDIGIT (param[2]))
    503         param += 2;
    504     }
    505   else if (arg == A_S) /* Special purpose register */
    506     {
    507       if ((param[0] == 's' || param[0] == 'S')
    508 	  && (param[1] == 'p' || param[1] == 'P')
    509 	  && ISDIGIT (param[2]))
    510         param += 2;
    511     }
    512 
    513   if (ISDIGIT (*param))
    514     {
    515       regno = 0;
    516       while (ISDIGIT (*param))
    517 	regno = regno * 10 + *param++ - '0';
    518     }
    519   else
    520     {
    521       struct reg_name *rn;
    522       unsigned int i, n, l = 0;
    523 
    524       if (arg == A_H) /* Channel */
    525 	{
    526 	  rn = ch_reg_name;
    527 	  n = sizeof (ch_reg_name) / sizeof (*ch_reg_name);
    528 	}
    529       else if (arg == A_S) /* Special purpose register */
    530 	{
    531 	  rn = sp_reg_name;
    532 	  n = sizeof (sp_reg_name) / sizeof (*sp_reg_name);
    533 	}
    534       else
    535 	{
    536 	  rn = reg_name;
    537 	  n = sizeof (reg_name) / sizeof (*reg_name);
    538 	}
    539       regno = 128;
    540       for (i = 0; i < n; i++)
    541 	if (rn[i].length > l
    542 	    && 0 == strncasecmp (param, rn[i].name, rn[i].length))
    543           {
    544 	    l = rn[i].length;
    545             regno = rn[i].regno;
    546           }
    547       param += l;
    548     }
    549 
    550   if (!use_dd2
    551       && arg == A_H)
    552     {
    553       if (regno == 11)
    554 	as_bad (_("'SPU_RdEventMask' (channel 11) is only available in DD2.0 or higher."));
    555       else if (regno == 12)
    556 	as_bad (_("'MFC_RdTagMask' (channel 12) is only available in DD2.0 or higher."));
    557     }
    558 
    559   if (regno < 128)
    560     {
    561       insn->opcode |= regno << arg_encode[arg].pos;
    562       if ((!saw_prefix && syntax_reg == 1)
    563 	  || (saw_prefix && syntax_reg == 2))
    564 	syntax_reg |= 4;
    565       syntax_reg |= saw_prefix ? 1 : 2;
    566       return param;
    567     }
    568 
    569   if (accept_expr)
    570     {
    571       char *save_ptr;
    572       expressionS ex;
    573       save_ptr = input_line_pointer;
    574       input_line_pointer = (char *)param;
    575       expression (&ex);
    576       param = input_line_pointer;
    577       input_line_pointer = save_ptr;
    578       resolve_register (&ex);
    579       if (ex.X_op == O_register || ex.X_op == O_constant)
    580 	{
    581 	  insn->opcode |= ex.X_add_number << arg_encode[arg].pos;
    582 	  return param;
    583 	}
    584     }
    585   return 0;
    586 }
    587 
    588 static const char *
    589 get_imm (const char *param, struct spu_insn *insn, int arg)
    590 {
    591   int val;
    592   char *save_ptr;
    593   int low = 0, high = 0;
    594   int reloc_i = insn->reloc_arg[0] >= 0 ? 1 : 0;
    595 
    596   if (strncasecmp (param, "%lo(", 4) == 0)
    597     {
    598       param += 3;
    599       low = 1;
    600       as_warn (_("Using old style, %%lo(expr), please change to PPC style, expr@l."));
    601     }
    602   else if (strncasecmp (param, "%hi(", 4) == 0)
    603     {
    604       param += 3;
    605       high = 1;
    606       as_warn (_("Using old style, %%hi(expr), please change to PPC style, expr@h."));
    607     }
    608   else if (strncasecmp (param, "%pic(", 5) == 0)
    609     {
    610       /* Currently we expect %pic(expr) == expr, so do nothing here.
    611 	 i.e. for code loaded at address 0 $toc will be 0.  */
    612       param += 4;
    613     }
    614 
    615   if (*param == '$')
    616     {
    617       /* Symbols can start with $, but if this symbol matches a register
    618 	 name, it's probably a mistake.  The only way to avoid this
    619 	 warning is to rename the symbol.  */
    620       struct spu_insn tmp_insn;
    621       const char *np = get_reg (param, &tmp_insn, arg, 0);
    622 
    623       if (np)
    624 	syntax_error_param = np;
    625     }
    626 
    627   save_ptr = input_line_pointer;
    628   input_line_pointer = (char *) param;
    629   expression (&insn->exp[reloc_i]);
    630   param = input_line_pointer;
    631   input_line_pointer = save_ptr;
    632 
    633   /* Similar to ppc_elf_suffix in tc-ppc.c.  We have so few cases to
    634      handle we do it inlined here. */
    635   if (param[0] == '@' && !ISALNUM (param[2]) && param[2] != '@')
    636     {
    637       if (param[1] == 'h' || param[1] == 'H')
    638 	{
    639 	  high = 1;
    640 	  param += 2;
    641 	}
    642       else if (param[1] == 'l' || param[1] == 'L')
    643 	{
    644 	  low = 1;
    645 	  param += 2;
    646 	}
    647     }
    648 
    649   if (insn->exp[reloc_i].X_op == O_constant)
    650     {
    651       val = insn->exp[reloc_i].X_add_number;
    652 
    653       if (emulate_apuasm)
    654 	{
    655 	  /* Convert the value to a format we expect. */
    656           val <<= arg_encode[arg].rshift;
    657 	  if (arg == A_U7A)
    658 	    val = 173 - val;
    659 	  else if (arg == A_U7B)
    660 	    val = 155 - val;
    661 	}
    662 
    663       if (high)
    664 	val = val >> 16;
    665       else if (low)
    666 	val = val & 0xffff;
    667 
    668       /* Warn about out of range expressions. */
    669       {
    670 	int hi = arg_encode[arg].hi;
    671 	int lo = arg_encode[arg].lo;
    672 	int whi = arg_encode[arg].whi;
    673 	int wlo = arg_encode[arg].wlo;
    674 
    675 	if (hi > lo && (val < lo || val > hi))
    676 	  as_fatal (_("Constant expression %d out of range, [%d, %d]."),
    677 		    val, lo, hi);
    678 	else if (whi > wlo && (val < wlo || val > whi))
    679 	  as_warn (_("Constant expression %d out of range, [%d, %d]."),
    680 		   val, wlo, whi);
    681       }
    682 
    683       if (arg == A_U7A)
    684         val = 173 - val;
    685       else if (arg == A_U7B)
    686         val = 155 - val;
    687 
    688       /* Branch hints have a split encoding.  Do the bottom part. */
    689       if (arg == A_S11 || arg == A_S11I)
    690 	insn->opcode |= ((val >> 2) & 0x7f);
    691 
    692       insn->opcode |= (((val >> arg_encode[arg].rshift)
    693 			& ((1 << arg_encode[arg].size) - 1))
    694 		       << arg_encode[arg].pos);
    695     }
    696   else
    697     {
    698       insn->reloc_arg[reloc_i] = arg;
    699       if (high)
    700 	insn->reloc[reloc_i] = BFD_RELOC_SPU_HI16;
    701       else if (low)
    702 	insn->reloc[reloc_i] = BFD_RELOC_SPU_LO16;
    703       else
    704 	insn->reloc[reloc_i] = arg_encode[arg].reloc;
    705     }
    706 
    707   return param;
    708 }
    709 
    710 const char *
    711 md_atof (int type, char *litP, int *sizeP)
    712 {
    713   return ieee_md_atof (type, litP, sizeP, true);
    714 }
    715 
    716 #ifndef WORKING_DOT_WORD
    717 int md_short_jump_size = 4;
    718 
    719 void
    720 md_create_short_jump (char *ptr,
    721 		      addressT from_addr ATTRIBUTE_UNUSED,
    722 		      addressT to_addr ATTRIBUTE_UNUSED,
    723 		      fragS *frag,
    724 		      symbolS *to_symbol)
    725 {
    726   ptr[0] = (char) 0xc0;
    727   ptr[1] = 0x00;
    728   ptr[2] = 0x00;
    729   ptr[3] = 0x00;
    730   fix_new (frag,
    731 	   ptr - frag->fr_literal,
    732 	   4,
    733 	   to_symbol,
    734 	   (offsetT) 0,
    735 	   0,
    736 	   BFD_RELOC_SPU_PCREL16);
    737 }
    738 
    739 int md_long_jump_size = 4;
    740 
    741 void
    742 md_create_long_jump (char *ptr,
    743 		     addressT from_addr ATTRIBUTE_UNUSED,
    744 		     addressT to_addr ATTRIBUTE_UNUSED,
    745 		     fragS *frag,
    746 		     symbolS *to_symbol)
    747 {
    748   ptr[0] = (char) 0xc0;
    749   ptr[1] = 0x00;
    750   ptr[2] = 0x00;
    751   ptr[3] = 0x00;
    752   fix_new (frag,
    753 	   ptr - frag->fr_literal,
    754 	   4,
    755 	   to_symbol,
    756 	   (offsetT) 0,
    757 	   0,
    758 	   BFD_RELOC_SPU_PCREL16);
    759 }
    760 #endif
    761 
    762 /* Handle .brinfo <priority>,<lrlive>.  */
    763 static void
    764 spu_brinfo (int ignore ATTRIBUTE_UNUSED)
    765 {
    766   addressT priority;
    767   addressT lrlive;
    768 
    769   priority = get_absolute_expression ();
    770   SKIP_WHITESPACE ();
    771 
    772   lrlive = 0;
    773   if (*input_line_pointer == ',')
    774     {
    775       ++input_line_pointer;
    776       lrlive = get_absolute_expression ();
    777     }
    778 
    779   if (priority > 0x1fff)
    780     {
    781       as_bad (_("invalid priority '%lu'"), (unsigned long) priority);
    782       priority = 0;
    783     }
    784 
    785   if (lrlive > 7)
    786     {
    787       as_bad (_("invalid lrlive '%lu'"), (unsigned long) lrlive);
    788       lrlive = 0;
    789     }
    790 
    791   brinfo = (lrlive << 13) | priority;
    792   demand_empty_rest_of_line ();
    793 }
    794 
    795 /* Support @ppu on symbols referenced in .int/.long/.word/.quad.  */
    796 static void
    797 spu_cons (int nbytes)
    798 {
    799   expressionS exp;
    800 
    801   if (is_it_end_of_statement ())
    802     {
    803       demand_empty_rest_of_line ();
    804       return;
    805     }
    806 
    807   do
    808     {
    809       char *save = input_line_pointer;
    810 
    811       /* Use deferred_expression here so that an expression involving
    812 	 a symbol that happens to be defined already as an spu symbol,
    813 	 is not resolved.  */
    814       deferred_expression (&exp);
    815       if ((exp.X_op == O_symbol
    816 	   || exp.X_op == O_constant)
    817 	  && strncasecmp (input_line_pointer, "@ppu", 4) == 0)
    818 	{
    819 	  char *p = frag_more (nbytes);
    820 	  enum bfd_reloc_code_real reloc;
    821 
    822 	  /* Check for identifier@suffix+constant.  */
    823 	  input_line_pointer += 4;
    824 	  if (*input_line_pointer == '-' || *input_line_pointer == '+')
    825 	    {
    826 	      expressionS new_exp;
    827 
    828 	      save = input_line_pointer;
    829 	      expression (&new_exp);
    830 	      if (new_exp.X_op == O_constant)
    831 		exp.X_add_number += new_exp.X_add_number;
    832 	      else
    833 		input_line_pointer = save;
    834 	    }
    835 
    836 	  reloc = nbytes == 4 ? BFD_RELOC_SPU_PPU32 : BFD_RELOC_SPU_PPU64;
    837 	  fix_new_exp (frag_now, p - frag_now->fr_literal, nbytes,
    838 		       &exp, 0, reloc);
    839 	}
    840       else
    841 	{
    842 	  /* Don't use deferred_expression for anything else.
    843 	     deferred_expression won't evaulate dot at the point it is
    844 	     used.  */
    845 	  input_line_pointer = save;
    846 	  expression (&exp);
    847 	  emit_expr (&exp, nbytes);
    848 	}
    849     }
    850   while (*input_line_pointer++ == ',');
    851 
    852   /* Put terminator back into stream.  */
    853   input_line_pointer--;
    854   demand_empty_rest_of_line ();
    855 }
    856 
    857 int
    858 md_estimate_size_before_relax (fragS *fragP ATTRIBUTE_UNUSED,
    859 			       segT segment_type ATTRIBUTE_UNUSED)
    860 {
    861   as_fatal (_("Relaxation should never occur"));
    862   return -1;
    863 }
    864 
    865 /* If while processing a fixup, a reloc really needs to be created,
    866    then it is done here.  */
    867 
    868 arelent *
    869 tc_gen_reloc (asection *seg ATTRIBUTE_UNUSED, fixS *fixp)
    870 {
    871   arelent *reloc;
    872   reloc = XNEW (arelent);
    873   reloc->sym_ptr_ptr = XNEW (asymbol *);
    874   *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
    875   reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
    876   reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
    877   if (reloc->howto == (reloc_howto_type *) NULL)
    878     {
    879       as_bad_where (fixp->fx_file, fixp->fx_line,
    880 		    _("reloc %d not supported by object file format"),
    881 		    (int) fixp->fx_r_type);
    882       free (reloc->sym_ptr_ptr);
    883       free (reloc);
    884       return NULL;
    885     }
    886   reloc->addend = fixp->fx_addnumber;
    887   return reloc;
    888 }
    889 
    890 /* Round up a section's size to the appropriate boundary.  */
    891 
    892 valueT
    893 md_section_align (segT seg, valueT size)
    894 {
    895   int align = bfd_section_alignment (seg);
    896   valueT mask = ((valueT) 1 << align) - 1;
    897 
    898   return (size + mask) & ~mask;
    899 }
    900 
    901 /* Where a PC relative offset is calculated from.  On the spu they
    902    are calculated from the beginning of the branch instruction.  */
    903 
    904 long
    905 md_pcrel_from (fixS *fixp)
    906 {
    907   return fixp->fx_frag->fr_address + fixp->fx_where;
    908 }
    909 
    910 /* Fill in rs_align_code fragments.  */
    911 
    912 void
    913 spu_handle_align (fragS *fragp)
    914 {
    915   static const unsigned char nop_pattern[8] = {
    916     0x40, 0x20, 0x00, 0x00, /* even nop */
    917     0x00, 0x20, 0x00, 0x00, /* odd  nop */
    918   };
    919 
    920   int bytes;
    921   char *p;
    922 
    923   if (fragp->fr_type != rs_align_code)
    924     return;
    925 
    926   bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
    927   p = fragp->fr_literal + fragp->fr_fix;
    928 
    929   if (bytes & 3)
    930     {
    931       int fix = bytes & 3;
    932       memset (p, 0, fix);
    933       p += fix;
    934       bytes -= fix;
    935       fragp->fr_fix += fix;
    936     }
    937   if (bytes & 4)
    938     {
    939       memcpy (p, &nop_pattern[4], 4);
    940       p += 4;
    941       bytes -= 4;
    942       fragp->fr_fix += 4;
    943     }
    944 
    945   memcpy (p, nop_pattern, 8);
    946   fragp->fr_var = 8;
    947 }
    948 
    949 void
    950 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
    951 {
    952   unsigned int res;
    953   unsigned int mask;
    954   valueT val = *valP;
    955   char *place = fixP->fx_where + fixP->fx_frag->fr_literal;
    956 
    957   if (fixP->fx_subsy != (symbolS *) NULL)
    958     {
    959       /* We can't actually support subtracting a symbol.  */
    960       as_bad_subtract (fixP);
    961     }
    962 
    963   if (fixP->fx_addsy != NULL)
    964     {
    965       if (fixP->fx_pcrel)
    966 	{
    967 	  /* Hack around bfd_install_relocation brain damage.  */
    968 	  val += fixP->fx_frag->fr_address + fixP->fx_where;
    969 
    970 	  switch (fixP->fx_r_type)
    971 	    {
    972 	    case BFD_RELOC_32:
    973 	      fixP->fx_r_type = BFD_RELOC_32_PCREL;
    974 	      break;
    975 
    976 	    case BFD_RELOC_SPU_PCREL16:
    977 	    case BFD_RELOC_SPU_PCREL9a:
    978 	    case BFD_RELOC_SPU_PCREL9b:
    979 	    case BFD_RELOC_32_PCREL:
    980 	      break;
    981 
    982 	    default:
    983 	      as_bad_where (fixP->fx_file, fixP->fx_line,
    984 			    _("expression too complex"));
    985 	      break;
    986 	    }
    987 	}
    988     }
    989 
    990   fixP->fx_addnumber = val;
    991 
    992   if (fixP->fx_r_type == BFD_RELOC_SPU_PPU32
    993       || fixP->fx_r_type == BFD_RELOC_SPU_PPU64
    994       || fixP->fx_r_type == BFD_RELOC_SPU_ADD_PIC)
    995     return;
    996 
    997   if (fixP->fx_addsy == NULL && fixP->fx_pcrel == 0)
    998     {
    999       fixP->fx_done = 1;
   1000       res = 0;
   1001       mask = 0;
   1002       if (fixP->tc_fix_data.arg_format > A_P)
   1003 	{
   1004 	  int hi = arg_encode[fixP->tc_fix_data.arg_format].hi;
   1005 	  int lo = arg_encode[fixP->tc_fix_data.arg_format].lo;
   1006 	  if (hi > lo && ((offsetT) val < lo || (offsetT) val > hi))
   1007 	    as_bad_where (fixP->fx_file, fixP->fx_line,
   1008 			  _("Relocation doesn't fit. (relocation value = 0x%lx)"),
   1009 			  (long) val);
   1010 	}
   1011 
   1012       switch (fixP->fx_r_type)
   1013 	{
   1014 	case BFD_RELOC_8:
   1015 	  md_number_to_chars (place, val, 1);
   1016 	  return;
   1017 
   1018 	case BFD_RELOC_16:
   1019 	  md_number_to_chars (place, val, 2);
   1020 	  return;
   1021 
   1022 	case BFD_RELOC_32:
   1023 	case BFD_RELOC_32_PCREL:
   1024 	  md_number_to_chars (place, val, 4);
   1025 	  return;
   1026 
   1027 	case BFD_RELOC_64:
   1028 	  md_number_to_chars (place, val, 8);
   1029 	  return;
   1030 
   1031 	case BFD_RELOC_SPU_IMM7:
   1032 	  res = val << 14;
   1033 	  mask = 0x7f << 14;
   1034 	  break;
   1035 
   1036 	case BFD_RELOC_SPU_IMM8:
   1037 	  res = val << 14;
   1038 	  mask = 0xff << 14;
   1039 	  break;
   1040 
   1041 	case BFD_RELOC_SPU_IMM10:
   1042 	  res = val << 14;
   1043 	  mask = 0x3ff << 14;
   1044 	  break;
   1045 
   1046 	case BFD_RELOC_SPU_IMM10W:
   1047 	  res = val << 10;
   1048 	  mask = 0x3ff0 << 10;
   1049 	  break;
   1050 
   1051 	case BFD_RELOC_SPU_IMM16:
   1052 	  res = val << 7;
   1053 	  mask = 0xffff << 7;
   1054 	  break;
   1055 
   1056 	case BFD_RELOC_SPU_IMM16W:
   1057 	  res = val << 5;
   1058 	  mask = 0x3fffc << 5;
   1059 	  break;
   1060 
   1061 	case BFD_RELOC_SPU_IMM18:
   1062 	  res = val << 7;
   1063 	  mask = 0x3ffff << 7;
   1064 	  break;
   1065 
   1066 	case BFD_RELOC_SPU_PCREL9a:
   1067 	  res = ((val & 0x1fc) >> 2) | ((val & 0x600) << 14);
   1068 	  mask = (0x1fc >> 2) | (0x600 << 14);
   1069 	  break;
   1070 
   1071 	case BFD_RELOC_SPU_PCREL9b:
   1072 	  res = ((val & 0x1fc) >> 2) | ((val & 0x600) << 5);
   1073 	  mask = (0x1fc >> 2) | (0x600 << 5);
   1074 	  break;
   1075 
   1076 	case BFD_RELOC_SPU_PCREL16:
   1077 	  res = val << 5;
   1078 	  mask = 0x3fffc << 5;
   1079 	  break;
   1080 
   1081 	case BFD_RELOC_SPU_HI16:
   1082 	  res = val >> 9;
   1083 	  mask = 0xffff << 7;
   1084 	  break;
   1085 
   1086 	case BFD_RELOC_SPU_LO16:
   1087 	  res = val << 7;
   1088 	  mask = 0xffff << 7;
   1089 	  break;
   1090 
   1091 	default:
   1092 	  as_bad_where (fixP->fx_file, fixP->fx_line,
   1093 			_("reloc %d not supported by object file format"),
   1094 			(int) fixP->fx_r_type);
   1095 	}
   1096 
   1097       res &= mask;
   1098       place[0] = (place[0] & (~mask >> 24)) | ((res >> 24) & 0xff);
   1099       place[1] = (place[1] & (~mask >> 16)) | ((res >> 16) & 0xff);
   1100       place[2] = (place[2] & (~mask >> 8)) | ((res >> 8) & 0xff);
   1101       place[3] = (place[3] & ~mask) | (res & 0xff);
   1102     }
   1103 }
   1104