Lines Matching refs:worklist
1169 holding the position(s) of uninit PHI operands. WORKLIST
1172 if the new phi is already in the worklist. */
1176 vec<gphi *> *worklist, hash_set<gphi *> *added_to_worklist)
1222 add the phi to the worklist. */
1227 fprintf (dump_file, "[WORKLIST]: Update worklist with phi: ");
1231 worklist->safe_push (as_a<gphi *> (use_stmt));
1243 by the compiler, the fewer false positives the warning is. WORKLIST
1245 a pointer set tracking if the new phi is added to the worklist or not. */
1248 warn_uninitialized_phi (gphi *phi, vec<gphi *> *worklist,
1266 worklist, added_to_worklist);
1269 to WORKLIST. */
1343 vec<gphi *> worklist = vNULL;
1363 /* Initialize worklist */
1379 worklist.safe_push (phi);
1383 fprintf (dump_file, "[WORKLIST]: add to initial list "
1392 while (worklist.length () != 0)
1395 cur_phi = worklist.pop ();
1396 warn_uninitialized_phi (cur_phi, &worklist, &added_to_worklist);
1399 worklist.release ();