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

  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-threadupdate.cc 774 profile_count path_in_count = profile_count::zero (); local
778 path_in_count: total count of incoming edges that flow into the
813 path_in_count += ein->count ();
828 if (total_count < path_in_count)
829 path_in_count = total_count;
830 profile_probability onpath_scale = path_in_count.probability_in (total_count);
833 how much of the path_in_count will flow out of the duplicated threading
835 the same as path_in_count, although we will handle incoming profile
838 In the joiner case, we need to estimate how much of the path_in_count
851 profile_count path_out_count = path_in_count;
1020 profile_count path_in_count = profile_count::zero (); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-threadupdate.cc 799 profile_count path_in_count = profile_count::zero (); local
803 path_in_count: total count of incoming edges that flow into the
838 path_in_count += ein->count ();
853 if (total_count < path_in_count)
854 path_in_count = total_count;
855 profile_probability onpath_scale = path_in_count.probability_in (total_count);
858 how much of the path_in_count will flow out of the duplicated threading
860 the same as path_in_count, although we will handle incoming profile
863 In the joiner case, we need to estimate how much of the path_in_count
876 profile_count path_out_count = path_in_count;
1045 profile_count path_in_count = profile_count::zero (); local
    [all...]

Completed in 20 milliseconds