Home
last modified time | relevance | path

Searched refs:boot_image_reference (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_x86.h472 uint32_t boot_image_reference,
Dcode_generator_x86_64.h475 void LoadBootImageAddress(CpuRegister reg, uint32_t boot_image_reference);
Dcode_generator_arm_vixl.h638 void LoadBootImageAddress(vixl::aarch32::Register reg, uint32_t boot_image_reference);
Dcode_generator_arm64.h781 void LoadBootImageAddress(vixl::aarch64::Register reg, uint32_t boot_image_reference);
Dcode_generator_arm64.cc4776 uint32_t boot_image_reference) { in LoadBootImageAddress() argument
4779 vixl::aarch64::Label* adrp_label = NewBootImageIntrinsicPatch(boot_image_reference); in LoadBootImageAddress()
4782 vixl::aarch64::Label* add_label = NewBootImageIntrinsicPatch(boot_image_reference, adrp_label); in LoadBootImageAddress()
4786 vixl::aarch64::Label* adrp_label = NewBootImageRelRoPatch(boot_image_reference); in LoadBootImageAddress()
4789 vixl::aarch64::Label* ldr_label = NewBootImageRelRoPatch(boot_image_reference, adrp_label); in LoadBootImageAddress()
4795 const uint8_t* address = heap->GetBootImageSpaces()[0]->Begin() + boot_image_reference; in LoadBootImageAddress()
Dcode_generator_x86_64.cc1179 void CodeGeneratorX86_64::LoadBootImageAddress(CpuRegister reg, uint32_t boot_image_reference) { in LoadBootImageAddress() argument
1183 RecordBootImageIntrinsicPatch(boot_image_reference); in LoadBootImageAddress()
1187 RecordBootImageRelRoPatch(boot_image_reference); in LoadBootImageAddress()
1192 const uint8_t* address = heap->GetBootImageSpaces()[0]->Begin() + boot_image_reference; in LoadBootImageAddress()
Dcode_generator_x86.cc5225 uint32_t boot_image_reference, in LoadBootImageAddress() argument
5234 RecordBootImageIntrinsicPatch(method_address, boot_image_reference); in LoadBootImageAddress()
5242 RecordBootImageRelRoPatch(method_address, boot_image_reference); in LoadBootImageAddress()
5247 const uint8_t* address = heap->GetBootImageSpaces()[0]->Begin() + boot_image_reference; in LoadBootImageAddress()
Dcode_generator_arm_vixl.cc9328 uint32_t boot_image_reference) { in LoadBootImageAddress() argument
9331 NewBootImageIntrinsicPatch(boot_image_reference); in LoadBootImageAddress()
9335 NewBootImageRelRoPatch(boot_image_reference); in LoadBootImageAddress()
9343 reinterpret_cast<uintptr_t>(heap->GetBootImageSpaces()[0]->Begin() + boot_image_reference); in LoadBootImageAddress()