Home
last modified time | relevance | path

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

/art/runtime/quick/
Dinline_method_analyser.cc68 COMPILE_ASSERT(InlineMethodAnalyser::IGetVariant(Instruction::IGET) ==
70 COMPILE_ASSERT(InlineMethodAnalyser::IGetVariant(Instruction::IGET_WIDE) ==
72 COMPILE_ASSERT(InlineMethodAnalyser::IGetVariant(Instruction::IGET_OBJECT) ==
74 COMPILE_ASSERT(InlineMethodAnalyser::IGetVariant(Instruction::IGET_BOOLEAN) ==
76 COMPILE_ASSERT(InlineMethodAnalyser::IGetVariant(Instruction::IGET_BYTE) ==
78 COMPILE_ASSERT(InlineMethodAnalyser::IGetVariant(Instruction::IGET_CHAR) ==
80 COMPILE_ASSERT(InlineMethodAnalyser::IGetVariant(Instruction::IGET_SHORT) ==
253 data->op_variant = IGetVariant(opcode); in AnalyseIGetMethod()
Dinline_method_analyser.h163 static constexpr uint16_t IGetVariant(Instruction::Code opcode) { in IGetVariant() function
/art/compiler/dex/quick/
Dmir_to_lir.cc226 bool wide = (data.op_variant == InlineMethodAnalyser::IGetVariant(Instruction::IGET_WIDE)); in GenSpecialIGet()
227 bool ref = (data.op_variant == InlineMethodAnalyser::IGetVariant(Instruction::IGET_OBJECT)); in GenSpecialIGet()
271 bool ref = (data.op_variant == InlineMethodAnalyser::IGetVariant(Instruction::IGET_OBJECT)); in GenSpecialIPut()
Ddex_file_method_inliner.cc780 DCHECK_EQ(InlineMethodAnalyser::IGetVariant(opcode), data.op_variant); in GenInlineIGet()