HomeSort by: relevance | last modified time | path
    Searched defs:use_stmt (Results 1 - 25 of 122) sorted by relevancy

1 2 3 4 5

  /src/external/gpl3/gcc/dist/gcc/
gimple-match-head.cc 101 if (USE_STMT(ptr) && !is_gimple_debug (USE_STMT (ptr)))
220 gimple *use_stmt = USE_STMT (use_p); local
221 if (!is_gimple_assign (use_stmt)
222 || gimple_assign_rhs_code (use_stmt) != TRUNC_MOD_EXPR
223 || !operand_equal_p (gimple_assign_rhs2 (use_stmt), divisor, 0))
gimple-isel.cc 218 gimple *use_stmt; local
219 FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, op0)
221 gassign *assign = dyn_cast<gassign *> (use_stmt);
422 if (is_gimple_debug (USE_STMT (use_p)))
425 if (gimple_bb (USE_STMT (use_p)) == bb
426 && is_gimple_assign (USE_STMT (use_p))
427 && gimple_assign_rhs1_ptr (USE_STMT (use_p)) == use_p->use
428 && gimple_assign_rhs_code (USE_STMT (use_p)) == COND_EXPR)
429 cond_exprs.safe_push (as_a <gassign *> (USE_STMT (use_p)));
gimple-loop-jam.cc 252 gimple *use_stmt = USE_STMT (use_p); local
253 if (!is_gimple_debug (use_stmt)
254 && flow_bb_inside_loop_p (outer, gimple_bb (use_stmt)))
gimple-ssa-split-paths.cc 306 gimple *stmt = USE_STMT (use_p);
345 gimple *use_stmt = USE_STMT (use2_p); local
346 if (is_gimple_debug (use_stmt))
348 basic_block use_bb = gimple_bb (use_stmt);
352 if (gcond *cond = dyn_cast <gcond *> (use_stmt))
383 if (is_gimple_debug (USE_STMT (use_p)))
385 if (gimple_bb (USE_STMT (use_p)) == bb)
sese.cc 109 gimple *use_stmt; local
111 FOR_EACH_IMM_USE_STMT (use_stmt, use_iter, name)
113 if (! is_gimple_debug (use_stmt)
114 || bb_in_sese_p (gimple_bb (use_stmt), region->region))
116 stmts.safe_push (use_stmt);
tree-ssa-phiprop.cc 108 gimple *use_stmt; local
115 FOR_EACH_IMM_USE_STMT (use_stmt, ui2, vuse)
118 if ((gimple_vdef (use_stmt) != NULL_TREE
119 || gimple_code (use_stmt) == GIMPLE_PHI)
120 && !dominated_by_p (CDI_DOMINATORS, gimple_bb (use_stmt), bb))
131 BB with the virtual operands from USE_STMT. */
134 phiprop_insert_phi (basic_block bb, gphi *phi, gimple *use_stmt,
142 gcc_assert (is_gimple_assign (use_stmt)
143 && gimple_assign_rhs_code (use_stmt) == MEM_REF);
147 res = gimple_assign_lhs (use_stmt);
282 gimple *use_stmt; local
    [all...]
gimple-ssa-isolate-paths.cc 266 Return TRUE if USE_STMT uses NAME in a way where a 0 or NULL value results
274 stmt_uses_name_in_undefined_way (gimple *use_stmt, tree name, location_t loc)
282 return is_divmod_with_given_divisor (use_stmt, name);
289 = infer_nonnull_range_by_dereference (use_stmt, name);
292 || infer_nonnull_range_by_attribute (use_stmt, name))
312 /* Return TRUE if USE_STMT uses 0 or NULL in a context which results in
634 gimple *use_stmt; local
638 FOR_EACH_IMM_USE_STMT (use_stmt, iter, lhs)
640 greturn *return_stmt = dyn_cast <greturn *> (use_stmt);
649 args_loc_t &argsloc = locmap.get_or_insert (use_stmt);
761 gimple *use_stmt; local
    [all...]
tree-ssa-sink.cc 117 if (is_gimple_debug (USE_STMT (use_p)))
120 firstuse = USE_STMT (use_p);
122 if (firstuse != USE_STMT (use_p))
144 gimple *usestmt = USE_STMT (use_p);
349 gimple *use_stmt = USE_STMT (use_p); local
352 if ((gimple_has_lhs (use_stmt)
354 gimple_get_lhs (use_stmt), 0))
355 || stmt_kills_ref_p (use_stmt, gimple_get_lhs (stmt)))
357 /* If use_stmt is or might be a nop assignment then USE_STM
    [all...]
tree-ssa-ter.cc 401 gimple *use_stmt; local
409 if (!single_imm_use (def, &use_p, &use_stmt))
413 if (gimple_bb (use_stmt) != gimple_bb (stmt))
420 if (gphi *phi = dyn_cast <gphi *> (use_stmt))
424 locus2 = gimple_location (use_stmt);
vtable-verify.cc 579 gimple *stmt2 = USE_STMT (use_p);
759 gimple *use_stmt; local
760 FOR_EACH_IMM_USE_STMT (use_stmt, iterator, lhs)
763 if (use_stmt == call_stmt)
767 update_stmt (use_stmt);
tree-call-cdce.cc 1067 gimple *use_stmt;
1069 FOR_EACH_IMM_USE_STMT (use_stmt, iterator, bi_newcall_lhs)
1070 if (use_stmt != new_phi)
1064 gimple *use_stmt; local
tree-cfgcleanup.cc 1467 gimple *use_stmt; local
1475 if (!single_imm_use (result, &imm_use, &use_stmt)
1476 || gimple_code (use_stmt) != GIMPLE_PHI
1477 || gimple_bb (use_stmt) != dest
1478 || gimple_phi_arg_def (use_stmt, dest_idx) != result)
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-isel.cc 173 gimple *use_stmt; local
174 FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, op0)
176 gassign *assign = dyn_cast<gassign *> (use_stmt);
gimple-loop-jam.cc 251 gimple *use_stmt = USE_STMT (use_p); local
252 if (!is_gimple_debug (use_stmt)
253 && flow_bb_inside_loop_p (outer, gimple_bb (use_stmt)))
gimple-ssa-evrp-analyze.cc 134 gimple *use_stmt = USE_STMT (use_p), *use_stmt2; local
135 if (use_stmt == stmt
136 || is_gimple_debug (use_stmt)
137 || (gimple_bb (use_stmt) != stmt_bb
139 gimple_bb (use_stmt), stmt_bb)))
141 while (use_stmt != stmt
142 && is_gimple_assign (use_stmt)
143 && TREE_CODE (gimple_assign_lhs (use_stmt)) == SSA_NAME
144 && single_imm_use (gimple_assign_lhs (use_stmt),
    [all...]
gimple-ssa-split-paths.cc 307 gimple *stmt = USE_STMT (use_p);
346 gimple *use_stmt = USE_STMT (use2_p); local
347 if (is_gimple_debug (use_stmt))
349 basic_block use_bb = gimple_bb (use_stmt);
353 if (gcond *cond = dyn_cast <gcond *> (use_stmt))
384 if (is_gimple_debug (USE_STMT (use_p)))
386 if (gimple_bb (USE_STMT (use_p)) == bb)
sese.cc 109 gimple *use_stmt; local
111 FOR_EACH_IMM_USE_STMT (use_stmt, use_iter, name)
113 if (! is_gimple_debug (use_stmt)
114 || bb_in_sese_p (gimple_bb (use_stmt), region->region))
116 stmts.safe_push (use_stmt);
tree-ssa-phiprop.cc 107 gimple *use_stmt; local
114 FOR_EACH_IMM_USE_STMT (use_stmt, ui2, vuse)
117 if ((gimple_vdef (use_stmt) != NULL_TREE
118 || gimple_code (use_stmt) == GIMPLE_PHI)
119 && !dominated_by_p (CDI_DOMINATORS, gimple_bb (use_stmt), bb))
130 BB with the virtual operands from USE_STMT. */
133 phiprop_insert_phi (basic_block bb, gphi *phi, gimple *use_stmt,
141 gcc_assert (is_gimple_assign (use_stmt)
142 && gimple_assign_rhs_code (use_stmt) == MEM_REF);
146 res = gimple_assign_lhs (use_stmt);
266 gimple *use_stmt; local
    [all...]
gimple-match-head.cc 1186 if (USE_STMT(ptr) && !is_gimple_debug (USE_STMT (ptr)))
1305 gimple *use_stmt = USE_STMT (use_p); local
1306 if (!is_gimple_assign (use_stmt)
1307 || gimple_assign_rhs_code (use_stmt) != TRUNC_MOD_EXPR
1308 || !operand_equal_p (gimple_assign_rhs2 (use_stmt), divisor, 0))
gimple-ssa-isolate-paths.cc 266 Return TRUE if USE_STMT uses NAME in a way where a 0 or NULL value results
274 stmt_uses_name_in_undefined_way (gimple *use_stmt, tree name, location_t loc)
282 return is_divmod_with_given_divisor (use_stmt, name);
289 = infer_nonnull_range_by_dereference (use_stmt, name);
292 || infer_nonnull_range_by_attribute (use_stmt, name))
312 /* Return TRUE if USE_STMT uses 0 or NULL in a context which results in
634 gimple *use_stmt; local
638 FOR_EACH_IMM_USE_STMT (use_stmt, iter, lhs)
640 greturn *return_stmt = dyn_cast <greturn *> (use_stmt);
649 args_loc_t &argsloc = locmap.get_or_insert (use_stmt);
760 gimple *use_stmt; local
    [all...]
tree-ssa-sink.cc 116 if (is_gimple_debug (USE_STMT (use_p)))
119 firstuse = USE_STMT (use_p);
121 if (firstuse != USE_STMT (use_p))
143 gimple *usestmt = USE_STMT (use_p);
329 gimple *use_stmt = USE_STMT (use_p); local
332 if ((gimple_has_lhs (use_stmt)
334 gimple_get_lhs (use_stmt), 0))
335 || stmt_kills_ref_p (use_stmt, gimple_get_lhs (stmt)))
337 /* If use_stmt is or might be a nop assignment then USE_STM
388 gimple *use_stmt = USE_STMT (use_p); local
    [all...]
tree-ssa-ter.cc 401 gimple *use_stmt; local
409 if (!single_imm_use (def, &use_p, &use_stmt))
413 if (gimple_bb (use_stmt) != gimple_bb (stmt))
420 if (gphi *phi = dyn_cast <gphi *> (use_stmt))
424 locus2 = gimple_location (use_stmt);
vtable-verify.cc 579 gimple *stmt2 = USE_STMT (use_p);
767 gimple *use_stmt; local
768 FOR_EACH_IMM_USE_STMT (use_stmt, iterator, lhs)
771 if (use_stmt == call_stmt)
775 update_stmt (use_stmt);
  /src/external/gpl3/gcc/dist/gcc/analyzer/
state-purge.cc 325 if (USE_STMT (use_p))
327 const gimple *use_stmt = USE_STMT (use_p); local
331 pp_gimple_stmt_1 (&pp, use_stmt, 0, (dump_flags_t)0);
335 if (is_gimple_debug (use_stmt))
345 = map.get_sg ().get_supernode_for_stmt (use_stmt);
349 if (use_stmt->code == GIMPLE_PHI)
356 if (phi == use_stmt)
381 function_point point = before_use_stmt (map, use_stmt);
388 if (use_stmt == snode->get_last_stmt ()
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
state-purge.cc 329 if (USE_STMT (use_p))
331 const gimple *use_stmt = USE_STMT (use_p); local
335 pp_gimple_stmt_1 (&pp, use_stmt, 0, (dump_flags_t)0);
340 = map.get_sg ().get_supernode_for_stmt (use_stmt);
344 if (use_stmt->code == GIMPLE_PHI)
351 if (phi == use_stmt)
376 function_point point = before_use_stmt (map, use_stmt);
383 if (use_stmt == snode->get_last_stmt ())
440 /* Get the function_point representing immediately before USE_STMT
    [all...]

Completed in 54 milliseconds

1 2 3 4 5