2 Copyright 1997, 1999, 2000, 2001, 2002, 2003, 2005, 2006
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
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 2, or (at your option)
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.
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
22 /*======================================================================*/
24 * Herein lies the support for dynamic specification of processor
25 * instructions and registers. Mnemonics, values, and formats for each
26 * instruction and register are specified in an ascii file consisting of
27 * table entries. The grammar for the table is defined in the document
28 * "Processor instruction table specification".
30 * Instructions use the gnu assembler syntax, with the addition of
31 * allowing mnemonics for register.
32 * Eg. "func $2,reg3,0x100,symbol ; comment"
35 * reg3 - mnemonic for processor's register defined in table
36 * 0xddd..d - immediate value
37 * symbol - address of label or external symbol
39 * First, itbl_parse reads in the table of register and instruction
40 * names and formats, and builds a list of entries for each
41 * processor/type combination. lex and yacc are used to parse
42 * the entries in the table and call functions defined here to
43 * add each entry to our list.
45 * Then, when assembling or disassembling, these functions are called to
46 * 1) get information on a processor's registers and
47 * 2) assemble/disassemble an instruction.
48 * To assemble(disassemble) an instruction, the function
49 * itbl_assemble(itbl_disassemble) is called to search the list of
50 * instruction entries, and if a match is found, uses the format
51 * described in the instruction entry structure to complete the action.
53 * Eg. Suppose we have a Mips coprocessor "cop3" with data register "d2"
54 * and we want to define function "pig" which takes two operands.
56 * Given the table entries:
57 * "p3 insn pig 0x1:24-21 dreg:20-16 immed:15-0"
59 * and that the instruction encoding for coprocessor pz has encoding:
60 * #define MIPS_ENCODE_COP_NUM(z) ((0x21|(z<<1))<<25)
61 * #define ITBL_ENCODE_PNUM(pnum) MIPS_ENCODE_COP_NUM(pnum)
63 * a structure to describe the instruction might look something like:
64 * struct itbl_entry = {
65 * e_processor processor = e_p3
66 * e_type type = e_insn
70 * struct itbl_range range = 24-21
71 * struct itbl_field *field = {
72 * e_type type = e_dreg
73 * struct itbl_range range = 20-16
74 * struct itbl_field *next = {
75 * e_type type = e_immed
76 * struct itbl_range range = 15-0
77 * struct itbl_field *next = 0
80 * struct itbl_entry *next = 0
83 * And the assembler instructions:
87 * would both assemble to the hex value:
94 #include <itbl-parse.h>
100 #define ASSERT(x) assert(x)
101 #define DBG(x) printf x
108 #define min(a,b) (a<b?a:b)
111 int itbl_have_entries
= 0;
113 /*======================================================================*/
114 /* structures for keeping itbl format entries */
117 int sbit
; /* mask starting bit position */
118 int ebit
; /* mask ending bit position */
122 e_type type
; /* dreg/creg/greg/immed/symb */
123 struct itbl_range range
; /* field's bitfield range within instruction */
124 unsigned long flags
; /* field flags */
125 struct itbl_field
*next
; /* next field in list */
128 /* These structures define the instructions and registers for a processor.
129 * If the type is an instruction, the structure defines the format of an
130 * instruction where the fields are the list of operands.
131 * The flags field below uses the same values as those defined in the
132 * gnu assembler and are machine specific. */
134 e_processor processor
; /* processor number */
135 e_type type
; /* dreg/creg/greg/insn */
136 char *name
; /* mnemionic name for insn/register */
137 unsigned long value
; /* opcode/instruction mask/register number */
138 unsigned long flags
; /* effects of the instruction */
139 struct itbl_range range
; /* bit range within instruction for value */
140 struct itbl_field
*fields
; /* list of operand definitions (if any) */
141 struct itbl_entry
*next
; /* next entry */
144 /* local data and structures */
146 static int itbl_num_opcodes
= 0;
147 /* Array of entries for each processor and entry type */
148 static struct itbl_entry
*entries
[e_nprocs
][e_ntypes
] = {
155 /* local prototypes */
156 static unsigned long build_opcode (struct itbl_entry
*e
);
157 static e_type
get_type (int yytype
);
158 static e_processor
get_processor (int yyproc
);
159 static struct itbl_entry
**get_entries (e_processor processor
,
161 static struct itbl_entry
*find_entry_byname (e_processor processor
,
162 e_type type
, char *name
);
163 static struct itbl_entry
*find_entry_byval (e_processor processor
,
164 e_type type
, unsigned long val
, struct itbl_range
*r
);
165 static struct itbl_entry
*alloc_entry (e_processor processor
,
166 e_type type
, char *name
, unsigned long value
);
167 static unsigned long apply_range (unsigned long value
, struct itbl_range r
);
168 static unsigned long extract_range (unsigned long value
, struct itbl_range r
);
169 static struct itbl_field
*alloc_field (e_type type
, int sbit
,
170 int ebit
, unsigned long flags
);
172 /*======================================================================*/
173 /* Interfaces to the parser */
175 /* Open the table and use lex and yacc to parse the entries.
176 * Return 1 for failure; 0 for success. */
179 itbl_parse (char *insntbl
)
182 extern int yyparse (void);
184 yyin
= fopen (insntbl
, FOPEN_RT
);
187 printf ("Can't open processor instruction specification file \"%s\"\n",
196 itbl_have_entries
= 1;
200 /* Add a register entry */
203 itbl_add_reg (int yyprocessor
, int yytype
, char *regname
,
206 return alloc_entry (get_processor (yyprocessor
), get_type (yytype
), regname
,
207 (unsigned long) regnum
);
210 /* Add an instruction entry */
213 itbl_add_insn (int yyprocessor
, char *name
, unsigned long value
,
214 int sbit
, int ebit
, unsigned long flags
)
216 struct itbl_entry
*e
;
217 e
= alloc_entry (get_processor (yyprocessor
), e_insn
, name
, value
);
220 e
->range
.sbit
= sbit
;
221 e
->range
.ebit
= ebit
;
228 /* Add an operand to an instruction entry */
231 itbl_add_operand (struct itbl_entry
*e
, int yytype
, int sbit
,
232 int ebit
, unsigned long flags
)
234 struct itbl_field
*f
, **last_f
;
237 /* Add to end of fields' list. */
238 f
= alloc_field (get_type (yytype
), sbit
, ebit
, flags
);
243 last_f
= &(*last_f
)->next
;
250 /*======================================================================*/
251 /* Interfaces for assembler and disassembler */
254 static void append_insns_as_macros (void);
256 /* Initialize for gas. */
261 struct itbl_entry
*e
, **es
;
265 if (!itbl_have_entries
)
268 /* Since register names don't have a prefix, put them in the symbol table so
269 they can't be used as symbols. This simplifies argument parsing as
270 we can let gas parse registers for us. */
271 /* Use symbol_create instead of symbol_new so we don't try to
272 output registers into the object file's symbol table. */
274 for (type
= e_regtype0
; type
< e_nregtypes
; type
++)
275 for (procn
= e_p0
; procn
< e_nprocs
; procn
++)
277 es
= get_entries (procn
, type
);
278 for (e
= *es
; e
; e
= e
->next
)
280 symbol_table_insert (symbol_create (e
->name
, reg_section
,
281 e
->value
, &zero_address_frag
));
284 append_insns_as_macros ();
287 /* Append insns to opcodes table and increase number of opcodes
288 * Structure of opcodes table:
292 * const char *args; - string describing the arguments.
293 * unsigned long match; - opcode, or ISA level if pinfo=INSN_MACRO
294 * unsigned long mask; - opcode mask, or macro id if pinfo=INSN_MACRO
295 * unsigned long pinfo; - insn flags, or INSN_MACRO
298 * {"li", "t,i", 0x34000000, 0xffe00000, WR_t },
299 * {"li", "t,I", 0, (int) M_LI, INSN_MACRO },
302 static char *form_args (struct itbl_entry
*e
);
304 append_insns_as_macros (void)
306 struct ITBL_OPCODE_STRUCT
*new_opcodes
, *o
;
307 struct itbl_entry
*e
, **es
;
308 int n
, id
, size
, new_size
, new_num_opcodes
;
310 if (!itbl_have_entries
)
313 if (!itbl_num_opcodes
) /* no new instructions to add! */
317 DBG (("previous num_opcodes=%d\n", ITBL_NUM_OPCODES
));
319 new_num_opcodes
= ITBL_NUM_OPCODES
+ itbl_num_opcodes
;
320 ASSERT (new_num_opcodes
>= itbl_num_opcodes
);
322 size
= sizeof (struct ITBL_OPCODE_STRUCT
) * ITBL_NUM_OPCODES
;
324 DBG (("I get=%d\n", size
/ sizeof (ITBL_OPCODES
[0])));
326 new_size
= sizeof (struct ITBL_OPCODE_STRUCT
) * new_num_opcodes
;
327 ASSERT (new_size
> size
);
329 /* FIXME since ITBL_OPCODES culd be a static table,
330 we can't realloc or delete the old memory. */
331 new_opcodes
= (struct ITBL_OPCODE_STRUCT
*) malloc (new_size
);
334 printf (_("Unable to allocate memory for new instructions\n"));
337 if (size
) /* copy preexisting opcodes table */
338 memcpy (new_opcodes
, ITBL_OPCODES
, size
);
340 /* FIXME! some NUMOPCODES are calculated expressions.
341 These need to be changed before itbls can be supported. */
343 id
= ITBL_NUM_MACROS
; /* begin the next macro id after the last */
344 o
= &new_opcodes
[ITBL_NUM_OPCODES
]; /* append macro to opcodes list */
345 for (n
= e_p0
; n
< e_nprocs
; n
++)
347 es
= get_entries (n
, e_insn
);
348 for (e
= *es
; e
; e
= e
->next
)
350 /* name, args, mask, match, pinfo
351 * {"li", "t,i", 0x34000000, 0xffe00000, WR_t },
352 * {"li", "t,I", 0, (int) M_LI, INSN_MACRO },
353 * Construct args from itbl_fields.
356 o
->args
= strdup (form_args (e
));
357 o
->mask
= apply_range (e
->value
, e
->range
);
358 /* FIXME how to catch during assembly? */
359 /* mask to identify this insn */
360 o
->match
= apply_range (e
->value
, e
->range
);
364 o
->mask
= id
++; /* FIXME how to catch during assembly? */
365 o
->match
= 0; /* for macros, the insn_isa number */
366 o
->pinfo
= INSN_MACRO
;
369 /* Don't add instructions which caused an error */
376 ITBL_OPCODES
= new_opcodes
;
377 ITBL_NUM_OPCODES
= new_num_opcodes
;
380 At this point, we can free the entries, as they should have
381 been added to the assembler's tables.
382 Don't free name though, since name is being used by the new
385 Eventually, we should also free the new opcodes table itself
391 form_args (struct itbl_entry
*e
)
395 struct itbl_field
*f
;
398 for (f
= e
->fields
; f
; f
= f
->next
)
418 c
= 0; /* ignore; unknown field type */
430 #endif /* !STAND_ALONE */
432 /* Get processor's register name from val */
435 itbl_get_reg_val (char *name
, unsigned long *pval
)
440 for (p
= e_p0
; p
< e_nprocs
; p
++)
442 for (t
= e_regtype0
; t
< e_nregtypes
; t
++)
444 if (itbl_get_val (p
, t
, name
, pval
))
452 itbl_get_name (e_processor processor
, e_type type
, unsigned long val
)
454 struct itbl_entry
*r
;
455 /* type depends on instruction passed */
456 r
= find_entry_byval (processor
, type
, val
, 0);
460 return 0; /* error; invalid operand */
463 /* Get processor's register value from name */
466 itbl_get_val (e_processor processor
, e_type type
, char *name
,
469 struct itbl_entry
*r
;
470 /* type depends on instruction passed */
471 r
= find_entry_byname (processor
, type
, name
);
478 /* Assemble instruction "name" with operands "s".
479 * name - name of instruction
481 * returns - long word for assembled instruction */
484 itbl_assemble (char *name
, char *s
)
486 unsigned long opcode
;
487 struct itbl_entry
*e
= NULL
;
488 struct itbl_field
*f
;
493 return 0; /* error! must have an opcode name/expr */
495 /* find entry in list of instructions for all processors */
496 for (processor
= 0; processor
< e_nprocs
; processor
++)
498 e
= find_entry_byname (processor
, e_insn
, name
);
503 return 0; /* opcode not in table; invalid instruction */
504 opcode
= build_opcode (e
);
506 /* parse opcode's args (if any) */
507 for (f
= e
->fields
; f
; f
= f
->next
) /* for each arg, ... */
509 struct itbl_entry
*r
;
512 return 0; /* error - not enough operands */
513 n
= itbl_get_field (&s
);
514 /* n should be in form $n or 0xhhh (are symbol names valid?? */
520 /* Accept either a string name
521 * or '$' followed by the register number */
525 value
= strtol (n
, 0, 10);
526 /* FIXME! could have "0l"... then what?? */
527 if (value
== 0 && *n
!= '0')
528 return 0; /* error; invalid operand */
532 r
= find_entry_byname (e
->processor
, f
->type
, n
);
536 return 0; /* error; invalid operand */
540 /* use assembler's symbol table to find symbol */
541 /* FIXME!! Do we need this?
542 if so, what about relocs??
543 my_getExpression (&imm_expr, s);
544 return 0; /-* error; invalid operand *-/
547 /* If not a symbol, fall thru to IMMED */
549 if (*n
== '0' && *(n
+ 1) == 'x') /* hex begins 0x... */
552 value
= strtol (n
, 0, 16);
553 /* FIXME! could have "0xl"... then what?? */
557 value
= strtol (n
, 0, 10);
558 /* FIXME! could have "0l"... then what?? */
559 if (value
== 0 && *n
!= '0')
560 return 0; /* error; invalid operand */
564 return 0; /* error; invalid field spec */
566 opcode
|= apply_range (value
, f
->range
);
569 return 0; /* error - too many operands */
570 return opcode
; /* done! */
573 /* Disassemble instruction "insn".
575 * s - buffer to hold disassembled instruction
576 * returns - 1 if succeeded; 0 if failed
580 itbl_disassemble (char *s
, unsigned long insn
)
582 e_processor processor
;
583 struct itbl_entry
*e
;
584 struct itbl_field
*f
;
586 if (!ITBL_IS_INSN (insn
))
587 return 0; /* error */
588 processor
= get_processor (ITBL_DECODE_PNUM (insn
));
590 /* find entry in list */
591 e
= find_entry_byval (processor
, e_insn
, insn
, 0);
593 return 0; /* opcode not in table; invalid instruction */
596 /* Parse insn's args (if any). */
597 for (f
= e
->fields
; f
; f
= f
->next
) /* for each arg, ... */
599 struct itbl_entry
*r
;
602 if (f
== e
->fields
) /* First operand is preceded by tab. */
604 else /* ','s separate following operands. */
606 value
= extract_range (insn
, f
->range
);
607 /* n should be in form $n or 0xhhh (are symbol names valid?? */
613 /* Accept either a string name
614 or '$' followed by the register number. */
615 r
= find_entry_byval (e
->processor
, f
->type
, value
, &f
->range
);
619 sprintf (s
, "%s$%lu", s
, value
);
622 /* Use assembler's symbol table to find symbol. */
623 /* FIXME!! Do we need this? If so, what about relocs?? */
624 /* If not a symbol, fall through to IMMED. */
626 sprintf (s
, "%s0x%lx", s
, value
);
629 return 0; /* error; invalid field spec */
632 return 1; /* Done! */
635 /*======================================================================*/
637 * Local functions for manipulating private structures containing
638 * the names and format for the new instructions and registers
639 * for each processor.
642 /* Calculate instruction's opcode and function values from entry */
645 build_opcode (struct itbl_entry
*e
)
647 unsigned long opcode
;
649 opcode
= apply_range (e
->value
, e
->range
);
650 opcode
|= ITBL_ENCODE_PNUM (e
->processor
);
654 /* Calculate absolute value given the relative value and bit position range
655 * within the instruction.
656 * The range is inclusive where 0 is least significant bit.
657 * A range of { 24, 20 } will have a mask of
659 * pos: 1098 7654 3210 9876 5432 1098 7654 3210
660 * bin: 0000 0001 1111 0000 0000 0000 0000 0000
661 * hex: 0 1 f 0 0 0 0 0
666 apply_range (unsigned long rval
, struct itbl_range r
)
670 int len
= MAX_BITPOS
- r
.sbit
;
672 ASSERT (r
.sbit
>= r
.ebit
);
673 ASSERT (MAX_BITPOS
>= r
.sbit
);
674 ASSERT (r
.ebit
>= 0);
676 /* create mask by truncating 1s by shifting */
677 mask
= 0xffffffff << len
;
679 mask
= mask
>> r
.ebit
;
680 mask
= mask
<< r
.ebit
;
682 aval
= (rval
<< r
.ebit
) & mask
;
686 /* Calculate relative value given the absolute value and bit position range
687 * within the instruction. */
690 extract_range (unsigned long aval
, struct itbl_range r
)
694 int len
= MAX_BITPOS
- r
.sbit
;
696 /* create mask by truncating 1s by shifting */
697 mask
= 0xffffffff << len
;
699 mask
= mask
>> r
.ebit
;
700 mask
= mask
<< r
.ebit
;
702 rval
= (aval
& mask
) >> r
.ebit
;
706 /* Extract processor's assembly instruction field name from s;
707 * forms are "n args" "n,args" or "n" */
708 /* Return next argument from string pointer "s" and advance s.
709 * delimiters are " ,()" */
712 itbl_get_field (char **S
)
721 /* FIXME: This is a weird set of delimiters. */
722 len
= strcspn (s
, " \t,()");
723 ASSERT (128 > len
+ 1);
727 s
= 0; /* no more args */
729 s
+= len
+ 1; /* advance to next arg */
735 /* Search entries for a given processor and type
736 * to find one matching the name "n".
737 * Return a pointer to the entry */
739 static struct itbl_entry
*
740 find_entry_byname (e_processor processor
,
741 e_type type
, char *n
)
743 struct itbl_entry
*e
, **es
;
745 es
= get_entries (processor
, type
);
746 for (e
= *es
; e
; e
= e
->next
) /* for each entry, ... */
748 if (!strcmp (e
->name
, n
))
754 /* Search entries for a given processor and type
755 * to find one matching the value "val" for the range "r".
756 * Return a pointer to the entry.
757 * This function is used for disassembling fields of an instruction.
760 static struct itbl_entry
*
761 find_entry_byval (e_processor processor
, e_type type
,
762 unsigned long val
, struct itbl_range
*r
)
764 struct itbl_entry
*e
, **es
;
767 es
= get_entries (processor
, type
);
768 for (e
= *es
; e
; e
= e
->next
) /* for each entry, ... */
770 if (processor
!= e
->processor
)
772 /* For insns, we might not know the range of the opcode,
773 * so a range of 0 will allow this routine to match against
774 * the range of the entry to be compared with.
775 * This could cause ambiguities.
776 * For operands, we get an extracted value and a range.
778 /* if range is 0, mask val against the range of the compared entry. */
779 if (r
== 0) /* if no range passed, must be whole 32-bits
780 * so create 32-bit value from entry's range */
782 eval
= apply_range (e
->value
, e
->range
);
783 val
&= apply_range (0xffffffff, e
->range
);
785 else if ((r
->sbit
== e
->range
.sbit
&& r
->ebit
== e
->range
.ebit
)
786 || (e
->range
.sbit
== 0 && e
->range
.ebit
== 0))
788 eval
= apply_range (e
->value
, *r
);
789 val
= apply_range (val
, *r
);
799 /* Return a pointer to the list of entries for a given processor and type. */
801 static struct itbl_entry
**
802 get_entries (e_processor processor
, e_type type
)
804 return &entries
[processor
][type
];
807 /* Return an integral value for the processor passed from yyparse. */
810 get_processor (int yyproc
)
812 /* translate from yacc's processor to enum */
813 if (yyproc
>= e_p0
&& yyproc
< e_nprocs
)
814 return (e_processor
) yyproc
;
815 return e_invproc
; /* error; invalid processor */
818 /* Return an integral value for the entry type passed from yyparse. */
821 get_type (int yytype
)
825 /* translate from yacc's type to enum */
839 return e_invtype
; /* error; invalid type */
843 /* Allocate and initialize an entry */
845 static struct itbl_entry
*
846 alloc_entry (e_processor processor
, e_type type
,
847 char *name
, unsigned long value
)
849 struct itbl_entry
*e
, **es
;
852 e
= (struct itbl_entry
*) malloc (sizeof (struct itbl_entry
));
855 memset (e
, 0, sizeof (struct itbl_entry
));
856 e
->name
= (char *) malloc (sizeof (strlen (name
)) + 1);
858 strcpy (e
->name
, name
);
859 e
->processor
= processor
;
862 es
= get_entries (e
->processor
, e
->type
);
869 /* Allocate and initialize an entry's field */
871 static struct itbl_field
*
872 alloc_field (e_type type
, int sbit
, int ebit
,
875 struct itbl_field
*f
;
876 f
= (struct itbl_field
*) malloc (sizeof (struct itbl_field
));
879 memset (f
, 0, sizeof (struct itbl_field
));
881 f
->range
.sbit
= sbit
;
882 f
->range
.ebit
= ebit
;
This page took 0.046936 seconds and 4 git commands to generate.