Home
last modified time | relevance | path

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

/aosp12/art/compiler/dex/
H A Dinline_method_analyser.cc399 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET), "iget type");
400 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_WIDE), "iget_wide type");
401 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_OBJECT),
403 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_BOOLEAN),
405 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_BYTE), "iget_byte type");
406 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_CHAR), "iget_char type");
407 static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_SHORT), "iget_short type");
582 DCHECK(IsInstructionIGet(opcode)); in AnalyseIGetMethod()
H A Dinline_method_analyser.h106 static constexpr bool IsInstructionIGet(Instruction::Code opcode) { in IsInstructionIGet() function
/aosp12/art/libdexfile/dex/
H A Ddex_instruction_utils.h87 constexpr bool IsInstructionIGet(Instruction::Code code) { in IsInstructionIGet() function
140 DCHECK(IsInstructionIGet(code)); in IGetMemAccessType()