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

/freebsd-10.0-release/contrib/gcc/
H A Dpostreload-gcse.c334 struct expr *cur_expr, **slot;
350 cur_expr = (struct expr *) obstack_alloc (&expr_obstack,
352 cur_expr->expr = x;
353 cur_expr->hash = hash;
354 cur_expr->avail_occr = NULL;
356 slot = (struct expr **) htab_find_slot_with_hash (expr_table, cur_expr,
361 *slot = cur_expr;
366 obstack_free (&expr_obstack, cur_expr);
367 cur_expr = *slot;
371 avail_occr = cur_expr
329 struct expr *cur_expr, **slot; local
[all...]
H A Dgcse.c1501 struct expr *cur_expr, *last_expr = NULL;
1512 cur_expr = table->table[hash];
1515 while (cur_expr && 0 == (found = expr_equiv_p (cur_expr->expr, x)))
1519 last_expr = cur_expr;
1520 cur_expr = cur_expr->next_same_hash;
1525 cur_expr = gcse_alloc (sizeof (struct expr));
1529 table->table[hash] = cur_expr;
1532 last_expr->next_same_hash = cur_expr;
1492 struct expr *cur_expr, *last_expr = NULL; local
1593 struct expr *cur_expr, *last_expr = NULL; local
[all...]

Completed in 70 milliseconds