Home
last modified time | relevance | path

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

/art/compiler/dex/
Dinline_method_analyser.cc187 uint16_t GetZeroVRegMask(const Instruction* const0) { in GetZeroVRegMask() argument
188 DCHECK(IsInstructionDirectConst(const0->Opcode())); in GetZeroVRegMask()
189 DCHECK((const0->Opcode() == Instruction::CONST_WIDE) ? const0->VRegB_51l() == 0u in GetZeroVRegMask()
190 : const0->VRegB() == 0); in GetZeroVRegMask()
191 uint16_t base_mask = IsInstructionConstWide(const0->Opcode()) ? 3u : 1u; in GetZeroVRegMask()
192 return base_mask << const0->VRegA(); in GetZeroVRegMask()