Home
last modified time | relevance | path

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

/art/runtime/quick/
Dinline_method_analyser.cc54 static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET) ==
56 static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_WIDE) ==
58 static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_OBJECT) ==
60 static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_BOOLEAN) ==
62 static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_BYTE) ==
64 static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_CHAR) ==
66 static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_SHORT) ==
252 data->op_variant = IGetVariant(opcode); in AnalyseIGetMethod()
Dinline_method_analyser.h170 static constexpr uint16_t IGetVariant(Instruction::Code opcode) { in IGetVariant() function
/art/compiler/dex/quick/
Dmir_to_lir.cc252 case InlineMethodAnalyser::IGetVariant(Instruction::IGET): in GenSpecialIGet()
255 case InlineMethodAnalyser::IGetVariant(Instruction::IGET_WIDE): in GenSpecialIGet()
258 case InlineMethodAnalyser::IGetVariant(Instruction::IGET_OBJECT): in GenSpecialIGet()
261 case InlineMethodAnalyser::IGetVariant(Instruction::IGET_SHORT): in GenSpecialIGet()
264 case InlineMethodAnalyser::IGetVariant(Instruction::IGET_CHAR): in GenSpecialIGet()
267 case InlineMethodAnalyser::IGetVariant(Instruction::IGET_BYTE): in GenSpecialIGet()
270 case InlineMethodAnalyser::IGetVariant(Instruction::IGET_BOOLEAN): in GenSpecialIGet()
Ddex_file_method_inliner.cc909 DCHECK_EQ(InlineMethodAnalyser::IGetVariant(opcode), data.op_variant); in GenInlineIGet()