Lines Matching refs:HInstruction
32 HInstruction* left = instruction->GetLeft(); in TryCombineAndNot()
33 HInstruction* right = instruction->GetRight(); in TryCombineAndNot()
39 HInstruction* other_ins = (left_is_not ? right : left); in TryCombineAndNot()
68 HInstruction* candidate = nullptr; in TryGenerateResetLeastSetBit()
69 HInstruction* other = nullptr; in TryGenerateResetLeastSetBit()
70 HInstruction* left = instruction->GetLeft(); in TryGenerateResetLeastSetBit()
71 HInstruction* right = instruction->GetRight(); in TryGenerateResetLeastSetBit()
82 type, HInstruction::kAnd, other, instruction->GetDexPc()); in TryGenerateResetLeastSetBit()
101 HInstruction* left = instruction->GetLeft(); in TryGenerateMaskUptoLeastSetBit()
102 HInstruction* right = instruction->GetRight(); in TryGenerateMaskUptoLeastSetBit()
103 HInstruction* other = nullptr; in TryGenerateMaskUptoLeastSetBit()
104 HInstruction* candidate = nullptr; in TryGenerateMaskUptoLeastSetBit()
115 type, HInstruction::kXor, other, instruction->GetDexPc()); in TryGenerateMaskUptoLeastSetBit()
124 bool AreLeastSetBitInputs(HInstruction* to_test, HInstruction* other) { in AreLeastSetBitInputs()