• Home
  • Raw
  • Download

Lines Matching refs:inline_caches

74       std::vector<ProfileInlineCache> inline_caches =  in SetupProfile()  local
79 ASSERT_TRUE(AddMethod(info, dex_file2, i, inline_caches, flags)); in SetupProfile()
80 ASSERT_TRUE(AddMethod(info, dex_file1, i, inline_caches, flags)); in SetupProfile()
82 ASSERT_TRUE(AddMethod(info, dex_file1, i, inline_caches, flags)); in SetupProfile()
83 ASSERT_TRUE(AddMethod(info, dex_file2, i, inline_caches, flags)); in SetupProfile()
116 std::vector<ProfileInlineCache> inline_caches; in GetTestInlineCaches() local
120 inline_caches.push_back(ProfileInlineCache(dex_pc, /* missing_types*/ false, types)); in GetTestInlineCaches()
128 inline_caches.push_back(ProfileInlineCache(dex_pc, /* missing_types*/ false, types)); in GetTestInlineCaches()
139 inline_caches.push_back(ProfileInlineCache(dex_pc, /* missing_types*/ false, types)); in GetTestInlineCaches()
144 inline_caches.push_back(ProfileInlineCache(dex_pc, /* missing_types*/ true, types)); in GetTestInlineCaches()
147 return inline_caches; in GetTestInlineCaches()
349 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in AssertInlineCaches() local
350 ASSERT_TRUE(inline_caches->find(dex_pc) != inline_caches->end()); in AssertInlineCaches()
354 inline_caches->find(dex_pc)->second, in AssertInlineCaches()
367 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness.GetInlineCacheMap(); in AssertInlineCaches() local
368 ASSERT_EQ(inline_caches->size(), 1u); in AssertInlineCaches()
372 inline_caches->begin()->second, in AssertInlineCaches()
1579 const ProfileCompilationInfo::InlineCacheMap* inline_caches = hotness_super.GetInlineCacheMap(); in TEST_F() local
1580 ASSERT_EQ(inline_caches->size(), 1u); in TEST_F()
1581 const ProfileCompilationInfo::DexPcData& dex_pc_data = inline_caches->begin()->second; in TEST_F()