Searched refs:profile_key (Results 1 – 3 of 3) sorted by relevance
/art/runtime/jit/ |
D | profile_compilation_info.cc | 296 if (dex_data.profile_key.size() >= kMaxDexFileKeyLength) { in Save() 306 dex_data.profile_key.size() + in Save() 311 DCHECK_LE(dex_data.profile_key.size(), std::numeric_limits<uint16_t>::max()); in Save() 313 AddUintToBuffer(&buffer, static_cast<uint16_t>(dex_data.profile_key.size())); in Save() 318 AddStringToBuffer(&buffer, dex_data.profile_key); in Save() 423 const std::string& profile_key, in GetOrAddDexFileData() argument 425 const auto& profile_index_it = profile_key_map_.FindOrAdd(profile_key, profile_key_map_.size()); in GetOrAddDexFileData() 432 profile_key_map_.erase(profile_key); in GetOrAddDexFileData() 440 &arena_, profile_key, checksum, profile_index); in GetOrAddDexFileData() 446 DCHECK_EQ(profile_key, result->profile_key); in GetOrAddDexFileData() [all …]
|
D | profile_compilation_info.h | 308 profile_key(key), in DexFileData() 317 std::string profile_key; member 339 DexFileData* GetOrAddDexFileData(const std::string& profile_key, uint32_t checksum); 372 const DexFileData* FindDexData(const std::string& profile_key) const;
|
/art/dex2oat/ |
D | dex2oat_test.cc | 610 std::string profile_key = ProfileCompilationInfo::GetProfileDexFileKey(dex_location); in GenerateProfile() local 612 info.AddClassIndex(profile_key, checksum, dex::TypeIndex(1 + i)); in GenerateProfile()
|