Home
last modified time | relevance | path

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

/openbsd-src/gnu/gcc/gcc/
H A Dpostreload-gcse.c329 struct expr *cur_expr, **slot; in insert_expr_in_table() local
345 cur_expr = (struct expr *) obstack_alloc (&expr_obstack, in insert_expr_in_table()
347 cur_expr->expr = x; in insert_expr_in_table()
348 cur_expr->hash = hash; in insert_expr_in_table()
349 cur_expr->avail_occr = NULL; in insert_expr_in_table()
351 slot = (struct expr **) htab_find_slot_with_hash (expr_table, cur_expr, in insert_expr_in_table()
356 *slot = cur_expr; in insert_expr_in_table()
361 obstack_free (&expr_obstack, cur_expr); in insert_expr_in_table()
362 cur_expr = *slot; in insert_expr_in_table()
366 avail_occr = cur_expr->avail_occr; in insert_expr_in_table()
[all …]
H A Dgcse.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 …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dgcse.c1955 struct expr *cur_expr, *last_expr = NULL; local
1967 cur_expr = table->table[hash];
1970 while (cur_expr && 0 == (found = expr_equiv_p (cur_expr->expr, x)))
1974 last_expr = cur_expr;
1975 cur_expr = cur_expr->next_same_hash;
1980 cur_expr = (struct expr *) gcse_alloc (sizeof (struct expr));
1984 table->table[hash] = cur_expr;
1987 last_expr->next_same_hash = cur_expr;
1990 cur_expr->expr = x;
1991 cur_expr->bitmap_index = table->n_elems++;
[all …]