Lines Matching defs:taken

124       // the uncommon_trap path will always be taken.
766 // of the branch being taken and set the "cnt" field. Returns a -1.0
780 // get taken and not taken values
781 int taken = data->as_JumpData()->taken();
788 taken = method()->scale_count(taken);
793 if (taken < 0 || not_taken < 0 || taken + not_taken < 40) {
795 C->log()->elem("branch target_bci='%d' taken='%d' not_taken='%d'", iter().get_dest(), taken, not_taken);
801 float sum = taken + not_taken;
811 if( !taken )
816 prob = (float)taken / (float)(taken + not_taken);
833 C->log()->elem("branch target_bci='%d' taken='%d' not_taken='%d' cnt='%g' prob='%s'",
834 iter().get_dest(), taken, not_taken, cnt, prob_str);
854 // assume its a loop-back edge. Make it a likely taken branch.
867 if (data->as_BranchData()->taken() +
882 // branch_prediction() when the profile reports a zero taken count.
895 // if a path is never taken, its controlling comparison is
909 // A never-taken null check looks like CmpP/BoolTest::eq.
979 tty->print_cr("Never-taken edge stops compilation at bci %d",bci());
982 // We need to mark this branch as taken so that if we recompile we will
1061 tty->print_cr("Never-taken edge stops compilation at bci %d",bci());
1064 // We need to mark this branch as taken so that if we recompile we will
1088 // prob is NOT updated here; it remains the probability of the taken
1132 // Branch is taken:
1155 // Branch not taken.
1193 // show btest == BoolTest::eq along the non-taken branch.
1196 // show btest == BoolTest::ne along the non-taken branch.
1199 // We need to mark this branch as taken so that if we recompile we will
1211 (is_fallthrough ? "taken always" : "taken never"));
2217 int taken = ((ciJumpData*)data)->taken();
2218 taken = method()->scale_count(taken);
2219 target_block->set_count(taken);