HomeSort by: relevance | last modified time | path
    Searched defs:cur_expr (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
postreload-gcse.cc 374 struct expr *cur_expr, **slot;
390 cur_expr = (struct expr *) obstack_alloc (&expr_obstack,
392 cur_expr->expr = x;
393 cur_expr->hash = hash;
394 cur_expr->avail_occr = NULL;
396 slot = expr_table->find_slot_with_hash (cur_expr, hash, INSERT);
401 *slot = cur_expr;
406 cur_expr->bitmap_index = expr_table->elements () - 1;
412 obstack_free (&expr_obstack, cur_expr);
413 cur_expr = *slot
369 struct expr *cur_expr, **slot; local
    [all...]
cprop.cc 182 struct cprop_expr *cur_expr, *last_expr = NULL;
187 for (cur_expr = table->table[hash]; cur_expr;
188 cur_expr = cur_expr->next_same_hash)
190 if (dest == cur_expr->dest
191 && src == cur_expr->src)
196 last_expr = cur_expr;
201 cur_expr = GOBNEW (struct cprop_expr);
205 table->table[hash] = cur_expr;
180 struct cprop_expr *cur_expr, *last_expr = NULL; local
    [all...]
gcse.cc 1134 struct gcse_expr *cur_expr, *last_expr = NULL;
1145 cur_expr = table->table[hash];
1148 while (cur_expr && (found = expr_equiv_p (cur_expr->expr, x)) == 0)
1152 last_expr = cur_expr;
1153 cur_expr = cur_expr->next_same_hash;
1158 cur_expr = GOBNEW (struct gcse_expr);
1162 table->table[hash] = cur_expr;
1165 last_expr->next_same_hash = cur_expr;
1125 struct gcse_expr *cur_expr, *last_expr = NULL; local
    [all...]
sel-sched-ir.cc 2161 expr_t cur_expr;
2164 FOR_EACH_EXPR (cur_expr, i, set)
2166 if (cur_expr == expr)
2168 if (vinsn_equal_p (EXPR_VINSN (cur_expr), EXPR_VINSN (expr)))
2169 return cur_expr;
2147 expr_t cur_expr; local
sel-sched.cc 4230 expr_t cur_expr, min_spec_expr = NULL;
4241 cur_expr = find_expr_for_ready (i, true);
4243 if (EXPR_SPEC (cur_expr) > EXPR_SPEC (min_spec_expr))
5684 expr_t cur_expr;
5702 CUR_EXPR is in new AV_SET. */
5703 FOR_EACH_EXPR (cur_expr, i, old_av_set)
5706 EXPR_VINSN (cur_expr));
5712 != EXPR_TARGET_AVAILABLE (cur_expr))
5716 vinsn_vec_add (&vec_bookkeeping_blocked_vinsns, cur_expr);
4219 expr_t cur_expr, min_spec_expr = NULL; local
5672 expr_t cur_expr; local
  /src/external/gpl3/gcc.old/dist/gcc/
cprop.cc 182 struct cprop_expr *cur_expr, *last_expr = NULL;
187 for (cur_expr = table->table[hash]; cur_expr;
188 cur_expr = cur_expr->next_same_hash)
190 if (dest == cur_expr->dest
191 && src == cur_expr->src)
196 last_expr = cur_expr;
201 cur_expr = GOBNEW (struct cprop_expr);
205 table->table[hash] = cur_expr;
180 struct cprop_expr *cur_expr, *last_expr = NULL; local
    [all...]
postreload-gcse.cc 374 struct expr *cur_expr, **slot;
390 cur_expr = (struct expr *) obstack_alloc (&expr_obstack,
392 cur_expr->expr = x;
393 cur_expr->hash = hash;
394 cur_expr->avail_occr = NULL;
396 slot = expr_table->find_slot_with_hash (cur_expr, hash, INSERT);
401 *slot = cur_expr;
406 cur_expr->bitmap_index = expr_table->elements () - 1;
412 obstack_free (&expr_obstack, cur_expr);
413 cur_expr = *slot
369 struct expr *cur_expr, **slot; local
    [all...]
gcse.cc 1133 struct gcse_expr *cur_expr, *last_expr = NULL;
1144 cur_expr = table->table[hash];
1147 while (cur_expr && (found = expr_equiv_p (cur_expr->expr, x)) == 0)
1151 last_expr = cur_expr;
1152 cur_expr = cur_expr->next_same_hash;
1157 cur_expr = GOBNEW (struct gcse_expr);
1161 table->table[hash] = cur_expr;
1164 last_expr->next_same_hash = cur_expr;
1124 struct gcse_expr *cur_expr, *last_expr = NULL; local
    [all...]
sel-sched-ir.cc 2161 expr_t cur_expr;
2164 FOR_EACH_EXPR (cur_expr, i, set)
2166 if (cur_expr == expr)
2168 if (vinsn_equal_p (EXPR_VINSN (cur_expr), EXPR_VINSN (expr)))
2169 return cur_expr;
2147 expr_t cur_expr; local
sel-sched.cc 4222 expr_t cur_expr, min_spec_expr = NULL;
4233 cur_expr = find_expr_for_ready (i, true);
4235 if (EXPR_SPEC (cur_expr) > EXPR_SPEC (min_spec_expr))
5676 expr_t cur_expr;
5694 CUR_EXPR is in new AV_SET. */
5695 FOR_EACH_EXPR (cur_expr, i, old_av_set)
5698 EXPR_VINSN (cur_expr));
5704 != EXPR_TARGET_AVAILABLE (cur_expr))
5708 vinsn_vec_add (&vec_bookkeeping_blocked_vinsns, cur_expr);
4211 expr_t cur_expr, min_spec_expr = NULL; local
5664 expr_t cur_expr; local

Completed in 103 milliseconds