Searched refs:DumpStat (Results 1 – 1 of 1) sorted by relevance
/art/compiler/driver/ |
D | compiler_driver.cc | 91 static void DumpStat(size_t x, size_t y, const char* str) { in DumpStat() function 119 DumpStat(types_in_dex_cache_, types_not_in_dex_cache_, "types known to be in dex cache"); in Dump() 120 DumpStat(strings_in_dex_cache_, strings_not_in_dex_cache_, "strings known to be in dex cache"); in Dump() 121 DumpStat(resolved_types_, unresolved_types_, "types resolved"); in Dump() 122 DumpStat(resolved_instance_fields_, unresolved_instance_fields_, "instance fields resolved"); in Dump() 123 DumpStat(resolved_local_static_fields_ + resolved_static_fields_, unresolved_static_fields_, in Dump() 125 DumpStat(resolved_local_static_fields_, resolved_static_fields_ + unresolved_static_fields_, in Dump() 127 DumpStat(safe_casts_, not_safe_casts_, "check-casts removed based on type information"); in Dump() 130 DumpStat(type_based_devirtualization_, in Dump() 139 DumpStat(resolved_methods_[i], unresolved_methods_[i], oss.str().c_str()); in Dump() [all …]
|