Searched refs:load_string (Results 1 – 14 of 14) sorted by relevance
/aosp12/art/compiler/optimizing/ |
H A D | pc_relative_fixups_x86.cc | 90 void VisitLoadString(HLoadString* load_string) override { in VisitLoadString() argument 91 if (load_string->HasPcRelativeLoadKind()) { in VisitLoadString() 92 HX86ComputeBaseMethodAddress* method_address = GetPCRelativeBasePointer(load_string); in VisitLoadString() 93 load_string->AddSpecialInput(method_address); in VisitLoadString()
|
H A D | sharpening.cc | 360 HLoadString* load_string, in ProcessLoadString() argument 364 DCHECK_EQ(load_string->GetLoadKind(), HLoadString::LoadKind::kRuntimeCall); in ProcessLoadString() 366 const DexFile& dex_file = load_string->GetDexFile(); in ProcessLoadString() 367 dex::StringIndex string_index = load_string->GetStringIndex(); in ProcessLoadString() 443 load_string->SetString(handles->NewHandle(string)); in ProcessLoadString() 449 load_string->SetLoadKind(load_kind); in ProcessLoadString()
|
H A D | sharpening.h | 52 static void ProcessLoadString(HLoadString* load_string,
|
H A D | code_generator_x86_64.h | 467 void RecordBootImageStringPatch(HLoadString* load_string); 468 Label* NewStringBssEntryPatch(HLoadString* load_string);
|
H A D | code_generator_x86.h | 491 void RecordBootImageStringPatch(HLoadString* load_string); 492 Label* NewStringBssEntryPatch(HLoadString* load_string);
|
H A D | graph_visualizer.cc | 437 void VisitLoadString(HLoadString* load_string) override { in VisitLoadString() argument 438 StartAttributeStream("load_kind") << load_string->GetLoadKind(); in VisitLoadString()
|
H A D | code_generator.cc | 923 uint32_t CodeGenerator::GetBootImageOffset(HLoadString* load_string) NO_THREAD_SAFETY_ANALYSIS { in GetBootImageOffset() argument 924 DCHECK_EQ(load_string->GetLoadKind(), HLoadString::LoadKind::kBootImageRelRo); in GetBootImageOffset() 925 ObjPtr<mirror::String> string = load_string->GetString().Get(); in GetBootImageOffset()
|
H A D | instruction_simplifier.cc | 2482 HLoadString* load_string = invoke->InputAt(0)->AsLoadString(); in SimplifyStringIndexOf() local 2483 const DexFile& dex_file = load_string->GetDexFile(); in SimplifyStringIndexOf() 2486 dex_file.StringDataAndUtf16LengthByIdx(load_string->GetStringIndex(), &utf16_length); in SimplifyStringIndexOf()
|
H A D | code_generator.h | 637 static uint32_t GetBootImageOffset(HLoadString* load_string);
|
H A D | instruction_builder.cc | 2363 HLoadString* load_string = in BuildLoadString() local 2365 HSharpening::ProcessLoadString(load_string, in BuildLoadString() 2369 AppendInstruction(load_string); in BuildLoadString()
|
H A D | code_generator_x86.cc | 5462 void CodeGeneratorX86::RecordBootImageStringPatch(HLoadString* load_string) { in RecordBootImageStringPatch() argument 5464 load_string->InputAt(0)->AsX86ComputeBaseMethodAddress(); in RecordBootImageStringPatch() 5466 method_address, &load_string->GetDexFile(), load_string->GetStringIndex().index_); in RecordBootImageStringPatch() 5470 Label* CodeGeneratorX86::NewStringBssEntryPatch(HLoadString* load_string) { in NewStringBssEntryPatch() argument 5472 load_string->InputAt(0)->AsX86ComputeBaseMethodAddress(); in NewStringBssEntryPatch() 5474 method_address, &load_string->GetDexFile(), load_string->GetStringIndex().index_); in NewStringBssEntryPatch()
|
H A D | code_generator_x86_64.cc | 1224 void CodeGeneratorX86_64::RecordBootImageStringPatch(HLoadString* load_string) { in RecordBootImageStringPatch() argument 1226 &load_string->GetDexFile(), load_string->GetStringIndex().index_); in RecordBootImageStringPatch() 1230 Label* CodeGeneratorX86_64::NewStringBssEntryPatch(HLoadString* load_string) { in NewStringBssEntryPatch() argument 1232 &load_string->GetDexFile(), load_string->GetStringIndex().index_); in NewStringBssEntryPatch()
|
H A D | intrinsics_arm64.cc | 1700 HLoadString* load_string = candidate->AsLoadString(); in GetConstString() local 1701 const DexFile& dex_file = load_string->GetDexFile(); in GetConstString() 1702 return dex_file.StringDataAndUtf16LengthByIdx(load_string->GetStringIndex(), utf16_length); in GetConstString()
|
H A D | intrinsics_arm_vixl.cc | 885 HLoadString* load_string = candidate->AsLoadString(); in GetConstString() local 886 const DexFile& dex_file = load_string->GetDexFile(); in GetConstString() 887 return dex_file.StringDataAndUtf16LengthByIdx(load_string->GetStringIndex(), utf16_length); in GetConstString()
|