Home
last modified time | relevance | path

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

/art/runtime/quick/
Dinline_method_analyser.cc36 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET), "iget type");
37 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_WIDE), "iget_wide type");
38 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_OBJECT),
40 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_BOOLEAN),
42 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_BYTE), "iget_byte type");
43 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_CHAR), "iget_char type");
44 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_SHORT), "iget_short type");
203 DCHECK(IsInstructionIGet(opcode)); in AnalyseIGetMethod()
Dinline_method_analyser.h162 static constexpr bool IsInstructionIGet(Instruction::Code opcode) { in IsInstructionIGet() function
/art/runtime/
Ddex_instruction_utils.h82 constexpr bool IsInstructionIGet(Instruction::Code code) { in IsInstructionIGet() function
147 DCHECK(IsInstructionIGet(opcode)); in IGetMemAccessType()