Home
last modified time | relevance | path

Searched refs:info_low (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_mips64.cc1664 PcRelativePatchInfo* info_low) { in EmitPcRelativeAddressPlaceholderHigh() argument
1671 if (info_low != nullptr) { in EmitPcRelativeAddressPlaceholderHigh()
1672 DCHECK_EQ(info_low->patch_info_high, info_high); in EmitPcRelativeAddressPlaceholderHigh()
1673 __ Bind(&info_low->label); in EmitPcRelativeAddressPlaceholderHigh()
1680 PcRelativePatchInfo* info_low = NewBootImageIntrinsicPatch(boot_image_reference, info_high); in LoadBootImageAddress() local
1681 EmitPcRelativeAddressPlaceholderHigh(info_high, AT, info_low); in LoadBootImageAddress()
1685 PcRelativePatchInfo* info_low = NewBootImageRelRoPatch(boot_image_reference, info_high); in LoadBootImageAddress() local
1686 EmitPcRelativeAddressPlaceholderHigh(info_high, AT, info_low); in LoadBootImageAddress()
1710 PcRelativePatchInfo* info_low = in AllocateInstanceForIntrinsic() local
1712 EmitPcRelativeAddressPlaceholderHigh(info_high, AT, info_low); in AllocateInstanceForIntrinsic()
[all …]
Dcode_generator_mips.cc1766 PcRelativePatchInfo* info_low = NewBootImageIntrinsicPatch(boot_image_reference, info_high); in LoadBootImageAddress() local
1768 __ Addiu(reg, TMP, /* imm16= */ 0x5678, &info_low->label); in LoadBootImageAddress()
1771 PcRelativePatchInfo* info_low = NewBootImageRelRoPatch(boot_image_reference, info_high); in LoadBootImageAddress() local
1773 __ Lw(reg, reg, /* imm16= */ 0x5678, &info_low->label); in LoadBootImageAddress()
1794 PcRelativePatchInfo* info_low = in AllocateInstanceForIntrinsic() local
1797 __ Addiu(argument, argument, /* imm16= */ 0x5678, &info_low->label); in AllocateInstanceForIntrinsic()
8000 PcRelativePatchInfo* info_low = in GenerateStaticOrDirectCall() local
8004 __ Addiu(temp_reg, TMP, /* imm16= */ 0x5678, &info_low->label); in GenerateStaticOrDirectCall()
8010 PcRelativePatchInfo* info_low = NewBootImageRelRoPatch(boot_image_offset, info_high); in GenerateStaticOrDirectCall() local
8013 __ Lw(temp_reg, TMP, /* imm16= */ 0x5678, &info_low->label); in GenerateStaticOrDirectCall()
[all …]
Dcode_generator_mips64.h615 PcRelativePatchInfo* info_low = nullptr);