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