Searched defs:stats (Results 1 - 4 of 4) sorted by relevance

/art/compiler/dex/
H A Dmir_analysis.cc852 void MIRGraph::AnalyzeBlock(BasicBlock* bb, MethodStats* stats) { argument
899 stats->dex_instructions += loop_scale_factor;
903 stats->branch_ops += loop_scale_factor;
906 stats->math_ops += loop_scale_factor;
910 stats->fp_ops += loop_scale_factor;
913 stats->array_ops += loop_scale_factor;
916 stats->heavyweight_ops += loop_scale_factor;
919 stats->has_switch = true;
929 stats->has_computational_loop = true;
933 bool MIRGraph::ComputeSkipCompilation(MethodStats* stats, boo argument
1060 MethodStats stats; local
[all...]
H A Dmir_optimization.cc478 /* Collect stats on number of checks removed */
804 Checkstats* stats = local
806 checkstats_ = stats;
811 if (stats->null_checks > 0) {
812 float eliminated = static_cast<float>(stats->null_checks_eliminated);
813 float checks = static_cast<float>(stats->null_checks);
815 << stats->null_checks_eliminated << " of " << stats->null_checks << " -> "
818 if (stats->range_checks > 0) {
819 float eliminated = static_cast<float>(stats
[all...]
/art/runtime/
H A Druntime.cc1061 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1069 // TODO: wouldn't it make more sense to clear _all_ threads' stats?
1074 RuntimeStats* stats; local
1076 stats = GetStats();
1078 stats = Thread::Current()->GetStats();
1083 return stats->allocated_objects;
1085 return stats->allocated_bytes;
1087 return stats->freed_objects;
1089 return stats->freed_bytes;
1091 return stats
[all...]
H A Dutils.cc960 std::string stats; local
961 if (!ReadFileToString(StringPrintf("/proc/self/task/%d/stat", tid), &stats)) {
965 stats = stats.substr(stats.find(')') + 2);
968 Split(stats, ' ', fields);

Completed in 123 milliseconds