Home | History | Annotate | Download | only in dex

Lines Matching refs:checks

478 /* Collect stats on number of checks removed */
617 /* Eliminate unnecessary null checks for a basic block. */
813 float checks = static_cast<float>(stats->null_checks);
814 LOG(INFO) << "Null Checks: " << PrettyMethod(cu_->method_idx, *cu_->dex_file) << " "
816 << (eliminated/checks) * 100.0 << "%";
820 float checks = static_cast<float>(stats->range_checks);
821 LOG(INFO) << "Range Checks: " << PrettyMethod(cu_->method_idx, *cu_->dex_file) << " "
823 << (eliminated/checks) * 100.0 << "%";