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.h60 auto return_reg = Reg::ArmCore(14); // R14(LR). in WriteCIE() local
61 WriteCIE(is64bit, return_reg, opcodes, format, buffer); in WriteCIE()
83 auto return_reg = Reg::Arm64Core(30); // R30(LR). in WriteCIE() local
84 WriteCIE(is64bit, return_reg, opcodes, format, buffer); in WriteCIE()
107 auto return_reg = Reg::MipsCore(31); // R31(RA). in WriteCIE() local
108 WriteCIE(is64bit, return_reg, opcodes, format, buffer); in WriteCIE()
133 auto return_reg = Reg::X86Core(8); // R8(EIP). in WriteCIE() local
134 WriteCIE(is64bit, return_reg, opcodes, format, buffer); in WriteCIE()
159 auto return_reg = Reg::X86_64Core(16); // R16(RIP). in WriteCIE() local
160 WriteCIE(is64bit, return_reg, opcodes, format, buffer); in WriteCIE()
/art/compiler/dex/
Dinline_method_analyser.cc550 int32_t return_reg = return_instruction->VRegA_11x(); in AnalyseConstMethod() local
551 DCHECK_LT(return_reg, code_item->registers_size_); in AnalyseConstMethod()
558 if (instruction->VRegA() != return_reg) { in AnalyseConstMethod()
589 uint32_t return_reg = return_instruction->VRegA_11x(); in AnalyseIGetMethod() local
590 DCHECK_LT(return_opcode == Instruction::RETURN_WIDE ? return_reg + 1 : return_reg, in AnalyseIGetMethod()
602 if (dst_reg != return_reg) { in AnalyseIGetMethod()
655 uint32_t return_reg = return_instruction->VRegA_11x(); in AnalyseIPutMethod() local
656 DCHECK_GE(return_reg, arg_start); in AnalyseIPutMethod()
657 DCHECK_LT(return_opcode == Instruction::RETURN_WIDE ? return_reg + 1u : return_reg, in AnalyseIPutMethod()
659 return_arg_plus1 = return_reg - arg_start + 1u; in AnalyseIPutMethod()