Searched refs:expr_hash_table (Results 1 – 3 of 3) sorted by relevance
/openbsd-src/gnu/usr.bin/gcc/gcc/ |
H A D | gcse.c | 382 static struct hash_table expr_hash_table; variable 3056 compute_ae_gen (expr_hash_table) in compute_ae_gen() argument 3057 struct hash_table *expr_hash_table; in compute_ae_gen() 3067 for (i = 0; i < expr_hash_table->size; i++) 3068 for (expr = expr_hash_table->table[i]; expr != 0; expr = expr->next_same_hash) 3139 compute_ae_kill (ae_gen, ae_kill, expr_hash_table) in compute_ae_kill() argument 3141 struct hash_table *expr_hash_table; 3148 for (i = 0; i < expr_hash_table->size; i++) 3149 for (expr = expr_hash_table->table[i]; expr; expr = expr->next_same_hash) 3604 && ((expr = lookup_expr (src, &expr_hash_table)) != NULL) in classic_gcse() [all …]
|
H A D | ChangeLog | 17183 (expr_hash_table, set_hash_table): Type changed to ...
|
/openbsd-src/gnu/gcc/gcc/ |
H A D | gcse.c | 359 static struct hash_table expr_hash_table; variable 3819 compute_local_properties (transp, comp, antloc, &expr_hash_table); in compute_pre_data() 3823 trapping_expr = sbitmap_alloc (expr_hash_table.n_elems); in compute_pre_data() 3825 for (ui = 0; ui < expr_hash_table.size; ui++) in compute_pre_data() 3828 for (e = expr_hash_table.table[ui]; e != NULL; e = e->next_same_hash) in compute_pre_data() 3859 edge_list = pre_edge_lcm (expr_hash_table.n_elems, transp, comp, antloc, in compute_pre_data() 4125 inserted = sbitmap_vector_alloc (num_edges, expr_hash_table.n_elems); in pre_edge_insert() 4137 for (j = indx; insert && j < (int) expr_hash_table.n_elems; j++, insert >>= 1) in pre_edge_insert() 4321 for (i = 0; i < expr_hash_table.size; i++) in pre_insert_copies() 4322 for (expr = expr_hash_table.table[i]; expr != NULL; expr = expr->next_same_hash) in pre_insert_copies() [all …]
|