Home
last modified time | relevance | path

Searched refs:return_reg (Results 1 – 2 of 2) sorted by relevance

/art/compiler/debug/
Delf_debug_frame_writer.h64 auto return_reg = Reg::ArmCore(14); // R14(LR). in WriteCIE() local
65 WriteCIE(is64bit, return_reg, opcodes, buffer); in WriteCIE()
87 auto return_reg = Reg::Arm64Core(30); // R30(LR). in WriteCIE() local
88 WriteCIE(is64bit, return_reg, opcodes, buffer); in WriteCIE()
113 auto return_reg = Reg::X86Core(8); // R8(EIP). in WriteCIE() local
114 WriteCIE(is64bit, return_reg, opcodes, buffer); in WriteCIE()
139 auto return_reg = Reg::X86_64Core(16); // R16(RIP). in WriteCIE() local
140 WriteCIE(is64bit, return_reg, opcodes, buffer); in WriteCIE()
/art/compiler/dex/
Dinline_method_analyser.cc554 int32_t return_reg = return_instruction->VRegA_11x(); in AnalyseConstMethod() local
555 DCHECK_LT(return_reg, code_item->RegistersSize()); in AnalyseConstMethod()
562 if (instruction->VRegA() != return_reg) { in AnalyseConstMethod()
593 uint32_t return_reg = return_instruction->VRegA_11x(); in AnalyseIGetMethod() local
594 DCHECK_LT(return_opcode == Instruction::RETURN_WIDE ? return_reg + 1 : return_reg, in AnalyseIGetMethod()
606 if (dst_reg != return_reg) { in AnalyseIGetMethod()
659 uint32_t return_reg = return_instruction->VRegA_11x(); in AnalyseIPutMethod() local
660 DCHECK_GE(return_reg, arg_start); in AnalyseIPutMethod()
661 DCHECK_LT(return_opcode == Instruction::RETURN_WIDE ? return_reg + 1u : return_reg, in AnalyseIPutMethod()
663 return_arg_plus1 = return_reg - arg_start + 1u; in AnalyseIPutMethod()