Searched defs:load_string (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dsharpening.cc156 void HSharpening::ProcessLoadString(HLoadString* load_string) { argument
157 DCHECK_EQ(load_string->GetLoadKind(), HLoadString::LoadKind::kDexCacheViaMethod);
158 DCHECK(!load_string->IsInDexCache());
160 const DexFile& dex_file = load_string->GetDexFile();
161 uint32_t string_index = load_string->GetStringIndex();
228 load_string->MarkInDexCache();
236 load_string->SetLoadKindWithStringReference(load_kind, dex_file, string_index);
241 load_string->SetLoadKindWithAddress(load_kind, address);
247 load_string->SetLoadKindWithDexCacheReference(load_kind, dex_file, element_index);
H A Dcode_generator_x86.cc4452 void CodeGeneratorX86::RecordStringPatch(HLoadString* load_string) { argument
4453 string_patches_.emplace_back(load_string->GetDexFile(), load_string->GetStringIndex());
H A Dcode_generator_x86_64.cc884 void CodeGeneratorX86_64::RecordStringPatch(HLoadString* load_string) { argument
885 string_patches_.emplace_back(load_string->GetDexFile(), load_string->GetStringIndex());

Completed in 104 milliseconds