Changeset 609 for branches/GNU/src/binutils/opcodes/ia64-opc.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/opcodes/ia64-opc.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 25 25 #include "ia64-asmtab.h" 26 26 #include "ia64-asmtab.c" 27 28 static void get_opc_prefix PARAMS ((const char **, char *)); 29 static short int find_string_ent PARAMS ((const char *)); 30 static short int find_main_ent PARAMS ((short int)); 31 static short int find_completer PARAMS ((short int, short int, const char *)); 32 static ia64_insn apply_completer PARAMS ((ia64_insn, int)); 33 static int extract_op_bits PARAMS ((int, int, int)); 34 static int extract_op PARAMS ((int, int *, unsigned int *)); 35 static int opcode_verify PARAMS ((ia64_insn, int, enum ia64_insn_type)); 36 static int locate_opcode_ent PARAMS ((ia64_insn, enum ia64_insn_type)); 37 static struct ia64_opcode *make_ia64_opcode 38 PARAMS ((ia64_insn, const char *, int, int)); 39 static struct ia64_opcode *ia64_find_matching_opcode 40 PARAMS ((const char *, short int)); 27 41 28 42 const struct ia64_templ_desc ia64_templ_desc[16] = … … 153 167 return -1 if one does not exist. */ 154 168 155 static short 169 static short 156 170 find_completer (main_ent, prev_completer, name) 157 171 short main_ent; … … 320 334 return 0; 321 335 } 322 if (main_table[place].flags 336 if (main_table[place].flags 323 337 & (IA64_OPCODE_F2_EQ_F3 | IA64_OPCODE_LEN_EQ_64MCNT)) 324 338 { … … 490 504 priority = ia64_dis_names[disent].priority; 491 505 492 if (opcode_verify (opcode, place, type) 506 if (opcode_verify (opcode, place, type) 493 507 && priority > found_priority) 494 508 { … … 621 635 abort (); 622 636 } 623 return make_ia64_opcode (insn, name, place, 637 return make_ia64_opcode (insn, name, place, 624 638 completer_table[ci].dependencies); 625 639 } … … 658 672 659 673 do { 660 674 if (suffix[0] == '\0') 661 675 { 662 676 completer = find_completer (place, completer, suffix); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.