Searched refs:op_hash (Results 1 - 25 of 42) sorted by relevance

12

/netbsd-current/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-dlx.c46 static struct hash_control *op_hash = NULL; variable in typeref:struct:hash_control
284 op_hash = hash_new ();
291 retval = hash_insert (op_hash, name, (void *) &machine_opcodes[i]);
697 if ((insn = (struct machine_opcode *) hash_find (op_hash, str)) == NULL)
H A Dtc-spu.c60 static struct hash_control *op_hash = NULL; variable in typeref:struct:hash_control
118 op_hash = hash_new ();
126 retval = hash_insert (op_hash, spu_opcodes[i].mnemonic,
290 if ((format = (struct spu_opcode *) hash_find (op_hash, op)) == NULL)
H A Dtc-tilepro.c132 static struct hash_control *op_hash; variable in typeref:struct:hash_control
248 /* Initialize op_hash hash table. */
249 op_hash = hash_new ();
252 const char *hash_err = hash_insert (op_hash, op->name, (void *)op);
1131 op = hash_find(op_hash, str);
H A Dtc-tilegx.c183 static struct hash_control *op_hash; variable in typeref:struct:hash_control
312 /* Initialize op_hash hash table. */
313 op_hash = hash_new ();
316 const char *hash_err = hash_insert (op_hash, op->name, (void *)op);
1246 op = hash_find(op_hash, str);
H A Dtc-vax.c771 static struct hash_control *op_hash;
982 I decode votstrs into a hash table at op_hash (which I create).
997 op_hash = hash_new ();
1000 retval = hash_insert (op_hash, vP->vot_name, (void *) &vP->vot_detail);
1004 retval = hash_insert (op_hash, vP->vot_name, (void *) &vP->vot_detail);
2075 vwP = (struct vot_wot *) hash_find (op_hash, instring);
766 static struct hash_control *op_hash; variable in typeref:struct:hash_control
H A Dtc-sparc.c129 static struct hash_control *op_hash; variable in typeref:struct:hash_control
962 op_hash = hash_new ();
967 retval = hash_insert (op_hash, name, (void *) &sparc_opcodes[i]);
994 insn = (struct sparc_opcode *) hash_find (op_hash, name);
1003 retval = hash_insert (op_hash, native_op_table[i].name,
1773 insn = (struct sparc_opcode *) hash_find (op_hash, str);
H A Dtc-tic30.c102 static struct hash_control *op_hash; variable in typeref:struct:hash_control
116 op_hash = hash_new ();
123 hash_err = hash_insert (op_hash, current_optab->name,
1469 op = (insn_template *) hash_find (op_hash, token_start);
H A Dtc-cris.c163 static struct hash_control *op_hash = NULL; variable in typeref:struct:hash_control
1193 op_hash = hash_new ();
1194 if (op_hash == NULL)
1226 hashret = hash_insert (op_hash, name, (void *) &cris_opcodes[i]);
1561 instruction = (struct cris_opcode *) hash_find (op_hash, insn_text);
H A Dtc-m68k.c1321 static struct hash_control *op_hash; variable in typeref:struct:hash_control
1377 opcode = (const struct m68k_incant *) hash_find (op_hash, instring);
4529 op_hash = hash_new ();
4573 retval = hash_insert (op_hash, ins->name, (char *) hack);
4582 void *val = hash_find (op_hash, name);
4586 retval = hash_insert (op_hash, alias, val);
4621 void *val = hash_find (op_hash, name);
4625 retval = hash_jam (op_hash, alias, val);
4682 hash_insert (op_hash,
/netbsd-current/external/gpl3/binutils/dist/gas/config/
H A Dtc-dlx.c46 static htab_t op_hash = NULL; variable
282 op_hash = str_htab_create ();
288 if (str_hash_insert (op_hash, name, &machine_opcodes[i], 0) != NULL)
685 if ((insn = (struct machine_opcode *) str_hash_find (op_hash, str)) == NULL)
H A Dtc-spu.c60 static htab_t op_hash = NULL; variable
115 op_hash = str_htab_create ();
120 str_hash_insert (op_hash, spu_opcodes[i].mnemonic, &spu_opcodes[i], 0);
278 if ((format = (struct spu_opcode *) str_hash_find (op_hash, op)) == NULL)
H A Dtc-tilegx.c183 static htab_t op_hash; variable
312 /* Initialize op_hash hash table. */
313 op_hash = str_htab_create ();
315 if (str_hash_insert (op_hash, op->name, op, 0) != NULL)
1242 op = str_hash_find (op_hash, str);
H A Dtc-tilepro.c132 static htab_t op_hash; variable
248 /* Initialize op_hash hash table. */
249 op_hash = str_htab_create ();
251 if (str_hash_insert (op_hash, op->name, op, 0) != NULL)
1124 op = str_hash_find (op_hash, str);
H A Dtc-vax.c771 static htab_t op_hash;
982 I decode votstrs into a hash table at op_hash (which I create).
996 op_hash = str_htab_create ();
999 if (str_hash_insert (op_hash, vP->vot_name, &vP->vot_detail, 0) != NULL)
1004 if (str_hash_insert (op_hash, vP->vot_name, &vP->vot_detail, 0) != NULL)
2000 vwP = (struct vot_wot *) str_hash_find (op_hash, instring);
766 static htab_t op_hash; variable
H A Dtc-sparc.c129 static htab_t op_hash; variable
961 op_hash = str_htab_create ();
966 if (str_hash_insert (op_hash, name, &sparc_opcodes[i], 0) != NULL)
991 insn = (struct sparc_opcode *) str_hash_find (op_hash, name);
998 else if (str_hash_insert (op_hash, native_op_table[i].name, insn, 0))
1764 insn = (struct sparc_opcode *) str_hash_find (op_hash, str);
H A Dtc-tic30.c102 static htab_t op_hash; variable
114 op_hash = str_htab_create ();
120 if (str_hash_insert (op_hash, current_optab->name, current_optab, 0))
1447 op = (insn_template *) str_hash_find (op_hash, token_start);
H A Dtc-m68k.c1307 static htab_t op_hash; variable
1363 opcode = (const struct m68k_incant *) str_hash_find (op_hash, instring);
4514 op_hash = str_htab_create ();
4558 if (str_hash_insert (op_hash, ins->name, hack, 0) != NULL)
4566 void *val = (void *) str_hash_find (op_hash, name);
4570 if (str_hash_insert (op_hash, alias, val, 0) != NULL)
4604 void *val = (void *) str_hash_find (op_hash, name);
4608 str_hash_insert (op_hash, alias, val, 1);
4663 str_hash_insert (op_hash,
/netbsd-current/external/gpl3/gdb.old/dist/gas/config/
H A Dtc-dlx.c46 static htab_t op_hash = NULL; variable
282 op_hash = str_htab_create ();
288 if (str_hash_insert (op_hash, name, &machine_opcodes[i], 0) != NULL)
685 if ((insn = (struct machine_opcode *) str_hash_find (op_hash, str)) == NULL)
H A Dtc-spu.c60 static htab_t op_hash = NULL; variable
115 op_hash = str_htab_create ();
120 str_hash_insert (op_hash, spu_opcodes[i].mnemonic, &spu_opcodes[i], 0);
278 if ((format = (struct spu_opcode *) str_hash_find (op_hash, op)) == NULL)
H A Dtc-tilegx.c183 static htab_t op_hash; variable
312 /* Initialize op_hash hash table. */
313 op_hash = str_htab_create ();
315 if (str_hash_insert (op_hash, op->name, op, 0) != NULL)
1242 op = str_hash_find (op_hash, str);
H A Dtc-tilepro.c132 static htab_t op_hash; variable
248 /* Initialize op_hash hash table. */
249 op_hash = str_htab_create ();
251 if (str_hash_insert (op_hash, op->name, op, 0) != NULL)
1124 op = str_hash_find (op_hash, str);
H A Dtc-vax.c744 static htab_t op_hash;
955 I decode votstrs into a hash table at op_hash (which I create).
969 op_hash = str_htab_create ();
972 if (str_hash_insert (op_hash, vP->vot_name, &vP->vot_detail, 0) != NULL)
977 if (str_hash_insert (op_hash, vP->vot_name, &vP->vot_detail, 0) != NULL)
1898 vwP = (struct vot_wot *) str_hash_find (op_hash, instring);
739 static htab_t op_hash; variable
H A Dtc-sparc.c129 static htab_t op_hash; variable
961 op_hash = str_htab_create ();
966 if (str_hash_insert (op_hash, name, &sparc_opcodes[i], 0) != NULL)
991 insn = (struct sparc_opcode *) str_hash_find (op_hash, name);
998 else if (str_hash_insert (op_hash, native_op_table[i].name, insn, 0))
1764 insn = (struct sparc_opcode *) str_hash_find (op_hash, str);
H A Dtc-tic30.c102 static htab_t op_hash; variable
114 op_hash = str_htab_create ();
120 if (str_hash_insert (op_hash, current_optab->name, current_optab, 0))
1447 op = (insn_template *) str_hash_find (op_hash, token_start);
H A Dtc-m68k.c1323 static htab_t op_hash; variable
1379 opcode = (const struct m68k_incant *) str_hash_find (op_hash, instring);
4530 op_hash = str_htab_create ();
4574 if (str_hash_insert (op_hash, ins->name, hack, 0) != NULL)
4582 void *val = (void *) str_hash_find (op_hash, name);
4586 if (str_hash_insert (op_hash, alias, val, 0) != NULL)
4620 void *val = (void *) str_hash_find (op_hash, name);
4624 str_hash_insert (op_hash, alias, val, 1);
4679 str_hash_insert (op_hash,

Completed in 404 milliseconds

12