Home
last modified time | relevance | path

Searched refs:macro_hash (Results 1 – 13 of 13) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgodump.c63 static htab_t macro_hash; variable
164 slot = htab_find_slot_with_hash (macro_hash, mhval, hashval, NO_INSERT); in go_define()
208 if (htab_find (macro_hash, &idval) == NULL) in go_define()
445 slot = htab_find_slot_with_hash (macro_hash, mhval, hashval, INSERT); in go_define()
461 htab_clear_slot (macro_hash, slot); in go_define()
478 slot = htab_find_slot (macro_hash, &mhval, NO_INSERT); in go_undef()
480 htab_clear_slot (macro_hash, slot); in go_undef()
1154 slot = htab_find_slot (macro_hash, mhval, INSERT); in go_output_typedef()
1414 htab_traverse_noresize (macro_hash, go_print_macro, NULL); in go_finish()
1455 macro_hash = htab_create (100, macro_hash_hashval, macro_hash_eq, in dump_go_spec_init()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgodump.cc63 static htab_t macro_hash; variable
156 slot = htab_find_slot_with_hash (macro_hash, mhval, hashval, NO_INSERT); in go_define()
200 if (htab_find (macro_hash, &idval) == NULL) in go_define()
437 slot = htab_find_slot_with_hash (macro_hash, mhval, hashval, INSERT); in go_define()
453 htab_clear_slot (macro_hash, slot); in go_define()
470 slot = htab_find_slot (macro_hash, &mhval, NO_INSERT); in go_undef()
472 htab_clear_slot (macro_hash, slot); in go_undef()
1126 slot = htab_find_slot (macro_hash, mhval, INSERT); in go_output_typedef()
1400 htab_traverse_noresize (macro_hash, go_print_macro, NULL); in go_finish()
1441 macro_hash = htab_create (100, macro_hash_hashval, macro_hash_eq, in dump_go_spec_init()
H A DChangeLog-20116155 (go_define): Use macro_hash_value to store values in macro_hash.
6162 (go_finish): Traverse macro_hash with go_print_macro.
6163 (dump_go_spec_init): Update macro_hash creation for macro_hash_value.
/netbsd-src/external/gpl3/binutils/dist/gas/
H A Dmacro.c47 htab_t macro_hash; variable
75 macro_hash = htab_create_alloc (16, hash_string_tuple, eq_string_tuple, in macro_init()
83 htab_delete (macro_hash); in macro_end()
717 if (str_hash_insert (macro_hash, macro->name, macro, 0) != NULL) in define_macro()
1261 macro = str_hash_find (macro_hash, copy); in check_macro()
1299 macro = str_hash_find (macro_hash, copy); in delete_macro()
1301 str_hash_delete (macro_hash, copy); in delete_macro()
H A Dmacro.h82 extern htab_t macro_hash;
H A DChangeLog-20052421 * macro.c (macro_hash): Remove static.
2422 * macro.h (macro_hash): Provide an external declaration.
2464 * macro.c (macro_hash): Make static.
H A Dread.c2766 str_hash_delete (macro_hash, macro->name); in s_macro()
/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A Dmacro.c47 struct htab *macro_hash; variable
79 macro_hash = htab_create_alloc (16, hash_macro_entry, eq_macro_entry, in macro_init()
750 if (htab_insert (macro_hash, elt, 0) != NULL) in define_macro()
1299 macro = macro_entry_find (macro_hash, copy); in check_macro()
1340 slot = htab_find_slot (macro_hash, &needle, NO_INSERT); in delete_macro()
1344 htab_clear_slot (macro_hash, slot); in delete_macro()
H A Dmacro.h82 extern struct htab *macro_hash;
H A DChangeLog-20052421 * macro.c (macro_hash): Remove static.
2422 * macro.h (macro_hash): Provide an external declaration.
2464 * macro.c (macro_hash): Make static.
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-iq2000.c109 extern struct htab *macro_hash;
293 htab_insert (macro_hash, macro_entry_alloc (namestr, macro), 1); in iq2000_add_macro()
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-iq2000.c109 extern struct htab *macro_hash;
282 str_hash_insert (macro_hash, macro->name, macro, 1); in iq2000_add_macro()
/netbsd-src/external/gpl3/binutils/dist/
H A DChangeLog.git74985 This tidies memory allocated for entries in macro_hash. Freeing the
75002 (macro_init): Use it when creating macro_hash.
75006 from macro_hash on attempt to redefined pseudo-op.
114005 gas: free sy_hash, macro_hash and po_hash
114040 macro.c: use string hash from hash.h for macro_hash