Home
last modified time | relevance | path

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

/art/runtime/quick/
Dinline_method_analyser.cc147 Instruction::Code return_opcode = return_instruction->Opcode(); in AnalyseReturnMethod() local
151 DCHECK_LT((return_opcode == Instruction::RETURN_WIDE) ? reg + 1 : reg, in AnalyseReturnMethod()
159 data->is_wide = (return_opcode == Instruction::RETURN_WIDE) ? 1u : 0u; in AnalyseReturnMethod()
160 data->is_object = (return_opcode == Instruction::RETURN_OBJECT) ? 1u : 0u; in AnalyseReturnMethod()
171 Instruction::Code return_opcode = return_instruction->Opcode(); in AnalyseConstMethod() local
172 if (return_opcode != Instruction::RETURN && in AnalyseConstMethod()
173 return_opcode != Instruction::RETURN_OBJECT) { in AnalyseConstMethod()
188 if (return_opcode == Instruction::RETURN_OBJECT && const_value != 0) { in AnalyseConstMethod()
207 Instruction::Code return_opcode = return_instruction->Opcode(); in AnalyseIGetMethod() local
208 if (!(return_opcode == Instruction::RETURN_WIDE && opcode == Instruction::IGET_WIDE) && in AnalyseIGetMethod()
[all …]