Home
last modified time | relevance | path

Searched refs:expr_table (Results 1 – 2 of 2) sorted by relevance

/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dpostreload-gcse.c148 static hash_table<expr_hasher> *expr_table; variable
297 expr_table = new hash_table<expr_hasher> (MAX (i / 4, 13)); in alloc_mem()
333 delete expr_table; in free_mem() local
334 expr_table = NULL; in free_mem()
388 slot = expr_table->find_slot_with_hash (cur_expr, hash, INSERT); in insert_expr_in_table()
398 cur_expr->bitmap_index = expr_table->elements () - 1; in insert_expr_in_table()
463 slot = expr_table->find_slot_with_hash (tmp_expr, hash, INSERT); in lookup_expr_in_table()
504 (long) expr_table->size (), in dump_hash_table()
505 (long) expr_table->elements (), in dump_hash_table()
506 expr_table->collisions ()); in dump_hash_table()
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dpostreload-gcse.c94 static htab_t expr_table; variable
240 expr_table = htab_create (MAX (i / 4, 13), in alloc_mem()
268 htab_delete (expr_table); in free_mem()
349 slot = (struct expr **) htab_find_slot_with_hash (expr_table, cur_expr, in insert_expr_in_table()
418 slot = (struct expr **) htab_find_slot_with_hash (expr_table, tmp_expr, in lookup_expr_in_table()
461 (long) htab_size (expr_table), in dump_hash_table()
462 (long) htab_elements (expr_table), in dump_hash_table()
463 htab_collisions (expr_table)); in dump_hash_table()
464 if (htab_elements (expr_table) > 0) in dump_hash_table()
467 htab_traverse (expr_table, dump_hash_table_entry, file); in dump_hash_table()
[all …]