Home
last modified time | relevance | path

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

/NextBSD/contrib/gcc/
HDpostreload-gcse.c327 struct expr *cur_expr, **slot; in insert_expr_in_table() local
343 cur_expr = (struct expr *) obstack_alloc (&expr_obstack, in insert_expr_in_table()
345 cur_expr->expr = x; in insert_expr_in_table()
346 cur_expr->hash = hash; in insert_expr_in_table()
347 cur_expr->avail_occr = NULL; in insert_expr_in_table()
349 slot = (struct expr **) htab_find_slot_with_hash (expr_table, cur_expr, in insert_expr_in_table()
354 *slot = cur_expr; in insert_expr_in_table()
359 obstack_free (&expr_obstack, cur_expr); in insert_expr_in_table()
360 cur_expr = *slot; in insert_expr_in_table()
364 avail_occr = cur_expr->avail_occr; in insert_expr_in_table()
[all …]
HDgcse.c1492 struct expr *cur_expr, *last_expr = NULL; in insert_expr_in_table() local
1503 cur_expr = table->table[hash]; in insert_expr_in_table()
1506 while (cur_expr && 0 == (found = expr_equiv_p (cur_expr->expr, x))) in insert_expr_in_table()
1510 last_expr = cur_expr; in insert_expr_in_table()
1511 cur_expr = cur_expr->next_same_hash; in insert_expr_in_table()
1516 cur_expr = gcse_alloc (sizeof (struct expr)); in insert_expr_in_table()
1520 table->table[hash] = cur_expr; in insert_expr_in_table()
1523 last_expr->next_same_hash = cur_expr; in insert_expr_in_table()
1526 cur_expr->expr = x; in insert_expr_in_table()
1527 cur_expr->bitmap_index = table->n_elems++; in insert_expr_in_table()
[all …]