Home | History | Annotate | Download | only in gcc

Lines Matching refs:store_bb

10143       basic_block store_bb, join_bb;
10161 store_bb = create_empty_bb (bb);
10162 add_bb_to_loop (store_bb, bb_loop);
10164 efalse = make_edge (bb, store_bb, EDGE_FALSE_VALUE);
10165 /* Put STORE_BB to likely part. */
10167 store_bb->count = efalse->count ();
10168 make_single_succ_edge (store_bb, join_bb, EDGE_FALLTHRU);
10170 set_immediate_dominator (CDI_DOMINATORS, store_bb, bb);
10174 store_bb->index);
10192 add_phi_arg (phi, new_vdef, EDGE_SUCC (store_bb, 0), UNKNOWN_LOCATION);
10194 /* Put all masked stores with the same mask to STORE_BB if possible. */
10200 /* Move masked store to STORE_BB. */
10206 gsi_to = gsi_start_bb (store_bb);
10209 gsi_to = gsi_start_bb (store_bb);
10253 /* Check that LHS does not have uses outside of STORE_BB. */
10261 if (gimple_bb (use_stmt) != store_bb)
10274 /* Can move STMT1 to STORE_BB. */
10282 /* Put other masked stores with the same mask to STORE_BB. */